/* ============================================
   WEB DESIGN SERVICE PAGE
============================================ */


/* --- View transitions (morph from services hub) --- */
@view-transition { navigation: auto; }

::view-transition-group(web-title),
::view-transition-group(web-icon) {
  animation-duration: 0.55s;
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
}

::view-transition-old(web-title) { animation: vtOut 0.22s ease forwards; }
::view-transition-new(web-title) { animation: vtIn 0.4s 0.15s ease both; }
::view-transition-old(web-icon)  { animation: vtOut 0.18s ease forwards; }
::view-transition-new(web-icon)  { animation: vtIn 0.35s 0.1s ease both; }
::view-transition-old(root) { animation: vtOut 0.3s ease forwards; }
::view-transition-new(root) { animation: vtIn 0.4s ease both; }

@keyframes vtOut { to { opacity: 0; } }
@keyframes vtIn  { from { opacity: 0; } }


/* ============================================
   HERO — Full-height, light bg, two-column
============================================ */
.page-hero--web {
  min-height: 100vh;
  background: var(--off-white);
  display: flex;
  align-items: center;
  padding-top: 72px;
  position: relative;
  overflow: hidden;
}

/* Dot grid texture */
.page-hero--web::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 80% at 20% 50%, black 20%, transparent 75%);
  pointer-events: none;
}

/* Watermark number */
.hero-watermark {
  position: absolute;
  bottom: -2rem;
  left: -1rem;
  font-family: var(--serif);
  font-size: clamp(10rem, 22vw, 22rem);
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  z-index: 0;
}

/* Light-background breadcrumb variant */
.breadcrumb--light {
  color: rgba(17, 18, 16, 0.3);
}

.breadcrumb--light a:hover { color: rgba(17, 18, 16, 0.7); }

/* Two-column hero layout */
.hero-inner--web {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 3rem;
}

/* Hero icon — light page variant with view-transition-name */
.page-hero--web .hero-icon {
  view-transition-name: web-icon;
  width: 40px;
  height: 40px;
  color: var(--accent-dark);
  margin-bottom: 1.8rem;
  opacity: 0;
  animation: revealUp 0.6s 0.35s var(--ease-out) forwards;
}

/* Hero text overrides for light background */
.page-hero--web .hero-eyebrow {
  color: var(--accent-dark);
}

.page-hero--web .hero-h1 {
  view-transition-name: web-title;
  font-size: clamp(3rem, 5.5vw, 5.2rem);
  line-height: 1.04;
  color: var(--dark);
  letter-spacing: -0.03em;
}

.page-hero--web .hero-h1 em { color: var(--accent); }

.page-hero--web .hero-sub {
  color: var(--text-light);
  max-width: 44ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: revealUp 0.7s 0.85s var(--ease-out) forwards;
}


/* ============================================
   CSS BROWSER MOCKUP (hero right)
============================================ */
.hero-browser {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.browser-wrap {
  width: 100%;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  animation: revealUp 0.9s 0.7s var(--ease-out) forwards;
  filter: drop-shadow(0 24px 60px rgba(0, 0, 0, 0.12)) drop-shadow(0 4px 16px rgba(0, 0, 0, 0.08));
}

.browser-chrome {
  background: #e8e7e3;
  border-radius: 10px 10px 0 0;
  padding: 0.7rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dot:nth-child(1) { background: #FF5F57; }
.browser-dot:nth-child(2) { background: #FFBE2E; }
.browser-dot:nth-child(3) { background: #2BC840; }

.browser-url {
  flex: 1;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  height: 22px;
  display: flex;
  align-items: center;
  padding: 0 0.6rem;
  font-size: 0.68rem;
  color: rgba(0, 0, 0, 0.45);
  letter-spacing: 0.01em;
  font-family: var(--sans);
  gap: 0.4rem;
}

.browser-url-lock {
  width: 9px;
  height: 9px;
  opacity: 0.5;
  flex-shrink: 0;
}

/* URL text types in */
.browser-url-text {
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  animation: typeIn 0.6s 1.4s var(--ease-out) forwards;
}

@keyframes typeIn {
  from { width: 0; opacity: 0; }
  to   { width: 180px; opacity: 1; }
}

.browser-body {
  background: #fff;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
}

/* Site nav inside browser */
.site-nav-bar {
  background: #111;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  gap: 1.2rem;
  transform: translateY(-36px);
  animation: slideDown 0.5s 1.2s var(--ease-out) forwards;
}

@keyframes slideDown { to { transform: translateY(0); } }

.site-nav-logo-mock {
  font-family: var(--serif);
  font-size: 0.8rem;
  color: rgba(247, 246, 242, 0.9);
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

.site-nav-links-mock {
  display: flex;
  gap: 0.9rem;
  margin-left: auto;
}

.site-nav-link-mock {
  width: 28px;
  height: 4px;
  background: rgba(247, 246, 242, 0.25);
  border-radius: 2px;
}

.site-nav-link-mock.cta-mock {
  width: 44px;
  background: var(--accent);
  opacity: 0.8;
}

/* Hero section inside browser */
.site-hero-mock {
  background: linear-gradient(135deg, #111210 60%, #1a2535 100%);
  padding: 1.4rem 1.2rem 1.6rem;
  position: relative;
  overflow: hidden;
}

.site-hero-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(74, 143, 216, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 143, 216, 0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.site-hero-eyebrow-mock {
  width: 60px;
  height: 5px;
  background: var(--accent);
  border-radius: 2px;
  margin-bottom: 0.7rem;
  opacity: 0;
  animation: fadeIn 0.4s 1.55s forwards;
}

.site-hero-h1-mock {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0.8rem;
}

.site-hero-h1-line {
  height: 10px;
  background: rgba(247, 246, 242, 0.9);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
}

.site-hero-h1-line:nth-child(1) { width: 80%; animation: scaleIn 0.4s 1.65s var(--ease-out) forwards; }
.site-hero-h1-line:nth-child(2) { width: 60%; background: var(--accent); animation: scaleIn 0.35s 1.8s var(--ease-out) forwards; }

@keyframes scaleIn { to { transform: scaleX(1); } }

.site-hero-sub-mock {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 1rem;
}

.site-hero-sub-line {
  height: 5px;
  background: rgba(247, 246, 242, 0.25);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
}

.site-hero-sub-line:nth-child(1) { width: 90%; animation: scaleIn 0.35s 1.95s var(--ease-out) forwards; }
.site-hero-sub-line:nth-child(2) { width: 70%; animation: scaleIn 0.3s 2.05s var(--ease-out) forwards; }

.site-hero-btn-mock {
  width: 80px;
  height: 18px;
  background: var(--accent-dark);
  border-radius: 2px;
  opacity: 0;
  animation: fadeIn 0.4s 2.15s forwards;
}

/* Content blocks inside browser */
.site-content-mock {
  padding: 1rem 1.2rem 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
}

.site-block-mock {
  background: var(--off-white);
  border-radius: 3px;
  padding: 0.7rem;
  opacity: 0;
}

.site-block-mock:nth-child(1) { animation: fadeIn 0.4s 2.3s forwards; }
.site-block-mock:nth-child(2) { animation: fadeIn 0.4s 2.45s forwards; }
.site-block-mock:nth-child(3) { animation: fadeIn 0.4s 2.6s forwards; }

.site-block-icon-mock {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 3px;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.site-block-title-mock {
  height: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

.site-block-body-mock {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.site-block-body-line {
  height: 4px;
  background: rgba(0, 0, 0, 0.12);
  border-radius: 2px;
}

.site-block-body-line:last-child { width: 60%; }


/* ============================================
   STATEMENT — full-bleed dark, pure typography
============================================ */
.section-statement {
  background: var(--dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.section-statement::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 15% 50%, rgba(74, 143, 216, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.statement-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: center;
}

.statement-label {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.6;
}

.statement-label span {
  display: block;
  color: rgba(247, 246, 242, 0.2);
  margin-top: 0.5rem;
  font-size: 0.6rem;
}

.statement-pull {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3.2rem);
  line-height: 1.18;
  color: var(--white);
  letter-spacing: -0.02em;
}

.statement-pull em { font-style: italic; color: var(--accent); }

.statement-pull strong {
  font-weight: 400;
  color: rgba(247, 246, 242, 0.4);
}


/* ============================================
   CAPABILITIES — expandable rows
============================================ */
.section-capabilities {
  background: var(--white);
  padding: 8rem 0;
}

.section-capabilities .section-eyebrow { color: var(--accent-dark); }
.section-capabilities .section-heading { color: var(--dark); }

.cap-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}

.cap-header-right {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

.cap-rows { border-top: 1px solid rgba(0, 0, 0, 0.07); }

.cap-row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  cursor: pointer;
  transition: background 0.2s;
}

.cap-row:hover { background: rgba(0, 0, 0, 0.015); }
.cap-row.active { background: rgba(23, 79, 139, 0.03); }

.cap-row-trigger {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto 2rem;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0;
  user-select: none;
}

.cap-row-num {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.12);
  line-height: 1;
  letter-spacing: -0.03em;
}

.cap-row.active .cap-row-num { color: var(--accent-dark); }

.cap-row-left {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cap-row-title {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--dark);
  line-height: 1.15;
}

.cap-row-tagline {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
}

.cap-row-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cap-row-tag {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border: 1px solid rgba(23, 79, 139, 0.2);
  padding: 0.2rem 0.55rem;
  border-radius: 2px;
  font-weight: 500;
  white-space: nowrap;
}

.cap-row-chevron {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  transition: transform 0.35s var(--ease-out), color 0.2s;
  flex-shrink: 0;
}

.cap-row.active .cap-row-chevron {
  transform: rotate(45deg);
  color: var(--accent-dark);
}

/* Expandable content */
.cap-row-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease-out);
}

.cap-row.active .cap-row-body { grid-template-rows: 1fr; }

.cap-row-body-inner { overflow: hidden; }

.cap-row-body-content {
  padding: 0 0 2.2rem 5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cap-row-body-text {
  font-size: 0.88rem;
  line-height: 1.82;
  color: var(--text-light);
  font-weight: 300;
}

.cap-row-body-text p + p { margin-top: 0.8rem; }

/* Mini visual panel inside each row */
.cap-mini-visual {
  background: var(--off-white);
  border-radius: 4px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cap-mini-title {
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.2rem;
}

/* Generic bar chart */
.mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 48px;
}

.mini-bar {
  flex: 1;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
  opacity: 0.25;
  min-height: 8px;
}

.mini-bar.hi { opacity: 0.85; }
.mini-bar.md { opacity: 0.55; }

/* Wireframe visual */
.mini-wireframe { display: flex; flex-direction: column; gap: 5px; }
.mini-wf-nav { height: 8px; background: var(--dark); border-radius: 2px; opacity: 0.7; }
.mini-wf-hero { height: 22px; background: var(--dark); border-radius: 2px; opacity: 0.3; }
.mini-wf-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 4px; }
.mini-wf-block { height: 16px; background: var(--dark); border-radius: 2px; opacity: 0.15; }

/* Type system visual */
.mini-type-system { display: flex; flex-direction: column; gap: 6px; }
.mini-type-line { border-radius: 2px; background: var(--dark); }
.mini-type-h1 { height: 12px; width: 70%; }
.mini-type-h2 { height: 8px; width: 55%; opacity: 0.5; }
.mini-type-body { height: 5px; width: 80%; opacity: 0.25; }
.mini-type-body + .mini-type-body { width: 65%; }

.mini-swatches {
  display: flex;
  gap: 5px;
  margin-top: 4px;
}

.mini-swatch {
  width: 20px;
  height: 20px;
  border-radius: 3px;
}

/* Code visual */
.mini-code {
  font-size: 0.58rem;
  font-family: monospace;
  color: var(--text-light);
  line-height: 1.6;
}

.mini-code .kw { color: var(--accent); }
.mini-code .fn { color: var(--accent-dark); }

/* Score bars */
.mini-scores { display: flex; flex-direction: column; gap: 6px; }

.mini-score-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.mini-score-label {
  font-size: 0.6rem;
  color: var(--text-light);
  flex: 1;
}

.mini-score-track {
  flex: 2;
  height: 4px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
}

.mini-score-fill {
  height: 100%;
  border-radius: 2px;
  background: var(--accent);
}

.mini-score-val {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--accent-dark);
  width: 24px;
  text-align: right;
}


/* ============================================
   LIGHTHOUSE SCORE RINGS
============================================ */
.section-scores {
  background: var(--accent-dark);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

.section-scores::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.scores-layout {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 6rem;
  align-items: center;
}

.scores-intro .section-eyebrow { color: rgba(247, 246, 242, 0.4); }

.scores-heading {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}

.scores-heading em { font-style: italic; color: rgba(247, 246, 242, 0.5); }

.scores-body {
  font-size: 0.88rem;
  line-height: 1.78;
  color: rgba(247, 246, 242, 0.5);
  font-weight: 300;
}

/* Score rings grid */
.scores-rings {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.score-ring-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}

.score-ring-svg { overflow: visible; }
.ring-svg-container { position: relative; }

/* Ring circle */
.ring-track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 5;
}

.ring-fill {
  fill: none;
  stroke-width: 5;
  stroke-linecap: round;
  transform: rotate(-90deg);
  transform-origin: center;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each ring: stroke color, initial dasharray/offset, animated offset */
.ring-fill.perf { stroke: #4ade80; stroke-dasharray: 220; stroke-dashoffset: 220; }
.ring-fill.seo  { stroke: var(--accent); stroke-dasharray: 220; stroke-dashoffset: 220; }
.ring-fill.a11y { stroke: #facc15; stroke-dasharray: 220; stroke-dashoffset: 220; }
.ring-fill.bp   { stroke: #f97316; stroke-dasharray: 220; stroke-dashoffset: 220; }

/* Animated state: dashoffset = 220 - (score/100 × 220) */
.ring-fill.perf.animate { stroke-dashoffset: 13.2; }   /* 94 */
.ring-fill.seo.animate  { stroke-dashoffset: 0; }      /* 100 */
.ring-fill.a11y.animate { stroke-dashoffset: 11; }     /* 95 */
.ring-fill.bp.animate   { stroke-dashoffset: 8.8; }    /* 96 */

.ring-num-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ring-num {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.04em;
}

.ring-num-label {
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247, 246, 242, 0.35);
  font-weight: 500;
  text-align: center;
  margin-top: 0.4rem;
}


/* ============================================
   PROCESS — horizontal timeline
============================================ */
.section-process {
  background: var(--off-white);
  padding: 8rem 0;
}

.section-process .section-eyebrow { color: var(--accent-dark); }
.section-process .section-heading { color: var(--dark); }

.process-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}

.process-header-right {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
}

/* Timeline grid */
.process-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 2.2rem;
  left: calc(10% + 1rem);
  right: calc(10% + 1rem);
  height: 1px;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

.process-phase {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Phase node */
.phase-node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
}

.process-phase:hover .phase-node {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.phase-node svg {
  width: 18px;
  height: 18px;
  color: var(--accent-dark);
  transition: color 0.2s;
}

.process-phase:hover .phase-node svg { color: var(--white); }

.phase-duration {
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.phase-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.phase-body {
  font-size: 0.75rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 300;
}


/* ============================================
   PROOF — why NWA + testimonial
============================================ */
.section-proof {
  background: var(--white);
  padding: 8rem 0;
}

.proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}

.proof-left .section-eyebrow { color: var(--accent-dark); }
.proof-left .section-heading { color: var(--dark); margin-bottom: 2rem; }

.proof-points { display: flex; flex-direction: column; gap: 1.5rem; }

.proof-point {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
  align-items: start;
}

.proof-point-icon {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 2px;
  background: rgba(23, 79, 139, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-dark);
  margin-top: 1px;
}

.proof-point-icon svg { width: 14px; height: 14px; }

.proof-point-title {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.proof-point-body {
  font-size: 0.82rem;
  line-height: 1.65;
  color: var(--text-light);
  font-weight: 300;
}

/* Stats grid */
.proof-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 1.5rem;
}

.proof-stat {
  background: var(--white);
  padding: 2rem 1.8rem;
  transition: background 0.2s;
}

.proof-stat:hover { background: var(--off-white); }

.proof-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--accent-dark);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.proof-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.45;
}

/* Testimonial */
.testimonial-pull {
  background: var(--dark);
  padding: 2.5rem;
  position: relative;
}

.testimonial-pull::before {
  content: '"';
  font-family: var(--serif);
  font-size: 7rem;
  color: rgba(247, 246, 242, 0.04);
  position: absolute;
  top: 0;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonial-text em { font-style: italic; color: var(--accent); }

.testimonial-divider {
  width: 2.5rem;
  height: 1px;
  background: rgba(247, 246, 242, 0.12);
  margin-bottom: 1.2rem;
}

.testimonial-author {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(247, 246, 242, 0.8);
  display: block;
  margin-bottom: 0.2rem;
}

.testimonial-role {
  font-size: 0.73rem;
  color: rgba(247, 246, 242, 0.32);
  font-weight: 300;
}


/* ============================================
   FAQ
============================================ */
.section-faq {
  background: var(--off-white);
  padding: 8rem 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 8rem;
  align-items: start;
}

.faq-left .section-eyebrow { color: var(--accent-dark); }
.faq-left .section-heading { color: var(--dark); margin-bottom: 1.2rem; }

.faq-left-body {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2rem;
}

.faq-left-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-dark);
  border-bottom: 1px solid rgba(23, 79, 139, 0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.faq-left-cta:hover { color: var(--accent); border-color: var(--accent); }
.faq-left-cta svg { transition: transform 0.2s; }
.faq-left-cta:hover svg { transform: translateX(3px); }

.faq-list {
  list-style: none;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.faq-item { border-bottom: 1px solid rgba(0, 0, 0, 0.07); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  transition: color 0.2s;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--sans);
}

.faq-question:hover { color: var(--accent-dark); }
.faq-question[aria-expanded="true"] { color: var(--accent-dark); }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--text-light);
  transition: transform 0.3s var(--ease-out), color 0.2s;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  color: var(--accent-dark);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.faq-answer.open { grid-template-rows: 1fr; }

.faq-answer-inner { overflow: hidden; }

.faq-answer-inner p {
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--text-light);
  font-weight: 300;
  padding-bottom: 1.5rem;
}


/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .hero-inner--web { grid-template-columns: 1fr; }
  .hero-browser { display: none; }

  .statement-inner { grid-template-columns: 1fr; gap: 2rem; }

  .cap-header,
  .process-header { grid-template-columns: 1fr; gap: 3rem; }

  .cap-row-body-content { grid-template-columns: 1fr; }

  .scores-layout { grid-template-columns: 1fr; gap: 3rem; }
  .scores-rings { grid-template-columns: repeat(2, 1fr); }

  .process-timeline {
    grid-template-columns: 1fr 1fr;
  }
  .process-timeline::before { display: none; }

  .proof-grid { grid-template-columns: 1fr; gap: 4rem; }

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

@media (max-width: 768px) {
  .hero-inner--web { padding: 4rem 1.5rem; }

  .statement-inner { padding: 0 1.5rem; }

  .cap-row-trigger { grid-template-columns: 3rem 1fr 1.5rem; }
  .cap-row-tags { display: none; }
  .cap-row-body-content { padding: 0 0 2rem 3rem; }

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

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

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

  .section-statement { padding: 5rem 0; }
  .section-capabilities { padding: 5rem 0; }
  .section-scores { padding: 5rem 0; }
  .section-process { padding: 5rem 0; }
  .section-proof { padding: 5rem 0; }
  .section-faq { padding: 5rem 0; }
}