/* =============================================
   Webb Spinner Visions — Professional Polish
   Design tokens, light/dark, layout, components
   ============================================= */

:root {
  --bg: #040508;
  --bg-elevated: #0b0e16;
  --bg-panel: #10141f;
  --text: #f1f5f9;
  --text-muted: #a8b4c7;
  --text-subtle: #6b7a90;
  --border: #1a2235;
  --accent: #f59e0b;
  --accent-hover: #fbbf24;
  --accent-glow: rgba(245, 158, 11, 0.4);
  --accent-soft: rgba(245, 158, 11, 0.14);
  --bg-gradient:
    radial-gradient(ellipse 110% 65% at 50% -8%, rgba(30, 58, 95, 0.35) 0%, transparent 52%),
    radial-gradient(ellipse 70% 45% at 90% 90%, rgba(15, 23, 42, 0.4) 0%, transparent 48%),
    linear-gradient(180deg, #000000 0%, #05070c 28%, #0a0e17 58%, #060810 100%);
  --surface-glass: rgba(10, 13, 22, 0.78);
  --hero-gradient:
    radial-gradient(ellipse 90% 65% at 50% 0%, rgba(245, 158, 11, 0.1) 0%, transparent 48%),
    radial-gradient(ellipse 55% 40% at 50% 0%, rgba(30, 58, 95, 0.22) 0%, transparent 58%);
  --nav-bg: rgba(4, 5, 8, 0.88);
  --shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  --focus-ring: 0 0 0 3px rgba(245, 158, 11, 0.4);
  --section-py: clamp(3.5rem, 8vw, 5.5rem);
  --content-max: 80rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

[data-theme="light"] {
  --bg: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-panel: #f1f5f9;
  --text: #0f172a;
  --text-muted: #475569;
  --text-subtle: #64748b;
  --border: #cbd5e1;
  --accent: #d97706;
  --accent-hover: #b45309;
  --accent-glow: rgba(217, 119, 6, 0.25);
  --accent-soft: rgba(217, 119, 6, 0.1);
  --bg-gradient:
    radial-gradient(ellipse 100% 60% at 50% -10%, rgba(217, 119, 6, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, #f1f5f9 50%, #e2e8f0 100%);
  --surface-glass: rgba(255, 255, 255, 0.85);
  --hero-gradient: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217, 119, 6, 0.08) 0%, transparent 55%);
  --nav-bg: rgba(248, 250, 252, 0.92);
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) {
    --bg: #f8fafc;
    --bg-elevated: #ffffff;
    --bg-panel: #f1f5f9;
    --text: #0f172a;
    --text-muted: #475569;
    --text-subtle: #64748b;
    --border: #cbd5e1;
    --accent: #d97706;
    --accent-hover: #b45309;
    --accent-glow: rgba(217, 119, 6, 0.25);
    --accent-soft: rgba(217, 119, 6, 0.1);
    --hero-gradient: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(217, 119, 6, 0.08) 0%, transparent 55%),
      linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
    --nav-bg: rgba(248, 250, 252, 0.92);
    --shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
  }
}

html { color-scheme: dark light; scroll-behavior: smooth; }

body {
  background-color: #020204;
  background-image: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

[data-theme="light"] body,
@media (prefers-color-scheme: light) {
  :root:not([data-theme="dark"]) body { color-scheme: light; }
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: #0c0c0e;
  font-weight: 600;
  border-radius: 0.5rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 1rem;
  outline: none;
  box-shadow: var(--focus-ring);
}

/* Focus accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Layout */
.section { padding-block: var(--section-py); }
.section-inner {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}
.section-header { text-align: center; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.section-lead {
  margin-top: 0.75rem;
  color: var(--text-muted);
  max-width: 40rem;
  margin-inline: auto;
  font-size: 1.08rem;
  line-height: 1.7;
}

.grid-2 { display: grid; gap: 1.25rem; }
.grid-3 { display: grid; gap: 1.25rem; }
.grid-4 { display: grid; gap: 1.25rem; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Hero video (homepage) */
.hero-video-section {
  position: relative;
  background: var(--hero-gradient);
  padding: clamp(1rem, 3vw, 2rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.hero-video-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 42, 50, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 50, 0.15) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 20%, black 10%, transparent 80%);
  pointer-events: none;
}

.hero-video-inner {
  position: relative;
  z-index: 2;
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
}

.hero-video-stage {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.hero-video-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  box-shadow: var(--shadow), 0 0 80px var(--accent-glow);
  background: #000;
  aspect-ratio: 16 / 9;
}

.hero-video-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.35);
  border-radius: inherit;
}

.hero-yt-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.hero-video-caption img {
  border-radius: 0.35rem;
  border: 1px solid var(--border);
}

.hero-video-copy {
  text-align: center;
  max-width: 54rem;
  margin-inline: auto;
}

.hero-logo-compact {
  margin-bottom: 1.25rem;
}

.hero-logo-compact img {
  width: clamp(4rem, 12vw, 5rem);
}

.hero-title-compact {
  font-size: clamp(1.85rem, 5.5vw, 3.25rem);
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .hero-video-inner:not(.hero-video-inner--featured) {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: center;
  }

  .hero-video-inner:not(.hero-video-inner--featured) .hero-video-stage { margin-bottom: 0; }

  .hero-video-inner:not(.hero-video-inner--featured) .hero-video-copy { text-align: left; margin-inline: 0; }

  .hero-video-inner:not(.hero-video-inner--featured) .hero-video-copy .hero-meta { justify-content: flex-start; }

  .hero-video-inner:not(.hero-video-inner--featured) .hero-video-copy .btn-row-cta { margin-inline: 0; }
}

/* Why video section */
.why-platform-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 2rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.why-platform-bar span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.why-platform-bar i {
  color: var(--accent);
  font-size: 1.1rem;
}

.why-tip-grid {
  display: grid;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: why-tip;
}

.why-tip-grid-compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  max-width: 56rem;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .why-tip-grid:not(.why-tip-grid-compact) {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-tip-card {
  counter-increment: why-tip;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-elevated));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-tip-grid:not(.why-tip-grid-compact) .why-tip-card {
  position: relative;
  padding-left: 3.5rem;
}

.why-tip-grid:not(.why-tip-grid-compact) .why-tip-card::before {
  content: counter(why-tip, decimal-leading-zero);
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--accent) 50%, transparent);
  line-height: 1;
}

.why-tip-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}

.why-tip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.85rem;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.why-tip-grid:not(.why-tip-grid-compact) .why-tip-icon {
  margin-bottom: 0.75rem;
}

.why-tip-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.why-tip-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

/* Why video works — homepage feature section */
.why-video-works .section-inner {
  max-width: 56rem;
}

.why-insight-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .why-insight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.why-insight-card {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-elevated));
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.why-insight-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
}

.why-insight-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.why-insight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 0.75rem;
}

.why-insight-card ul {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-insight-card li {
  margin-bottom: 0.35rem;
}

.why-insight-card strong {
  color: var(--text);
}

.why-wsv-position {
  margin: 2.5rem 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--bg-panel)), var(--bg-elevated));
}

.why-wsv-position h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  font-weight: 600;
  margin-bottom: 1.25rem;
  text-align: center;
  color: var(--text);
}

.why-wsv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .why-wsv-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-wsv-list li {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.15rem;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.why-wsv-list li strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.why-tips-heading {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  text-align: center;
  margin: 2.5rem 0 1.5rem;
  color: var(--text);
}

.why-video-cta {
  margin-top: 2.5rem;
}

.why-video-cta-lead {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.55;
  max-width: 42rem;
  margin: 0 auto 1.5rem;
}

.starter-package-cta {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--bg-panel)), var(--bg-elevated));
}

.starter-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  font-weight: 700;
  padding: 1rem 2rem;
  box-shadow: 0 4px 24px color-mix(in srgb, var(--accent) 40%, transparent);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.starter-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px color-mix(in srgb, var(--accent) 50%, transparent);
}

/* Video gallery (demos) */
.video-gallery {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}

.video-gallery-focus {
  max-width: 72rem;
  margin-inline: auto;
  gap: clamp(1.5rem, 3vw, 2rem);
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
}

.video-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-elevated));
  text-align: left;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  width: 100%;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-panel);
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.video-card:hover .video-card-thumb img { transform: scale(1.04); }

.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: background 0.2s ease;
}

.video-card:hover .video-card-play { background: rgba(0, 0, 0, 0.4); }

.video-card-play span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0c0e;
  font-size: 1rem;
  box-shadow: 0 0 24px var(--accent-glow);
}

.video-card-body { padding: 1.15rem 1.25rem 1.35rem; }

.video-card-body .badge { margin-bottom: 0.5rem; }

.video-card-body h2 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.35rem;
}

.video-card-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Video lightbox */
.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
}

.video-lightbox.open { display: flex; }

.video-lightbox-panel {
  position: relative;
  width: min(960px, 100%);
}

.video-lightbox-close {
  position: absolute;
  top: -2.75rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: var(--bg-elevated);
  color: var(--text);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-lightbox-close:hover { color: var(--accent); border-color: var(--accent); }

.video-lightbox-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #000;
}

.video-lightbox-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-lightbox-title {
  margin-top: 0.85rem;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.video-lightbox-yt {
  display: block;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: var(--accent);
  text-decoration: none;
}

.video-lightbox-yt:hover { text-decoration: underline; }

.hero-video-poster-fallback {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  background: #000;
}

.hero-video-poster-fallback img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .hero-yt-player-mount { display: none; }
  .hero-video-poster-fallback { display: flex; }
  .hero-video-controls,
  .hero-video-overlays { display: none; }
}

/* Hero */
.hero-section {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--hero-gradient);
  padding-top: 1rem;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 42, 50, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 50, 0.2) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 10%, transparent 75%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 54rem;
  padding: clamp(2rem, 6vw, 4rem) clamp(1rem, 4vw, 1.5rem);
}

.logo-hero-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 2rem;
}

.logo-hero-wrap img {
  width: clamp(7rem, 18vw, 10rem);
  height: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), 0 0 40px var(--accent-glow);
}

.hero-logo-dominant {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.hero-logo-dominant img {
  width: clamp(8.5rem, 22vw, 12.5rem);
  box-shadow: var(--shadow), 0 0 60px var(--accent-glow), 0 0 120px rgba(245, 158, 11, 0.15);
}

.hero-logo-dominant::before { inset: -18px; }
.hero-logo-dominant::after { inset: -36px; }

.logo-hero-wrap::before,
.logo-hero-wrap::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 2rem;
  inset: -14px;
  animation: spin 14s linear infinite;
}

.logo-hero-wrap::after {
  inset: -28px;
  border-color: rgba(245, 158, 11, 0.1);
  animation-direction: reverse;
  animation-duration: 10s;
}

.hero-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(2.25rem, 7vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.hero-interest {
  font-size: clamp(0.95rem, 2.2vw, 1.1rem);
  font-weight: 500;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 0 auto 1rem;
  line-height: 1.55;
}

.hero-interest strong {
  color: var(--text);
  font-weight: 600;
}

.hero-desire {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--accent);
  font-weight: 600;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.hero-action { margin-bottom: 0.5rem; }

.btn-row-cta {
  display: grid;
  gap: 0.75rem;
  max-width: 36rem;
  margin-inline: auto;
}

@media (min-width: 640px) {
  .btn-row-cta {
    grid-template-columns: 1fr 1fr;
    max-width: 42rem;
  }
  .btn-row-cta .btn-primary { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .btn-row-cta {
    grid-template-columns: 1.2fr 1fr 1fr;
    max-width: none;
  }
  .btn-row-cta .btn-primary { grid-column: auto; }
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-top: 2.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

/* Buttons */
.btn-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

@media (min-width: 480px) {
  .btn-row { flex-direction: row; justify-content: center; align-items: center; }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #e08d0b 45%, #d97706 100%);
  color: #0a0a0c;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px var(--accent-glow);
}

.btn-secondary {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid color-mix(in srgb, var(--text) 20%, transparent);
}

.btn-ghost:hover { background: var(--accent-soft); border-color: var(--accent); }

/* Trust bar */
.trust-bar {
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
  padding: 1.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-stat {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--text);
}

.trust-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-top: 0.25rem;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.625rem;
  font-family: ui-monospace, monospace;
  letter-spacing: 0.05em;
  padding: 0.2rem 0.55rem;
  border-radius: 0.35rem;
  background: var(--accent-soft);
  color: var(--accent);
}

/* Cards — theme aware overrides */
.service-card,
.portfolio-item {
  background: linear-gradient(145deg, var(--bg-panel) 0%, var(--bg-elevated) 100%);
  border-color: var(--border);
}

[data-theme="light"] .service-card,
[data-theme="light"] .portfolio-item {
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.text-muted { color: var(--text-muted); }
.text-subtle { color: var(--text-subtle); }
.bg-panel { background: var(--bg-panel); }
.border-default { border: 1px solid var(--border); }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 0.75rem;
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.theme-toggle:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 45;
  padding: 0.85rem 1rem;
  padding-bottom: calc(0.85rem + env(safe-area-inset-bottom, 0px));
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible { transform: translateY(0); }

.sticky-cta .btn { width: 100%; }

@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-elevated));
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

/* Nav theme overrides */
.site-nav { background: var(--nav-bg); }
.promo-bar {
  background: linear-gradient(90deg, #7f1d1d, #dc2626, #ef4444, #dc2626, #7f1d1d);
  background-size: 200% 100%;
}

.form-input {
  background: var(--bg-elevated);
  border-color: var(--border);
  color: var(--text);
}

.site-footer {
  background: color-mix(in srgb, var(--bg) 60%, black);
  color: var(--text-subtle);
}

/* Process steps */
.process-step {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.process-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--text) 12%, transparent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

/* Page hero (inner pages) */
.page-hero {
  padding: clamp(3rem, 8vw, 5rem) clamp(1rem, 4vw, 1.5rem);
  text-align: center;
  background: var(--hero-gradient);
  border-bottom: 1px solid var(--border);
}

/* Utility */
.hidden { display: none !important; }

/* Footer nav */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.25rem;
  font-size: 0.75rem;
}

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

@media (min-width: 768px) {
  .footer-links { justify-content: flex-end; }
}

/* Long-form content */
.prose {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.prose h2 {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.prose p { margin-bottom: 1rem; }

.prose ul,
.prose ol {
  margin: 1rem 0 1.25rem 1.25rem;
}

.prose li { margin-bottom: 0.5rem; }

.prose strong { color: var(--text); }

/* Lazy video embed */
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-panel);
  border: 1px solid var(--border);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-embed-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-panel), var(--bg-elevated));
  cursor: pointer;
  border: none;
  width: 100%;
  height: 100%;
  color: var(--text);
}

.video-embed-poster:hover .video-embed-play {
  transform: scale(1.08);
  box-shadow: 0 0 30px var(--accent-glow);
}

.video-embed-play {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  background: var(--accent);
  color: #0c0c0e;
  font-size: 1.25rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Pricing cards */
.price-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  text-align: center;
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(145deg, var(--accent-soft), var(--bg-elevated));
}

.price-amount {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
}

/* Visually hidden */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* =============================================
   FINAL POLISH — Hero, offers, conversion CTAs
   ============================================= */

.hero-video-section--premium {
  padding: clamp(1.25rem, 3vw, 2.5rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-video-inner--featured {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 5vw, 3rem);
  max-width: 92rem;
}

.hero-video-stage--featured {
  width: 100%;
  margin-bottom: 0;
}

.hero-video-stage--featured .hero-video-frame {
  border-width: 2px;
  box-shadow:
    var(--shadow),
    0 0 100px var(--accent-glow),
    0 0 0 1px color-mix(in srgb, var(--accent) 20%, transparent);
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

@keyframes hero-glow-pulse {
  0%, 100% { box-shadow: var(--shadow), 0 0 60px var(--accent-glow); }
  50% { box-shadow: var(--shadow), 0 0 120px color-mix(in srgb, var(--accent) 55%, transparent); }
}

@media (min-width: 768px) {
  .hero-video-stage--featured .hero-video-frame--epic {
    aspect-ratio: 16 / 9;
    max-height: min(78vh, 820px);
  }
}

.hero-video-offer-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  z-index: 6;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #0c0c0e;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), 0 0 24px var(--accent-glow);
}

.hero-video-offer-badge--pulse {
  animation: hero-badge-pulse 2.5s ease-in-out infinite;
}

@keyframes hero-badge-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45), 0 0 20px var(--accent-glow); }
  50% { transform: scale(1.04); box-shadow: 0 6px 28px rgba(0, 0, 0, 0.5), 0 0 36px color-mix(in srgb, var(--accent) 60%, transparent); }
}

/* Epic hero cinema centerpiece */
.hero-video-cinema {
  position: relative;
  width: 100%;
}

.hero-video-cinema--enter {
  opacity: 0;
  transform: scale(0.9) translateY(40px);
  animation: hero-cinema-enter 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

@keyframes hero-cinema-enter {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero-video-frame--epic {
  position: relative;
  border-width: 3px;
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  box-shadow:
    var(--shadow),
    0 0 120px color-mix(in srgb, var(--accent) 45%, transparent),
    0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

.hero-video-frame--epic.is-fullscreen {
  max-height: none;
  height: 100vh;
  border-radius: 0;
  aspect-ratio: auto;
}

.hero-video-glow-ring {
  position: absolute;
  inset: -12px;
  border-radius: calc(var(--radius-xl) + 12px);
  border: 2px solid color-mix(in srgb, var(--accent) 35%, transparent);
  pointer-events: none;
  z-index: 0;
  animation: hero-ring-pulse 3s ease-in-out infinite;
  opacity: 0.7;
}

.hero-video-glow-ring--delay {
  inset: -24px;
  border-color: color-mix(in srgb, var(--accent) 18%, transparent);
  animation-delay: 1.5s;
  animation-duration: 4s;
}

@keyframes hero-ring-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.01); }
}

.hero-video-scanlines {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  opacity: 0.5;
}

.hero-video-vignette {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background:
    radial-gradient(ellipse 85% 75% at 50% 45%, transparent 40%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, transparent 35%, transparent 70%, rgba(0, 0, 0, 0.35) 100%);
}

.hero-video-brand-sweep {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(
    105deg,
    transparent 40%,
    color-mix(in srgb, var(--accent) 12%, transparent) 50%,
    transparent 60%
  );
  background-size: 200% 100%;
  animation: hero-brand-sweep 6s ease-in-out infinite;
}

@keyframes hero-brand-sweep {
  0%, 100% { background-position: 200% 0; opacity: 0.4; }
  50% { background-position: -100% 0; opacity: 0.8; }
}

.hero-yt-player-mount {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.hero-yt-player-mount #hero-yt-player,
.hero-yt-player-mount iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Promo overlays */
.hero-video-overlays {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3.5rem;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0 clamp(1rem, 3vw, 1.75rem);
  pointer-events: none;
}

.hero-overlay-tagline,
.hero-overlay-offer {
  margin: 0;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  padding: 0.55rem 1rem;
  border-radius: 0.65rem;
  background: rgba(4, 5, 10, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  font-size: clamp(0.8rem, 2.2vw, 1rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.hero-overlay-tagline img {
  border-radius: 0.3rem;
  filter: drop-shadow(0 0 8px var(--accent-glow));
}

.hero-overlay-tagline strong {
  color: var(--accent);
}

.hero-overlay-offer {
  flex-direction: row;
  align-items: baseline;
  border-color: color-mix(in srgb, var(--accent) 55%, transparent);
  background: linear-gradient(135deg, rgba(4, 5, 10, 0.9), rgba(20, 14, 4, 0.88));
}

.hero-overlay-price {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  text-shadow: 0 0 30px color-mix(in srgb, var(--accent) 50%, transparent);
  animation: hero-price-glow 2s ease-in-out infinite;
}

@keyframes hero-price-glow {
  0%, 100% { text-shadow: 0 0 20px color-mix(in srgb, var(--accent) 40%, transparent); }
  50% { text-shadow: 0 0 40px color-mix(in srgb, var(--accent) 70%, transparent); }
}

.hero-overlay-detail {
  font-size: clamp(0.65rem, 1.8vw, 0.8rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.hero-overlay-animate {
  opacity: 0;
  transform: translateX(-24px);
}

.hero-video-cinema.is-live .hero-overlay-animate--1 {
  animation: hero-overlay-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

.hero-video-cinema.is-live .hero-overlay-animate--2 {
  animation: hero-overlay-in 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.75s forwards;
}

@keyframes hero-overlay-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Custom video controls */
.hero-video-controls {
  position: absolute;
  bottom: 0.85rem;
  right: 0.85rem;
  z-index: 6;
  display: flex;
  gap: 0.4rem;
  padding: 0.35rem;
  border-radius: 2rem;
  background: rgba(4, 5, 10, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent) 18%, transparent);
  color: var(--accent);
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hero-ctrl-btn:hover {
  background: var(--accent);
  color: #0a0a0c;
  transform: scale(1.08);
  box-shadow: 0 0 16px var(--accent-glow);
}

.hero-ctrl-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 540px) {
  .hero-video-overlays {
    bottom: 3.25rem;
    padding-inline: 0.65rem;
  }

  .hero-overlay-tagline,
  .hero-overlay-offer {
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
  }

  .hero-overlay-offer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
  }

  .hero-video-offer-badge {
    top: 0.65rem;
    right: 0.65rem;
    font-size: 0.58rem;
    padding: 0.35rem 0.65rem;
  }

  .hero-ctrl-btn {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.85rem;
  }
}

.hero-video-inner--featured .hero-video-copy {
  max-width: 48rem;
}

/* Offer strip */
.offer-strip {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 14%, var(--bg-panel)), var(--bg-elevated));
  border-block: 1px solid color-mix(in srgb, var(--accent) 35%, var(--border));
  padding: clamp(1.25rem, 4vw, 2rem) 0;
}

.offer-strip-inner {
  max-width: 72rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 1.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 900px) {
  .offer-strip-inner {
    flex-direction: row;
    text-align: left;
    gap: 1.5rem 2rem;
  }

  .offer-strip-btn { flex-shrink: 0; }
}

.offer-strip-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

@media (min-width: 900px) {
  .offer-strip-price-block { align-items: flex-start; min-width: 14rem; }
}

.offer-strip-price {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.25rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}

.offer-strip-includes {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.offer-strip-copy {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  flex: 1;
}

.offer-strip-copy strong { color: var(--text); }

/* Conversion CTA rows */
.conversion-cta-row,
.section-cta-row {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2rem;
}

.conversion-cta-row {
  justify-content: center;
}

.section-cta-row {
  justify-content: center;
}

@media (min-width: 540px) {
  .conversion-cta-row,
  .section-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

.cta-band .conversion-cta-row {
  margin-top: 0;
}

/* Why video — value sell blocks */
.why-value-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, var(--border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--bg-panel)), var(--bg-elevated));
  text-align: center;
}

@media (min-width: 640px) {
  .why-value-banner {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }
}

.why-value-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  min-width: 8rem;
}

@media (min-width: 640px) {
  .why-value-stat { align-items: flex-start; }
}

.why-value-number {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.why-value-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

.why-value-copy {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-value-copy strong { color: var(--text); }

.why-roi-callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin: 2.5rem 0;
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--bg-panel);
  text-align: center;
}

@media (min-width: 540px) {
  .why-roi-callout {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

.why-roi-callout img {
  flex-shrink: 0;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
}

.why-roi-callout p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-roi-callout strong { color: var(--text); }

/* Page hero CTAs */
.page-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 540px) {
  .page-hero-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* Promo bar enhancements */
.promo-price {
  font-size: 1.05em;
  color: #fef3c7;
}

.promo-urgency {
  font-style: italic;
  opacity: 0.95;
}

/* Nav CTA prominence */
.nav-cta {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%) !important;
  color: #0c0c0e !important;
  border: none;
  box-shadow: 0 2px 12px var(--accent-glow);
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  color: #0c0c0e !important;
  transform: translateY(-1px);
}

@media (min-width: 1100px) {
  .nav-cta {
    padding: 0.55rem 1.1rem;
    font-size: 0.72rem;
  }
}

/* Mobile sticky CTA clearance */
@media (max-width: 767px) {
  body { padding-bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px)); }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

/* =============================================
   ULTIMATE FINAL POLISH — Cinematic dark + conversion
   ============================================= */

.section-panel {
  background: var(--surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-block: 1px solid var(--border);
}

.section-title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.logo-spinner {
  filter: drop-shadow(0 0 14px var(--accent-glow)) drop-shadow(0 4px 12px rgba(0, 0, 0, 0.45));
  transition: transform 0.35s ease, filter 0.35s ease;
}

.logo-hero-wrap:hover .logo-spinner,
.nav-brand:hover img {
  transform: scale(1.04) rotate(-2deg);
  filter: drop-shadow(0 0 22px var(--accent-glow)) drop-shadow(0 6px 16px rgba(0, 0, 0, 0.5));
}

/* Trust pills */
.trust-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.95rem;
  border-radius: 2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--text-muted);
  background: color-mix(in srgb, var(--bg-panel) 80%, transparent);
  border: 1px solid var(--border);
  transition: border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.trust-pill i {
  color: var(--accent);
  font-size: 0.85rem;
}

.trust-pill:hover {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  color: var(--text);
  transform: translateY(-2px);
}

/* Trust bar enhancement */
.trust-bar {
  background: var(--surface-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.trust-stat {
  color: var(--accent);
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent) 35%, transparent);
}

/* Cards & panels */
.service-card,
.process-step,
.why-insight-card,
.why-tip-card,
.video-card,
.cta-band,
.offer-strip {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.process-step:hover,
.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.cta-band,
.starter-package-cta {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.contact-form-panel {
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border)) !important;
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.35),
    0 0 0 1px color-mix(in srgb, var(--accent) 12%, transparent);
}

.contact-trust-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 540px) {
  .contact-trust-row { grid-template-columns: repeat(4, 1fr); }
}

.contact-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  padding: 0.75rem 0.5rem;
  border-radius: var(--radius-lg);
  background: var(--bg-panel);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.35;
}

.contact-trust-item i {
  font-size: 1.1rem;
  color: var(--accent);
}

/* CTA shimmer */
.starter-cta-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.starter-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.22) 50%, transparent 65%);
  transform: translateX(-120%);
  animation: cta-shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes cta-shimmer {
  0%, 75%, 100% { transform: translateX(-120%); }
  40% { transform: translateX(120%); }
}

.starter-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
}

/* Form polish */
.form-input {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent) 22%, transparent);
  outline: none;
}

/* Page hero */
.page-hero {
  background: var(--hero-gradient), transparent;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: color-mix(in srgb, #000 55%, var(--bg-elevated));
}

.footer-tagline {
  opacity: 0.9;
}

/* Sticky CTA */
.sticky-cta {
  background: color-mix(in srgb, var(--nav-bg) 92%, black);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.45);
}

/* Service icon */
.service-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--accent) 15%, transparent);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.08);
  box-shadow: 0 6px 20px var(--accent-glow);
}

/* Conversion bridge */
.conversion-bridge {
  padding: 1.25rem 0;
  text-align: center;
  border-block: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 6%, transparent), transparent);
}

.conversion-bridge p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* Nav glass */
.site-nav {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.site-nav.nav-scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Offer strip glow */
.offer-strip {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, var(--bg-panel)), var(--surface-glass));
  backdrop-filter: blur(10px);
}

.offer-strip-price {
  text-shadow: 0 0 40px color-mix(in srgb, var(--accent) 45%, transparent);
}

/* =============================================
   CLEAN HERO VIDEO + MOBILE SPACING
   ============================================= */

.hero-video-section--clean {
  padding: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(2.5rem, 6vw, 4rem);
}

.hero-video-frame--clean {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border));
  box-shadow: var(--shadow), 0 0 48px color-mix(in srgb, var(--accent) 18%, transparent);
  background: #000;
  aspect-ratio: 16 / 9;
}

.hero-video-frame--clean.is-fullscreen {
  max-height: none;
  height: 100vh;
  border-radius: 0;
  aspect-ratio: auto;
}

.hero-video-el {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.hero-video-fallback,
.hero-video-iframe-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-video-controls--minimal {
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.hero-video-frame--clean:hover .hero-video-controls--minimal,
.hero-video-frame--clean:focus-within .hero-video-controls--minimal,
.hero-video-frame--clean.is-playing .hero-video-controls--minimal {
  opacity: 1;
  pointer-events: auto;
}

.hero-primary-cta {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  padding: 1rem 2rem;
  font-weight: 700;
}

.hero-video-caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-subtle);
}

.hero-video-caption img {
  border-radius: 0.3rem;
  border: 1px solid var(--border);
}

@media (max-width: 767px) {
  :root {
    --section-py: clamp(4rem, 10vw, 5rem);
  }

  .hero-video-section--clean {
    padding: 1.25rem 0 2.75rem;
  }

  .hero-video-inner--featured {
    gap: 2.25rem;
  }

  .hero-video-stage--featured .hero-video-frame--clean {
    max-height: none;
    border-radius: 1rem;
  }

  .hero-video-copy {
    padding-inline: 0.25rem;
  }

  .hero-title-compact {
    font-size: clamp(1.65rem, 7vw, 2.25rem);
    margin-bottom: 1.25rem;
  }

  .hero-interest {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    line-height: 1.65;
  }

  .hero-desire {
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
  }

  .hero-meta {
    margin-top: 2rem;
    gap: 0.4rem 1rem;
    font-size: 0.62rem;
  }

  .hero-action {
    margin-top: 0.5rem;
  }

  .hero-primary-cta {
    width: 100%;
    justify-content: center;
  }

  .trust-pills {
    gap: 0.5rem;
    margin-top: 1.25rem;
    padding-top: 1.25rem;
  }

  .trust-pill {
    font-size: 0.65rem;
    padding: 0.4rem 0.75rem;
  }

  .section-header {
    margin-bottom: 2.25rem;
  }

  .section-lead {
    font-size: 1rem;
    padding-inline: 0.5rem;
  }

  .why-value-banner,
  .why-roi-callout {
    margin-bottom: 2rem;
  }

  .why-insight-grid {
    gap: 1.5rem;
  }

  .conversion-cta-row,
  .section-cta-row {
    margin-top: 2.25rem;
    gap: 1rem;
  }

  .hero-video-controls--minimal {
    opacity: 1;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-hero-wrap::before,
  .logo-hero-wrap::after,
  .logo-spinner,
  .scroll-content,
  .x-spin,
  .hero-video-stage--featured .hero-video-frame,
  .hero-video-frame--epic,
  .hero-video-glow-ring,
  .hero-video-brand-sweep,
  .hero-video-offer-badge--pulse,
  .hero-overlay-price,
  .hero-video-cinema--enter,
  .starter-cta-btn::before {
    animation: none !important;
  }

  .hero-video-cinema--enter {
    opacity: 1;
    transform: none;
  }

  .hero-overlay-animate {
    opacity: 1;
    transform: none;
  }
  .sticky-cta { transition: none; }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .service-card:hover,
  .process-step:hover,
  .video-card:hover,
  .starter-cta-btn:hover,
  .package-card:hover {
    transform: none;
  }
}

/* =============================================
   LANDING PAGE — Video-first hero + package cards
   ============================================= */

.hero-landing {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Immersive video block — dedicated space below nav, never under header */
.hero-landing-stage {
  --hero-nav-offset: 4.5rem;
  position: relative;
  width: 100%;
  height: calc(100svh - var(--hero-nav-offset));
  max-height: 900px;
  min-height: min(420px, calc(100svh - var(--hero-nav-offset)));
  background: #000;
  overflow: hidden;
  isolation: isolate;
  flex-shrink: 0;
  border-bottom: 2px solid var(--border);
}

.hero-landing-video,
.hero-landing-stage .hero-video-fallback,
.hero-landing-stage .hero-video-iframe-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border: 0;
  display: block;
  transform: scale(1.04);
  transform-origin: center center;
}

.hero-landing-stage.is-playing .hero-landing-video {
  opacity: 1;
}

.hero-landing-stage .hero-video-fallback {
  overflow: hidden;
  pointer-events: none;
}

.hero-landing-stage .hero-video-iframe-fallback {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  max-width: none;
  inset: auto;
  transform: translate(-50%, -50%) scale(1.04);
  transform-origin: center center;
  pointer-events: none;
}

.hero-landing-stage-fade {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  z-index: 1;
  background: linear-gradient(to top, rgba(2, 2, 4, 0.92) 0%, rgba(2, 2, 4, 0.35) 55%, transparent 100%);
  pointer-events: none;
}

.hero-landing-unmute {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--text) 18%, transparent);
  background: rgba(4, 5, 8, 0.55);
  backdrop-filter: blur(8px);
  color: var(--text);
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s, border-color 0.2s, background 0.2s;
}

.hero-landing-unmute:hover,
.hero-landing-unmute:focus-visible {
  opacity: 1;
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  background: rgba(4, 5, 8, 0.82);
}

.hero-landing-unmute i {
  color: var(--text);
  font-size: 0.9rem;
}

.hero-landing-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.4rem 0.85rem;
  border-radius: 2rem;
  background: rgba(4, 5, 8, 0.45);
  backdrop-filter: blur(6px);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  white-space: nowrap;
}

.hero-landing-caption img {
  border-radius: 0.25rem;
  border: 1px solid var(--border);
  opacity: 0.9;
}

/* Copy block — fully below video, zero overlap with playback area */
.hero-landing-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.35);
}

.hero-landing-inner {
  width: 100%;
  max-width: 52rem;
  margin-inline: auto;
  padding: clamp(3rem, 7vw, 4.5rem) clamp(1.25rem, 4vw, 2rem) clamp(2.75rem, 5vw, 3.75rem);
  text-align: center;
}

.hero-landing-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.hero-landing-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  font-size: clamp(1.75rem, 5.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 1.35rem;
  text-wrap: balance;
}

.hero-landing-sub {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: var(--text-muted);
  max-width: 38rem;
  margin-inline: auto;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-landing-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  max-width: 32rem;
  margin-inline: auto;
}

.btn-mega-hero {
  width: 100%;
  max-width: 22rem;
}

.btn-mega {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: clamp(1.05rem, 3vw, 1.25rem) clamp(1.5rem, 4vw, 2.25rem);
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 1rem;
  box-shadow: 0 8px 32px var(--accent-glow), 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
  min-height: 3.25rem;
}

.btn-mega:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px var(--accent-glow), 0 0 0 1px var(--accent);
}

.btn-mega-compact {
  padding: 1rem 1.75rem;
  font-size: 1rem;
  font-weight: 700;
  min-height: 3rem;
}

.btn-mega-secondary {
  padding: 0.9rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 0.85rem;
  min-height: 3rem;
}

.trust-bar--landing {
  background: linear-gradient(180deg, var(--bg-elevated), color-mix(in srgb, var(--bg-elevated) 80%, var(--bg)));
  padding: clamp(1.5rem, 4vw, 2rem) 0;
}

.trust-bar--inline {
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--bg-panel), var(--bg-elevated));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.trust-bar--inline .trust-pills {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Trust & Social Proof layer — premium stat cards before packages */
.trust-layer {
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
  padding: clamp(1.5rem, 3.5vw, 2rem);
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
  background:
    linear-gradient(145deg, var(--bg-panel) 0%, var(--bg-elevated) 100%);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.trust-layer-eyebrow {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1.5rem;
}

.trust-layer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .trust-layer-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.trust-stat-card {
  text-align: center;
  padding: 1.15rem 0.75rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg) 40%, transparent);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.trust-stat-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.trust-stat-icon {
  display: block;
  margin: 0 auto 0.5rem;
  font-size: 1.1rem;
  color: var(--accent);
  opacity: 0.9;
}

.trust-pills--layer {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border);
  justify-content: center;
}

.packages-section {
  padding-block: clamp(3rem, 7vw, 5rem);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, color-mix(in srgb, var(--accent) 8%, transparent), transparent 60%),
    transparent;
  border-bottom: 1px solid var(--border);
}

.packages-grid {
  display: grid;
  gap: clamp(1.5rem, 4vw, 2rem);
  max-width: 56rem;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
    align-items: stretch;
    max-width: none;
  }

  .hero-landing-action {
    flex-direction: row;
    justify-content: center;
    max-width: none;
  }

  .btn-mega-secondary {
    flex: 0 0 auto;
    align-self: center;
  }
}

.package-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 4vw, 2.25rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, var(--bg-panel) 0%, var(--bg-elevated) 100%);
  box-shadow: var(--shadow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: visible;
}

.package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 40%, transparent), transparent);
  opacity: 0.6;
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 48px color-mix(in srgb, var(--accent) 12%, transparent);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--border));
}

.package-card--featured {
  border-color: var(--accent);
  border-width: 2px;
  background: linear-gradient(160deg, color-mix(in srgb, var(--accent) 12%, var(--bg-panel)), var(--bg-elevated));
  box-shadow: var(--shadow), 0 0 72px color-mix(in srgb, var(--accent) 22%, transparent);
}

.package-card--featured::before {
  opacity: 1;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.package-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.4rem 1rem;
  border-radius: 2rem;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: #0a0a0c;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 4px 20px var(--accent-glow);
}

.package-card-header {
  margin-bottom: 1rem;
  padding-top: 0.5rem;
}

.package-card--featured .package-card-header {
  padding-top: 1rem;
}

.package-card-title {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(1.1rem, 2.4vw, 1.3rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0;
}

.package-card-dash {
  color: var(--text-subtle);
  font-weight: 400;
}

.package-card-price-inline {
  color: var(--accent);
  font-weight: 700;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.package-card-price {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  font-size: clamp(2.25rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

.package-card-lead {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.package-card-block {
  flex: 1;
  margin-bottom: 1.25rem;
}

.package-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.75rem;
}

.package-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.package-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.package-list i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--accent);
  font-size: 0.75rem;
}

.package-best-for {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding: 1rem;
  border-radius: 0.85rem;
  background: color-mix(in srgb, var(--bg) 50%, transparent);
  border: 1px solid var(--border);
  margin-bottom: 1.5rem;
}

.package-best-for strong {
  color: var(--text);
}

.package-cta {
  width: 100%;
  margin-top: auto;
  min-height: 3.35rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 0.85rem;
}

.package-cta--strong {
  border: 2px solid color-mix(in srgb, var(--accent) 55%, var(--border));
  color: var(--text);
  background: var(--bg-elevated);
}

.package-cta--strong:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.package-cta--featured {
  box-shadow: 0 8px 28px var(--accent-glow);
  min-height: 3.5rem;
  font-size: 1.05rem;
}

.packages-cta-band {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding: clamp(2rem, 4vw, 2.5rem);
  border-radius: var(--radius-xl);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, var(--border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, var(--bg-panel)), var(--bg-elevated));
  text-align: center;
}

.packages-cta-band p {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 32rem;
  margin-inline: auto;
}

/* Compact stats strip — after package cards */
.trust-stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.25rem;
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: 1.1rem 1.25rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg-panel);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-align: center;
}

.trust-stats-bar strong {
  color: var(--accent);
  font-weight: 700;
}

.trust-stats-divider {
  color: var(--text-subtle);
  opacity: 0.5;
}

.section-header--packages {
  margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

/* Landing page — ruthless attention ratio */
.landing-page .section-support {
  --section-py: clamp(1.75rem, 4vw, 2.5rem);
}

.landing-page #contact {
  scroll-margin-top: 5rem;
  padding-block: clamp(3rem, 6vw, 4rem);
}

.landing-page #packages {
  scroll-margin-top: 5rem;
}

.landing-page .packages-section .section-header {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.landing-page .packages-section .section-lead {
  max-width: 34rem;
}

.hero-landing-skip {
  margin: 0.85rem 0 0;
  font-size: 0.8rem;
}

.hero-landing-skip a {
  color: var(--text-subtle);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.hero-landing-skip a:hover {
  color: var(--accent);
}

.trust-stats-bar--pre-offer {
  margin-bottom: clamp(1.75rem, 4vw, 2.25rem);
}

/* Minimal bridge — why video + process, zero competing CTAs */
.landing-bridge {
  padding-block: clamp(1.5rem, 3.5vw, 2rem);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: color-mix(in srgb, var(--bg-panel) 50%, transparent);
}

.landing-bridge-inner {
  max-width: 52rem;
  text-align: center;
}

.landing-bridge-copy {
  margin: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.landing-bridge-copy strong {
  color: var(--text);
}

.landing-bridge-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-subtle);
  text-decoration: none;
  white-space: nowrap;
}

.landing-bridge-link:hover {
  color: var(--accent);
}

.landing-process-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}

.landing-process-num {
  color: var(--accent);
  margin-right: 0.35rem;
  font-family: 'Space Grotesk', system-ui, sans-serif;
}

.landing-bridge-cta {
  margin: 1.5rem 0 0;
}

.landing-bridge-cta .btn {
  min-width: min(100%, 18rem);
}

.package-card-cta-note {
  margin: 0.75rem 0 0;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-subtle);
}

.package-card-cta-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.package-card-cta-note a:hover {
  text-decoration: underline;
}

.section-header--contact {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
}

.section-header--contact .section-title {
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
}

.section-panel--subdued {
  opacity: 0.95;
}

.section-header--compact {
  margin-bottom: clamp(1.5rem, 4vw, 2rem);
}

.section-title--compact {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
}

.why-insight-grid--teaser {
  max-width: 48rem;
  margin-inline: auto;
}

/* Homepage nav stays opaque — no glass-over-video bleed */
body:has(.hero-landing) .site-nav {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}

/* =============================================
   CINEMATIC LANDING TONE — premium dark + amber
   ============================================= */

.landing-page main {
  background: var(--bg-gradient);
  background-attachment: scroll;
}

.landing-page .section-eyebrow {
  letter-spacing: 0.24em;
  text-shadow: 0 0 28px color-mix(in srgb, var(--accent) 35%, transparent);
}

.landing-page .section-title {
  letter-spacing: -0.035em;
}

/* Hero video — vignette + amber edge */
.hero-landing-stage {
  border-bottom-color: color-mix(in srgb, var(--accent) 22%, var(--border));
  box-shadow: 0 12px 56px rgba(0, 0, 0, 0.55);
}

.hero-landing-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 75% at 50% 45%, transparent 30%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-landing-stage-fade {
  height: 32%;
  background: linear-gradient(to top, rgba(2, 2, 4, 0.95) 0%, rgba(2, 2, 4, 0.4) 50%, transparent 100%);
}

.hero-landing-caption {
  border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--border));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

/* Hero copy panel */
.cinematic-panel {
  position: relative;
  background:
    radial-gradient(ellipse 70% 45% at 50% 0%, color-mix(in srgb, var(--accent) 7%, transparent), transparent 68%),
    linear-gradient(180deg, #05070c 0%, var(--bg-elevated) 55%, #080b12 100%);
}

.cinematic-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--accent) 70%, transparent), transparent);
  opacity: 0.65;
}

.hero-landing-eyebrow {
  position: relative;
  display: inline-block;
  padding-bottom: 0.65rem;
}

.hero-landing-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2.5rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-landing-title {
  font-family: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  text-wrap: balance;
}

.hero-landing-title .text-glow {
  display: inline-block;
  margin-top: 0.15em;
}

/* Packages — cinematic stage */
.packages-section--cinematic {
  position: relative;
  background:
    radial-gradient(ellipse 65% 45% at 50% 0%, color-mix(in srgb, var(--accent) 9%, transparent), transparent 62%),
    radial-gradient(ellipse 40% 30% at 100% 80%, rgba(30, 58, 95, 0.12), transparent),
    transparent;
}

.packages-section--cinematic::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(42, 42, 50, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 42, 50, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, black 15%, transparent 75%);
}

.trust-stats-bar {
  background: linear-gradient(145deg, rgba(12, 15, 24, 0.95), rgba(8, 10, 18, 0.98));
  border-color: color-mix(in srgb, var(--accent) 16%, var(--border));
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.package-card {
  background: linear-gradient(165deg, rgba(16, 20, 31, 0.98) 0%, rgba(11, 14, 22, 0.99) 100%);
  border-color: color-mix(in srgb, var(--border) 90%, #1e3a5f);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
}

.package-card::before {
  opacity: 0.85;
}

.package-card--featured {
  background: linear-gradient(165deg, color-mix(in srgb, var(--accent) 11%, rgba(16, 20, 31, 0.98)), rgba(11, 14, 22, 0.99));
  box-shadow:
    var(--shadow),
    0 0 80px color-mix(in srgb, var(--accent) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  animation: cinematic-card-glow 5s ease-in-out infinite;
}

@keyframes cinematic-card-glow {
  0%, 100% { box-shadow: var(--shadow), 0 0 56px color-mix(in srgb, var(--accent) 16%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
  50% { box-shadow: var(--shadow), 0 0 88px color-mix(in srgb, var(--accent) 28%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.06); }
}

.package-badge {
  letter-spacing: 0.1em;
  box-shadow: 0 4px 24px var(--accent-glow), 0 0 40px color-mix(in srgb, var(--accent) 25%, transparent);
}

.package-card-price-inline {
  text-shadow: 0 0 32px color-mix(in srgb, var(--accent) 35%, transparent);
}

.packages-cta-band {
  border-color: color-mix(in srgb, var(--accent) 32%, var(--border));
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--bg-panel)), rgba(11, 14, 22, 0.98));
  box-shadow: 0 0 64px color-mix(in srgb, var(--accent) 10%, transparent), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-bridge {
  background: linear-gradient(180deg, color-mix(in srgb, var(--bg-panel) 40%, transparent), color-mix(in srgb, var(--bg) 80%, #040508));
  border-color: color-mix(in srgb, var(--accent) 10%, var(--border));
}

.landing-process-num {
  text-shadow: 0 0 16px color-mix(in srgb, var(--accent) 40%, transparent);
}

.landing-page .contact-form-panel {
  border-color: color-mix(in srgb, var(--accent) 22%, var(--border));
  background: linear-gradient(160deg, var(--bg-panel), var(--bg-elevated));
  box-shadow: var(--shadow), 0 0 48px color-mix(in srgb, var(--accent) 6%, transparent);
}

.landing-page .btn-primary {
  background: linear-gradient(135deg, #fbbf24 0%, var(--accent) 38%, #d97706 100%);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
  letter-spacing: 0.02em;
}

.landing-page .btn-primary:hover {
  box-shadow: 0 14px 40px var(--accent-glow), 0 0 0 1px color-mix(in srgb, var(--accent) 50%, transparent);
}

.landing-page .sticky-cta {
  border-top-color: color-mix(in srgb, var(--accent) 18%, var(--border));
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5), 0 0 32px color-mix(in srgb, var(--accent) 6%, transparent);
}

body:has(.hero-landing) .site-nav {
  border-bottom-color: color-mix(in srgb, var(--accent) 12%, var(--border));
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .package-card--featured {
    animation: none !important;
  }
}

/* =============================================
   LANDING PAGE — Mobile spacing & tap targets
   ============================================= */
@media (max-width: 767px) {
  .landing-page {
    -webkit-tap-highlight-color: color-mix(in srgb, var(--accent) 25%, transparent);
  }

  .landing-page .section-inner {
    padding-inline: max(1.25rem, env(safe-area-inset-left, 0px), env(safe-area-inset-right, 0px));
  }

  .landing-page .btn,
  .landing-page .package-cta,
  .landing-page .hero-landing-unmute {
    touch-action: manipulation;
  }

  /* Hero */
  .hero-landing-stage {
    --hero-nav-offset: 4.5rem;
    height: calc(100svh - var(--hero-nav-offset));
    max-height: 640px;
    min-height: min(340px, calc(72svh - var(--hero-nav-offset)));
  }

  .hero-landing-caption {
    max-width: calc(100% - 2.5rem);
    white-space: normal;
    text-align: center;
    font-size: 0.62rem;
    bottom: 1.15rem;
    line-height: 1.45;
    padding: 0.55rem 0.9rem;
  }

  .hero-landing-inner {
    padding: clamp(2.5rem, 7vw, 3.25rem) 1.25rem clamp(2.75rem, 6vw, 3.5rem);
  }

  .hero-landing-eyebrow {
    margin-bottom: 1.15rem;
    letter-spacing: 0.18em;
  }

  .hero-landing-title {
    font-size: clamp(1.65rem, 7.5vw, 2.15rem);
    line-height: 1.12;
    margin-bottom: 1.15rem;
  }

  .hero-landing-sub {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.25rem;
  }

  .hero-landing-action {
    gap: 1.15rem;
    max-width: none;
  }

  .hero-landing-unmute {
    top: 0.85rem;
    right: 0.85rem;
    width: 3rem;
    height: 3rem;
    min-width: 48px;
    min-height: 48px;
  }

  .hero-landing-skip {
    margin-top: 1rem;
  }

  .hero-landing-skip a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  .btn-mega,
  .btn-mega-hero,
  .btn-mega-compact {
    width: 100%;
    max-width: none;
    min-height: 3.5rem;
    padding: 1.1rem 1.5rem;
    font-size: 1.05rem;
  }

  /* Packages */
  .landing-page .packages-section {
    padding-block: clamp(3.25rem, 8vw, 4.5rem);
  }

  .landing-page .packages-section .section-title {
    font-size: clamp(1.65rem, 6vw, 2rem);
  }

  .landing-page .packages-section .section-lead {
    font-size: 1.05rem;
    line-height: 1.65;
    padding-inline: 0.25rem;
  }

  .packages-grid {
    gap: 1.75rem;
    max-width: none;
  }

  .package-card {
    padding: 1.65rem 1.35rem;
  }

  .package-card-title {
    font-size: 1.1rem;
    line-height: 1.35;
  }

  .package-card-lead {
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
  }

  .package-list {
    gap: 0.7rem;
  }

  .package-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    gap: 0.75rem;
  }

  .package-best-for {
    font-size: 0.9rem;
    padding: 1.1rem;
    margin-bottom: 1.35rem;
  }

  .package-cta,
  .package-cta--featured {
    min-height: 3.5rem;
    font-size: 1.05rem;
    padding: 1rem 1.25rem;
  }

  .package-card-cta-note {
    margin-top: 1rem;
  }

  .package-card-cta-note a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.4rem 0.75rem;
    font-size: 0.9rem;
  }

  .trust-stats-bar,
  .trust-stats-bar--pre-offer {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    font-size: 0.9rem;
    line-height: 1.45;
    padding: 1.35rem 1.15rem;
    margin-bottom: 2rem;
  }

  .trust-stats-bar > span:not(.trust-stats-divider) {
    padding: 0.35rem 0;
  }

  .trust-stats-divider {
    display: none;
  }

  .packages-cta-band {
    margin-top: 2.5rem;
    padding: 1.75rem 1.25rem;
  }

  .packages-cta-band p {
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
  }

  .packages-cta-band .btn-mega {
    width: 100%;
  }

  /* Bridge */
  .landing-bridge {
    padding-block: 2rem;
  }

  .landing-bridge-copy {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.35rem;
    padding-inline: 0.25rem;
  }

  .landing-bridge-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0.75rem 0 0;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    white-space: normal;
    font-size: 0.9rem;
  }

  .landing-process-strip {
    flex-direction: column;
    gap: 0.65rem;
    align-items: center;
    font-size: 0.85rem;
  }

  .landing-bridge-cta {
    margin-top: 1.75rem;
  }

  .landing-bridge-cta .btn {
    width: 100%;
    min-width: 0;
  }

  /* Contact */
  .landing-page #contact {
    padding-block: clamp(3.25rem, 7vw, 4rem);
  }

  .landing-page #contact .section-inner {
    padding-inline: 1.25rem;
  }

  .landing-page .contact-form-panel {
    padding: 1.35rem 1.15rem;
  }

  .landing-page .form-input,
  .landing-page select.form-input,
  .landing-page textarea.form-input {
    min-height: 3rem;
    padding: 0.9rem 1.1rem;
    font-size: 16px;
    border-radius: 0.85rem;
  }

  .landing-page textarea.form-input {
    min-height: 8rem;
  }

  .landing-page #contact .grid-2 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .landing-page #contact form > div[style*="margin-bottom"] {
    margin-bottom: 1rem !important;
  }

  .landing-page #contact .btn-mega {
    margin-top: 0.25rem;
  }

  /* Sticky bar */
  .landing-page .sticky-cta .btn-mega {
    min-height: 3.5rem;
  }
}

/* =============================================
   PROMO RIBBON — above hero video
   ============================================= */

.promo-ribbon {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #003d99 0%, #0066ff 40%, #1a8cff 55%, #0066ff 70%, #003d99 100%);
  border-bottom: 2px solid #7ec8ff;
  box-shadow:
    0 4px 24px rgba(0, 80, 200, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.promo-ribbon__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 38%,
    rgba(255, 255, 255, 0.14) 48%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(255, 255, 255, 0.14) 52%,
    transparent 62%
  );
  animation: promo-ribbon-shine 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes promo-ribbon-shine {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

.promo-ribbon__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  max-width: 72rem;
  margin-inline: auto;
  padding: 0.95rem clamp(1rem, 3vw, 2rem);
}

.promo-ribbon__text {
  margin: 0;
  font-size: clamp(0.85rem, 2.2vw, 1.1rem);
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.promo-ribbon__highlight {
  font-size: 1.15em;
  font-weight: 800;
  color: #fff8b0;
  letter-spacing: 0.02em;
}

.promo-ribbon__sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.92em;
  font-weight: 600;
  color: #d6ebff;
}

.promo-ribbon__cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1.35rem;
  border-radius: 2rem;
  border: 2px solid #ffffff;
  background: linear-gradient(180deg, #ffffff 0%, #e8f4ff 100%);
  color: #003d99;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.promo-ribbon__cta:hover,
.promo-ribbon__cta:focus-visible {
  transform: translateY(-1px);
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.32);
  color: #002b6b;
}

/* YouTube hero — lazy facade, 16:9, cinematic */
.hero-landing-stage--youtube {
  height: auto;
  aspect-ratio: 16 / 9;
  max-height: min(78svh, 900px);
  min-height: min(420px, 56.25vw);
}

.hero-youtube-facade {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-youtube-facade.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-youtube-facade.is-loading .hero-youtube-play {
  opacity: 0.6;
  pointer-events: none;
}

.hero-youtube-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-youtube-play {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(4.5rem, 14vw, 6.5rem);
  height: clamp(4.5rem, 14vw, 6.5rem);
  padding: 0;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(220, 235, 255, 0.9) 100%);
  color: #003d99;
  cursor: pointer;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.45),
    0 0 0 4px rgba(255, 255, 255, 0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-youtube-play__ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: hero-play-pulse 2.4s ease-out infinite;
}

@keyframes hero-play-pulse {
  0% { transform: scale(0.92); opacity: 0.9; }
  70% { transform: scale(1.18); opacity: 0; }
  100% { transform: scale(1.18); opacity: 0; }
}

.hero-youtube-play__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  margin-left: 0.15em;
}

.hero-youtube-play:hover,
.hero-youtube-play:focus-visible {
  transform: scale(1.06);
  box-shadow:
    0 12px 40px rgba(0, 80, 200, 0.5),
    0 0 0 6px rgba(126, 200, 255, 0.35);
}

.hero-landing-stage--youtube .hero-video-fallback {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: auto;
}

.hero-landing-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .promo-ribbon__inner {
    flex-direction: column;
    gap: 0.85rem;
    padding: 0.9rem 1.15rem;
  }

  .promo-ribbon__cta {
    width: 100%;
    max-width: 16rem;
    min-height: 3rem;
  }

  .hero-landing-stage--youtube {
    min-height: min(240px, 56.25vw);
    max-height: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-ribbon__shine {
    animation: none;
  }

  .hero-youtube-play__ring {
    animation: none;
  }
}

@media (max-width: 767px) {
  .hero-youtube-play {
    min-width: 4.5rem;
    min-height: 4.5rem;
    touch-action: manipulation;
  }
}

/* =============================================
   TESTIMONIALS + TRUST BADGES
   ============================================= */

.testimonials-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .testimonials-strip {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.testimonial-card {
  padding: 1.15rem 1.25rem;
  border-radius: var(--radius-lg, 1rem);
  border: 1px solid color-mix(in srgb, var(--accent) 15%, var(--border));
  background: color-mix(in srgb, var(--bg-elevated) 90%, transparent);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-stars {
  display: flex;
  gap: 0.15rem;
  margin-bottom: 0.55rem;
  font-size: 0.7rem;
  color: #f5c542;
}

.testimonial-quote {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text);
  font-style: normal;
}

.testimonial-cite {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  font-style: normal;
  color: var(--text-subtle);
  letter-spacing: 0.02em;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1rem;
  margin-bottom: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
}

.trust-badge i {
  color: var(--accent);
  font-size: 0.8rem;
}

/* =============================================
   FOOTER — professional polish
   ============================================= */

.site-footer {
  border-top: 1px solid color-mix(in srgb, var(--accent) 12%, var(--border));
  background: linear-gradient(180deg, color-mix(in srgb, #000 50%, var(--bg-elevated)) 0%, #04060a 100%);
  padding: 2.75rem 1.5rem 1.75rem;
}

.footer-inner {
  max-width: 80rem;
  margin-inline: auto;
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1.4fr 1fr;
    align-items: center;
  }
}

.footer-brand-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.04em;
}

.footer-brand-loc {
  margin-top: 0.2rem;
  font-size: 0.68rem;
  color: var(--text-subtle);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.1rem;
}

@media (min-width: 768px) {
  .footer-links {
    justify-content: center;
  }
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

@media (min-width: 768px) {
  .footer-contact {
    align-items: flex-end;
  }
}

.footer-email {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

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

.footer-social {
  display: flex;
  gap: 0.85rem;
  font-size: 1.05rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #fff;
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.footer-bottom {
  max-width: 80rem;
  margin: 1.75rem auto 0;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-tagline {
  margin: 0 0 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: var(--text-subtle);
}

.footer-copy {
  margin: 0;
  font-size: 0.62rem;
  color: color-mix(in srgb, var(--text-subtle) 80%, transparent);
}

/* Sticky mobile CTA — $200 promo */
.sticky-cta--promo {
  background: linear-gradient(180deg, rgba(0, 45, 120, 0.97) 0%, rgba(0, 30, 80, 0.98) 100%);
  border-top: 2px solid #4da3ff;
  box-shadow: 0 -8px 32px rgba(0, 60, 160, 0.45);
}

.sticky-cta--promo .sticky-cta__btn {
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}
