:root {
  --red: #f40707;
  --red-dark: #8f0000;
  --black: #08080a;
  --panel: #151517;
  --panel-soft: #111113;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.66);
  --dim: rgba(255, 255, 255, 0.38);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ui: cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1040px;
  --headline: "Oswald", "Arial Narrow", Arial, sans-serif;
  --body: "Google Sans Flex", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--white);
  background: var(--black);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 158px 158px;
  pointer-events: none;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 20;
  pointer-events: none;
}

.header-inner {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  align-items: center;
  pointer-events: auto;
  padding: 8px 10px 8px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 8, 10, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.brand {
  width: 120px;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 2px;
}

.site-nav a {
  padding: 6px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 300;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.header-cta {
  justify-self: end;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--red);
  background: var(--white);
  font-size: 16px;
  font-weight: 600;
  transition: transform 180ms var(--ui);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #220000;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.22) 54%, rgba(0, 0, 0, 0.08) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16) 0%, rgba(0, 0, 0, 0.1) 70%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding-top: 184px;
  padding-bottom: 62px;
}

.hero-copy {
  width: min(900px, 100%);
  padding-left: 64px;
}

.trusted-line {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 20px;
  font-weight: 300;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 32px;
  height: auto;
  margin-left: -12px;
  border: 1px solid var(--white);
  border-radius: 50%;
  object-fit: cover;
  background: #1a1a1c;
}

.avatar-stack img:first-child {
  margin-left: 0;
}

h1,
h2,
h3 {
  font-family: var(--headline);
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(46px, 5.6vw, 70px);
  line-height: 1.2;
  font-weight: 900;
}

.hero h1 span {
  display: block;
  white-space: nowrap;
}

.hero p {
  max-width: 540px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 21px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  white-space: nowrap;
  transition: transform 180ms var(--ui), background-color 180ms var(--ui), border-color 180ms var(--ui);
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: var(--white);
  background: rgba(0, 0, 0, 0.18);
}

.intro-section {
  padding: 86px 0 104px;
  background: #09090b;
}

.intro-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-template-areas:
    "title title"
    "stats copy";
  gap: 62px 70px;
}

.kicker {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  font-weight: 300;
}

.kicker.red {
  color: var(--red);
}

.intro-title-block {
  grid-area: title;
}

.intro-title-block h2,
.section-heading h2,
.proof-title h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 56px);
  line-height: 0.96;
  font-weight: 950;
}

.intro-title-block h2 {
  color: var(--red);
}

.intro-stats {
  grid-area: stats;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px 42px;
}

.intro-stats strong {
  display: block;
  font-size: 44px;
  line-height: 0.95;
  font-weight: 900;
  text-align: center;
}

.intro-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 18px;
  text-align: center;
}

.intro-copy {
  grid-area: copy;
  align-self: start;
  max-width: 580px;
  margin: 2px 0 0;
  font-family: var(--headline);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.22;
  text-transform: uppercase;
}

.intro-copy span {
  color: var(--red);
}

.services-section {
  padding: 92px 0 126px;
  background: #08080a;
}

.section-heading {
  padding-left: 6px;
  margin-bottom: 28px;
}

.section-heading h2 {
  color: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 26px 26px 23px;
  border-radius: 12px;
  background: var(--red);
  transition: transform 600ms var(--ease), background-color 500ms var(--ease);
  will-change: transform, background-color;
}

.service-card:hover,
.service-card:focus-within {
  background: #171719;
  transform: translateY(-5px);
}

.service-watermark {
  position: absolute;
  top: 18px;
  right: 26px;
  width: 120px;
  height: auto;
  z-index: 1;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0);
  pointer-events: none;
  transform: scale(1);
  transform-origin: top right;
  transition: opacity 550ms var(--ease), transform 550ms var(--ease), filter 550ms var(--ease), width 550ms var(--ease);
}

.service-card:hover .service-watermark,
.service-card:focus-within .service-watermark {
  opacity: 0.06;
  filter: brightness(0) saturate(100%) invert(14%) sepia(92%) saturate(7468%) hue-rotate(358deg) brightness(108%) contrast(117%);
  transform: scale(1.08);
  width: 224px;
  height: auto;
}

.service-bg-watermark {
  position: absolute;
  top: 6px;
  right: -10px;
  width: 224px;
  height: auto;
  z-index: 0;
  object-fit: contain;
  opacity: 0.1;
  filter: brightness(0);
  pointer-events: none;
  transform: scale(1);
  transform-origin: top right;
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
}

.service-card:hover .service-bg-watermark,
.service-card:focus-within .service-bg-watermark {
  opacity: 0;
  transform: scale(1.08);
}

/* h3 is the only in-flow flex item — anchors to bottom via margin: auto 0 0.
   Slides up on hover using GPU transform only (no layout reflow). */
.service-card h3 {
  position: relative;
  z-index: 2;
  margin: auto 0 8px;
  color: #050505;
  font-size: 26px;
  line-height: 0.98;
  font-weight: 950;
  transform: translateY(0);
  transition: color 500ms var(--ease), transform 560ms var(--ease);
  transition-delay: 40ms;
  will-change: transform, color;
}

.service-card:hover h3,
.service-card:focus-within h3 {
  color: var(--red);
  transform: translateY(-212px);
}

/* CTA stays in flex flow — always visible, only colour changes on hover. */
.service-card > a {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  transition: color 320ms var(--ease);
}

.service-card:hover > a,
.service-card:focus-within > a {
  color: var(--red);
}

/* Expandable body (p + tags) sits above the CTA via absolute positioning.
   Children fade in with staggered delays — no height/margin animation. */
.service-body {
  position: absolute;
  bottom: 62px; /* card padding-bottom(23) + CTA height(~24) + gap(15) */
  left: 26px;
  right: 26px;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.service-body p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  line-height: 1.32;
  font-weight: 300;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  transition-delay: 160ms;
  will-change: opacity, transform;
}

.service-card:hover .service-body p,
.service-card:focus-within .service-body p {
  opacity: 1;
  transform: translateY(0);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms var(--ease), transform 420ms var(--ease);
  transition-delay: 240ms;
  will-change: opacity, transform;
}

.service-card:hover .tag-list,
.service-card:focus-within .tag-list {
  opacity: 1;
  transform: translateY(0);
}

.tag-list span {
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(111, 0, 0, 0.72);
  border: 1px solid rgba(244, 7, 7, 0.86);
  font-size: 13px;
  font-weight: 200;
  line-height: 1.1;
}

.portfolio-section {
  padding: 78px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 4%, rgba(244, 7, 7, 0.38), transparent 35%),
    linear-gradient(180deg, #820000 0%, #170708 68%, #08080a 100%);
}

.portfolio-section .section-heading {
  margin-bottom: 36px;
}

.portfolio-shell {
  position: relative;
  width: min(1180px, 100vw);
  margin-inline: auto;
  margin-left: calc(50% - min(590px, 50vw));
}

.portfolio-window {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 220px;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
}

.portfolio-window:active {
  cursor: grabbing;
}

.portfolio-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.portfolio-slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(480px, 46vw, 600px);
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transform:
    translate3d(calc(-50% + var(--slide-x, 0px)), -50%, 0) scale(var(--slide-scale, 0.64));
  transition:
    opacity 620ms var(--ease),
    transform 620ms var(--ease),
    filter 620ms var(--ease);
  will-change: transform, opacity;
}

.portfolio-slide.is-active,
.portfolio-slide.is-prev,
.portfolio-slide.is-next,
.portfolio-slide.is-far-prev,
.portfolio-slide.is-far-next {
  opacity: var(--slide-opacity, 1);
}

.portfolio-slide.is-active {
  --slide-x: 0px;
  --slide-scale: 1;
  --slide-opacity: 1;
  z-index: 5;
  pointer-events: auto;
  filter: saturate(1.08);
}

.portfolio-slide.is-prev {
  --slide-x: -440px;
  --slide-scale: 0.58;
  --slide-opacity: 0.72;
  z-index: 3;
  filter: saturate(0.82) brightness(0.82);
  pointer-events: auto;
  cursor: pointer;
}

.portfolio-slide.is-next {
  --slide-x: 440px;
  --slide-scale: 0.58;
  --slide-opacity: 0.72;
  z-index: 3;
  filter: saturate(0.82) brightness(0.82);
  pointer-events: auto;
  cursor: pointer;
}

.portfolio-slide.is-far-prev {
  --slide-x: -650px;
  --slide-scale: 0.42;
  --slide-opacity: 0.34;
  z-index: 1;
  filter: saturate(0.65) brightness(0.68);
}

.portfolio-slide.is-far-next {
  --slide-x: 650px;
  --slide-scale: 0.42;
  --slide-opacity: 0.34;
  z-index: 1;
  filter: saturate(0.65) brightness(0.68);
}

.portfolio-slide.is-active:hover {
  opacity: 1;
  transform:
    translate3d(calc(-50% + var(--slide-x, 0px)), -50%, 0) scale(1.015);
}

.portfolio-slide.is-prev:hover,
.portfolio-slide.is-next:hover {
  filter: saturate(0.95) brightness(0.95);
  opacity: 0.9;
}

.portfolio-slide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow:
    0 34px 80px rgba(0, 0, 0, 0.44),
    0 0 42px rgba(244, 7, 7, 0.12);
}

.portfolio-arrow {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(244, 7, 7, 0.36);
  border-radius: 50%;
  background: rgba(74, 0, 0, 0.68);
  cursor: pointer;
  transition: transform 180ms var(--ui), background-color 180ms var(--ui), border-color 180ms var(--ui);
}

.portfolio-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(244, 7, 7, 0.84);
  background: rgba(244, 7, 7, 0.55);
}

.portfolio-arrow img {
  width: 100%;
  height: 100%;
}

.portfolio-caption {
  width: min(600px, calc(100% - 48px));
  margin: 2px auto 0;
}

.portfolio-caption span {
  color: var(--red);
  font-size: 17px;
  font-weight: 300;
}

.portfolio-caption h3 {
  margin: 8px 0 0;
  font-family: var(--body);
  text-transform: none;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.2;
  font-weight: 700;
}

.portfolio-caption p {
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.portfolio-caption em {
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
}

.portfolio-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  transition: width 220ms var(--ui), background-color 220ms var(--ui);
}

.dots span.active {
  background: var(--red);
}

.portfolio-controls .dots {
  gap: 7px;
  margin-top: 0;
}

.portfolio-controls .dots span {
  width: 9px;
  height: 9px;
}

.portfolio-controls .dots span.active {
  width: 20px;
  border-radius: 999px;
}

.proof-section {
  padding: 88px 0 142px;
  background: #08080a;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 50px;
  align-items: start;
}

.proof-title h2 {
  color: var(--white);
}

.testimonial {
  margin-top: 18px;
  padding: 26px 30px;
  border-radius: 12px;
  background: #121214;
}

.testimonial p {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.45;
}

.testimonial div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.testimonial strong {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  font-size: 12px;
}

.testimonial span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.3;
}

.testimonial b {
  color: var(--red);
  font-size: 16px;
}

.brand-marquee {
  grid-column: 1 / -1;
  margin-top: 22px;
  overflow: hidden;
  cursor: grab;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  touch-action: pan-y;
}

.brand-marquee:active {
  cursor: grabbing;
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
}

.brand-track span {
  flex: 0 0 clamp(130px, 16vw, 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  transition: transform 180ms var(--ui);
}

.brand-track span img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 180ms var(--ui), opacity 180ms var(--ui);
  opacity: 0.85;
}

.brand-track span:hover img {
  transform: translateY(-2px);
  opacity: 1;
}

.proof-dots {
  grid-column: 1 / -1;
  margin-top: -14px;
}

.dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  cursor: pointer;
  transition: width 220ms var(--ui), background-color 220ms var(--ui), transform 180ms var(--ui);
}

.dots button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
}

.dots button.active {
  background: var(--red);
}

.prefooter {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 48px 52px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 7, 7, 0.35), transparent 52%),
    linear-gradient(100deg, #8b0000 0%, #080809 88%);
}

.cta-panel h2 {
  font-size: clamp(34px, 4vw, 47px);
}

.cta-panel p {
  max-width: 690px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.45;
}

.cta-panel .hero-actions {
  margin-top: 4px;
}

.site-footer {
  margin-top: -75px;
  padding: 132px 0 0;
  overflow: hidden;
  background: var(--red);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.9fr;
  gap: 80px;
  padding-bottom: 38px;
}

.footer-logo {
  width: 126px;
  margin-bottom: 16px;
}

.footer-grid p {
  max-width: 380px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}

.footer-grid nav a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 300;
}

.footer-contact {
  padding-top: 4px;
}

.footer-contact strong {
  display: block;
  margin-bottom: 14px;
  font-size: 24px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 18px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: transparent;
}

.footer-social img {
  width: 36px;
  height: 36px;
}

.footer-bottom {
  padding-top: 12px;
  padding-bottom: 24px;
  text-align: center;
}

.footer-bottom span {
  font-size: 14px;
}

.footer-giant {
  pointer-events: none;
  margin-top: 18px;
  font-family: var(--headline);
  font-size: clamp(135px, 24vw, 310px);
  line-height: 0.72;
  text-align: center;
  font-weight: 950;
  letter-spacing: -0.045em;
  transform: translateY(28px);
  background: linear-gradient(to bottom, rgba(255,255,255,0.38) 0%, rgba(255,255,255,0.0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 760ms var(--ease), transform 760ms var(--ease);
}

.stagger-1.is-visible {
  transition-delay: 90ms;
}

.stagger-2.is-visible {
  transition-delay: 160ms;
}

.stagger-3.is-visible {
  transition-delay: 230ms;
}

.stagger-4.is-visible {
  transition-delay: 300ms;
}

.stagger-5.is-visible {
  transition-delay: 370ms;
}

@media (max-width: 980px) {
  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .header-inner {
    grid-template-columns: 110px 1fr 120px;
  }

  .hero-copy,
  .intro-grid {
    padding-left: 0;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .hero p {
    max-width: 100%;
  }

  .brand-track span {
    flex-basis: clamp(140px, 24vw, 200px);
  }

  .portfolio-window {
    height: auto;
    min-height: 180px;
  }

  .portfolio-slide {
    width: clamp(460px, 70vw, 640px);
  }

  .portfolio-slide.is-prev {
    --slide-x: -330px;
    --slide-scale: 0.54;
  }

  .portfolio-slide.is-next {
    --slide-x: 330px;
    --slide-scale: 0.54;
  }

  .portfolio-slide.is-far-prev {
    --slide-x: -500px;
  }

  .portfolio-slide.is-far-next {
    --slide-x: 500px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 14px;
  }

  .header-inner {
    display: flex;
    justify-content: space-between;
  }

  .brand {
    width: 76px;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.42);
  }

  .nav-toggle span {
    width: 16px;
    height: 2px;
    margin-inline: auto;
    border-radius: 99px;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: 56px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 16px;
    background: rgba(8, 8, 10, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.10);
    padding: 8px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 10px;
    padding: 12px 16px;
  }

  .site-nav .nav-mobile-cta {
    display: flex;
    margin: 4px 0 2px;
    padding: 12px 16px;
    background: var(--red);
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    justify-content: center;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 560px;
  }

  .hero-inner {
    padding-bottom: 48px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(39px, 11vw, 56px);
    overflow-wrap: normal;
  }

  .hero h1 span {
    white-space: normal;
  }

  .intro-section,
  .services-section,
  .portfolio-section,
  .proof-section {
    padding-block: 64px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "stats" "copy";
    gap: 34px;
  }

  .intro-stats {
    gap: 28px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .portfolio-shell {
    width: calc(100vw + 72px);
    margin-left: -60px;
  }

  .portfolio-window {
    height: auto;
    min-height: 160px;
  }

  .portfolio-slide {
    width: min(82vw, 430px);
  }

  .portfolio-slide.is-prev {
    --slide-x: -210px;
    --slide-scale: 0.48;
    --slide-opacity: 0.2;
  }

  .portfolio-slide.is-next {
    --slide-x: 210px;
    --slide-scale: 0.48;
    --slide-opacity: 0.48;
  }

  .portfolio-slide.is-far-prev,
  .portfolio-slide.is-far-next {
    opacity: 0;
  }

  .portfolio-caption {
    width: 100%;
    margin-top: 0;
  }

  .portfolio-caption span {
    font-size: 15px;
  }

  .portfolio-caption h3 {
    font-size: 24px;
  }

  .portfolio-controls {
    margin-top: 18px;
  }

  .brand-track span {
    flex-basis: 110px;
    padding: 0 14px;
  }

  .brand-track span img {
    max-height: 36px;
  }

  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
    padding: 32px 26px;
  }

  .site-footer {
    margin-top: -54px;
    padding-top: 112px;
  }
}

/* ===================================================
   INNER PAGE STYLES
   =================================================== */

/* --- Page shell --- */
.page-shell {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* --- Global red accent --- */
.ra { color: var(--red); }

/* --- Button aliases (inner pages) --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  transition: transform 180ms var(--ui), background 180ms var(--ui), border-color 180ms var(--ui), color 180ms var(--ui);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: transparent;
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.button-ghost {
  color: var(--muted);
  background: transparent;
  border-color: transparent;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0;
}

/* --- Services nav dropdown --- */
.nav-item-dropdown {
  position: relative;
}

.nav-dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  font-weight: 300;
  cursor: pointer;
  user-select: none;
  white-space: nowrap;
  transition: color 180ms var(--ui), background 180ms var(--ui);
}

.nav-dropdown-trigger::after {
  content: '▾';
  font-size: 10px;
  line-height: 1;
  transition: transform 240ms var(--ease);
  display: inline-block;
}

.nav-item-dropdown:hover .nav-dropdown-trigger,
.nav-item-dropdown.is-open .nav-dropdown-trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.nav-item-dropdown:hover .nav-dropdown-trigger::after,
.nav-item-dropdown.is-open .nav-dropdown-trigger::after {
  transform: rotate(180deg);
}

.nav-dropdown-trigger.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.16);
}

.nav-dropdown-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 230px;
  padding-top: 12px;
  z-index: 30;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease), transform 260ms var(--ease);
}

.nav-dropdown-panel-inner {
  background: rgba(10, 10, 12, 0.97);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 6px;
}

.nav-item-dropdown:hover .nav-dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-panel a {
  display: block;
  padding: 8px 14px;
  border-radius: 9px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 300;
  transition: background 130ms var(--ui), color 130ms var(--ui);
}

.nav-dropdown-panel a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.nav-dropdown-panel a.active {
  color: var(--red);
}

/* --- Section system --- */
.section {
  padding: 80px 0;
}

.section-dark {
  background: var(--black);
}

.section-light {
  background: #0e0e10;
}

.section-warm {
  background: #100c0c;
}

.section-head {
  margin-bottom: 48px;
}

/* --- Inner page typography --- */
.eyebrow {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow.muted {
  color: var(--muted);
}

.hero-title {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.0;
  font-weight: 900;
  text-transform: uppercase;
}

.title {
  margin: 0;
  font-family: var(--headline);
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.0;
  font-weight: 900;
  text-transform: uppercase;
}

.lead {
  margin: 18px 0 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.7);
}

.lead.muted {
  color: var(--muted);
}

.muted-on-dark {
  color: rgba(255, 255, 255, 0.72);
}

/* --- Inner page hero --- */
.service-hero {
  padding: 148px 0 80px;
  background:
    radial-gradient(ellipse at 65% -10%, rgba(244, 7, 7, 0.2) 0%, transparent 52%),
    var(--black);
}

/* --- Service hero image --- */
.service-hero-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-hero-img img {
  width: 100%;
  max-width: 420px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.5));
}

/* --- Layout grids --- */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}

/* --- Service components --- */
.service-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.service-card-dark {
  padding: 32px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Override home-page .service-card styles inside .service-pillars */
.service-pillars .service-card {
  position: relative;
  height: auto;
  min-height: unset;
  overflow: visible;
  padding: 32px;
  justify-content: flex-start;
  transition: border-color 220ms var(--ui), transform 220ms var(--ui);
}

.service-pillars .service-card::before {
  display: none;
}

.service-pillars .service-card:hover {
  border-color: rgba(244, 7, 7, 0.36);
  transform: translateY(-3px);
}

.service-pillars .service-card h2,
.service-pillars .service-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  transform: none !important;
  color: var(--white);
  transition: color 220ms var(--ui);
}

.service-pillars .service-card:hover h2,
.service-pillars .service-card:hover h3 {
  color: var(--red);
  transform: none !important;
}

/* --- Card components --- */
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 11px;
  margin-bottom: 18px;
  border-radius: 7px;
  background: rgba(244, 7, 7, 0.12);
  border: 1px solid rgba(244, 7, 7, 0.28);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-title {
  margin: 0 0 12px;
  font-family: var(--headline);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
}

.card-copy {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}

.card-link {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  color: var(--dim);
  font-family: monospace;
  letter-spacing: 0.03em;
}

.contact-card {
  padding: 32px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.note-card {
  padding: 32px;
  border-radius: 14px;
  background: rgba(244, 7, 7, 0.06);
  border: 1px solid rgba(244, 7, 7, 0.16);
}

/* --- Tag list inner page (.tag spans always visible) --- */
.tag-list .tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.1;
}

.service-card-dark .tag-list,
.service-pillars .service-card .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* --- Process cards --- */
.process-wrap {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.process-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.08) 100%),
    #111113;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.07), 0 8px 40px rgba(0,0,0,0.36);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.process-card::after {
  content: '';
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(244,7,7,0.22) 0%, transparent 68%);
  pointer-events: none;
}

.process-step {
  display: block;
  font-family: var(--headline);
  font-size: 64px;
  font-weight: 900;
  color: var(--red);
  opacity: 0.28;
  line-height: 0.85;
  margin-bottom: 22px;
  user-select: none;
  letter-spacing: -0.02em;
}

.process-title {
  margin: 0 0 8px;
  font-family: var(--headline);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red);
}

.process-copy {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--muted);
}

/* --- FAQ --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.faq-card {
  padding: 20px 24px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-card summary {
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  padding-right: 24px;
  position: relative;
  line-height: 1.4;
}

.faq-card summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 0;
  color: var(--red);
  font-size: 20px;
  font-weight: 300;
  line-height: 1;
  transition: transform 200ms var(--ui);
}

.faq-card[open] summary::after {
  transform: rotate(45deg);
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card p {
  margin: 14px 0 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}

/* --- Stats (about page) --- */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.stat-card {
  padding: 28px 24px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.stat-number {
  display: block;
  font-family: var(--headline);
  font-size: clamp(36px, 4.4vw, 52px);
  font-weight: 900;
  line-height: 1;
  color: var(--red);
  text-transform: uppercase;
}

.stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --- Values (about page) --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.value-card {
  padding: 28px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.value-title {
  margin: 0 0 10px;
  font-family: var(--headline);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.value-copy {
  margin: 0;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}

/* --- Story (about page) --- */
.story-photo {
  min-height: 320px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.story-copy p {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.story-copy p:last-child {
  margin-bottom: 0;
}

/* --- Contact form --- */
.brief-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  padding: 10px 15px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  outline: none;
  transition: border-color 160ms var(--ui);
  -webkit-appearance: none;
  appearance: none;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--dim);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(244, 7, 7, 0.55);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.38)'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.field select option {
  background: #1a1a1c;
  color: var(--white);
}

.contact-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 4px;
  padding-bottom: 48px;
}

/* --- Tabs (portfolio page) --- */
.tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.tab-button {
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background 180ms var(--ui), border-color 180ms var(--ui), color 180ms var(--ui);
}

.tab-button.active,
.tab-button:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

/* --- Portfolio / work grid (inner pages) --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-auto-rows: 80px;
  gap: 16px;
}

.work-card {
  padding: 22px;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: border-color 220ms var(--ui);
}

.work-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.span-3 { grid-column: span 3; }
.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.row-2  { grid-row: span 2; }
.row-3  { grid-row: span 3; }

.work-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(244, 7, 7, 0.12);
  border: 1px solid rgba(244, 7, 7, 0.28);
  color: var(--red);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
  align-self: flex-start;
}

.work-title {
  margin: 0 0 6px;
  font-family: var(--headline);
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
}

.work-copy {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.45;
  color: var(--muted);
}

/* --- Case study grid --- */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.case-card {
  padding: 22px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.case-label {
  display: block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--red);
}

.case-copy {
  margin: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--muted);
}

/* --- CTA banner (service detail pages) --- */
.cta-banner {
  padding: 48px 52px;
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(244, 7, 7, 0.26), transparent 52%),
    linear-gradient(110deg, #780000 0%, #0e0507 80%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

/* --- Mockup / device components --- */
.mockup-card {
  padding: 24px;
  border-radius: 16px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.device-layout,
.brand-layout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.device-screen {
  flex: 1;
  min-height: 160px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-screen,
.social-phone {
  width: 38%;
  min-height: 140px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-board {
  flex: 1;
  min-height: 160px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-swatch-row {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.brand-swatch {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.brand-swatch.red { background: var(--red); }
.brand-swatch.black { background: #1e1e20; border: 1px solid rgba(255, 255, 255, 0.14); }
.brand-swatch.sand { background: #c8b89a; }

.ui-bar {
  height: 8px;
  border-radius: 4px;
  background: var(--red);
  opacity: 0.55;
  width: 52%;
}

.ui-card {
  height: 38px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

.ui-post {
  height: 28px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.07);
}

.ui-stat {
  height: 16px;
  border-radius: 4px;
  background: rgba(244, 7, 7, 0.24);
}

.wire-line {
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.wire-line.short {
  width: 55%;
}

/* --- Showreel (motion-video page) --- */
.showreel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.showreel-cell {
  height: 100px;
  border-radius: 10px;
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.showreel-cell.tall {
  grid-row: span 2;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background:
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%),
    var(--panel);
}

.media-caption {
  display: flex;
  flex-direction: column;
}

.media-chip {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
  align-self: flex-start;
}

.media-title {
  margin: 0 0 4px;
  font-family: var(--headline);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.media-note {
  margin: 0;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.4;
}

/* ===================================================
   INNER PAGE RESPONSIVE
   =================================================== */

@media (max-width: 980px) {
  .split-grid,
  .story-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-pillars {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .process-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 100px;
  }

  .span-3 { grid-column: span 4; }
  .span-5 { grid-column: span 4; }

  .case-study-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 36px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 760px) {
  .service-hero {
    padding: 110px 0 56px;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .process-wrap {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    white-space: nowrap;
    width: fit-content;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }

  .span-3,
  .span-4,
  .span-5 { grid-column: span 2; }

  .row-3 { grid-row: span 2; }

  .case-study-grid {
    grid-template-columns: 1fr 1fr;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 28px 24px;
  }

  .mockup-card {
    display: none;
  }

  /* Mobile dropdown: static positioning, JS-controlled visibility */
  .nav-item-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown-trigger {
    width: 100%;
    justify-content: space-between;
    border-radius: 9px;
  }

  .nav-dropdown-panel {
    position: static;
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: none !important;
    padding-top: 4px;
    min-width: unset;
    display: none;
    transition: none !important;
  }

  .nav-item-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }

  .nav-item-dropdown:hover .nav-dropdown-panel {
    display: none;
  }

  .nav-item-dropdown.is-open .nav-dropdown-panel {
    display: block;
  }

  .nav-dropdown-panel-inner {
    border-radius: 9px;
    margin: 0 8px;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}