/* ================================================
   SCHEMATA CREATIVE — Navy + Teal, Bold, Distinctive
   Bricolage Grotesque · Montserrat · Sora
   Dark hero/service/testimonial/faq sections
   ================================================ */

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

:root {
  --navy: #0B1221;
  --navy-mid: #131D30;
  --navy-light: #1A2640;
  --navy-surface: #1E2D45;
  --teal: #00D1C1;
  --teal-dim: rgba(0, 209, 193, 0.15);
  --teal-hover: #1AEAD9;
  --accent-on-light: var(--navy);
  --accent-on-light-soft: var(--navy-mid);
  --white: #F8F8F6;
  --off-white: #F0F0EC;
  --gray-1: #E4E4E0;
  --gray-2: #9A9A96;
  --gray-3: #6A6A66;
  --text-dark: #0B1221;
  --text-light: #E8E8E4;
  --text-mid: #A0A8B8;
  --radius: 12px;
  --font: 'Sora', system-ui, sans-serif;
  --font-heading: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-label: 'Montserrat', system-ui, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body { font-family: var(--font); background: var(--white); color: var(--text-dark); line-height: 1.6; overflow-x: hidden; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
::selection { background: var(--teal); color: var(--navy); }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; }

.skip-link { position: absolute; top: -100%; left: 16px; z-index: 10001; padding: 10px 20px; background: var(--teal); color: var(--navy); border-radius: 0 0 8px 8px; font-weight: 700; transition: top 0.2s; }
.skip-link:focus { top: 0; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); }

.tag { display: inline-block; font-family: var(--font-label); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--navy); background: var(--teal-dim); padding: 7px 16px; border-radius: 100px; margin-bottom: 20px; }
.tag--light { color: var(--teal); background: none; padding: 7px 0; text-shadow: 0 0 20px rgba(0,209,193,0.4); }

.section-title { font-family: var(--font-heading); font-size: clamp(30px, 4vw, 48px); font-weight: 800; line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 56px; }
.section-title--light { color: var(--text-light); }

.teal { color: var(--teal); }
.hero .teal, .services .teal, .testimonials .teal, .faq .teal, .compare-section .teal { text-shadow: 0 0 24px rgba(0,209,193,0.35); }

/* ================================================
   NAV
   ================================================ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all 0.4s var(--ease); }
.nav--scrolled { background: rgba(11,18,33,0.95); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 12px 0; }
.nav__inner { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 16px; }
.nav__mark { width: 48px; height: 48px; object-fit: contain; }
.nav__wordmark { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.nav__wordmark-primary { font-family: var(--font-label); font-size: 16px; font-weight: 600; color: var(--text-light); letter-spacing: 0.18em; text-transform: uppercase; }
.nav__wordmark-sub { font-family: var(--font-label); font-size: 10px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.28em; margin-top: 3px; }
.nav__wordmark--inline { flex-direction: row; align-items: baseline; gap: 4px; }
.nav__wordmark--inline .nav__wordmark-primary { font-family: var(--font-label); font-size: 17px; font-weight: 600; letter-spacing: 0.22em; }
.nav__wordmark--inline .nav__wordmark-sub { margin-top: 0; font-size: 17px; font-weight: 600; letter-spacing: 0.22em; }
.nav__links { display: flex; gap: 32px; }
.nav__link { font-size: 15px; font-weight: 500; color: #C0C8D8; transition: color 0.3s; position: relative; }
.nav__link:hover { color: var(--text-light); }
.nav__link::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--teal); border-radius: 2px; transform: scaleX(0); transform-origin: right; transition: transform 0.35s var(--ease); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { font-size: 13px; font-weight: 700; color: var(--navy); background: var(--teal); padding: 10px 24px; line-height: 1; border-radius: 100px; transition: all 0.3s var(--ease); }
.nav__cta:hover { background: #7CF4E8; transform: translateY(-1px); box-shadow: 0 4px 20px rgba(0,209,193,0.25); }
.nav__toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 24px; height: 1.5px; background: var(--text-light); transition: all 0.3s var(--ease); }
.nav__toggle.active span:first-child { transform: rotate(45deg) translate(3px,3px); }
.nav__toggle.active span:last-child { transform: rotate(-45deg) translate(3px,-3px); }

.mobile-menu { position: fixed; inset: 0; z-index: 999; background: var(--navy); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.4s; }
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.mobile-menu__inner a { font-size: 32px; font-weight: 800; color: var(--text-light); }
.mobile-menu__inner a:hover { color: var(--teal); }

/* ================================================
   HERO — Full dark navy
   ================================================ */
.hero { background: var(--navy); color: var(--text-light); position: relative; overflow: hidden; }
.hero__grid { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(0,209,193,0.04) 1px, transparent 1px); background-size: 40px 40px; }
.hero__canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; opacity: 0.6; }
.hero__container { max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 64px); min-height: 100vh; display: flex; flex-direction: column; }
.hero__content { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 140px 0 0; }
.hero__pill { display: inline-flex; align-self: flex-start; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: var(--text-mid); background: var(--navy-mid); border: 1px solid var(--navy-light); border-radius: 100px; padding: 8px 18px; margin-bottom: 36px; }
.hero__dot { width: 8px; height: 8px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 8px rgba(0,209,193,0.4); }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero h1 { font-family: var(--font-heading); font-size: clamp(42px, 6vw, 72px); font-weight: 800; line-height: 1.04; letter-spacing: -0.04em; margin-bottom: 28px; }
.hero__sub { font-size: clamp(16px, 1.3vw, 19px); color: var(--text-mid); line-height: 1.7; max-width: 600px; margin-bottom: 44px; }
.hero__sub strong { color: var(--text-light); font-weight: 700; }
.hero__btns { display: flex; gap: 12px; margin-bottom: 64px; }
.hero__stats { display: flex; gap: clamp(32px, 6vw, 100px); }
.hero__stats > div { display: flex; flex-direction: column; gap: 4px; }
.hero__stats strong { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--teal); line-height: 1; text-shadow: 0 0 12px rgba(0,209,193,0.5), 0 0 32px rgba(0,209,193,0.3), 0 0 56px rgba(0,209,193,0.15); }
.hero__stats span { font-size: 13px; color: var(--text-mid); }
.hero__scroll { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 40px 0 36px; margin-top: auto; color: var(--text-mid); }
.hero__scroll span { font-family: var(--font-label); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; }
.hero__scroll svg { animation: bounce 2s ease-in-out infinite; }
@keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ================================================
   BUTTONS
   ================================================ */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font); font-weight: 700; font-size: 14px; padding: 17px 32px; line-height: 1; border-radius: 100px; border: none; cursor: pointer; transition: all 0.3s var(--ease); white-space: nowrap; }
.btn--teal { background: var(--teal); color: var(--navy); }
.btn--teal:hover { background: #1AEAD9; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,209,193,0.25); }
.btn--outline-light { background: transparent; color: var(--text-light); border: 1.5px solid var(--navy-surface); }
.btn--outline-light:hover { border-color: var(--text-mid); transform: translateY(-2px); }
.btn--dark { background: var(--navy); color: var(--text-light); }
.btn--dark:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,18,33,0.2); }
.btn--outline { background: transparent; color: var(--text-dark); border: 1.5px solid var(--gray-1); }
.btn--outline:hover { background: var(--teal); border-color: var(--teal); color: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,209,193,0.25); }
.btn--full { width: 100%; }

/* ================================================
   LOGOS
   ================================================ */
.logos { padding: 48px 0; background: var(--white); border-bottom: 1px solid var(--gray-1); }
.logos__label { font-family: var(--font-label); text-align: center; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-3); margin-bottom: 24px; display: block; }
.logos__row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: clamp(24px, 4vw, 44px); }
.logos__row img { height: 36px; width: auto; opacity: 0.5; filter: grayscale(100%); transition: opacity 0.4s; object-fit: contain; }
.logos__row img:hover { opacity: 0.8; }

/* ================================================
   APPROACH — Light
   ================================================ */
.approach {
  padding: 120px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(11,18,33,0.03) 0%, transparent 70%);
  pointer-events: none;
}

.approach::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border: 1px dashed rgba(11,18,33,0.05);
  border-radius: 50%;
  pointer-events: none;
}
.approach__split { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(48px, 6vw, 80px); align-items: start; }
.approach h2,
.about__content h2,
.contact h2 { font-family: var(--font-heading); font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; line-height: 1.2; letter-spacing: -0.015em; margin-bottom: 20px; }
.about__content h2 { margin-bottom: 24px; }
.approach__text { font-size: 16px; color: var(--gray-3); line-height: 1.7; margin-bottom: 32px; max-width: 65ch; }
.approach__card { background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 24px; margin-bottom: 12px; transition: all 0.35s var(--ease); }
.approach__card:hover { border-color: var(--teal); box-shadow: 0 4px 16px rgba(0,209,193,0.1); }
.approach__icon { color: var(--navy); margin-bottom: 12px; display: block; background: var(--teal-dim); padding: 8px; width: 40px; height: 40px; border-radius: 10px; }
.approach__card h4 { font-family: var(--font-heading); font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.approach__card p { font-size: 14px; color: var(--gray-3); line-height: 1.5; }

/* ================================================
   SERVICES — Dark navy section
   ================================================ */
.services {
  padding: 120px 0;
  background: var(--navy);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,209,193,0.04) 0%, transparent 60%);
  pointer-events: none;
  animation: svcFloat 20s ease-in-out infinite;
}

.services::after {
  content: '';
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,209,193,0.03) 0%, transparent 60%);
  pointer-events: none;
  animation: svcFloat 25s ease-in-out infinite reverse;
}

@keyframes svcFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.svc { background: var(--navy-mid); border: 1px solid var(--navy-light); border-radius: var(--radius); padding: 32px 24px; transition: all 0.35s var(--ease); position: relative; }
.svc:hover { border-color: var(--navy-surface); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,0.2); }
.svc__icon { width: 28px; height: 28px; color: var(--text-mid); margin-bottom: 16px; display: block; }
.svc--glow .svc__icon { color: var(--teal); }
.svc h3 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text-light); }
.svc p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.svc--glow { border-color: rgba(0,209,193,0.35); background: linear-gradient(135deg, var(--navy-mid), rgba(0,209,193,0.05)); }
.svc--glow:hover { border-color: rgba(0,209,193,0.6); box-shadow: 0 8px 32px rgba(0,209,193,0.12); }
.svc__badge { font-family: var(--font-label); position: absolute; top: 24px; right: 24px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--teal); }

/* ================================================
   WORK — Light
   ================================================ */
.work {
  padding: 120px 0 80px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.work__note { font-size: 13px; color: var(--gray-2); line-height: 1.5; margin-top: 32px; text-align: center; font-style: italic; }

.work::before {
  content: '';
  position: absolute;
  top: 60px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,209,193,0.04) 0%, transparent 65%);
  pointer-events: none;
}
.work__list { display: flex; flex-direction: column; gap: 28px; }
.work__card { background: var(--off-white); border: 1px solid var(--gray-1); border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.4s var(--ease); }
.work__card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.06); }
.work__img { overflow: hidden; }
.work__img img { width: 100%; max-height: 420px; object-fit: cover; transition: transform 0.6s var(--ease); }
.work__card:hover .work__img img { transform: scale(1.02); }
.work__info { padding: 28px 32px; display: flex; justify-content: space-between; align-items: center; gap: 40px; }
.work__info-text { flex: 1; }
.work__info-text h3 { font-size: 24px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.work__info-text p { font-size: 14px; color: var(--gray-3); line-height: 1.6; }
.work__metrics { display: flex; gap: 48px; flex-shrink: 0; }
.work__metrics div { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.work__metrics strong { font-size: 28px; font-weight: 800; letter-spacing: -0.03em; color: var(--navy); line-height: 1; }
.work__metrics span { font-size: 14px; color: var(--gray-3); font-weight: 500; }

/* ================================================
   PROCESS — Vertical timeline
   ================================================ */
.process { padding: 120px 0; background: var(--off-white); }

.process__list {
  position: relative;
}

.process__step {
  display: grid;
  grid-template-columns: 40px 20px 1fr;
  gap: 0 24px;
  align-items: start;
  padding: 32px 0;
  position: relative;
}

/* Vertical dashed line through the dots */
.process__step::before {
  content: '';
  position: absolute;
  left: 73px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(to bottom, var(--gray-1) 0, var(--gray-1) 6px, transparent 6px, transparent 12px);
}

.process__step:first-child::before { top: 42px; }
.process__step:last-child::before { bottom: calc(100% - 42px); }

.process__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: right;
  padding-top: 2px;
}

.process__dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gray-1);
  position: relative;
  z-index: 2;
  margin-top: 2px;
  transition: all 0.4s var(--ease);
}

.process__step:hover .process__dot {
  border-color: var(--teal);
  background: var(--teal);
  box-shadow: 0 0 0 6px rgba(0,209,193,0.15);
}

.process__body h3 { font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.process__body p {
  font-size: 14px;
  color: var(--gray-3);
  line-height: 1.5;
}

.process__tier {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  background: var(--teal-dim);
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
}

/* ================================================
   ABOUT — Light
   ================================================ */
.about {
  padding: 120px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  align-items: center;
}

.about__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__beaker {
  width: 100%;
  max-width: 420px;
}

.about__beaker svg {
  width: 100%;
  height: auto;
}

.about__creds { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.about__creds span { font-family: var(--font-label); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--navy); background: var(--teal-dim); padding: 7px 16px; border-radius: 100px; }
.about__divider { width: 100%; height: 1px; background: var(--gray-1); margin: 40px 0 32px; }
.about__stats-intro { font-family: var(--font-label); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.12em; color: var(--gray-3); margin-bottom: 16px; }
.about__content p { font-size: 16px; color: var(--gray-3); line-height: 1.7; margin-bottom: 16px; max-width: 65ch; }
.about__stats { display: flex; gap: 64px; margin-top: 40px; }
.about__stats div { display: flex; flex-direction: column; gap: 4px; }
.about__stats strong { font-size: 32px; font-weight: 800; letter-spacing: -0.03em; }
.about__stats span { font-size: 13px; color: var(--gray-3); }

/* ================================================
   TESTIMONIALS — Dark
   ================================================ */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,209,193,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.t-scroll { position: relative; }
.t-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.t-track::-webkit-scrollbar { display: none; }
.t-card { background: var(--navy-mid); border: 1px solid var(--navy-light); border-radius: var(--radius); padding: 28px; flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start; display: flex; flex-direction: column; transition: all 0.35s var(--ease); }
.t-card:hover { border-color: rgba(0,209,193,0.25); box-shadow: 0 8px 32px rgba(0,209,193,0.06); }
.t-card blockquote { font-size: 15px; line-height: 1.6; color: var(--text-mid); margin-bottom: 20px; flex: 1; }
.t-card blockquote em { color: var(--text-light); font-weight: 600; font-style: normal; }
.t-foot { padding-top: 16px; border-top: 1px solid var(--navy-light); }
.t-foot strong { display: block; font-size: 14px; color: var(--text-light); }
.t-foot span { font-size: 12px; color: var(--text-mid); }
.t-metric { margin-top: 12px; }
.t-metric strong { font-size: 20px; font-weight: 800; color: var(--teal); text-shadow: 0 0 18px rgba(0,209,193,0.35); }
.t-metric span { font-size: 12px; color: var(--text-mid); margin-left: 6px; }
.t-controls { display: flex; gap: 12px; margin-top: 28px; justify-content: flex-end; }
.t-btn { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--navy-light); background: var(--navy-mid); cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text-light); transition: all 0.3s var(--ease); }
.t-btn:hover { border-color: var(--teal); background: var(--teal); color: var(--navy); }

/* ================================================
   INSIGHTS — Light
   ================================================ */
.insights { padding: 120px 0; background: var(--white); }
.insights__scroll { position: relative; }
.insights__track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; scrollbar-width: none; }
.insights__track::-webkit-scrollbar { display: none; }
.insights__controls { display: flex; gap: 12px; margin-top: 28px; justify-content: flex-end; }
.insights__controls .t-btn { background: var(--white); border-color: var(--gray-1); color: var(--text-dark); }
.insights__controls .t-btn:hover { border-color: var(--teal); background: var(--teal); color: var(--navy); }
.insight-card { display: flex; flex-direction: column; background: var(--off-white); border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 28px; flex: 0 0 calc((100% - 32px) / 3); scroll-snap-align: start; transition: all 0.35s var(--ease); }
.insight-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.05); }
.insight-card__meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.insight-card__tag { font-family: var(--font-label); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--navy); background: var(--teal-dim); padding: 6px 14px; border-radius: 100px; }
.insight-card__date { font-size: 12px; color: var(--gray-3); }
.insight-card h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }
.insight-card p { font-size: 14px; color: var(--gray-3); line-height: 1.6; flex: 1; }
.insight-card__read { font-size: 13px; font-weight: 700; color: var(--navy); margin-top: 16px; transition: color 0.3s; }
.insight-card:hover .insight-card__read { color: var(--teal); }

@media (max-width: 1024px) {
  .insight-card { flex: 0 0 calc((100% - 16px) / 2); }
}
@media (max-width: 768px) {
  .insight-card { flex: 0 0 100%; }
}

/* ================================================
   PRICING — Light
   ================================================ */
.pricing { padding: 120px 0; background: var(--off-white); }
.pricing__toggle { display: inline-flex; background: var(--white); border: 1px solid var(--gray-1); border-radius: 100px; padding: 4px; margin-bottom: 40px; }
.pricing__tab { font-family: var(--font); font-size: 13px; font-weight: 700; padding: 10px 24px; border: none; border-radius: 100px; background: transparent; color: var(--gray-3); cursor: pointer; transition: all 0.3s var(--ease); }
.pricing__tab--active { background: var(--teal); color: var(--navy); }
.pricing__group { display: none; }
.pricing__group--active { display: block; }
.pricing__desc { font-size: 15px; color: var(--gray-3); line-height: 1.6; margin-bottom: 28px; max-width: 600px; }
.pricing__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.p-card { background: var(--white); border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 32px 24px; display: flex; flex-direction: column; position: relative; transition: all 0.35s var(--ease); }
.p-card:hover { border-color: var(--teal); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,209,193,0.08); }
.p-card--pop { border-color: var(--teal); box-shadow: 0 0 0 1px var(--teal), 0 8px 24px rgba(0,209,193,0.1); }
.p-card__badge { font-family: var(--font-label); position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--teal); color: var(--navy); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; white-space: nowrap; }
.p-card h3 { font-family: var(--font-heading); font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.p-card__desc { font-size: 14px; color: var(--gray-3); margin-bottom: 20px; }
.p-card__price { margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-1); }
.p-card__price strong { font-size: 36px; font-weight: 800; letter-spacing: -0.03em; }
.p-card__plus { font-size: 36px; font-weight: 800; vertical-align: baseline; margin-left: 2px; }
.p-card__price span { font-size: 14px; color: var(--gray-3); }
.p-card ul { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; flex: 1; }
.p-card li { font-size: 14px; color: var(--gray-3); padding-left: 20px; position: relative; line-height: 1.4; }
.p-card li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--gray-1); }
.p-card--pop li::before { border-color: var(--teal); background: none; }
/* Compare section */
.compare-section { padding: 120px 0; background: var(--navy); color: var(--text-light); }
.compare__sub { font-size: 16px; color: var(--text-mid); line-height: 1.6; margin-top: -40px; margin-bottom: 48px; }
.compare__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--navy-light); border-radius: var(--radius); overflow: hidden; }
.compare__col { background: var(--navy-mid); padding: 28px 24px; }
.compare__col:first-child { border-right: 1px solid var(--navy-light); }
.compare__col h4 { font-family: var(--font-label); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-mid); margin-bottom: 20px; }
.compare__col--highlight { background: rgba(0,209,193,0.05); }
.compare__col--highlight h4 { color: var(--text-light); }
.compare__tabs { display: inline-flex; background: var(--navy); border: 1px solid var(--navy-light); border-radius: 100px; padding: 3px; margin-bottom: 20px; }
.compare__tab { font-family: var(--font); font-size: 12px; font-weight: 700; padding: 6px 16px; border: none; border-radius: 100px; background: transparent; color: var(--text-mid); cursor: pointer; transition: all 0.3s var(--ease); }
.compare__tab--active { background: var(--teal); color: var(--navy); }
.compare__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; font-size: 14px; color: var(--text-mid); list-style: none; }
.compare__row strong { font-weight: 700; color: var(--text-light); font-size: 13px; }
.compare__row--total { padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--navy-light); }
.compare__row--total strong { font-size: 15px; font-weight: 800; }
.compare__col--highlight .compare__row--total strong { color: var(--teal); text-shadow: 0 0 18px rgba(0,209,193,0.3); }
.compare__row--x span { color: var(--text-mid); opacity: 0.6; }
.compare__row--x span::before { content: '\2013'; margin-right: 8px; }
.compare__row--check span::before { content: '\2713'; color: var(--teal); margin-right: 8px; font-weight: 700; }
.compare__savings { margin-top: 16px; font-size: 13px; font-weight: 700; color: var(--text-mid); text-align: center; }
.compare__savings strong { color: var(--teal); text-shadow: 0 0 16px rgba(0,209,193,0.3); }

@media (max-width: 768px) {
  .compare__grid { grid-template-columns: 1fr; }
  .compare__col:first-child { border-right: none; border-bottom: 1px solid var(--navy-light); }
}

/* ================================================
   CONTACT — Light
   ================================================ */
.contact { padding: 120px 0; background: var(--white); }
.contact__split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 100px); align-items: start; }
.contact p { font-size: 16px; color: var(--gray-3); line-height: 1.7; margin-bottom: 28px; max-width: 65ch; }
.contact__email { font-size: 18px; font-weight: 700; color: var(--navy); display: inline-block; border-bottom: 2px solid var(--teal); padding-bottom: 2px; transition: color 0.3s; }
.contact__email:hover { color: var(--gray-3); }
.form { background: var(--off-white); border: 1px solid var(--gray-1); border-radius: var(--radius); padding: 32px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__group { margin-bottom: 16px; }
.form__group label { font-family: var(--font-label); display: block; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-3); margin-bottom: 6px; }
.form__group input, .form__group select, .form__group textarea { width: 100%; padding: 12px 16px; background: var(--white); border: 1px solid var(--gray-1); border-radius: 10px; color: var(--text-dark); font-family: var(--font); font-size: 16px; outline: none; transition: border-color 0.3s; }
.form__group input:focus, .form__group select:focus, .form__group textarea:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(11,18,33,0.08); }
.form__group input::placeholder, .form__group textarea::placeholder { color: var(--gray-2); }
.form__group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%239A9A96' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 14px; }
.form__group textarea { resize: vertical; min-height: 80px; }

/* ================================================
   FAQ — Dark
   ================================================ */
.faq { padding: 120px 0; background: var(--navy); color: var(--text-light); }
.faq__list { max-width: 720px; }
.faq__item { border-bottom: 1px solid var(--navy-light); }
.faq__q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; background: none; border: none; font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: var(--text-light); text-align: left; cursor: pointer; transition: color 0.3s; }
.faq__q:hover { color: var(--teal); }
.faq__q svg { flex-shrink: 0; color: var(--text-mid); transition: all 0.35s var(--ease); }
.faq__item.open .faq__q svg { transform: rotate(45deg); color: var(--teal); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq__item.open .faq__a { max-height: 600px; }
.faq__a p { font-size: 15px; color: var(--text-mid); line-height: 1.7; padding-bottom: 22px; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--navy); color: var(--text-light); border-top: 1px solid var(--navy-light); }
.footer__top { display: flex; justify-content: space-between; align-items: start; gap: 40px; padding: 56px 0; }
.footer__brand p { font-size: 14px; color: var(--text-mid); margin-top: 10px; }
.footer__col h4 { font-family: var(--font-label); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-mid); margin-bottom: 14px; }
.footer__col a { display: block; font-size: 14px; color: var(--text-mid); margin-bottom: 10px; transition: color 0.3s; }
.footer__col a:hover { color: var(--teal); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; border-top: 1px solid var(--navy-light); }
.footer__bottom p { font-size: 12px; color: var(--text-mid); }

/* ================================================
   SCROLL TOP
   ================================================ */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; z-index: 900; width: 48px; height: 48px; border: none; background: var(--white); border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; transform: translateY(12px); transition: all 0.4s ease; pointer-events: none; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 0 20px rgba(0,209,193,0.15); }
.scroll-top.visible.scroll-top--deep { box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 0 24px rgba(0,209,193,0.3), 0 0 48px rgba(0,209,193,0.12); }
.scroll-top:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.12), 0 0 28px rgba(0,209,193,0.35); }
.scroll-top__ring { position: absolute; inset: 0; width: 100%; height: 100%; }
.scroll-top__progress { stroke-dasharray: 131.95; stroke-dashoffset: 131.95; transition: stroke-dashoffset 0.1s linear; }
.scroll-top__arrow { position: relative; z-index: 1; color: var(--navy); }

/* ================================================
   ANIMATIONS
   ================================================ */
.enter { opacity: 0; transform: translateY(24px); animation: enterIn 0.8s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes enterIn { to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; transform: translateY(20px); transition: all 0.5s var(--ease); }
.anim.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .anim, .enter { opacity: 1; transform: none; animation: none; }
}

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .approach__split, .contact__split, .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .about__visual { display: none; }
  .pricing__cards { grid-template-columns: repeat(2, 1fr); }
  .insight-card { flex: 0 0 calc((100% - 16px) / 2); }
  .t-card { flex: 0 0 calc((100% - 16px) / 2); }
  .pd__content { max-width: 100%; }
  .pd__body { max-width: 680px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__content { padding-top: 120px; }
  .hero__btns { flex-direction: column; width: 100%; }
  .hero__btns .btn { width: 100%; }
  .hero__stats { flex-direction: row; gap: 24px; padding-bottom: 24px; }
  .hero__stats > div { flex: 1; }
  .hero__stats strong { font-size: 22px; }
  .hero__stats span { font-size: 11px; }
  .hero__scroll { display: none; }
  .svc-grid, .pricing__cards { grid-template-columns: 1fr; }
  .process__step { grid-template-columns: 32px 18px 1fr; gap: 0 16px; }
  .process__step::before { left: 56px; }
  .process__num { font-size: 13px; }
  .process__step:first-child::before { top: 38px; }
  .process__step:last-child::before { bottom: calc(100% - 38px); }
  .work__info { flex-direction: column; }
  .work__metrics { flex-direction: row; text-align: left; }
  .work__metrics div { text-align: left; }
  .form__row { grid-template-columns: 1fr; }
  .t-card { flex: 0 0 100%; }
  .footer__top { flex-direction: column; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .insight-card { flex: 0 0 100%; }
  .section-title { font-size: clamp(24px, 5vw, 48px); }
  .approach h2, .about__content h2, .contact h2 { font-size: clamp(24px, 5vw, 44px); }
  .process__tier { display: block; margin-left: 0; margin-top: 6px; }
  .logos__row img { height: 32px; }
  .about__stats { flex-direction: row; gap: 24px; }
  .about__stats > div { flex: 1; }
  .about__stats strong { font-size: 24px; }
  .about__stats span { font-size: 11px; }
  .pricing__tab { text-align: center; font-size: 12px; padding: 10px 16px; }
  .nav__wordmark-primary { font-size: 14px; letter-spacing: 0.12em; }
  .nav__wordmark-sub { font-size: 8px; }
  .compare__tab { font-size: 11px; padding: 6px 12px; }
  .logos__row { gap: 16px; }
  .logos__row img { height: 28px; }
  .pricing__desc { font-size: 14px; }
  .compare__grid { grid-template-columns: 1fr; }
  .compare__col:first-child { border-right: none; border-bottom: 1px solid var(--navy-light); }
  .compare__tabs { width: 100%; justify-content: center; }
  .compare__row { font-size: 13px; }
  .compare__row strong { font-size: 12px; }
}

/* ================================================
   WORK WALL — Masonry grid
   ================================================ */
.work__wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 56px;
  padding: 0 8px;
}

.work__tile {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  border-radius: 10px;
}

.work__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.work__tile:hover img { transform: scale(1.04); }

.work__tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,18,33,0.85) 0%, rgba(11,18,33,0.2) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.work__tile:hover .work__tile-overlay { opacity: 1; }

.work__tile-client {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.work__tile-overlay h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

/* ================================================
   PROJECT DETAIL OVERLAY
   ================================================ */
.project-detail {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--white);
  overflow-y: auto;
  display: none;
}

.project-detail.active {
  display: block;
  animation: pdSlideUp 0.4s var(--ease);
}

@keyframes pdSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.pd__header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2001;
  padding: 20px clamp(20px, 4vw, 64px);
}

.pd__back {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  background: rgba(248,248,246,0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--gray-1);
  padding: 10px 20px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pd__back:hover {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* Content wrapper — wider for hero, padded for body */
.pd__content {
  max-width: 1080px;
  margin: 0 auto;
  padding: 100px clamp(20px, 4vw, 40px) 80px;
}

/* Hero image — fills the full content wrapper */
.pd__hero { width: 100%; max-height: 520px; object-fit: cover; display: block; border-radius: var(--radius); margin-bottom: 48px; }

/* Inner padding for everything below the hero */
.pd__body { max-width: 760px; margin: 0 auto; }

/* Meta row — sentence case */
.pd__meta {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  flex-wrap: wrap;
  align-items: center;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-3);
}
.pd__logo { height: 20px; max-width: 100px; width: auto; object-fit: contain; object-position: left center; }
.pd__chip { font-size: 14px; font-weight: 500; color: var(--gray-3); background: none; border: none; padding: 0; }
.pd__chip--year { font-weight: 500; color: var(--gray-3); }
.pd__sep { margin: 0 10px; color: var(--gray-2); font-weight: 400; }

/* Title */
.pd__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  margin-bottom: 40px;
}

/* Metrics */
.pd__metrics { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--gray-1); }
.pd__metric { display: flex; flex-direction: column; gap: 6px; }
.pd__metric strong { font-family: var(--font-heading); font-size: 36px; font-weight: 800; letter-spacing: -0.03em; color: var(--text-dark); line-height: 1; }
.pd__metric span { font-family: var(--font-label); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-3); }

/* Intro / Overview — clearly larger */
.pd__intro { font-size: 20px; color: var(--gray-3); line-height: 1.7; margin-bottom: 48px; max-width: 75ch; }

/* Sections */
.pd__section { margin-bottom: 48px; }
.pd__section h3,
.pd__explore h3 { font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; letter-spacing: -0.02em; padding-left: 16px; border-left: 3px solid var(--teal); }
.pd__explore h3 { margin-bottom: 28px; }
.pd__section p { font-size: 16px; color: var(--gray-3); line-height: 1.75; margin-bottom: 16px; }
.pd__section p strong { color: var(--text-dark); }

/* Deliverables subsection */
.pd__section--deliverables h4 { font-family: var(--font-heading); font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; margin-top: 24px; }
.pd__section--deliverables h4:first-of-type { margin-top: 0; }
.pd__section--deliverables p { font-size: 15px; margin-bottom: 8px; }

/* Images — same width as body text */
.pd__images { display: flex; flex-direction: column; gap: 24px; margin-top: 48px; }
.pd__images img { width: 100%; height: auto; border-radius: var(--radius); border: 1px solid var(--gray-1); cursor: pointer; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease); }
.pd__images img:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 3000; background: rgba(11,18,33,0.92); display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(11,18,33,0.6); color: var(--text-light); display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.3s ease; backdrop-filter: blur(8px); }
.lightbox__nav:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }
.lightbox__close { position: absolute; top: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(11,18,33,0.6); color: var(--text-light); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 20px; transition: all 0.3s ease; backdrop-filter: blur(8px); }
.lightbox__close:hover { background: var(--teal); color: var(--navy); border-color: var(--teal); }

/* Disclaimer */
.pd__disclaimer { margin-top: 48px; padding: 20px 24px; background: var(--off-white); border-radius: var(--radius); font-size: 12px; color: var(--gray-3); line-height: 1.6; }
.pd__disclaimer strong { color: var(--gray-2); font-weight: 600; display: block; margin-bottom: 4px; font-family: var(--font-label); font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; }

/* Explore more / Prev/Next */
.pd__explore { margin-top: 72px; padding-top: 40px; border-top: 1px solid var(--gray-1); }
.pd__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.pd__nav-link { display: flex; flex-direction: column; gap: 10px; cursor: pointer; }
.pd__nav-link:hover .pd__nav-title { color: var(--teal); }
.pd__nav-link:hover .pd__nav-thumb { border-color: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.pd__nav-link--next { text-align: right; align-items: flex-end; }
.pd__nav-thumb { width: 100%; aspect-ratio: 16/10; border-radius: var(--radius); object-fit: cover; border: 1px solid var(--gray-1); transition: all 0.3s var(--ease); }
.pd__nav-label { font-family: var(--font-label); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-3); }
.pd__nav-title { font-family: var(--font-heading); font-size: 20px; font-weight: 700; color: var(--text-dark); line-height: 1.25; transition: color 0.3s; letter-spacing: -0.02em; }

@media (max-width: 768px) {
  .work__wall { grid-template-columns: repeat(2, 1fr); gap: 4px; padding: 0 4px; }
  .work__tile-overlay { opacity: 1; }
  .work__tile-overlay h3 { font-size: 13px; }
  .work__tile-client { font-size: 10px; font-weight: 800; }
  .pd__content { padding: 80px 16px 60px; }
  .pd__body { max-width: 100%; }
  .pd__hero { max-height: 280px; border-radius: 8px; margin-bottom: 28px; }
  .pd__meta { gap: 4px; font-size: 12px; }
  .pd__meta .pd__sep { margin: 0 6px; }
  .pd__chip { font-size: 12px; }
  .pd__logo { height: 16px; max-width: 80px; }
  .pd__content h2 { font-size: 24px; margin-bottom: 28px; }
  .pd__metrics { gap: 20px; margin-bottom: 32px; padding-bottom: 32px; }
  .pd__metric strong { font-size: 28px; }
  .pd__metric span { font-size: 10px; }
  .pd__intro { font-size: 17px; margin-bottom: 32px; }
  .pd__section { margin-bottom: 36px; }
  .pd__section h3, .pd__explore h3 { font-size: 20px; padding-left: 12px; }
  .pd__section--deliverables h4 { font-size: 15px; margin-top: 20px; }
  .pd__images { gap: 16px; margin-top: 36px; }
  .pd__nav { grid-template-columns: 1fr; gap: 20px; }
  .pd__nav-link--next { align-items: flex-start; text-align: left; }
  .pd__nav-title { font-size: 17px; }
  .pd__explore { margin-top: 48px; padding-top: 28px; }
  .lightbox__nav { width: 40px; height: 40px; }
  .lightbox__nav--prev { left: 12px; }
  .lightbox__nav--next { right: 12px; }
  .lightbox__close { top: 12px; right: 12px; width: 40px; height: 40px; }
}

@media (max-width: 480px) {
  .work__wall { grid-template-columns: 1fr; gap: 6px; }
  .work__tile { aspect-ratio: 16/9; }
  .hero h1 { font-size: 28px; }
  .hero__pill { font-size: 11px; padding: 6px 14px; }
  .hero__sub { font-size: 15px; }
  .hero__stats { gap: 16px; }
  .hero__stats strong { font-size: 18px; }
  .section-title { font-size: 24px; margin-bottom: 32px; }
  .svc { padding: 24px 20px; }
  .p-card { padding: 24px 20px; }
  .p-card__price strong { font-size: 28px; }
  .approach__card { padding: 20px; }
  .approach__icon { width: 36px; height: 36px; padding: 6px; }
  .about__stats { gap: 16px; }
  .about__stats strong { font-size: 20px; }
  .t-card { padding: 20px; }
  .faq__q { font-size: 14px; padding: 18px 0; }
  .contact__email { font-size: 15px; word-break: break-all; }
  .pd__content { padding: 72px 14px 48px; }
  .pd__content h2 { font-size: 22px; line-height: 1.2; margin-bottom: 24px; }
  .pd__hero { max-height: 200px; border-radius: 6px; margin-bottom: 24px; }
  .pd__metrics { gap: 16px; flex-direction: row; margin-bottom: 24px; padding-bottom: 24px; }
  .pd__metric { flex: 1; }
  .pd__metric strong { font-size: 22px; }
  .pd__intro { font-size: 16px; margin-bottom: 28px; }
  .pd__section h3, .pd__explore h3 { font-size: 18px; }
  .pd__section p { font-size: 15px; }
  .pd__nav-title { font-size: 15px; }
  .pd__nav-thumb { aspect-ratio: 16/9; }
  .compare__row { flex-direction: column; align-items: flex-start; gap: 2px; padding: 8px 0; }
  .compare__row strong { font-size: 13px; }
  .lightbox__nav { width: 36px; height: 36px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__img { max-width: 95vw; max-height: 80vh; }
  .nav__wordmark-primary { font-size: 13px; letter-spacing: 0.1em; }
  .nav__wordmark--inline .nav__wordmark-primary { font-size: 14px; }
  .nav__wordmark--inline .nav__wordmark-sub { font-size: 14px; }
  .work__note { font-size: 12px; }
}
