/* ═══════════════════════════════════════════════════
   HIGH TIDE MARKETING — DESIGN SYSTEM v3
   Light · Modern · Plus Jakarta Sans + Inter
   Inspired by Surfer SEO density + Phyllo lightness
═══════════════════════════════════════════════════ */

/* ── TOKENS ── */
:root {
  /* ── Brand Core ── */
  --gold:       #F0C040;   /* Primary CTA, stat highlights, key accent */
  --gold-hover: #d4a820;   /* Button pressed / hover state */
  --gold-light: #fef9e7;   /* Gold tag fill / gold tint bg */
  --navy:       #0D3B52;   /* Wordmark · Headings · Primary text */
  --navy-deep:  #071f2b;   /* Footer · Dark CTAs · Full-bleed dark blocks */
  --navy-mid:   #0f4d6b;   /* Gradient midpoint */

  /* ── Sky Blue family (primary accent) ── */
  --sky:        #5BC4E8;   /* Logo mark · Links · Highlights */
  --sky-mid:    #3BACD4;   /* Gradient midpoint in logo mark */
  --sky-dark:   #1d8aab;   /* Eyebrow labels · Hover accents · Tag text */
  --sky-light:  #e8f6fd;   /* Card backgrounds · Tag fills */
  --sky-tint:   #f0f9ff;   /* Very light surface tint */

  /* ── Surfaces ── */
  --bg:          #ffffff;
  --bg-alt:      #f8fafc;   /* Gray-50 — alternate section background */
  --surface:     #ffffff;
  --border:      #e2e8f0;
  --border-mid:  #c8d6e0;

  /* ── Text — brand guidelines gray scale ── */
  --text-primary: #0D3B52;  /* Navy — headings on light backgrounds */
  --text-body:    #334155;  /* Gray-700 — body text */
  --text-muted:   #64748b;  /* Gray-500 — supporting / descriptions */
  --text-faint:   #94a3b8;  /* Gray-400 — captions / metadata */

  /* ── Shadows — navy-based per brand guidelines ── */
  --shadow-xs: 0 1px 2px rgba(13,59,82,0.04);
  --shadow-sm: 0 1px 3px rgba(13,59,82,0.06), 0 1px 2px rgba(13,59,82,0.04);
  --shadow-md: 0 4px 16px rgba(13,59,82,0.08), 0 2px 4px rgba(13,59,82,0.04);
  --shadow-lg: 0 12px 40px rgba(13,59,82,0.10), 0 4px 8px rgba(13,59,82,0.04);
  --shadow-xl: 0 24px 64px rgba(13,59,82,0.12), 0 8px 20px rgba(13,59,82,0.06);

  /* ── Border Radius — brand spec ── */
  --radius-xs:  4px;        /* Tags */
  --radius-sm:  8px;        /* Inputs */
  --radius-md:  12px;       /* Cards */
  --radius-lg:  20px;       /* Feature cards */
  --radius-xl:  24px;       /* Work cards */
  --radius-btn: 9999px;     /* Buttons — non-negotiable brand signature */

  --max-width: 1360px;
  --px: clamp(20px, 4vw, 56px); /* tighter side padding so content fills the wider container */

  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Prevent rubber-band overscroll showing white edges */
  overscroll-behavior: none;
  background: var(--navy-deep);
}
body {
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  overscroll-behavior: none;
}
/* Page-level horizontal overflow guard.
   overflow-x: clip is CRITICAL here — it clips horizontal overflow without
   creating a scroll container. overflow-x: hidden would break position:sticky
   on the hero section. clip achieves the same visual result, sticky-safe. */
.page-guard {
  overflow-x: clip;
  max-width: 100vw;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, sans-serif;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(40px, 5vw, 72px); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(28px, 3.5vw, 48px); font-weight: 800; letter-spacing: -0.02em; }
h3 { font-size: clamp(17px, 1.8vw, 21px); font-weight: 700; line-height: 1.3; }
em { font-style: normal; color: var(--sky); }
p { color: var(--text-body); line-height: 1.75; }

/* ── LAYOUT ── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 120px var(--px); /* Revolut-scale section spacing: 80-120px */
}
.section-header { margin-bottom: 64px; }
.section-header h2 { margin-top: 12px; }

/* ── TAG / EYEBROW ── */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky-dark);
  background: var(--sky-light);
  border: 1px solid rgba(91,196,232,0.25);
  padding: 5px 14px;
  border-radius: 20px;
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(240,192,64,0.30);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(240,192,64,0.45);
}
.btn-ghost-sky {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sky);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--sky);
  background: transparent;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost-sky:hover {
  background: var(--sky);
  color: #fff;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 24px;
  border-radius: var(--radius-btn);
  border: 2px solid var(--navy);
  background: transparent;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-ghost:hover {
  border-color: var(--sky-dark);
  color: var(--sky-dark);
  background: var(--sky-tint);
}
.btn-sky {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sky);
  color: var(--navy-deep);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(91,196,232,0.30);
  white-space: nowrap;
}
.btn-sky:hover {
  background: var(--sky-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(91,196,232,0.45);
}

/* ── ANIMATION SYSTEM ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes lineGrow {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ══════════════════════════════════════════
   TOPBAR
══════════════════════════════════════════ */
.topbar {
  background: var(--navy-deep);
  padding: 9px var(--px);
}
.topbar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
}
.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.topbar-link:hover { color: #fff; }
.topbar-link svg { opacity: 0.7; }
.topbar-sep { opacity: 0.25; }
.topbar-cta {
  margin-left: auto;
  color: var(--gold);
  font-weight: 600;
  font-size: 12px;
  transition: color 0.2s;
}
.topbar-cta:hover { color: var(--gold); }

/* ══════════════════════════════════════════
   NAV
══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  /* Transparent over the hero — hero video shows through */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.nav.scrolled {
  background: var(--navy-deep);
  border-bottom-color: rgba(255,255,255,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--px);
  display: flex;
  align-items: center;
  gap: 40px;
  height: var(--nav-h);
}

/* Always show white logo — nav is dark (video or navy) in both states */
.nav-logo img { height: 56px; width: auto; }
.logo-color { display: none; }
.logo-white { display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  /* White links over hero video */
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.nav-links a:hover { color: #fff; }

/* On scroll: links stay white (nav is dark) */
.nav.scrolled .nav-links a { color: rgba(255,255,255,0.8); }
.nav.scrolled .nav-links a:hover { color: #fff; }

.nav-cta { margin-left: 16px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  border-radius: 8px;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(0,0,0,0.55); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--navy-deep);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav a {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
.mobile-nav a:hover { color: #fff; }

/* ══════════════════════════════════════════
   MEGA MENU — Services
══════════════════════════════════════════ */
.nav-mega-wrap {
  position: static;
}

/* Trigger button — same feel as nav links */
.nav-mega-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-mega-btn:hover,
.nav-mega-wrap.is-open .nav-mega-btn { color: #fff; }

.mega-chevron {
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.nav-mega-wrap.is-open .mega-chevron { transform: rotate(180deg); }

/* Panel — constrained to max-width, centered below the nav */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  width: var(--max-width);
  max-width: calc(100vw - 2 * var(--px));
  z-index: 200;
  background: rgba(5, 13, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  /* Hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s, transform 0.22s ease;
}
.nav-mega-wrap.is-open .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

/* Inner layout: service grid + feature card */
.mega-panel-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 36px var(--px) 32px;
  display: grid;
  grid-template-columns: 1fr 272px;
  gap: 40px;
  align-items: start;
}

/* 2-column grid of service items */
.mega-services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.mega-svc {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.18s;
}
.mega-svc:hover { background: rgba(255,255,255,0.05); }

.mega-svc-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(91,196,232,0.08);
  border: 1px solid rgba(91,196,232,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky);
  transition: background 0.18s, border-color 0.18s;
}
.mega-svc:hover .mega-svc-icon {
  background: rgba(91,196,232,0.16);
  border-color: rgba(91,196,232,0.35);
}

.mega-svc-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.mega-svc-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* High Tide Radar feature card */
.mega-feature {
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, rgba(91,196,232,0.09) 0%, rgba(0,100,160,0.06) 100%);
  border: 1px solid rgba(91,196,232,0.2);
  border-radius: 14px;
  padding: 28px 24px 24px;
}
.mega-feature::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(91,196,232,0.14) 0%, transparent 70%);
  pointer-events: none;
}

.mega-feature-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 8px;
}
.mega-feature-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
}
.mega-feature-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 20px;
}
.mega-feature-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky);
  text-decoration: none;
  transition: gap 0.2s;
}
.mega-feature-cta:hover { gap: 9px; }

/* "View All" inline link — sits below the services grid inside the panel */
.mega-panel-footer {
  display: none; /* no longer used for services; "View All" is now inline */
}
.mega-panel--locations .mega-panel-footer {
  display: block;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mega-panel--locations .mega-panel-footer > * {
  padding: 12px 24px;
}
.mega-all-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s, gap 0.2s;
}
.mega-all-link:hover { color: #fff; gap: 8px; }

/* Inline "View All Services" row inside the panel */
.mega-all-inline {
  padding: 12px 16px 4px;
}
.mega-all-inline .mega-all-link {
  font-size: 12.5px;
  color: rgba(255,255,255,0.38);
}
.mega-all-inline .mega-all-link:hover { color: rgba(255,255,255,0.75); gap: 8px; }

/* ── Locations mega panel — compact dropdown, not full-width ── */
#nav-mega-locations { position: relative; }
.mega-panel--locations {
  width: 230px;
  left: 0;
  transform: translateY(-8px);
  border-radius: 12px;
}
.nav-mega-wrap.is-open .mega-panel--locations {
  transform: translateY(0);
}
.mega-panel--locations .mega-panel-inner {
  display: block;
  padding: 12px;
}
.mega-locations-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mega-location-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mega-location-link svg { color: var(--sky); flex-shrink: 0; }
.mega-location-link:hover { background: rgba(255,255,255,0.07); color: #fff; }
.mega-location-link.mega-location-all {
  color: var(--sky);
  font-size: 12.5px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 8px 8px 0 0;
  margin-bottom: 4px;
  padding-bottom: 12px;
}
.mega-location-link.mega-location-all:hover { background: rgba(91,196,232,0.08); color: var(--sky); }
.mega-panel--locations .mega-panel-footer { display: none; }
.mega-locations-empty {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  padding: 8px 10px;
  margin: 0;
}

/* Hide mega panel on mobile — hamburger handles nav there */
@media (max-width: 900px) {
  .nav-mega-wrap { display: none; }
}

/* ══════════════════════════════════════════
   HERO — Cinematic Video Background
══════════════════════════════════════════ */
:root {
  --nav-h: 72px; /* nav bar height — update if nav padding changes */
}

/* Tall scroll zone — gives the wave video time to play through.
   No GSAP pin needed: hero is CSS sticky inside this wrapper. */
.hero-scroll-zone {
  height: 250vh;
  background: var(--navy-deep); /* matches hero so there's nothing to flash */
}

.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--navy-deep);
  width: 100%;
  max-width: 100vw;
}

/* Video Background */
.hero-bg-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(7,31,43,0.35) 0%,
      rgba(7,31,43,0.52) 50%,
      rgba(7,31,43,0.75) 100%);
}

/* Inner Layout — padding-top clears nav, padding-bottom reserves watermark space */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--nav-h) var(--px) 88px; /* 88px bottom = watermark + breathing room above 52px ticker */
  flex: 1;
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 64px;
  align-items: center;
  box-sizing: border-box;
}

/* Eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
  margin-bottom: 20px;
  animation: fadeUp 0.6s var(--ease-out) 0.1s both;
}
.eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform-origin: left;
  animation: lineGrow 0.5s var(--ease-out) 0.15s both;
  flex-shrink: 0;
}

/* Headline */
.hero-h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(38px, 4.8vw, 66px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
  text-shadow: 0 2px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.30);
}
.hero-h2 em { color: var(--sky); font-style: italic; }

/* Legacy h1 style kept for other use */
.hero-h1 {
  color: var(--navy);
  margin-bottom: 20px;
  animation: fadeUp 0.7s var(--ease-out) 0.2s both;
  font-size: clamp(40px, 5vw, 68px);
}
.hero-h1 em { color: var(--sky); font-style: normal; }

/* Sub */
.hero-sub {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 36px;
  animation: fadeUp 0.7s var(--ease-out) 0.3s both;
  text-shadow: 0 1px 8px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.35);
}

/* CTAs */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s var(--ease-out) 0.4s both;
}

/* Hero CTA Button — white on dark */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  color: var(--navy-deep);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  white-space: nowrap;
}
.btn-hero:hover {
  background: var(--sky-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* Stat Cards — Hero Right Column */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeUp 0.7s var(--ease-out) 0.5s both;
}
.hc-stat {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow:
    0 8px 32px rgba(0,0,0,0.28),
    0 2px 8px rgba(0,0,0,0.18),
    0 0 0 1px rgba(255,255,255,0.12) inset;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.hc-stat:hover {
  transform: translateY(-4px);
  box-shadow:
    0 16px 48px rgba(0,0,0,0.32),
    0 4px 12px rgba(0,0,0,0.20),
    0 0 0 1px rgba(255,255,255,0.15) inset;
}
.hc-stat-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--sky-light);
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hc-stat-body { flex: 1; }
.hc-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hc-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 4px;
}
.hc-stat-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* H1 Brand Watermark */
.hero-watermark {
  position: absolute;
  bottom: 84px; /* 52px ticker + 32px original gap */
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(56px, 9.5vw, 152px);
  font-weight: 800;
  color: rgba(255,255,255,0.22);
  white-space: nowrap;
  letter-spacing: -0.02em;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* Legacy .hc card system (kept for other sections) */
.hc {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.hc:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.hc-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 8px;
}
.hc-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 38px;
  font-weight: 700;
  color: var(--sky);
  line-height: 1;
  margin-bottom: 4px;
}
.hc-sub { font-size: 12px; color: var(--text-muted); }
.hc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hc-row .hc { padding: 20px 22px; }
.hc-row .hc-val { font-size: 28px; }
.hc-dark {
  background: var(--navy);
  border-color: var(--navy-mid);
  color: #fff;
}
.hc-dark .hc-label { color: rgba(255,255,255,0.4); }
.hc-dark .hc-val { color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 18px; font-weight: 700; line-height: 1.4; letter-spacing: -0.01em; }
.hc-dark:hover { transform: translateY(-2px); }

/* Trend sparkline mockup */
.hc-chart {
  margin-top: 12px;
  height: 40px;
  position: relative;
}
.hc-chart svg { width: 100%; height: 100%; }

/* ══════════════════════════════════════════
   LOGO MARQUEE
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   CLIENT TICKER — Sanity-style gold band
══════════════════════════════════════════ */

/* When the ticker lives inside .hero, it sits as the last flex child
   (hero is flex-direction: column) and floats naturally to the bottom.
   z-index 3 keeps it above the video overlay (z-index 1) and on par with hero-inner. */
.hero-ticker {
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}
.clients-ticker {
  display: flex;
  align-items: stretch;
  height: 52px;
  background: var(--gold);
  overflow: hidden;
  position: relative;
}

/* Scrolling text area */
.ticker-scroll-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  /* Fade edges into the gold */
  mask-image: linear-gradient(to right, transparent 0%, #000 60px, #000 calc(100% - 24px), transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 60px, #000 calc(100% - 24px), transparent 100%);
}

.ticker-track {
  display: flex;
  height: 100%;
}

.ticker-row {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  flex-shrink: 0;
  animation: tickerScroll 45s linear infinite;
  padding-right: 0;
}

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker-row span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  padding: 0 20px;
}
.ticker-sep {
  color: rgba(7, 31, 43, 0.35) !important;
  padding: 0 !important;
  font-weight: 400 !important;
}

/* Fixed right badge */
.ticker-badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 24px 0 20px;
  background: var(--navy-deep);
  position: relative;
}
/* Angled left edge — matches Sanity's style */
.ticker-badge::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 52px 20px;
  border-color: transparent transparent var(--navy-deep) transparent;
}
.ticker-badge span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  white-space: nowrap;
}

@media (max-width: 640px) {
  .ticker-badge { display: none; }
  .ticker-scroll-wrap {
    mask-image: linear-gradient(to right, transparent 0%, #000 24px, #000 calc(100% - 24px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 24px, #000 calc(100% - 24px), transparent 100%);
  }
}

/* ══════════════════════════════════════════
   PAIN / PATTERN INTERRUPT
══════════════════════════════════════════ */
.pain {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.pain-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 96px var(--px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.pain-left {}
.pain-left .tag { margin-bottom: 20px; }
.pain-headline {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.pain-headline em { color: var(--sky-dark); }
.pain-body {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
}
.pain-right {}
.pain-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.pain-col {
  padding: 28px 24px;
}
.pain-col-before {
  background: #fff;
  border-right: 1px solid var(--border);
}
.pain-col-after {
  background: var(--navy);
}
.pain-col-head {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.pain-col-before .pain-col-head { color: var(--text-faint); border-color: var(--border); }
.pain-col-after .pain-col-head { color: rgba(255,255,255,0.4); border-color: rgba(255,255,255,0.1); }
.pain-list { display: flex; flex-direction: column; gap: 10px; }
.pain-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.5;
}
.pain-col-before .pain-list li { color: var(--text-muted); }
.pain-col-after .pain-list li { color: rgba(255,255,255,0.8); }
.pain-list li svg { flex-shrink: 0; margin-top: 2px; }
.pain-col-before .pain-list li svg { color: #e57373; }
.pain-col-after .pain-list li svg { color: var(--gold); }

/* ══════════════════════════════════════════
   PROOF / STATS BENTO
══════════════════════════════════════════ */
.proof {
  background: #fff;
}
.proof .section-inner { padding-bottom: 80px; }
.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.proof-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
  cursor: default;
}
.proof-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.proof-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--sky-dark);
  flex-shrink: 0;
}
.proof-card-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.proof-card-val.gold { color: var(--gold); }
.proof-card-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.proof-card-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.proof-card-vet {
  background: var(--navy);
  border-color: var(--navy-mid);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.proof-card-vet .proof-card-icon {
  background: rgba(255,255,255,0.1);
  color: var(--gold);
}
.proof-card-vet .proof-card-val {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 22px;
  font-weight: 800;
}
.proof-card-vet .proof-card-label { color: rgba(255,255,255,0.9); }
.proof-card-vet .proof-card-desc { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════
   CASE STUDIES / WORK
══════════════════════════════════════════ */
.work { background: var(--bg-alt); border-top: 1px solid var(--border); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.work-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s var(--ease-out);
  cursor: pointer;
}
.work-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.work-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.work-card:hover .work-card-img img { transform: scale(1.04); }
.work-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,31,43,0.5) 0%, transparent 60%);
}
.work-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.work-card-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-dark);
}
.work-card-body h3 {
  font-size: 18px;
  color: var(--text-primary);
  margin: 2px 0;
}
.work-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  flex: 1;
}
.work-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-dark);
  margin-top: 12px;
  transition: gap 0.2s;
}
.work-card:hover .work-card-cta { gap: 10px; }
.work-card-metric {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  background: var(--sky-tint);
}
.work-card-metric span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ══════════════════════════════════════════
   SERVICES — CARD GRID
══════════════════════════════════════════ */
.services { background: #fff; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky-dark), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--sky-light);
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.svc-card-icon {
  width: 48px;
  height: 48px;
  background: var(--sky-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-dark);
  transition: background 0.2s;
}
.svc-card:hover .svc-card-icon { background: var(--sky-dark); color: #fff; }
.svc-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.35;
  margin: 0;
}
.svc-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--sky-dark);
  margin-top: 4px;
  transition: gap 0.2s;
}
.svc-card:hover .svc-card-link { gap: 10px; }
/* 5th card spans 2 cols to keep grid balanced */
.svc-card-wide { grid-column: span 1; }

/* ══════════════════════════════════════════
   PROCESS
══════════════════════════════════════════ */
/* ══════════════════════════════════════════
   PROCESS — Premium rebuild
══════════════════════════════════════════ */
.process {
  background: var(--navy-deep);
  color: #fff;
  overflow: hidden;
  position: relative;
}
/* Subtle radial glow behind the section */
.process::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 900px;
  height: 400px;
  background: radial-gradient(ellipse at center top, rgba(91,196,232,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.process .section-inner { padding: 100px var(--px) 110px; position: relative; }
.process .section-header h2 { color: #fff; }
.process .section-header h2 em { color: var(--sky); }
.process .section-header .tag {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.65);
  border-color: rgba(255,255,255,0.10);
}

.process-track { margin-top: 72px; }

/* ── Spine ── */
.process-spine {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
}
.process-spine-node {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* The half-line segments on either side of each badge */
.process-spine-half {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.process-spine-half--left:empty,
.process-spine-half--right:empty {
  background: transparent; /* first left / last right: invisible */
}
/* The animated gold fill inside each line half */
.process-spine-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--gold), var(--sky));
  transform: scaleX(0);
  transform-origin: left;
  /* GSAP drives scaleX 0→1 */
}

/* Badge circle */
.process-badge {
  position: relative;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(240,192,64,0.10);
  border: 1.5px solid rgba(240,192,64,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(240,192,64,0);
  transition: box-shadow 0.4s ease;
}
/* Outer pulse ring — CSS animation */
.process-badge-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(240,192,64,0.18);
  animation: badge-pulse 3s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

/* ── Cards ── */
.process-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.process-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  padding: 36px 32px 40px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s var(--ease-out);
  /* GSAP slides these up on scroll */
  opacity: 0;
  transform: translateY(32px);
}
/* Top edge gradient — appears on hover */
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(240,192,64,0.5) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.process-card:hover {
  border-color: rgba(240,192,64,0.22);
  box-shadow:
    0 0 48px rgba(240,192,64,0.06),
    0 24px 48px rgba(0,0,0,0.25);
  transform: translateY(-5px);
}
.process-card:hover::before { opacity: 1; }

.process-card-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
  opacity: 0.75;
}
.process-card h3 {
  color: #fff;
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}
.process-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.78;
}

/* ══════════════════════════════════════════
   THE HIGH TIDE DIFFERENCE
══════════════════════════════════════════ */
.difference { background: #fff; }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.diff-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
}
.diff-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(91,196,232,0.25);
}
.diff-card-featured {
  grid-column: span 3;
  background: var(--sky-tint);
  border-color: rgba(91,196,232,0.25);
  flex-direction: row;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 36px;
}
.diff-card-featured .diff-icon { flex-shrink: 0; }
.diff-card-featured h3 { font-size: 20px; }
.diff-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sky-dark);
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
}
.diff-card-featured .diff-icon {
  background: var(--sky-dark);
  color: #fff;
  border-color: var(--sky-dark);
  width: 52px;
  height: 52px;
}
.diff-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}
.diff-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}
.diff-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sky-dark);
  background: var(--sky-light);
  border: 1px solid rgba(91,196,232,0.25);
  padding: 4px 12px;
  border-radius: 20px;
  margin-top: 8px;
  align-self: flex-start;
}

/* ══════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════ */
.testimonials { background: var(--bg-alt); border-top: 1px solid var(--border); }
.testi-featured {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 48px 56px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.testi-featured::before {
  content: '"';
  position: absolute;
  top: -20px;
  right: 48px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 180px;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
}
.testi-featured > p {
  font-size: 19px;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  max-width: 760px;
  margin-bottom: 32px;
}
.testi-featured-footer {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--sky-dark);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-avatar-sm { width: 38px; height: 38px; font-size: 12px; background: var(--sky-light); color: var(--sky-dark); }
.testi-attr { flex: 1; }
.testi-name { font-size: 15px; font-weight: 700; color: #fff; }
.testi-role { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.testi-featured .testi-role { color: rgba(255,255,255,0.5); }
.testi-metric {
  text-align: right;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.1);
  margin-left: auto;
}
.testi-metric-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.testi-metric-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testi-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}
.testi-card-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.testi-card-footer .testi-name { font-size: 14px; color: var(--text-primary); font-weight: 600; }
.testi-card-footer .testi-role { font-size: 12px; color: var(--text-faint); }

/* ══════════════════════════════════════════
   FAQ
══════════════════════════════════════════ */
.faq { background: #fff; }
.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.faq-left { position: sticky; top: 100px; z-index: 0; }
.faq-items { position: relative; z-index: 1; }
.faq-left .tag { margin-bottom: 16px; }
.faq-left h2 { margin-bottom: 16px; }
.faq-left p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  transition: color 0.2s;
}
.faq-q:hover { color: var(--sky-dark); }
.faq-q[aria-expanded="true"] { color: var(--sky-dark); }
.faq-chevron {
  flex-shrink: 0;
  color: var(--text-faint);
  transition: transform 0.3s var(--ease-out), color 0.2s;
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--sky-dark);
}
.faq-a {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out), padding 0.3s;
}
.faq-a.open {
  max-height: 200px;
  padding-bottom: 20px;
}

/* ══════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════ */
.final-cta {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(91,196,232,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 10% 50%, rgba(240,192,64,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta .section-inner {
  position: relative;
  padding: 100px var(--px);
}
.final-cta-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}
.final-cta-content {
  text-align: center;
  max-width: 680px;
}
.final-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 48px);
  margin: 12px 0 20px;
  text-align: center;
}
.final-cta h2 em { color: var(--gold); }
.final-cta p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 520px;
  margin: 0 auto 32px;
  text-align: center;
}
.final-cta-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
}
.final-cta .tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.12);
}
.final-cta-trust {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 32px;
}
.final-cta-trust li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
.final-cta-trust li svg {
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(240,192,64,0.12);
  border-radius: 50%;
  padding: 3px;
  box-sizing: content-box;
}

/* Calendly widget container — full width below the copy */
.final-cta-form {
  width: 100%;
  max-width: 900px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  overflow: hidden;
  padding: 4px;
}
.final-cta-form .calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta .btn-ghost {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.2);
}
.final-cta .btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 64px var(--px) 0; /* bottom padding handled by wordmark */
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 52px;
}
.footer-brand img { height: 72px; width: auto; opacity: 0.92; margin-bottom: 22px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.45); max-width: 260px; }
.footer-brand-badges { display: flex; gap: 10px; margin-top: 20px; }
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: var(--radius-btn);
}
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* Big brand wordmark — lives inside .footer-inner so it respects max-width */
.footer-wordmark-wrap {
  width: 100%;
  margin-top: 36px;
  overflow: hidden;   /* clip to the inner container width only */
}
.footer-wordmark {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(32px, 7.8vw, 118px);
  font-weight: 800;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  padding-bottom: 10px;
  user-select: none;
  pointer-events: none;
  text-align: center;
}

/* ══════════════════════════════════════════
   STATS BANNER — navy strip after hero
══════════════════════════════════════════ */
/* .stats-banner removed — replaced by .clients-ticker */

/* ══════════════════════════════════════════
   WHAT WE DO — 5-card overview
══════════════════════════════════════════ */
.wwd { background: var(--bg); }
.wwd .section-header { text-align: center; }
.wwd .section-header .tag { margin: 0 auto; }
.wwd-intro {
  max-width: 640px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
}
.wwd-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.wwd-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out), border-color 0.25s, background 0.25s;
}
.wwd-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: rgba(91,196,232,0.30);
  background: #fff;
}
.wwd-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--sky-light);
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, color 0.25s;
}
.wwd-card:hover .wwd-card-icon { background: var(--sky-dark); color: #fff; }
.wwd-card h3 {
  font-size: 16px;
  font-weight: 700;
}
.wwd-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   SERVICE SHOWCASE — Reevo-style alternating rows
══════════════════════════════════════════ */
.svc-showcase { background: var(--bg); }

.svc-intro {
  text-align: center;
  padding-top: 120px;
  padding-bottom: 40px;
}

.svc-row {
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.svc-row--alt { background: var(--bg-alt); }

.svc-row-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 80px var(--px);
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Flip: visual comes first in DOM order visually */
.svc-row--flip .svc-row-inner {
  direction: rtl;
}
.svc-row--flip .svc-text,
.svc-row--flip .svc-visual { direction: ltr; }

/* Text side */
.svc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.svc-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-faint);
  letter-spacing: 0.08em;
}
.svc-text h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}
.svc-text p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 24px;
  max-width: 520px;
}
.svc-bullets {
  list-style: none;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-bullets li {
  font-size: 15px;
  color: var(--text-body);
  padding-left: 22px;
  position: relative;
}
.svc-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
}
.svc-cta {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-btn);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.svc-cta:hover {
  background: var(--navy);
  color: #fff;
}

/* Visual side */
.svc-visual { position: relative; }

/* Laptop / device mockup image */
.svc-mockup-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.18), 0 4px 16px rgba(0,0,0,0.10);
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease;
  will-change: transform;
}
.svc-mockup-wrap:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 36px 80px rgba(0,0,0,0.22), 0 8px 24px rgba(0,0,0,0.12);
}
.svc-mockup-img {
  display: block;
  width: 100%;
  height: auto;
}
/* SEO results card — adds border + subtle bg so white chart reads cleanly */
.svc-seo-wrap {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 20px;
}

/* ── Website Mockup Carousel ── */
/* ── Website Mockup Carousel — Side Peek (matches video carousel style) ── */
.mockup-carousel {
  position: relative;
  touch-action: pan-y;
  /* No overflow:hidden — side cards peek outside bounds */
}
.mockup-track {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.mockup-slide {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  transition: opacity 0.4s ease;
  will-change: opacity;
}
.mockup-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* locks all slides to same height — kills white bar */
}

/* ── Simple crossfade states — no flying cards ── */
.mockup-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
  pointer-events: auto;
}
.mockup-slide.is-prev,
.mockup-slide.is-next,
.mockup-slide.is-far-prev,
.mockup-slide.is-far-next,
.mockup-slide.is-hidden,
.mockup-slide.is-exit-left,
.mockup-slide.is-exit-right {
  opacity: 0;
  transform: scale(1);
  z-index: 1;
  pointer-events: none;
}

/* Arrows sit on the active card */
.mockup-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.42);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
  padding-bottom: 2px;
}
.mockup-arrow:hover {
  background: rgba(0,0,0,0.72);
  transform: translateY(-50%) scale(1.08);
}
.mockup-arrow--prev { left: 12px; }
.mockup-arrow--next { right: 12px; }

/* Dots below the track */
.mockup-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  position: relative;
  z-index: 10;
}
.mockup-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(15,30,55,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.mockup-dot.active {
  background: var(--electric-blue);
  transform: scale(1.35);
}
.svc-media-box {
  border-radius: 24px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  background: var(--navy-deep);
}
/* Video variant — no padding/icon needed */
.svc-media-box--video { background: #000; }
/* Service 02 — taller video box */
[data-svc="2"] .svc-media-box { aspect-ratio: 4 / 5; }
.svc-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.svc-media-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 40px;
}
.svc-media-icon {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-media-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  text-align: center;
}
.svc-media-sublabel {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-align: center;
}

/* ── VIDEO CAROUSEL — Side Peek (3-up) ── */
.vid-carousel {
  position: relative;
  width: 272px;
  margin: 0 auto;
  touch-action: pan-y;
  /* No overflow:hidden — side cards peek outside bounds */
}
.vid-track {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
}
.vid-slide {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 8px 36px rgba(0,0,0,0.28);
  transition: transform 0.45s cubic-bezier(0.22,1,0.36,1),
              opacity 0.4s ease,
              filter 0.4s ease;
  will-change: transform, opacity, filter;
}

/* ── Peek states (set by JS) ── */
.vid-slide.is-active {
  transform: translateX(0) scale(1);
  opacity: 1;
  filter: blur(0px);
  z-index: 3;
}
.vid-slide.is-prev {
  transform: translateX(-64%) scale(0.82);
  opacity: 0.58;
  filter: blur(1.5px);
  z-index: 2;
}
.vid-slide.is-next {
  transform: translateX(64%) scale(0.82);
  opacity: 0.58;
  filter: blur(1.5px);
  z-index: 2;
}
.vid-slide.is-far-prev {
  transform: translateX(-108%) scale(0.68);
  opacity: 0.12;
  filter: blur(3px);
  z-index: 1;
}
.vid-slide.is-far-next {
  transform: translateX(108%) scale(0.68);
  opacity: 0.12;
  filter: blur(3px);
  z-index: 1;
}
.vid-slide.is-hidden {
  opacity: 0;
  transform: translateX(0) scale(0.68);
  z-index: 0;
  pointer-events: none;
}
.vid-slide.is-exit-left {
  transform: translateX(-120%) scale(0.72);
  opacity: 0;
  filter: blur(4px);
  z-index: 6;
  transition: transform 0.42s cubic-bezier(0.4,0,0.6,1),
              opacity 0.35s ease,
              filter 0.35s ease;
}
.vid-slide.is-exit-right {
  transform: translateX(120%) scale(0.72);
  opacity: 0;
  filter: blur(4px);
  z-index: 6;
  transition: transform 0.42s cubic-bezier(0.4,0,0.6,1),
              opacity 0.35s ease,
              filter 0.35s ease;
}

.vid-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* ── Thumbnail overlay — dark veil + play icon on non-active peek cards ── */
.vid-slide.is-prev::before,
.vid-slide.is-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(5, 20, 35, 0.52);
  z-index: 1;
  pointer-events: none;
  border-radius: inherit;
}
.vid-slide.is-prev::after,
.vid-slide.is-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='11.5' fill='rgba(255,255,255,0.14)' stroke='rgba(255,255,255,0.52)' stroke-width='1'/%3E%3Cpolygon points='10,8 18,12 10,16' fill='white'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
  pointer-events: none;
}

/* Dots sit below the stack */
.vid-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}
.vid-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(15,30,55,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.vid-dot.active {
  background: var(--electric-blue);
  transform: scale(1.35);
}

/* Arrows float over the active card */
.vid-arrow {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  padding-bottom: 2px;
  backdrop-filter: blur(4px);
}
.vid-arrow:hover { background: rgba(0,0,0,0.7); transform: translateY(-50%) scale(1.08); }
/* Centered over the peek cards (64% of 220px = 141px offset) */
.vid-arrow--prev { left: -48px; }
.vid-arrow--next { right: -48px; }

/* GSAP animation starting states */
.svc-animate-text { opacity: 0; transform: translateX(-40px); }
.svc-row--flip .svc-animate-text { transform: translateX(40px); }
.svc-animate-visual { opacity: 0; transform: translateX(40px) scale(0.96); }
.svc-row--flip .svc-animate-visual { transform: translateX(-40px) scale(0.96); }

/* ══════════════════════════════════════════
   RADAR — Introducing High Tide Radar
══════════════════════════════════════════ */
.radar { background: var(--bg); border-top: 1px solid var(--border); }
.radar .section-header { text-align: center; }
.radar .section-header .tag { margin: 0 auto; }
.radar-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.radar-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.radar-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
}
.radar-step:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(91,196,232,0.30);
  transform: translateY(-2px);
}
.radar-step-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--sky-light);
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.radar-step h4 {
  font-size: 20px;
  font-weight: 800;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.radar-step p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}
.radar-segments {
  background: var(--navy-deep);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.radar-segments-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
}
.radar-segments-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.radar-segments-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.radar-segment-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  transition: background 0.2s, border-color 0.2s;
}
.radar-segment-row:hover {
  background: rgba(91,196,232,0.08);
  border-color: rgba(91,196,232,0.20);
}
.radar-segment-name {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.radar-segment-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--sky);
}
.radar-segments-pulse {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.radar-segments-pulse::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 0 rgba(74,222,128,0.6);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(74,222,128,0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ══════════════════════════════════════════
   METHOD — 8 channel cards
══════════════════════════════════════════ */
.method { background: var(--bg-alt); border-top: 1px solid var(--border); }
.method .section-header { text-align: center; }
.method .section-header .tag { margin: 0 auto; }
.method-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.method-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
}
.method-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(91,196,232,0.30);
  transform: translateY(-2px);
}
.method-card-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--sky-light);
  color: var(--sky-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.method-card h3 {
  font-size: 15px;
  font-weight: 700;
}
.method-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════════════════
   EFFICIENCY — stats row + comparison
══════════════════════════════════════════ */
.efficiency { background: var(--bg); border-top: 1px solid var(--border); }
.efficiency .section-header { text-align: center; max-width: 760px; margin: 0 auto 48px; }
.efficiency .section-header .tag { margin: 0 auto; }
.eff-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}
.eff-stat {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.eff-stat-val {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}
.eff-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.eff-table {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.eff-table-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: var(--navy-deep);
  color: #fff;
  padding: 18px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.eff-table-head > div:nth-child(2) { color: rgba(255,255,255,0.45); }
.eff-table-head > div:nth-child(3) { color: var(--sky); }
.eff-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  align-items: center;
}
.eff-row:last-child { border-bottom: none; }
.eff-row-label {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 15px;
}
.eff-row-old {
  color: var(--text-muted);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eff-row-old::before {
  content: '✕';
  color: #e57373;
  font-weight: 700;
}
.eff-row-new {
  color: var(--sky-dark);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.eff-row-new::before {
  content: '✓';
  color: #2da66e;
  font-weight: 700;
}

/* ══════════════════════════════════════════
   STAGE WHEEL — Identify / Advertise / Retarget
══════════════════════════════════════════ */
.stage { background: var(--navy-deep); color: #fff; }
.stage .section-header { text-align: center; }
.stage .section-header h2 { color: #fff; }
.stage .section-header h2 em { color: var(--sky); }
.stage .section-header .tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border-color: rgba(255,255,255,0.12);
  margin: 0 auto;
}
.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.stage-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,196,232,0.4), rgba(91,196,232,0.4), transparent);
}
.stage-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
}
.stage-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 2px solid var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  font-weight: 700;
  color: var(--sky);
  position: relative;
  z-index: 1;
}
.stage-card h3 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.stage-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.stage-cycle-note {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ══════════════════════════════════════════
   WHY HTM — split with photo
══════════════════════════════════════════ */
.whyhtm { background: var(--bg); }
.whyhtm-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.whyhtm-content .tag { margin-bottom: 20px; }
.whyhtm-content h2 { margin-bottom: 20px; }
.whyhtm-content > p {
  font-size: 16.5px;
  color: var(--text-body);
  margin-bottom: 28px;
  line-height: 1.75;
}
.whyhtm-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.whyhtm-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-body);
  font-weight: 500;
}
.whyhtm-bullets li svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--sky-dark);
  background: var(--sky-light);
  border-radius: 50%;
  padding: 4px;
  box-sizing: content-box;
}
.btn-strategy-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  background: var(--gold);
  color: var(--navy-deep);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 15px 32px;
  border-radius: var(--radius-btn);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(240,192,64,0.30);
  text-decoration: none;
}
.btn-strategy-cta:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(240,192,64,0.40);
}
.btn-strategy-cta svg {
  transition: transform 0.2s ease;
}
.btn-strategy-cta:hover svg {
  transform: translateX(4px);
}

.whyhtm-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-alt);
}
.whyhtm-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.whyhtm-photo-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(13,59,82,0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
}
.whyhtm-photo-tag strong {
  display: block;
  color: var(--gold);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 18px;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
}

/* ══════════════════════════════════════════
   SERVICE PAGES — Hub + Individual pages
   Light theme — matches homepage design system.
   White/off-white sections, navy text, sky-light icons.
══════════════════════════════════════════ */

/* ── Service Page Hero (shared) — stays dark like homepage hero ── */
.svc-pg-hero {
  padding: calc(var(--nav-h) + 72px) var(--px) 88px;
  background: radial-gradient(ellipse 110% 80% at 50% 35%, #0e4d72 0%, #091f2e 62%, #071f2b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.svc-pg-hero-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(rgba(93,188,229,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(93,188,229,.04) 1px, transparent 1px),
    linear-gradient(to bottom, transparent 0%, rgba(7,31,43,.5) 100%);
  background-size: 50px 50px, 50px 50px, 100% 100%;
}
.svc-pg-hero-inner {
  position: relative; z-index: 1;
  max-width: 860px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 24px;
}
.svc-pg-hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; color: #fff; line-height: 1.08;
  letter-spacing: -0.03em; margin: 0;
}
.svc-pg-hero h1 em { color: var(--sky); font-style: normal; }
.svc-pg-hero-sub {
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(255,255,255,0.65); max-width: 620px; line-height: 1.75;
  margin: 0;
}
.svc-pg-hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
  margin-top: 8px;
}

/* ── Services Hub Page ── */
.svc-hub {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.svc-hub-heading {
  text-align: center; font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 56px;
  /* inherits var(--navy) from global h2 — correct on light bg */
}
.svc-hub-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.svc-hub-card {
  display: flex; flex-direction: column; gap: 12px;
  padding: 32px 28px 28px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none; color: inherit;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
  position: relative; overflow: hidden;
}
.svc-hub-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--sky-dark), var(--sky));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.svc-hub-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-3px);
  border-color: rgba(91,196,232,0.35);
}
.svc-hub-card:hover::before { transform: scaleX(1); }
.svc-hub-card--radar {
  background: var(--sky-tint); border-color: rgba(91,196,232,0.2);
}
.svc-hub-card--radar:hover { border-color: rgba(91,196,232,0.5); }
.svc-hub-card-icon {
  width: 44px; height: 44px; border-radius: var(--radius-md);
  background: var(--sky-light); color: var(--sky-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.svc-hub-card:hover .svc-hub-card-icon { background: var(--sky-dark); color: #fff; }
.svc-hub-card-num {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--text-faint); letter-spacing: 0.08em;
}
.svc-hub-card h3 {
  font-size: 19px; font-weight: 700; margin: 0;
  /* inherits var(--navy) */
}
.svc-hub-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; flex: 1;
}
.svc-hub-card-link {
  font-size: 13px; font-weight: 700; color: var(--sky-dark);
  letter-spacing: 0.03em; margin-top: 4px;
}
/* Hub bottom CTA — dark accent like .final-cta / .stage */
.svc-hub-cta { background: var(--navy-deep); }
.svc-hub-cta-inner {
  max-width: 680px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.svc-hub-cta-inner h2 { font-size: clamp(28px, 3.5vw, 46px); color: #fff; }
.svc-hub-cta-inner h2 em { color: var(--sky); }
.svc-hub-cta-inner p { color: rgba(255,255,255,0.6); font-size: 16px; line-height: 1.75; max-width: 540px; }

/* ── Social Media Page — Platform Strip ── */
.sm-platforms {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-top: 52px;
}
.sm-platforms-heading {
  text-align: center;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin: 0 0 40px;
  padding: 0 var(--px);
}
.sm-platforms-inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 var(--px) 56px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch;
}
.sm-platform-tile {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 32px 24px 28px; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-xs);
}
.sm-platform-icon { color: var(--sky-dark); }
.sm-platform-name { font-size: 16px; font-weight: 700; color: var(--navy); }
.sm-platform-type { font-size: 11px; color: var(--sky-dark); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.sm-platform-desc {
  font-size: 13.5px; color: var(--text-muted); line-height: 1.65;
  margin: 4px 0 0; text-align: center;
}
.sm-platform-radar {
  padding: 28px 28px;
  border-radius: var(--radius-lg); border-left: 3px solid var(--sky);
  background: var(--sky-tint); border-top: 1px solid rgba(91,196,232,0.15);
  border-right: 1px solid rgba(91,196,232,0.15); border-bottom: 1px solid rgba(91,196,232,0.15);
}
.sm-platform-radar-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--sky-dark); margin-bottom: 10px;
}
.sm-platform-radar p { font-size: 14.5px; color: var(--text-muted); line-height: 1.7; margin: 0; }

/* ── Social Media — Philosophy Section ── */
.sm-philosophy {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 100px var(--px);
}
.sm-philosophy .section-inner { max-width: var(--max-width); margin: 0 auto; }
.sm-philosophy-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
.sm-philosophy-content .tag { margin-bottom: 16px; }
.sm-philosophy-content h2 {
  font-size: clamp(26px, 2.8vw, 40px); font-weight: 800;
  color: var(--navy); line-height: 1.2; margin: 0 0 24px;
}
.sm-philosophy-content p {
  font-size: 15.5px; color: var(--text-muted); line-height: 1.75;
  margin: 0 0 16px;
}
.sm-philosophy-content p:last-child { margin-bottom: 0; }
.sm-philosophy-content strong { color: var(--navy); font-weight: 700; }

.sm-philosophy-stat {
  display: flex; flex-direction: column;
  padding: 28px 28px 24px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  margin-bottom: 28px;
}
.sm-philosophy-stat-val {
  font-size: clamp(42px, 5vw, 64px); font-weight: 800;
  color: var(--sky); letter-spacing: -0.03em; line-height: 1;
}
.sm-philosophy-stat-label {
  font-size: 13px; color: rgba(255,255,255,0.6);
  margin-top: 8px; line-height: 1.4;
}

.sm-philosophy-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 24px;
}
.sm-philosophy-list li {
  display: flex; gap: 16px; align-items: flex-start;
}
.sm-philosophy-list-icon {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 9px;
  background: var(--sky-light); color: var(--sky-dark);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.sm-philosophy-list li strong {
  display: block; font-size: 15px; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
}
.sm-philosophy-list li p {
  font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0;
}

/* ── Social Media Page — Comparison ── */
/* ── Social Media — Problem section (bento card grid) ── */
.sm-compare {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.sm-compare .section-header { max-width: 640px; }
.sm-compare .section-sub {
  margin-top: 16px;
  font-size: 16px; color: var(--text-muted); line-height: 1.65;
}

/* Problem card grid — 3 col, 2 rows, auto-flow */
.sm-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 52px;
  align-items: stretch;
}

.sm-problem-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: 0 1px 4px rgba(13,59,82,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
}
.sm-problem-card:hover {
  box-shadow: 0 6px 24px rgba(13,59,82,0.09);
  transform: translateY(-2px);
}
.sm-problem-card--featured {
  border-color: var(--navy);
  background: var(--navy-deep);
}

.sm-problem-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: #fef2f2;
  color: #dc2626;
  margin-bottom: 20px;
}
.sm-problem-card--featured .sm-problem-icon {
  background: rgba(220,38,38,0.15);
  color: #f87171;
}

.sm-problem-card h3 {
  font-size: 17px; font-weight: 700;
  color: var(--navy); line-height: 1.35;
  margin-bottom: 12px;
}
.sm-problem-card--featured h3 { color: #fff; }

.sm-problem-card p {
  font-size: 14.5px; color: var(--text-muted); line-height: 1.65; margin: 0;
}
.sm-problem-card--featured p { color: rgba(255,255,255,0.7); }

.sm-problem-stat {
  margin-top: 20px !important;
  padding: 16px 18px;
  background: rgba(240,192,64,0.12);
  border: 1px solid rgba(240,192,64,0.25);
  border-radius: 8px;
  font-size: 13.5px !important;
  color: rgba(255,255,255,0.75) !important;
}
.sm-problem-stat strong { color: var(--sky); }

/* Solution strip below the problem cards */
.sm-solution-strip {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--navy);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.sm-solution-label {
  font-size: 11px; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--sky);
  white-space: nowrap;
  flex-shrink: 0;
}
.sm-solution-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px 28px;
  flex: 1;
}
.sm-solution-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: rgba(255,255,255,0.82);
  line-height: 1.4;
}
.sm-solution-list li svg { color: var(--sky); flex-shrink: 0; }

/* ── Social Media Page — Capabilities Grid ── */
.sm-caps {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.sm-caps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px;
}
.sm-cap-card:nth-child(4) { grid-column: 1 / 2; }
.sm-cap-card:nth-child(5) { grid-column: 2 / 3; }
.sm-cap-card {
  padding: 28px 24px 26px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.25s, transform 0.25s var(--ease-out), border-color 0.25s;
}
.sm-cap-card:hover {
  box-shadow: var(--shadow-md); transform: translateY(-2px);
  border-color: rgba(91,196,232,0.35);
}
.sm-cap-icon {
  width: 42px; height: 42px; border-radius: var(--radius-md);
  background: var(--sky-light); color: var(--sky-dark);
  display: flex; align-items: center; justify-content: center;
}
.sm-cap-card h3 { font-size: 17px; font-weight: 700; margin: 0; }
.sm-cap-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* CTA card variant — Free Social Media Audit */
.sm-cap-card--cta {
  background: var(--gold-light);
  border-color: rgba(240,192,64,0.4);
  position: relative;
}
.sm-cap-card--cta:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(240,192,64,0.18);
}
.sm-cap-card--cta h3 { color: var(--navy); }
.sm-cap-icon--gold {
  background: rgba(240,192,64,0.2);
  color: var(--gold-hover);
}
.sm-cap-cta-btn {
  display: inline-flex; align-items: center;
  margin-top: 6px;
  font-size: 13.5px; font-weight: 700;
  color: var(--navy); text-decoration: none;
  padding: 9px 16px;
  background: var(--gold);
  border-radius: 6px;
  width: fit-content;
  transition: background 0.2s, transform 0.15s;
}
.sm-cap-cta-btn:hover { background: var(--gold-hover); transform: translateX(2px); }

/* ── Social Media Page — Package Tiers ── */
/* ── Packages / Pricing Cards ── */
.sm-tiers {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.sm-tiers-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 52px; align-items: start;
}

/* Plan card base */
.smp-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s cubic-bezier(0.16,1,0.3,1);
}
.smp-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(13,59,82,0.12), 0 24px 64px rgba(13,59,82,0.1);
}
/* Featured card */
.smp-card--featured {
  border: 2px solid var(--sky-mid);
  box-shadow: 0 4px 12px rgba(13,59,82,0.08), 0 12px 40px rgba(13,59,82,0.1);
}
.smp-card--featured:hover {
  box-shadow: 0 12px 48px rgba(26,138,181,0.18), 0 32px 80px rgba(13,59,82,0.16);
}

/* Header section */
.smp-header { padding: 32px 32px 28px; }

/* Tag pill */
.smp-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 999px; margin-bottom: 16px;
}
.smp-tag--std  { background: var(--sky-light); color: var(--sky-dark); }
.smp-tag--pro  { background: linear-gradient(90deg, var(--sky-dark), var(--sky-mid)); color: #fff; }

/* Plan name + desc */
.smp-name {
  font-size: 26px; font-weight: 800; letter-spacing: -0.025em;
  color: var(--navy); margin-bottom: 8px; line-height: 1.2;
}
.smp-desc {
  font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 26px;
}

/* CTA buttons */
.smp-cta {
  display: block; width: 100%;
  padding: 14px 24px; border-radius: 8px;
  font-size: 14.5px; font-weight: 700; text-align: center; text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16,1,0.3,1);
}
.smp-cta--outline {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--navy);
}
.smp-cta--outline:hover {
  border-color: var(--sky-mid); color: var(--sky-dark); background: var(--sky-light);
}
.smp-cta--solid {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(240,192,64,0.3);
}
.smp-cta--solid:hover {
  background: var(--gold-hover); border-color: var(--gold-hover);
  box-shadow: 0 6px 24px rgba(240,192,64,0.45); transform: translateY(-1px);
}

/* Divider */
.smp-divider { height: 1px; background: var(--border); margin: 0 32px; }

/* Features section */
.smp-features { padding: 28px 32px 36px; }
.smp-features-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-faint); margin-bottom: 18px;
}
.smp-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.smp-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-body); line-height: 1.55;
}
.smp-check {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; margin-top: 1px;
}
.smp-check--std { background: var(--sky-light); color: var(--sky-dark); }
.smp-check--pro { background: linear-gradient(135deg, var(--sky-dark), var(--sky-mid)); color: #fff; }

.sm-tiers-note {
  text-align: center; font-size: 13px; color: var(--text-faint);
  margin-top: 32px;
}

/* ── Social Media Page — Work Showcase ── */
.sm-work {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.sm-work-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 48px;
}
.sm-work-tile {
  aspect-ratio: 9/16; border-radius: var(--radius-lg);
  background: #fff; border: 1px solid var(--border);
  overflow: hidden; position: relative;
  box-shadow: var(--shadow-xs);
}
.sm-work-tile-inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; color: var(--text-faint);
}
.sm-work-tile-inner span {
  font-size: 11px; font-weight: 600; letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════════
   RESPONSIVE — Full breakpoint system
   1024px → tablet landscape
   900px  → tablet portrait / service rows
   768px  → mobile (hamburger kicks in)
   480px  → small phones
   375px  → iPhone SE / smallest common
══════════════════════════════════════════ */

/* ── 1024px: Tablet landscape ── */
@media (max-width: 1024px) {
  /* Hero: collapse to single column */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 100px;
    align-items: flex-start;
  }
  /* Stat cards: horizontal 3-up row */
  .hero-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .hero-watermark { font-size: clamp(40px, 7vw, 100px); }
  .hc-dark { grid-column: span 2; }

  /* Grids */
  .pain-inner { grid-template-columns: 1fr; gap: 40px; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .diff-card-featured { grid-column: span 2; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-layout { grid-template-columns: 1fr; gap: 40px; }
  .faq-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 3; }
  .wwd-grid { grid-template-columns: repeat(2, 1fr); }
  .radar-layout { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: repeat(2, 1fr); }
  .whyhtm-layout { grid-template-columns: 1fr; gap: 40px; }
  .whyhtm-photo { aspect-ratio: 16/10; max-width: 560px; margin: 0 auto; }
  .final-cta-form { max-width: 100%; }

  /* Service rows: drop 100vh constraint on tablet */
  .svc-row { min-height: auto; }
  .svc-row-inner { padding: 80px var(--px); }
}

/* ── 900px: Service rows collapse to single column ── */
@media (max-width: 900px) {
  .svc-row { min-height: auto; }
  .svc-row-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    direction: ltr !important;
    padding: 64px var(--px);
  }
  .svc-row--flip .svc-row-inner { direction: ltr; }
  .svc-media-box { aspect-ratio: 16 / 9; }
  .svc-animate-text,
  .svc-row--flip .svc-animate-text { transform: translateY(30px); }
  .svc-animate-visual,
  .svc-row--flip .svc-animate-visual { transform: translateY(30px) scale(0.96); }
}

/* ── 768px: Mobile — hamburger nav kicks in ── */
@media (max-width: 768px) {
  :root { --px: 20px; }

  /* Section spacing */
  .section-inner { padding: 64px var(--px); }
  .process .section-inner { padding: 64px var(--px) 72px; }

  /* Topbar: collapse to just CTA */
  .topbar { padding: 7px var(--px); }
  .topbar-sep, .topbar-link:not(.topbar-cta) { display: none; }
  .topbar-inner { justify-content: center; }
  .topbar-cta { margin-left: 0; }

  /* Nav: hide links, show hamburger */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* ── MOBILE MENU: dark/branded ── */
  .mobile-menu {
    background: var(--navy-deep);
  }
  .mobile-nav a {
    font-size: 24px;
    color: rgba(255,255,255,0.85);
  }
  .mobile-nav a:hover { color: #fff; }
  /* CTA button in mobile menu */
  .mobile-menu .btn-gold {
    font-size: 15px;
    padding: 14px 32px;
  }

  /* ── HERO (MOBILE ONLY) ── */
  /* Lock hero height to the viewport size captured at page load (--vh is set
     once in JS and never updated on resize). This prevents the jump that
     happens when iOS Chrome collapses its tab bar mid-scroll. */
  .hero { height: calc(var(--vh, 1svh) * 100); }

  /* Hide the video and its wrapper on mobile — the video is a large HD file
     that kills load time on cellular. Solid navy background shows instead. */
  /* Hide the video, replace with a radial gradient + subtle grid texture */
  .hero-bg-wrap { display: none; }

  .hero {
    /* Deep navy centre glow fading to the darkest edge */
    background: radial-gradient(ellipse 110% 85% at 50% 42%,
      #0e4d72 0%,
      #091f2e 65%,
      var(--navy-deep) 100%);
  }

  /* Repurpose the overlay (no video underneath) as a fine grid texture
     + a gentle bottom-fade to keep text readable */
  .hero-overlay {
    background:
      linear-gradient(rgba(93,188,229,.045) 1px, transparent 1px),
      linear-gradient(90deg, rgba(93,188,229,.045) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(7,31,43,.05) 0%, rgba(7,31,43,.65) 100%);
    background-size: 42px 42px, 42px 42px, 100% 100%;
  }

  /* Scroll zone = exact hero height → no pause/gap before stats section.
     --vh is locked at load so this matches the hero perfectly. */
  .hero-scroll-zone { height: calc(var(--vh, 1svh) * 100); }

  /* Hero inner: single column, centered, no overflow clipping */
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: calc(var(--nav-h) + 24px);
    padding-left: var(--px);
    padding-right: var(--px);
    padding-bottom: 80px;
    align-items: center;
    justify-items: center;
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
    gap: 0;
  }
  /* Center all hero text */
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-eyebrow { justify-content: center; }
  .hero-sub { text-align: center; max-width: 100%; }
  .hero-ctas { justify-content: center; }

  /* Headline — large on mobile, two short lines fill the space */
  .hero-h2 { font-size: clamp(48px, 13vw, 68px); line-height: 1.05; }

  /* Subheadline — bold so it reads against the video */
  .hero-sub { font-weight: 700; }

  /* Remove stat card bubbles from hero on mobile entirely */
  .hero-visual { display: none; }

  /* Watermark — spans ~90% of screen width */
  .hero-watermark {
    font-size: clamp(44px, 12vw, 120px);
    bottom: 68px; /* 52px ticker + 16px gap */
    color: rgba(255,255,255,0.22);
    letter-spacing: -0.03em;
    width: 100%;
    text-align: center;
    left: 0;
    transform: none;
  }

  /* ── TYPOGRAPHY — section headings bigger on mobile ── */
  h2 { font-size: clamp(26px, 6.5vw, 38px); }
  .section-header h2 { font-size: clamp(26px, 6.5vw, 38px); }

  /* ── GRIDS ── */
  .hc-dark { grid-column: span 2; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .diff-card-featured { grid-column: span 1; flex-direction: column; }
  .testi-grid { grid-template-columns: 1fr; }
  .wwd-grid { grid-template-columns: 1fr 1fr; }
  .stage-grid { grid-template-columns: 1fr; gap: 20px; }
  .stage-grid::before { display: none; }

  /* ── METHOD CARDS — 2-column tap grid on mobile ── */
  .method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: auto;
    position: static;
    overflow: visible;
    scroll-snap-type: none;
    -webkit-overflow-scrolling: auto;
    padding-bottom: 0;
    margin-bottom: 0;
    scrollbar-width: auto;
  }
  .method-grid::after { display: none; }

  .method-card {
    position: static !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    flex-shrink: 1;
    scroll-snap-align: none !important;
    transform: none !important;
    opacity: 1 !important;
    z-index: auto !important;
    will-change: auto;
    padding: 16px 14px 14px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s !important;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
    -webkit-user-select: none;
  }

  /* Icon — slightly smaller in compact grid */
  .method-card .method-card-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  /* Title — compact */
  .method-card h3 {
    font-size: 13px;
    line-height: 1.3;
    margin-bottom: 0;
  }

  /* Description hidden by default */
  .method-card p {
    display: none;
    font-size: 13px;
    line-height: 1.55;
    margin-top: 10px;
    color: var(--text-muted);
  }

  /* "Learn more" toggle — injected by JS */
  .method-card-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sky);
    margin-top: 10px;
  }
  .method-card-toggle svg { transition: transform 0.25s; flex-shrink: 0; }

  /* Expanded card spans full width and reveals description */
  .method-card.is-open {
    grid-column: span 2;
    border-color: rgba(93,188,229,0.4);
    background: rgba(93,188,229,0.05);
  }
  .method-card.is-open p { display: block; }
  .method-card.is-open .method-card-toggle svg { transform: rotate(180deg); }

  /* ── PROCESS ── */
  .process-spine { display: none; }
  .process-cards { grid-template-columns: 1fr; gap: 16px; }
  .process-card { opacity: 1 !important; transform: none !important; padding: 28px 24px 32px; }
  .process-track { margin-top: 40px; }
  .process .section-header h2 { font-size: clamp(30px, 8vw, 44px); }

  /* ── PAIN ── */
  .pain-cols { grid-template-columns: 1fr; }
  .pain-col-before { border-right: none; border-bottom: 1px solid var(--border); }

  /* ── TESTIMONIALS ── */
  .testi-featured { padding: 32px 24px; }
  .testi-featured > p { font-size: 15px; }
  .testi-featured-footer { flex-wrap: wrap; }
  .testi-metric { border-left: none; margin-left: 0; text-align: left; padding-left: 0; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.1); width: 100%; }

  /* ── EFFICIENCY TABLE ── */
  .eff-stats { grid-template-columns: 1fr 1fr; }
  .eff-table-head, .eff-row { grid-template-columns: 1fr; gap: 6px; padding: 18px 20px; }
  .eff-table-head > div:nth-child(2), .eff-table-head > div:nth-child(3) { display: none; }

  /* ── RADAR ── */
  .radar-step { grid-template-columns: 1fr; gap: 16px; padding: 24px; }

  /* ── VIDEO CAROUSEL ── */
  .vid-arrow--prev { left: -32px; }
  .vid-arrow--next { right: -32px; }
  .vid-arrow { width: 40px; height: 40px; }

  /* ── SERVICE rows ── */
  .svc-row { min-height: auto; }
  .svc-row-inner { padding: 56px var(--px); gap: 36px; }

  /* ── SERVICE PAGES ── */
  .svc-pg-hero { padding: calc(var(--nav-h) + 48px) var(--px) 64px; }
  .svc-pg-hero h1 { font-size: clamp(32px, 9vw, 52px); }
  .svc-pg-hero-sub { font-size: 15px; }
  .svc-pg-hero-ctas { flex-direction: column; align-items: center; }
  .svc-hub-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .svc-hub-card { padding: 24px 20px 20px; }
  .svc-hub-card h3 { font-size: 17px; }
  .sm-platforms-inner { grid-template-columns: 1fr 1fr; gap: 14px; padding: 40px var(--px); }
  .sm-platform-radar { grid-column: span 2; }
  .sm-philosophy-grid { grid-template-columns: 1fr; gap: 48px; }
  .sm-philosophy { padding: 72px var(--px); }
  .sm-problem-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sm-problem-grid .sm-problem-card--featured { grid-column: 1 / 3; }
  .sm-solution-strip { flex-direction: column; gap: 18px; align-items: flex-start; }
  .sm-caps-grid { grid-template-columns: 1fr 1fr; }
  .sm-tiers-grid { grid-template-columns: 1fr; gap: 24px; }
  .smp-header { padding: 28px 24px 22px; }
  .smp-features { padding: 22px 24px 28px; }
  .smp-divider { margin: 0 24px; }
  .sm-work-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .svc-hub-cta-inner h2 { font-size: clamp(26px, 7vw, 40px); }

  /* ── STAGE (Why High Tide Is Different) ── */
  .stage .section-header h2 { font-size: clamp(30px, 8vw, 44px); }

  /* ── FAQ ── */
  .faq-left h2 { font-size: clamp(30px, 8vw, 42px); }

  /* ── FINAL CTA (The Tide Is Rising) ── */
  #cta-heading { font-size: clamp(30px, 8.5vw, 46px); }

  /* ── FOOTER — centered on mobile ── */
  .footer-inner { padding: 52px var(--px) 0; }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .footer-brand { grid-column: span 1; }
  .footer-brand img { margin: 0 auto 18px; height: 110px; }
  .footer-brand p { max-width: 100%; margin: 0 auto; }
  .footer-brand-badges { justify-content: center; }
  .footer-col ul { align-items: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }
  .footer-links { justify-content: center; }
  .footer-wordmark { font-size: clamp(28px, 9vw, 80px); }
}

/* ── 480px: Small phones ── */
@media (max-width: 480px) {
  :root { --px: 16px; }

  /* Service pages */
  .svc-hub-grid { grid-template-columns: 1fr; }
  .sm-platforms-inner { grid-template-columns: 1fr; }
  .sm-platform-radar { grid-column: span 1; }
  .sm-caps-grid { grid-template-columns: 1fr; }
  .sm-work-grid { grid-template-columns: 1fr 1fr; }
  .svc-pg-hero-ctas .btn-ghost { display: none; }

  /* Typography */
  h2 { font-size: clamp(24px, 7vw, 32px); }
  .section-header h2 { font-size: clamp(24px, 7vw, 32px); }
  .hero-h2 { font-size: clamp(42px, 12vw, 58px); line-height: 1.05; }
  .hero-sub { font-size: 15px; font-weight: 700; }
  .hero-eyebrow { font-size: 10px; }

  /* Hero — mobile only */
  .hero-scroll-zone { height: calc(var(--vh, 1svh) * 100); }
  .hero-inner { padding-top: calc(var(--nav-h) + 12px); padding-bottom: 32px; }
  .hero-watermark { font-size: clamp(36px, 11vw, 80px); bottom: 62px; width: 100%; text-align: center; left: 0; transform: none; }

  /* Stat cards: single column */
  .hero-visual { grid-template-columns: 1fr; }
  .hero-visual .hc-stat:nth-child(3) { display: none; }

  /* Grids */
  .wwd-grid { grid-template-columns: 1fr 1fr; }
  .eff-stats { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr 1fr; }

  /* Section spacing */
  .section-inner { padding: 52px var(--px); }
  .process .section-inner { padding: 52px var(--px) 60px; }

  /* Nav */
  .nav-logo img { height: 44px; }
  .mobile-nav a { font-size: 20px; }

  /* Process */
  .process-card { padding: 24px 20px 28px; }

  /* Service rows */
  .svc-row-inner { padding: 48px var(--px); gap: 28px; }
  .svc-text h3 { font-size: 22px; }

  /* Video carousel */
  .vid-carousel { width: 220px; }
  .vid-arrow--prev { left: -28px; }
  .vid-arrow--next { right: -28px; }

  /* CTA */
  .btn-hero { font-size: 14px; padding: 13px 24px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  /* Method cards: narrower cards on very small */
  .method-card { min-width: 190px; max-width: 190px; }

  /* Footer */
  .footer-wordmark { font-size: clamp(20px, 8vw, 48px); }

  .hc-dark { grid-column: span 1; }
  .hc-row { grid-template-columns: 1fr 1fr; }
}

/* ══════════════════════════════════════════
   SOCIAL MEDIA SERVICE PAGE — New Sections
   sm-hero two-col · sm-why · sm-results · sm-work
══════════════════════════════════════════ */

/* ── Hero: two-column layout (content left, stats right) ── */
.sm-hero { text-align: left; padding-bottom: 0; }
.sm-hero .svc-pg-hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22; pointer-events: none;
}
.sm-hero .svc-pg-hero-overlay {
  background: linear-gradient(135deg, rgba(5,13,26,0.92) 40%, rgba(5,13,26,0.7) 100%);
}
.svc-pg-hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-width); margin: 0 auto;
  padding: calc(var(--nav-h) + 80px) var(--px) 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.sm-hero-content { display: flex; flex-direction: column; gap: 28px; }
.sm-hero-content .tag { align-self: flex-start; }
.sm-hero-content h1 { font-size: clamp(38px, 5vw, 64px); text-align: left; margin: 0; }
.sm-hero-content .svc-pg-hero-sub { text-align: left; max-width: 520px; }
.sm-hero-content .svc-pg-hero-ctas { justify-content: flex-start; }
.sm-hero-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; overflow: hidden;
}
.sm-hero-stat {
  padding: 28px 24px;
  background: rgba(5,13,26,0.5);
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sm-hero-stat:nth-child(even) { border-right: none; }
.sm-hero-stat:nth-child(3),
.sm-hero-stat:nth-child(4) { border-bottom: none; }
.sm-hero-stat-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 800;
  color: var(--gold); letter-spacing: -0.02em; line-height: 1;
}
.sm-hero-stat-label {
  font-size: 12px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-top: 6px; line-height: 1.4;
}

/* ── Why HTM / Radar section ── */
.sm-why {
  background: var(--navy-deep);
  padding: 100px var(--px);
}
.sm-why-header {
  text-align: center; max-width: 680px;
  margin: 0 auto 64px;
}
.sm-why-header .tag { margin: 0 auto; }
.sm-why-header h2 { color: #fff; margin-top: 12px; }
.sm-why-header h2 em { color: var(--sky); font-style: normal; }
.sm-why-header p { color: rgba(255,255,255,0.6); font-size: 17px; line-height: 1.7; margin: 16px 0 0; }
.sm-why-grid {
  max-width: var(--max-width); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.sm-why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 36px 32px;
  transition: background 0.25s, border-color 0.25s;
}
.sm-why-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(91,196,232,0.25);
}
.sm-why-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(91,196,232,0.12); color: var(--sky);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sm-why-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin: 0 0 10px; }
.sm-why-card p { font-size: 14.5px; color: rgba(255,255,255,0.58); line-height: 1.7; margin: 0; }
.sm-why-cta { text-align: center; margin-top: 48px; }
.sm-why-radar-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--sky); font-size: 15px; font-weight: 600;
  text-decoration: none; transition: color 0.2s;
}
.sm-why-radar-link:hover { color: #fff; }

/* ── Real Results stats section ── */
.sm-results {
  background: #061220;
  padding: 100px var(--px);
}
.sm-results .section-inner { max-width: var(--max-width); margin: 0 auto; }
.sm-results .section-header .tag { margin: 0 auto; }
.sm-results .section-header h2 { color: #fff; }
.sm-results .section-header h2 em { color: var(--sky); font-style: normal; }
.sm-results-sub { color: rgba(255,255,255,0.45); font-size: 16px; margin-top: 8px; }
.sm-results-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px; margin-top: 56px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
}
.sm-result-card {
  padding: 40px 28px; text-align: center;
  background: rgba(6,18,32,0.8);
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.25s;
}
.sm-result-card:last-child { border-right: none; }
.sm-result-card:hover { background: rgba(255,255,255,0.04); }
.sm-result-value {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(26px, 3vw, 42px); font-weight: 800;
  color: var(--sky); letter-spacing: -0.02em; line-height: 1;
}
.sm-result-label {
  font-size: 13px; font-weight: 700; color: #fff;
  margin-top: 10px; line-height: 1.3;
}
.sm-result-sub {
  font-size: 11px; color: rgba(255,255,255,0.35);
  margin-top: 6px; line-height: 1.5;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── Work Samples ── */
.sm-work { background: var(--bg); padding: 100px var(--px); }
.sm-work .section-inner { max-width: var(--max-width); margin: 0 auto; }
.sm-work-sub { color: var(--text-muted); font-size: 16px; margin-top: 8px; }
.sm-work-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 48px;
}
.sm-work-card {
  border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.sm-work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}
.sm-work-thumb {
  aspect-ratio: 9/16; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  position: relative; cursor: pointer;
}
.sm-work-thumb--static { background: var(--bg-alt); color: var(--border); }
.sm-work-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sm-work-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.sm-work-play {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  color: #fff; transition: background 0.2s;
}
.sm-work-card:hover .sm-work-play { background: var(--sky); border-color: var(--sky); color: #fff; }
.sm-work-meta { padding: 16px; }
.sm-work-type {
  font-size: 15px; font-weight: 700;
  color: var(--navy);
  display: block;
}
.sm-work-client { font-size: 14px; font-weight: 600; color: var(--navy); }
.sm-work-note {
  text-align: center; margin-top: 36px;
  color: var(--text-muted); font-size: 15px;
}
.sm-work-note a { color: var(--sky-dark); font-weight: 600; text-decoration: none; }
.sm-work-note a:hover { color: var(--navy); }

/* ── Responsive: Social Media page ── */
@media (max-width: 900px) {
  .svc-pg-hero-inner { grid-template-columns: 1fr; gap: 48px; padding-bottom: 0; }
  .sm-hero-stats { grid-template-columns: repeat(2,1fr); }
  .sm-why-grid { grid-template-columns: 1fr 1fr; }
  .sm-results-grid { grid-template-columns: repeat(3,1fr); }
  .sm-results-grid .sm-result-card:nth-child(3) { border-right: none; }
  .sm-work-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .sm-hero { text-align: center; }
  .sm-hero-content .tag { align-self: center; }
  .sm-hero-content h1 { text-align: center; }
  .sm-hero-content .svc-pg-hero-sub { text-align: center; }
  .sm-hero-content .svc-pg-hero-ctas { justify-content: center; flex-wrap: wrap; }
  .sm-why-grid { grid-template-columns: 1fr; }
  .sm-results-grid { grid-template-columns: 1fr 1fr; }
  .sm-results-grid .sm-result-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .sm-work-grid { grid-template-columns: 1fr 1fr; }
  /* Problem cards — single column on phones */
  .sm-problem-grid { grid-template-columns: 1fr; }
  .sm-problem-grid .sm-problem-card,
  .sm-problem-grid .sm-problem-card--featured { grid-column: 1; grid-row: auto; }
  .sm-solution-strip { padding: 24px 20px; }
  .sm-solution-list { gap: 10px; }
}

/* ── 375px: iPhone SE and smallest common viewports ── */
@media (max-width: 375px) {
  :root { --px: 14px; }
  .hero-h2 { font-size: clamp(36px, 10.5vw, 48px); line-height: 1.05; }
  .hero-sub { font-size: 14px; font-weight: 700; }
  .hero-scroll-zone { height: calc(var(--vh, 1svh) * 100); }
  .vid-carousel { width: 200px; }
  .vid-arrow--prev { left: -24px; }
  .vid-arrow--next { right: -24px; }
  .hc-stat-val { font-size: 16px; }
  .method-card { min-width: 175px; max-width: 175px; }
}
