﻿/* ── Numeric font override ──
   Use DM Sans for digits/symbols inside any font context. */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 100 900;
  src: url('https://fonts.bunny.net/dm-sans/files/dm-sans-latin-400-normal.woff2') format('woff2');
  unicode-range: U+0030-0039, U+0025, U+002B, U+002D, U+002E, U+002C, U+0024, U+20AC, U+00B0, U+2013, U+00D7;
}

:root {
  --black: #080808;
  --black-2: #111117;
  --black-3: #1A1A24;
  --purple-deep: #3B0764;
  --purple: #6D28D9;
  --purple-mid: #7C3AED;
  --purple-light: #A855F7;
  --purple-glow: rgba(109, 40, 217, 0.18);
  --white: #FFFFFF;
  --white-dim: #E8E8EE;
  --grey-dark: #4B4B5A;
  --grey: #6B6B7E;
  --grey-light: #9B9BAE;
  --grey-border: rgba(255, 255, 255, 0.08);
  --grey-border-2: rgba(255, 255, 255, 0.12);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
}

/* ── Scrollbar ── */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--black);
}

::-webkit-scrollbar-thumb {
  background: rgba(109, 40, 217, 0.35);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--purple-mid);
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgba(109, 40, 217, 0.35) var(--black);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════ NAV ═══════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-bottom 0.4s ease, backdrop-filter 0.4s ease;
}

nav.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-border);
}

.nav-logo {
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 24px;
  font-weight: 400;
  margin-left: -12px;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo span {
  color: var(--purple-light);
  margin-left: -3px;
}

.nav-logo-img {
  height: 55px;
  width: auto;
  display: block;
}


.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  opacity: 0;
  pointer-events: none;
  transition: background 0.2s, transform 0.2s, opacity 0.3s;
  background: var(--purple-mid);
  color: var(--white);
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
}

.nav-cta.visible {
  opacity: 1;
  pointer-events: auto;
}

.nav-cta:hover {
  background: var(--purple-light);
  transform: translateY(-1px);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Theme toggle ── */
.theme-toggle {
  position: relative;
  width: 62px;
  height: 30px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--grey-border-2);
  border-radius: 100px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s, border-color 0.25s;
}

.theme-toggle:hover {
  background: rgba(255, 255, 255, 0.13);
}

/* track icons */
.track-moon,
.track-sun {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  pointer-events: none;
  color: rgba(255, 255, 255, 0.45);
}

/* dark mode default: thumb LEFT (moon), sun visible on right */
.track-moon {
  left: 9px;
  opacity: 0;
}

.track-sun {
  right: 9px;
  opacity: 1;
}

.toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--purple-mid);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumb-moon {
  display: block;
}

.thumb-sun {
  display: none;
}

/* light mode: thumb RIGHT (sun), moon visible on left */
body.light-mode .toggle-thumb {
  transform: translateX(32px);
}

body.light-mode .track-moon {
  opacity: 1;
  color: rgba(0, 0, 0, 0.35);
}

body.light-mode .track-sun {
  opacity: 0;
}

body.light-mode .thumb-moon {
  display: none;
}

body.light-mode .thumb-sun {
  display: block;
}

body.light-mode .theme-toggle {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.14);
}

body.light-mode .theme-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}

body.light-mode .toggle-thumb {
  background: var(--purple);
}

/* ── Light mode variables ── */
body.light-mode {
  --black: #F5F5FA;
  --black-2: #EBEBF2;
  --black-3: #E0E0EA;
  --white: #0E0E1A;
  --white-dim: #2A2A3A;
  --grey-dark: #55556A;
  --grey: #7A7A90;
  --grey-light: #9A9AB0;
  --grey-border: rgba(0, 0, 0, 0.08);
  --grey-border-2: rgba(0, 0, 0, 0.14);
  --purple-glow: rgba(109, 40, 217, 0.10);
}

body.light-mode .btn-primary,
body.light-mode .btn-primary-lg,
body.light-mode .nav-cta {
  color: #ffffff;
}


body.light-mode .svc-card:hover h3 {
  color: #ffffff;
}

body.light-mode .stat-number,
body.light-mode .stat-label {
  color: #ffffff;
}

body.light-mode nav.scrolled {
  background: rgba(245, 245, 250, 0.85);
}

body.light-mode .hero-orb-1,
body.light-mode .hero-orb-2 {
  opacity: 0.5;
}

body.light-mode .toggle-icon svg {
  stroke: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--grey-border);
  padding: 32px 48px;
  display: none;
  flex-direction: column;
  gap: 24px;
  z-index: 999;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
  transition: color 0.2s;
}

.mobile-menu a:hover {
  color: var(--white);
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 48px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-orb-1 {
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.22) 0%, transparent 70%);
  filter: blur(60px);
}

.hero-orb-2 {
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 7, 100, 0.3) 0%, transparent 70%);
  filter: blur(80px);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-face-canvas {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

#heroChart3d {
  position: absolute;
  right: 4%;
  top: 0;
  bottom: 0;
  width: 52%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

#heroChart3d canvas {
  display: block;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 560px;
}

.hero-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 28px;
  padding: 5px 13px;
  border: 1px solid rgba(168, 85, 247, 0.3);
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.2vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 32px;
}

.hero h1 em {
  font-style: italic;
  color: var(--purple-light);
}

.hero-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 580px;
  margin-bottom: 52px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  background: var(--purple-mid);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-primary:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(109, 40, 217, 0.35);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-ghost {
  background: transparent;
  color: var(--grey-light);
  border: 1px solid var(--grey-border-2);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: var(--grey);
}

/* ═══════════════════ SOCIAL PROOF ═══════════════════ */
.social-proof {
  border-top: 1px solid var(--grey-border);
  border-bottom: 1px solid var(--grey-border);
  padding: 48px;
  background: var(--black-2);
}

.social-proof-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 36px;
}

.social-proof-logos {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.social-proof-track {
  display: flex;
  align-items: center;
  gap: 80px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.clinic-logo {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--grey-dark);
  cursor: default;
  white-space: nowrap;
  flex-shrink: 0;
}

/* ═══════════════════ SHARED SECTION STYLES ═══════════════════ */
section {
  padding: 120px 48px;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--purple-light);
}

.section-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 520px;
}

.section-header {
  margin-bottom: 72px;
}

.section-header.centered {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-header.centered .section-sub {
  text-align: center;
}

/* ═══════════════════ PROBLEM SECTION ═══════════════════ */
.problem-section {
  background: var(--black);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}

.problem-card {
  background: var(--black-2);
  padding: 52px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.problem-card:hover {
  background: var(--black-3);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 28px;
  color: var(--purple-light);
}

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

.problem-card h3 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.problem-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--grey-light);
}

.problem-num {
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-family: var(--sans);
  font-size: 36px;
  font-weight: 300;
  color: rgba(168, 85, 247, 0.22);
  line-height: 1;
  user-select: none;
}

/* ═══════════════════ SERVICES SECTION ═══════════════════ */
.services-section {
  background: var(--black-2);
}

.services-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 72px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 2px;
}

.svc-card {
  background: var(--black-3);
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}

.svc-card:hover {
  background: #1f1f2d;
}

.svc-card-large {
  grid-column: span 7;
}

.svc-card-small {
  grid-column: span 5;
}

.svc-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 44px;
}

.svc-card h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.svc-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  flex-shrink: 0;
  margin-bottom: 2px;
}

.svc-brand-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.svc-brand-icon.icon-meta svg {
  width: 32px;
  height: 17px;
}

.svc-brand-icon.icon-meta {
  background: #fff;
}

.svc-brand-icon.icon-google {
  background: #fff;
}

.svc-brand-icon.icon-web {
  background: linear-gradient(135deg, #1e1e2e 0%, #2a2a3e 100%);
  border: 1px solid rgba(168, 85, 247, 0.3);
}

.svc-brand-icon.icon-booking {
  background: linear-gradient(135deg, #4c1d95 0%, #6d28d9 100%);
}

.svc-brand-icon.icon-gbp {
  background: #fff;
}

.svc-card p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--grey-light);
  max-width: 380px;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-light);
  text-decoration: none;
  transition: gap 0.2s;
}

.svc-link:hover {
  gap: 14px;
}

.svc-link svg {
  width: 16px;
  height: 16px;
}

/* GBP card two-column */
.svc-card-gbp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  padding: 0;
  overflow: hidden;
}

.svc-gbp-left {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.svc-gbp-right {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

#gbpCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#gbpCanvas canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
  mix-blend-mode: screen;
}

@media (max-width: 900px) {
  .svc-card-gbp {
    grid-template-columns: 1fr;
  }

  .svc-gbp-right {
    min-height: 260px;
  }
}

.svc-card-accent {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════ HOW IT WORKS ═══════════════════ */
.hiw-section {
  background: var(--black);
  padding: 0;
  height: 280vh;
}

.hiw-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 36px 48px 0;
  overflow: hidden;
}

.hiw-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* title override inside sticky */
.hiw-sticky .section-eyebrow {
  margin-bottom: 10px;
}

.hiw-sticky .section-title {
  font-size: clamp(26px, 3vw, 40px);
  margin-bottom: 40px;
}

.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 0;
}

.hiw-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid transparent;
  margin: -12px -14px;
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s, border-color 0.3s;
}

.hiw-step.active {
  background: rgba(109, 40, 217, 0.08);
  border-color: rgba(109, 40, 217, 0.25);
}

.hiw-step-hidden {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.hiw-step-num {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  color: rgba(168, 85, 247, 0.55);
  min-width: 40px;
}

.hiw-step-content h4 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.hiw-step-content p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--grey-light);
}

.hiw-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  justify-self: end;
  align-self: center;
  margin-top: 60px;
}

.hiw-box {
  width: 100%;
  height: 100%;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  background: var(--black-2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 40px;
}

.hiw-box-orb {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.18) 0%, transparent 70%);
}

.hiw-box-icon {
  position: absolute;
  top: 52px;
  left: 52px;
  width: 72px;
  height: 72px;
  border: 1px solid var(--grey-border-2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
}

.hiw-box-icon svg {
  width: 30px;
  height: 30px;
}

.hiw-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hiw-bar {
  height: 4px;
  border-radius: 2px;
  background: var(--grey-border);
  overflow: hidden;
}

.hiw-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  animation: barPulse 3s ease-in-out infinite;
}

.hiw-bar:nth-child(1) .hiw-bar-fill {
  width: 75%;
  animation-delay: 0s;
}

.hiw-bar:nth-child(2) .hiw-bar-fill {
  width: 50%;
  animation-delay: 0.5s;
}

.hiw-bar:nth-child(3) .hiw-bar-fill {
  width: 90%;
  animation-delay: 1s;
}

@keyframes barPulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

/* ── HIW interactive panels ── */
.hiw-panel-wrap {
  position: relative;
  width: 100%;
  height: 360px;
}

.hiw-panel {
  display: none;
  position: absolute;
  inset: 0;
  background: var(--black-2);
  border: 1px solid var(--grey-border);
  border-radius: 16px;
  padding: 24px 28px;
  animation: panelFade 0.35s ease;
  overflow: hidden;
}

.hiw-panel.active {
  display: block;
}

@keyframes panelFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hiw-panel-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 24px;
}

/* Panel 1 — Audit */
#hiwPanel1 {
  padding: 36px 28px;
}

#hiwPanel1 .hiw-panel-label {
  margin-bottom: 32px;
}

.audit-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.audit-row-label {
  font-size: 13px;
  color: var(--grey-light);
  min-width: 110px;
}

.audit-track {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 3px;
  overflow: hidden;
}

.audit-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--purple), var(--purple-light));
  transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.audit-pct {
  font-size: 13px;
  color: var(--white);
  min-width: 36px;
  text-align: right;
}

.audit-btns {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.audit-btn {
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--purple);
  color: var(--purple-light);
  background: transparent;
  cursor: default;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Panel 2 — System */
.engine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.engine-card {
  background: rgba(109, 40, 217, 0.08);
  border: 1px solid rgba(109, 40, 217, 0.2);
  border-radius: 10px;
  padding: 18px;
}

.engine-card-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  color: var(--purple-light);
  background: rgba(168, 85, 247, 0.1);
  border-radius: 8px;
  padding: 6px;
}

.engine-card h5 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.engine-card p {
  font-size: 12px;
  color: var(--grey-light);
}

.engine-footer {
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--grey);
  padding-top: 4px;
  border-top: 1px solid var(--grey-border);
}

/* Panel 3 — Scale */
.scale-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.scale-metric {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--grey-border);
  border-radius: 10px;
  padding: 18px;
  text-align: center;
}

.scale-metric-val {
  font-family: var(--sans);
  font-size: 32px;
  font-weight: 300;
  color: var(--purple-light);
  margin-bottom: 4px;
}

.scale-metric-label {
  font-size: 12px;
  color: var(--grey-light);
  margin-bottom: 6px;
}

.scale-metric-delta {
  font-size: 11px;
  color: var(--purple-light);
}

.scale-chart-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 12px;
}

.scale-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 70px;
}

.scale-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}

.scale-bar-col .bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  background: rgba(109, 40, 217, 0.35);
  transition: height 0.6s ease;
}

.scale-bar-col.highlight .bar {
  background: var(--purple-mid);
}

.scale-bar-col span {
  font-size: 9px;
  color: var(--grey);
}

.scale-footer {
  text-align: center;
  font-size: 11px;
  color: var(--grey);
  margin-top: 12px;
}

/* ═══════════════════ STATS SECTION ═══════════════════ */
.stats-section {
  background: var(--purple-deep);
  position: relative;
  padding: 0;
  height: 290vh;
}

.stats-bg-orb-1,
.stats-bg-orb-2 {
  pointer-events: none;
  z-index: 0;
}

.stats-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 48px;
  z-index: 1;
}

.stats-bg-orb-1 {
  position: absolute;
  top: -100px;
  right: 100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.4) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.stats-bg-orb-2 {
  position: absolute;
  bottom: -100px;
  left: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stat-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.stat-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-item {
  padding: 52px 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: var(--sans);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.stat-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.stat-note {
  font-size: 13px;
  color: rgba(168, 85, 247, 0.8);
  margin-top: 8px;
  font-style: italic;
  font-family: var(--serif);
}

/* ═══════════════════ TESTIMONIALS ═══════════════════ */
.testimonials-section {
  background: var(--black-2);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 72px;
}

.testimonial-card {
  background: var(--black-3);
  padding: 52px 44px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: background 0.3s;
}

.testimonial-card:hover {
  background: #1c1c26;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
}

.star {
  color: var(--purple-light);
  font-size: 14px;
}

.testimonial-quote {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-dim);
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  border-top: 1px solid var(--grey-border);
  padding-top: 24px;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-role {
  font-size: 13px;
  color: var(--grey);
}

/* ═══════════════════ FAQ ═══════════════════ */
.faq-section {
  background: var(--black);
}

.faq-inner {
  max-width: 760px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 72px;
  border-top: 1px solid var(--grey-border);
}

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

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  padding: 28px 8px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--purple-light);
}

.faq-question.open {
  color: var(--purple-light);
}

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

.faq-question.open .faq-icon {
  transform: rotate(45deg);
  color: var(--purple-light);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s;
  padding: 0 8px;
}

.faq-answer.open {
  max-height: 400px;
  padding-bottom: 28px;
}

.faq-answer p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--grey-light);
}

/* ═══════════════════ FINAL CTA ═══════════════════ */
.final-cta {
  background: var(--black-2);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 160px 48px;
}

.final-cta-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 40, 217, 0.2) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 70px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.final-cta h2 em {
  font-style: italic;
  color: var(--purple-light);
}

.final-cta p {
  font-size: 16px;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 48px;
}

.btn-primary-lg {
  background: var(--purple-mid);
  color: var(--white);
  border: none;
  padding: 20px 52px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 0 40px rgba(109, 40, 217, 0.25);
}

.btn-primary-lg:hover {
  background: var(--purple-light);
  transform: translateY(-3px);
  box-shadow: 0 20px 60px rgba(109, 40, 217, 0.4);
}

/* ═══════════════════ CALENDLY MODAL ═══════════════════ */
.cal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(4, 4, 8, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cal-modal {
  background: var(--black-2);
  border: 1px solid var(--grey-border-2);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cal-overlay.open .cal-modal {
  transform: translateY(0) scale(1);
}

.cal-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid var(--grey-border);
  flex-shrink: 0;
}

.cal-modal-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
}

.cal-modal-title span {
  color: var(--purple-light);
  font-style: italic;
}

.cal-close {
  width: 36px;
  height: 36px;
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  background: transparent;
  color: var(--grey-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 18px;
  line-height: 1;
}

.cal-close:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  background: rgba(168, 85, 247, 0.08);
}

.cal-body {
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* ── Custom Calendar ── */
.cal-body {
  overflow-y: auto;
}

.custom-cal {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 600px;
  height: 100%;
}

.cal-left {
  padding: 36px 28px;
  border-right: 1px solid var(--grey-border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cal-meet-badge {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-light);
}

.cal-meet-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.cal-meet-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.cal-meet-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey-light);
}

.cal-meet-row svg {
  width: 15px;
  height: 15px;
  color: var(--purple-light);
  flex-shrink: 0;
}

.cal-left-divider {
  height: 1px;
  background: var(--grey-border);
}

.cal-selected-info {
  display: none;
  flex-direction: column;
  gap: 8px;
}

.cal-selected-info.visible {
  display: flex;
}

.cal-selected-label {
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cal-selected-value {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--white);
  font-weight: 400;
}

.cal-right {
  padding: 28px 32px;
  overflow-y: auto;
}

.cal-step-title {
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-light);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}

/* Month nav */
.cal-month-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.cal-month-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}

.cal-nav-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--grey-border);
  border-radius: 50%;
  background: transparent;
  color: var(--grey-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.18s;
  font-size: 12px;
}

.cal-nav-btn:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.cal-nav-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Day grid */
.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}

.cal-weekday {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--grey);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 0;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  cursor: pointer;
  color: var(--white);
  transition: all 0.15s;
  border: 1px solid transparent;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 0;
  font-family: var(--sans);
}

.cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(168, 85, 247, 0.18);
}

.cal-day.today {
  border-color: rgba(168, 85, 247, 0.45);
}

.cal-day.selected {
  background: var(--purple-mid) !important;
  color: #fff;
}

.cal-day.disabled {
  color: rgba(255, 255, 255, 0.22);
  cursor: default;
}

.cal-day.empty {
  cursor: default;
}

/* Slots */
.cal-slots-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.cal-back-btn {
  background: transparent;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--grey-light);
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--sans);
}

.cal-back-btn:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.cal-slots-date {
  font-size: 14px;
  color: var(--white);
  font-weight: 500;
}

.cal-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.cal-slot {
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 10px 8px;
  text-align: center;
  font-size: 13px;
  font-family: var(--sans);
  color: var(--grey-light);
  cursor: pointer;
  background: transparent;
  transition: all 0.15s;
}

.cal-slot:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
  background: rgba(168, 85, 247, 0.07);
}

.cal-slot.picked {
  background: var(--purple-mid);
  border-color: var(--purple-mid);
  color: #fff;
}

/* Form */
.cal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cal-form-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.cal-form-back {
  background: transparent;
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 6px 12px;
  font-size: 12px;
  color: var(--grey-light);
  cursor: pointer;
  transition: all 0.18s;
  font-family: var(--sans);
}

.cal-form-back:hover {
  border-color: var(--purple-light);
  color: var(--purple-light);
}

.cal-form-when {
  font-size: 13px;
  color: var(--grey-light);
}

.cal-form-when strong {
  color: var(--white);
}

.cal-field label {
  display: block;
  font-size: 11px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 6px;
  transition: color 0.2s;
}

.cal-input-error {
  border-color: #f87171 !important;
}

.cal-input {
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius);
  padding: 11px 14px;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}

.cal-input:focus {
  border-color: var(--purple-light);
}

.cal-input::placeholder {
  color: var(--grey-dark);
}

.cal-captcha-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.cal-submit {
  background: var(--purple-mid);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 13px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.22s;
  letter-spacing: 0.04em;
  margin-top: 4px;
}

.cal-submit:hover {
  background: var(--purple-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(109, 40, 217, 0.35);
}

.cal-submit:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
  box-shadow: none;
}

/* Success */
.cal-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 32px;
  gap: 18px;
  min-height: 400px;
}

.cal-success-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-light);
}

.cal-success-icon svg {
  width: 30px;
  height: 30px;
}

.cal-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
}

.cal-success p {
  font-size: 14px;
  color: var(--grey-light);
  line-height: 1.7;
  max-width: 340px;
}

.cal-success-detail {
  font-family: var(--serif);
  font-size: 16px;
  color: var(--purple-light);
  font-style: italic;
}

/* hide/show panels */
.cal-panel {
  display: none;
}

.cal-panel.active {
  display: block;
}

.cal-success-panel {
  display: none;
}

.cal-success-panel.active {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

@media (max-width: 768px) {
  .cal-overlay {
    padding: 0;
    align-items: flex-end;
  }

  .cal-modal {
    max-height: 95vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
  }

  .custom-cal {
    grid-template-columns: 1fr;
  }

  .cal-left {
    display: none;
  }

  .cal-right {
    padding: 20px;
  }

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

/* ═══════════════════ FOOTER ═══════════════════ */
footer {
  background: var(--black);
  border-top: 1px solid var(--grey-border);
  padding: 80px 48px 40px;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 55px;
  width: auto;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--grey);
  max-width: 300px;
  margin-bottom: 24px;
}

.footer-email {
  font-size: 14px;
  color: var(--purple-light);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--white);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  font-weight: 300;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid var(--grey-border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 13px;
  color: var(--grey);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 13px;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: var(--white);
}

/* ═══════════════════ ANIMATIONS ═══════════════════ */
.fade-in {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {

  .problem-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stats-section {
    height: auto;
    padding: 0;
  }

  .stats-sticky {
    position: static;
    height: auto;
    padding: 80px 24px;
  }

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

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    width: 100%;
  }

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 36px 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-item:nth-child(3),
  .stat-item:nth-child(4) {
    border-bottom: none;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
  }

  .svc-card-large,
  .svc-card-small {
    grid-column: auto;
  }

  .hiw-inner {
    grid-template-columns: 1fr;
  }

  .hiw-visual {
    max-width: 100%;
    aspect-ratio: 16/9;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 24px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  section,
  .social-proof,
  .stats-section,
  .final-cta {
    padding: 80px 24px;
  }

  footer {
    padding: 60px 24px 32px;
  }

  .hero {
    padding: 120px 24px 80px;
  }

  .hero-scroll {
    left: 24px;
  }

  #heroChart3d {
    display: none;
  }

  /* HIW — disable scroll-pinned, show as normal vertical layout */
  .hiw-section {
    height: auto;
    padding: 80px 24px;
  }

  .hiw-sticky {
    position: static;
    height: auto;
    padding: 0;
    overflow: visible;
  }

  .hiw-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hiw-step {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
    margin: 0 0 8px 0;
  }

  .hiw-left {
    width: 100%;
    max-width: 100%;
  }

  .hiw-step-content {
    min-width: 0;
    overflow-wrap: break-word;
    flex: 1;
  }

  .hiw-step-hidden {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .hiw-visual {
    display: none;
  }

  .services-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .social-proof-track {
    gap: 48px;
  }

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

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}