/* =====================================================
   BRANDSHIELD — Complete Redesign
   Design: Premium Editorial × Intelligence Aesthetic
   Fonts: Cormorant (serif display) + DM Sans (body)
   Colors: Near-black + Bourbon Gold + Indigo CTA
   ===================================================== */

/* ─── CSS VARIABLES ─── */
:root {
  --font-display: "Cormorant", Georgia, serif;
  --font-body: "DM Sans", "Helvetica Neue", Arial, sans-serif;

  /* Light theme */
  --bg: #F6F2EA;
  --surface: #FFFFFF;
  --card: #FEFDFB;
  --border: rgba(12, 9, 20, 0.08);
  --border-strong: rgba(12, 9, 20, 0.15);
  --text: #0C0914;
  --muted: rgba(12, 9, 20, 0.52);
  --accent: #A67826;
  --accent-dim: rgba(166, 120, 38, 0.10);
  --accent-glow: rgba(166, 120, 38, 0.20);
  --cta: #3B5EE8;
  --cta-hover: #2C4FD4;
  --cta-text: #ffffff;
  --shadow: 0 8px 32px rgba(12, 9, 20, 0.10), 0 2px 8px rgba(12, 9, 20, 0.06);
  --shadow-lg: 0 24px 64px rgba(12, 9, 20, 0.14);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='500' height='500' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  color-scheme: light;
}

body.theme-dark {
  --bg: #08080F;
  --surface: #0E0E1A;
  --card: #131320;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #EDE8F5;
  --muted: rgba(237, 232, 245, 0.50);
  --accent: #C9A84C;
  --accent-dim: rgba(201, 168, 76, 0.12);
  --accent-glow: rgba(201, 168, 76, 0.25);
  --cta: #4A6CF7;
  --cta-hover: #3A5BDF;
  --cta-text: #ffffff;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 2px 8px rgba(0, 0, 0, 0.20);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.55);
  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='500' height='500'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='500' height='500' filter='url(%23n)' opacity='0.18'/%3E%3C/svg%3E");
  color-scheme: dark;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.72;
  background: var(--bg);
  color: var(--text);
  transition: background 0.45s ease, color 0.45s ease;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* ─── SCROLL PROGRESS BAR ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--accent);
  z-index: 300;
  transition: width 0.1s linear;
}

/* ─── NOISE TEXTURE OVERLAY ─── */
.noise-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: var(--noise);
  mix-blend-mode: soft-light;
  opacity: 0.3;
  z-index: 1;
}

/* ─── LAYOUT CONTAINER ─── */
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── TYPOGRAPHY UTILITIES ─── */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-header {
  max-width: 660px;
  margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.75rem;
}

.section-sub {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  background: var(--cta);
  color: var(--cta-text);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(74, 108, 247, 0.35);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--cta-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74, 108, 247, 0.45);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  background: transparent;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: var(--accent-dim);
  transform: translateY(-2px);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-book:hover {
  background: var(--accent);
  color: #08080F;
}

.btn-book-footer {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid #C9A84C;
  color: #C9A84C;
  font-weight: 600;
  font-size: 0.875rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-book-footer:hover {
  background: #C9A84C;
  color: #08080F;
}

.btn-submit {
  width: 100%;
  justify-content: center;
  border-radius: 12px;
  padding: 1rem 2rem;
  font-size: 1rem;
}

/* ─── THEME TOGGLE BUTTON ─── */
.theme-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: transparent;
  color: var(--text);
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s, transform 0.25s;
  overflow: hidden;
}

.theme-toggle:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: rotate(20deg);
}

.theme-toggle svg {
  position: absolute;
  width: 17px;
  height: 17px;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* Dark mode: show sun (click to switch to light) */
body.theme-dark .icon-sun { opacity: 1; transform: scale(1) rotate(0deg); }
body.theme-dark .icon-moon { opacity: 0; transform: scale(0.4) rotate(-30deg); }

/* Light mode: show moon (click to switch to dark) */
body:not(.theme-dark) .icon-sun { opacity: 0; transform: scale(0.4) rotate(30deg); }
body:not(.theme-dark) .icon-moon { opacity: 1; transform: scale(1) rotate(0deg); }

/* ─── SITE HEADER ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
}

.site-header.scrolled {
  background: rgba(8, 8, 15, 0.88);
  border-bottom-color: var(--border);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

body:not(.theme-dark) .site-header.scrolled {
  background: rgba(246, 242, 234, 0.90);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Brand wordmark */
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.footer-logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.footer-icon {
  width: 44px;
  height: 44px;
}

.brand-wordmark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
  line-height: 1;
}

.brand-dot {
  color: var(--accent);
}

/* Primary nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
}

.primary-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  position: relative;
  padding-bottom: 2px;
  transition: color 0.2s;
}

.primary-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.primary-nav a:hover,
.primary-nav a.active {
  color: var(--text);
}

.primary-nav a:hover::after,
.primary-nav a.active::after {
  transform: scaleX(1);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Mobile hamburger */
.nav-trigger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  color: var(--text);
  flex-shrink: 0;
}

.burger-line {
  display: block;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.open .burger-line:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.site-header.open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.site-header.open .burger-line:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── PANEL BASE ─── */
.panel {
  padding: clamp(4rem, 7vw, 7rem) 0;
}

.panel-alt {
  background: var(--surface);
}

/* ─── HERO ─── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  padding: clamp(5rem, 8vw, 8rem) 0 clamp(4rem, 6vw, 6rem);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 30%, rgba(201, 168, 76, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(74, 108, 247, 0.12) 0%, transparent 60%);
  z-index: 0;
}

body:not(.theme-dark) .hero::before {
  background:
    radial-gradient(ellipse 70% 60% at 15% 30%, rgba(166, 120, 38, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 85% 70%, rgba(59, 94, 232, 0.06) 0%, transparent 60%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: clamp(2rem, 4vw, 5rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero copy */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  margin-bottom: 1.25rem;
}

.eyebrow-gem {
  font-size: 0.6rem;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.25rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.hero-cycle {
  display: inline;
  white-space: nowrap;
}

.cycle-word {
  color: var(--accent);
  font-style: italic;
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cycle-word.cycle-out {
  opacity: 0;
  transform: translateY(-10px);
}

.cycle-word.cycle-in {
  opacity: 0;
  transform: translateY(10px);
}

.hero-sub-h1 {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-style: italic;
}

.hero-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 520px;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* Hero stats chips */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  background: var(--accent-dim);
  white-space: nowrap;
}

.stat-chip strong {
  color: var(--text);
  font-weight: 700;
}

.stat-chip--gold {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.stat-gem {
  font-size: 0.6rem;
  color: var(--accent);
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shield-glow {
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(40px);
  z-index: 0;
}

.shield-svg {
  width: min(380px, 100%);
  height: auto;
  color: var(--accent);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px var(--accent-glow));
}

.shield-outer {
  stroke: currentColor;
  stroke-width: 1.5;
}

.shield-inner {
  stroke: currentColor;
  stroke-width: 0.75;
  opacity: 0.35;
}

.shield-grid line {
  stroke: currentColor;
  stroke-width: 0.5;
  opacity: 0.15;
}

.scan-beam {
  opacity: 0;
  animation: scanBeam 4s linear infinite;
}

@keyframes scanBeam {
  0%   { transform: translateY(0); opacity: 0; }
  4%   { opacity: 0.55; }
  88%  { opacity: 0.55; }
  100% { transform: translateY(310px); opacity: 0; }
}

.crosshair-line {
  stroke: currentColor;
  stroke-width: 1;
  opacity: 0.6;
}

.center-dot {
  opacity: 0.9;
  animation: dotPulse 2.5s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.data-point {
  fill: currentColor;
  animation: dataPulse 3s ease-in-out infinite;
}

@keyframes dataPulse {
  0%, 100% { opacity: 0.7; r: 3.5; }
  50%       { opacity: 0.2; r: 2; }
}

/* Shield labels */
.shield-labels {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.shield-tag {
  position: absolute;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.65;
  white-space: nowrap;
}

.shield-tag--tl { top: 32%; left: 2%; }
.shield-tag--tr { top: 32%; right: 2%; }
.shield-tag--bl { bottom: 28%; left: 2%; }
.shield-tag--br { bottom: 28%; right: 2%; }

/* ─── TRUST STRIP ─── */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-strip .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.trust-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  flex-shrink: 0;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.trust-dot {
  opacity: 0.3;
  font-size: 1.2rem;
  line-height: 1;
}

/* ─── WHO WE HELP ─── */
.who-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.who-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}

.who-item:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.who-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--accent-dim);
  color: var(--accent);
  flex-shrink: 0;
}

.who-icon svg {
  width: 22px;
  height: 22px;
}

.who-item span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.4;
}

/* ─── SERVICES ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2.25rem 2rem 2rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}

.service-card:hover::before {
  transform: scaleY(1);
}

.card-number {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  opacity: 0.5;
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  flex-grow: 1;
}

.card-features {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 0;
}

.card-features li {
  font-size: 0.875rem;
  color: var(--muted);
  padding-left: 1.2em;
  position: relative;
}

.card-features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.5rem;
  transition: gap 0.2s ease;
}

.card-cta:hover {
  gap: 0.65rem;
}

/* ─── PLATFORMS ─── */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
}

.platform-badge {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--card);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  letter-spacing: 0.03em;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.platform-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

/* ─── BENEFITS ─── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3.5rem 6rem;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  position: relative;
}

.benefit-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  letter-spacing: -0.04em;
  margin-bottom: -0.25rem;
}

.benefit-item h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

.benefit-item p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.benefit-rule {
  height: 1px;
  background: var(--accent);
  opacity: 0.2;
  margin-top: 0.75rem;
  width: 40px;
}

/* ─── PROCESS ─── */
.process-section {
  position: relative;
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 24px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 1px;
  border-top: 1px dashed var(--accent);
  opacity: 0.3;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  background: var(--bg);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--accent);
  flex-shrink: 0;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover .step-number {
  background: var(--accent-dim);
  box-shadow: 0 0 0 6px var(--accent-dim);
}

.step-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.8vw, 1.4rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

.step-note {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.8;
  letter-spacing: 0.03em;
}

/* ─── SOCIAL PROOF BAND ─── */
.proof-band {
  background: #0A0A14;
  color: #EDE8F5;
  padding: clamp(3rem, 5vw, 5rem) 0;
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.proof-band-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}

.proof-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  letter-spacing: -0.02em;
}

.proof-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(237, 232, 245, 0.55);
}

.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(201, 168, 76, 0.2);
  justify-self: center;
}

.proof-case-study {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: rgba(237, 232, 245, 0.60);
  line-height: 1.7;
}

.proof-case-study em {
  color: #C9A84C;
  font-style: normal;
  font-weight: 600;
}

/* ─── TESTIMONIALS ─── */
.testimonial-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.slider-window {
  overflow: hidden;
}

.slider-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 auto;
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  min-height: 240px;
}

.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: -0.5rem;
  user-select: none;
}

.quote-text {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text);
  font-style: italic;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
}

.author-name {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
}

.author-role {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Carousel buttons */
.carousel-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--card);
  color: var(--text);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-btn:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  transform: scale(1.08);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dots button {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  border: none;
  background: var(--border-strong);
  cursor: pointer;
  transition: background 0.25s ease, width 0.25s ease;
}

.carousel-dots button.active {
  background: var(--accent);
  width: 40px;
}

/* ─── CALENDLY ─── */
.calendly-note {
  font-size: 0.825rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.5rem;
  letter-spacing: 0.02em;
}

.calendly-wrapper {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  box-shadow: var(--shadow);
}

.calendly-wrapper iframe {
  width: 100%;
  min-height: 640px;
  display: block;
  background: var(--card);
}

/* ─── FAQ ─── */
.faq-section .container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  padding: 1.375rem 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-trigger:hover {
  color: var(--accent);
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: transform 0.35s ease;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.open .faq-panel {
  max-height: 300px;
}

.faq-panel p {
  padding-bottom: 1.375rem;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 0.875rem;
}

.contact-sub {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.72;
  margin-bottom: 1.75rem;
}

.contact-email {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.01em;
  word-break: break-all;
  margin-bottom: 0.75rem;
  transition: opacity 0.2s;
}

.contact-email:hover {
  opacity: 0.75;
}

.contact-note {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 500;
}

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2.25rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-field label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.required {
  color: var(--accent);
}

.form-field input,
.form-field textarea {
  border-radius: 10px;
  border: 1px solid var(--border-strong);
  padding: 0.825rem 1rem;
  font: inherit;
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--muted);
  opacity: 0.6;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.honeypot {
  display: none !important;
  visibility: hidden;
  position: absolute;
}

.form-response {
  font-size: 0.875rem;
  min-height: 1.25rem;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #06060A;
  color: #EDE8F5;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: clamp(2.5rem, 4vw, 4rem);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr auto;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: #EDE8F5;
  display: block;
  margin-bottom: 0.625rem;
}

.footer-tagline {
  font-size: 0.875rem;
  color: rgba(237, 232, 245, 0.45);
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: rgba(237, 232, 245, 0.5);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #C9A84C;
}

.footer-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.875rem;
}

.footer-actions .theme-toggle {
  color: rgba(237, 232, 245, 0.7);
  border-color: rgba(255, 255, 255, 0.15);
}

.footer-actions .theme-toggle .icon-sun { opacity: 1; transform: scale(1); }
.footer-actions .theme-toggle .icon-moon { opacity: 0; transform: scale(0.4) rotate(-30deg); }

body:not(.theme-dark) .footer-actions .theme-toggle .icon-sun { opacity: 0; transform: scale(0.4) rotate(30deg); }
body:not(.theme-dark) .footer-actions .theme-toggle .icon-moon { opacity: 1; transform: scale(1); }

.footer-bottom {
  padding: 1.25rem 0;
  text-align: center;
}

.copyright {
  font-size: 0.8rem;
  color: rgba(237, 232, 245, 0.35);
}

/* ─── SCROLL REVEAL ANIMATIONS ─── */
.reveal-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid children */
.services-grid .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal-item:nth-child(3) { transition-delay: 0.2s; }

.platforms-grid .reveal-item:nth-child(2)  { transition-delay: 0.05s; }
.platforms-grid .reveal-item:nth-child(3)  { transition-delay: 0.10s; }
.platforms-grid .reveal-item:nth-child(4)  { transition-delay: 0.15s; }
.platforms-grid .reveal-item:nth-child(5)  { transition-delay: 0.20s; }
.platforms-grid .reveal-item:nth-child(6)  { transition-delay: 0.25s; }
.platforms-grid .reveal-item:nth-child(7)  { transition-delay: 0.05s; }
.platforms-grid .reveal-item:nth-child(8)  { transition-delay: 0.10s; }
.platforms-grid .reveal-item:nth-child(9)  { transition-delay: 0.15s; }
.platforms-grid .reveal-item:nth-child(10) { transition-delay: 0.20s; }
.platforms-grid .reveal-item:nth-child(11) { transition-delay: 0.25s; }
.platforms-grid .reveal-item:nth-child(12) { transition-delay: 0.30s; }

.who-grid .reveal-item:nth-child(2) { transition-delay: 0.07s; }
.who-grid .reveal-item:nth-child(3) { transition-delay: 0.14s; }
.who-grid .reveal-item:nth-child(4) { transition-delay: 0.21s; }
.who-grid .reveal-item:nth-child(5) { transition-delay: 0.28s; }
.who-grid .reveal-item:nth-child(6) { transition-delay: 0.35s; }

.benefits-grid .reveal-item:nth-child(2)  { transition-delay: 0.10s; }
.benefits-grid .reveal-item:nth-child(3)  { transition-delay: 0.05s; }
.benefits-grid .reveal-item:nth-child(4)  { transition-delay: 0.15s; }
.benefits-grid .reveal-item:nth-child(5)  { transition-delay: 0.10s; }

.process-track .reveal-item:nth-child(2) { transition-delay: 0.10s; }
.process-track .reveal-item:nth-child(3) { transition-delay: 0.20s; }
.process-track .reveal-item:nth-child(4) { transition-delay: 0.30s; }

/* ─── RESPONSIVE — TABLET (< 1024px) ─── */
@media (max-width: 1023px) {
  .who-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .platforms-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .services-grid .service-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.75rem);
  }
}

/* ─── RESPONSIVE — TABLET (< 900px) ─── */
@media (max-width: 899px) {
  /* Header mobile */
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 5vw 1.75rem;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 99;
    box-shadow: var(--shadow-lg);
  }

  .primary-nav a {
    padding: 0.75rem 0;
    font-size: 1.05rem;
    width: 100%;
    border-bottom: 1px solid var(--border);
    color: var(--text);
  }

  .primary-nav a:last-child {
    border-bottom: none;
  }

  .site-header.open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-trigger {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  /* Hero stacks */
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-visual {
    order: 2;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-body {
    text-align: center;
  }

  /* Services: 1 column */
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card:last-child {
    grid-column: auto;
    max-width: 100%;
  }

  /* Process: vertical */
  .process-track {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-track::before {
    display: none;
  }

  .process-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .process-step .step-number {
    margin-top: 0;
  }

  /* Proof band: vertical */
  .proof-band-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .proof-divider {
    display: none;
  }

  /* Calendly */
  .calendly-wrapper iframe {
    min-height: 520px;
  }

  /* Contact stacks */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Footer stacks */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-actions {
    flex-direction: row;
    align-items: center;
  }
}

/* ─── RESPONSIVE — MOBILE (< 640px) ─── */
@media (max-width: 639px) {
  /* Hero visual hidden on very small screens */
  .hero-visual {
    display: none;
  }

  .who-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

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

  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .trust-strip .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .trust-logos {
    gap: 0.4rem;
    font-size: 0.82rem;
  }

  .stat-chip {
    font-size: 0.78rem;
    padding: 0.4rem 0.75rem;
  }

  .hero-headline {
    font-size: clamp(2.5rem, 9vw, 3.5rem);
  }

  .contact-form {
    padding: 1.5rem;
  }

  .calendly-wrapper iframe {
    min-height: 480px;
  }
}

/* ─── RESPONSIVE — SMALL MOBILE (< 375px) ─── */
@media (max-width: 374px) {
  .hero-headline {
    font-size: 2.25rem;
  }

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

  .btn-primary,
  .btn-ghost {
    text-align: center;
    justify-content: center;
  }

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

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

/* ─── ACCESSIBILITY: REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ─── FOCUS VISIBLE (ACCESSIBILITY) ─── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
