/* =============================================
   Farion Studio
   Premium Dark Editorial — follow.art inspired
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&family=Lora:ital,wght@1,400;1,500;1,600;1,700&display=swap');

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--bg); color: var(--fg); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; cursor: none; transition: background-color 0.35s ease, color 0.35s ease; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: none; font-family: 'Inter', sans-serif; border: none; background: none; color: inherit; }

/* ── Tokens ── */
:root {
  /* ── Light mode (default) ── */
  --bg:          #F9F8F5;
  --bg-2:        #F1EFE8;
  --bg-3:        #E8E4DA;
  --fg:          #0D0D0D;
  --fg-muted:    rgba(13,13,13,0.52);
  --fg-subtle:   rgba(13,13,13,0.22);
  --fg-ghost:    rgba(13,13,13,0.07);
  --red:         #E8192C;
  --red-dim:     rgba(232,25,44,0.10);
  --border:      rgba(13,13,13,0.09);
  --border-h:    rgba(13,13,13,0.20);
  --nav-glass:    rgba(249,248,245,0.92);
  --cursor-color: #E8192C;
  --cursor-ring:  rgba(232,25,44,0.40);
  --radius:      4px;
  --radius-lg:   12px;
  --transition:  0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Dark mode ── */
[data-theme="dark"] {
  --bg:            #0B0B0B;
  --bg-2:          #111111;
  --bg-3:          #191919;
  --fg:            #F4F4F0;
  --fg-muted:      rgba(244,244,240,0.5);
  --fg-subtle:     rgba(244,244,240,0.2);
  --fg-ghost:      rgba(244,244,240,0.08);
  --red-dim:       rgba(232,25,44,0.12);
  --border:        rgba(244,244,240,0.08);
  --border-h:      rgba(244,244,240,0.18);
  --nav-glass:     rgba(11,11,11,0.88);
  --cursor-color:  #F4F4F0;
  --cursor-ring:   rgba(244,244,240,0.55);
}

html { color-scheme: light dark; }

/* ── Container ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.container-wide { width: 100%; max-width: 1440px; margin: 0 auto; padding: 0 48px; }

/* ─────────────────────────────────
   NOISE GRAIN OVERLAY
───────────────────────────────── */
.noise-overlay {
  position: fixed; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 9998;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  opacity: 0.04;
}

/* ─────────────────────────────────
   CUSTOM CURSOR
───────────────────────────────── */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 10000; }
.cursor-dot {
  position: absolute;
  width: 7px; height: 7px;
  background: var(--cursor-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s var(--transition), height 0.2s var(--transition), background 0.35s ease, opacity 0.2s;
}
.cursor-circle {
  position: absolute;
  width: 38px; height: 38px;
  border: 1.5px solid var(--cursor-ring);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s var(--transition), height 0.5s var(--transition), border-color 0.35s ease, transform 0.15s ease;
}
body.cursor-hover .cursor-dot { width: 10px; height: 10px; }
body.cursor-hover .cursor-circle { width: 56px; height: 56px; border-color: var(--cursor-color); }
body.cursor-click .cursor-dot { width: 5px; height: 5px; }
body.cursor-click .cursor-circle { width: 26px; height: 26px; }

/* ─────────────────────────────────
   PRELOADER
───────────────────────────────── */
.preloader {
  position: fixed; inset: 0; z-index: 99999;
  background: var(--bg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
}
.preloader-logo {
  display: flex; align-items: center; gap: 8px;
  overflow: hidden;
}
.preloader-bar {
  width: 200px; height: 1px;
  background: var(--border);
  position: relative; overflow: hidden;
}
.preloader-bar-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  width: 0%; background: var(--fg);
  transition: width 0.1s linear;
}
.preloader-counter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4rem; font-weight: 300;
  color: var(--fg-subtle);
  letter-spacing: -0.04em;
}
.preloader.done { pointer-events: none; }

/* ── Preloader Logo (Farion) ── */
.preloader-logo-wrap {
  display: flex; align-items: center; gap: 14px;
}
.preloader-logo-mark {
  width: 56px; height: 46px; flex-shrink: 0;
  color: var(--fg);
}
.preloader-logo-farion {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem; font-weight: 600;
  color: var(--fg); letter-spacing: -0.04em; line-height: 1;
  
}
.preloader-logo-studio {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted); line-height: 1.5;
  display: block; margin-top: 2px;
}

/* ─────────────────────────────────
   NAVIGATION
───────────────────────────────── */
/* ─────────────────────────────────
   NAVIGATION — Floating Capsule
───────────────────────────────── */
.nav {
  position: fixed;
  top: 20px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1000px;
  /* Glass lives on .nav-inner; wrapper is transparent */
  background: none; border: none; box-shadow: none;
  transition: top 0.4s cubic-bezier(0.16,1,0.3,1);
}
.nav.scrolled { top: 10px; }
.nav-inner {
  display: flex; align-items: center; gap: 0;
  height: 62px;
  padding: 5px 5px 5px 22px;
  background: rgba(255,255,255,0.84);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 100px;
  box-shadow:
    0 4px 32px rgba(0,0,0,0.10),
    0 1px 0 rgba(255,255,255,1) inset,
    0 -1px 0 rgba(0,0,0,0.03) inset;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
[data-theme="dark"] .nav-inner {
  background: rgba(15,15,15,0.84);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 4px 32px rgba(0,0,0,0.55),
    0 1px 0 rgba(255,255,255,0.06) inset;
}
.nav.scrolled .nav-inner {
  background: rgba(255,255,255,0.94);
  box-shadow: 0 8px 50px rgba(0,0,0,0.12), 0 1px 0 rgba(255,255,255,1) inset;
}
[data-theme="dark"] .nav.scrolled .nav-inner {
  background: rgba(14,14,14,0.94);
  box-shadow: 0 8px 50px rgba(0,0,0,0.60), 0 1px 0 rgba(255,255,255,0.07) inset;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
  padding-right: 22px;
}
.logo-mark {
  width: 36px; height: 30px; flex-shrink: 0;
  color: var(--fg);
  transition: color var(--transition);
}
.nav-logo:hover .logo-mark { color: var(--red); }
.logo-text-group {
  display: flex; flex-direction: column; gap: 1px;
}
.logo-farion {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--fg); letter-spacing: -0.03em; line-height: 1;
  transition: color var(--transition);
}
.nav-logo:hover .logo-farion { color: var(--fg); }
.logo-text-group .logo-tag {
  font-size: 0.48rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--fg-muted); line-height: 1;
  border-left: none; padding-left: 0;
}
/* ── Centre links ── */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  flex: 1; justify-content: center;
  padding: 0 18px;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.nav-links a {
  font-size: 0.8rem; font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  padding: 7px 14px;
  border-radius: 100px;
  transition: color 0.25s, background 0.25s;
}
.nav-links a:hover {
  color: var(--fg);
  background: rgba(13,13,13,0.06);
}
[data-theme="dark"] .nav-links a:hover {
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: var(--fg);
  background: rgba(13,13,13,0.07);
}
[data-theme="dark"] .nav-links a.active {
  background: rgba(255,255,255,0.09);
}
/* ── Right cluster ── */
.nav-right {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
  padding-left: 14px;
}
.nav-cta {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 10px 22px;
  border: 1px solid var(--red);
  border-radius: 100px;
  box-shadow: 0 0 22px rgba(232,25,44,0.28);
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}
.nav-cta:hover {
  background: #C0141F;
  border-color: #C0141F;
  box-shadow: 0 0 36px rgba(232,25,44,0.45);
  transform: translateY(-1px);
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; border-radius: 50%;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(13,13,13,0.06); }
[data-theme="dark"] .nav-hamburger:hover { background: rgba(255,255,255,0.08); }
.nav-hamburger span { display: block; width: 20px; height: 1.5px; background: var(--fg); border-radius: 2px; transition: var(--transition); }
.nav-mobile {
  display: none; position: fixed;
  inset: 0; background: var(--bg);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px; z-index: 998;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem; font-weight: 500;
  color: var(--fg-muted);
  transition: color 0.3s;
  
}
.nav-mobile a:hover { color: var(--fg); }
.nav-mobile .nav-cta { font-family: 'Inter', sans-serif; font-size: 0.78rem; }

/* ─────────────────────────────────
   TYPOGRAPHY
───────────────────────────────── */
.display-1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3.2rem, 6.5vw, 7.2rem);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -0.025em;
}
.display-2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -0.02em;
}
.display-3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 600; line-height: 1.1;
  letter-spacing: -0.015em;
}
.overline {
  font-size: 0.68rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--fg-muted);
}
.lead {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  color: var(--fg-muted); line-height: 1.8; font-weight: 300;
}
.accent-red { color: var(--red); }
.italic {
  font-family: 'Lora', serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* ─────────────────────────────────
   BUTTONS
───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 100px;
  transition: var(--transition);
  white-space: nowrap; position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute;
  inset: 0; border-radius: inherit;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--transition);
}
.btn:hover::before { transform: scaleX(1); }
.btn-red {
  background: var(--red); color: #fff;
  box-shadow: 0 0 40px rgba(232,25,44,0.25);
}
.btn-red::before { background: #C0141F; }
.btn-red:hover { box-shadow: 0 0 60px rgba(232,25,44,0.4); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--fg);
  border: 1px solid var(--border);
}
.btn-outline::before { background: var(--fg-ghost); }
.btn-outline:hover { border-color: var(--border-h); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--fg-muted); padding: 10px 0; }
.btn-ghost:hover { color: var(--fg); }
.btn-arrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg-muted);
  transition: color 0.3s, gap 0.3s;
}
.btn-arrow:hover { color: var(--fg); gap: 18px; }
.btn-arrow svg { transition: transform 0.3s; }
.btn-arrow:hover svg { transform: translateX(4px); }
.btn svg { width: 14px; height: 14px; }

/* ─────────────────────────────────
   HERO
───────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: flex-end;
  padding-bottom: 80px; overflow: hidden;
  /* Hero is always a dark cinematic stage — both light & dark mode */
  background: #060606;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
  background-size: cover; background-position: center top;
  opacity: 0.44;
  will-change: transform;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6,6,6,0.10) 0%,
    rgba(6,6,6,0.50) 52%,
    rgba(6,6,6,1.00) 100%
  );
}
/* Subtle red-tinted vignette on the right edge — cinematic depth */
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 90% at 100% 50%, rgba(232,25,44,0.05) 0%, transparent 70%);
  pointer-events: none; z-index: 1;
}

/* ── Hero grid texture overlay — always dark-stage values ── */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(244,244,240,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(244,244,240,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  z-index: 1;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 85% 75% at 62% 38%, transparent 28%, black 68%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 62% 38%, transparent 28%, black 68%);
}

/* ── Hero mouse spotlight ── */
.hero-spotlight {
  position: absolute; inset: 0;
  pointer-events: none; z-index: 2;
  background: radial-gradient(
    circle 700px at var(--spotlight-x, 62%) var(--spotlight-y, 44%),
    rgba(232,25,44,0.08) 0%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
}
.hero:hover .hero-spotlight { opacity: 1; }
.hero-num {
  position: absolute; right: 60px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(15rem, 25vw, 28rem);
  font-weight: 700; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244,244,240,0.05);
  letter-spacing: -0.05em;
  user-select: none; pointer-events: none;
}
/* ── Hero always-light text (hero is always a dark stage) ── */
.hero .hero-title {
  color: #f4f4f0;
  text-shadow: 0 4px 80px rgba(0,0,0,0.55);
}
.hero .accent-red.italic {
  color: var(--red);
  /* Subtle red glow on the key word */
  text-shadow: 0 0 80px rgba(232,25,44,0.40);
}
.hero .lead {
  color: rgba(244,244,240,0.64);
}
.hero .hero-eyebrow span {
  color: rgba(244,244,240,0.48);
}
.hero .hero-stat-val {
  color: #f4f4f0;
}
.hero .hero-stat-label {
  color: rgba(244,244,240,0.44);
}
.hero .hero-stats-row {
  border-top: 1px solid rgba(244,244,240,0.10);
}
.hero .hero-stats-row::before {
  background: var(--red);
}
.hero .hero-stat-item {
  border-right-color: rgba(244,244,240,0.10);
}
.hero .btn-arrow {
  color: rgba(244,244,240,0.55);
}
.hero .btn-arrow:hover {
  color: rgba(244,244,240,0.92);
}
.hero .hero-num {
  -webkit-text-stroke: 1px rgba(244,244,240,0.05);
}
.hero-content { position: relative; z-index: 2; padding-top: 120px; }

/* ── Availability badge ── */
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(232,25,44,0.07);
  border: 1px solid rgba(232,25,44,0.22);
  border-radius: 100px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 32px;
  font-size: 0.67rem; font-weight: 500; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--red);
  cursor: default;
  transition: background 0.3s, border-color 0.3s;
}
.hero-badge:hover {
  background: rgba(232,25,44,0.12);
  border-color: rgba(232,25,44,0.35);
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  animation: badge-pulse 2s ease-in-out infinite;
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,25,44,0.5); }
  50% { box-shadow: 0 0 0 5px rgba(232,25,44,0); }
}

/* ── Aurora glow — bolder on the always-dark hero ── */
.hero-aurora {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 50% at 68% 42%, rgba(232,25,44,0.13) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 18% 72%, rgba(232,25,44,0.07) 0%, transparent 55%);
  animation: aurora-drift 10s ease-in-out infinite alternate;
}
@keyframes aurora-drift {
  0%   { transform: scale(1)    translateX(0);    }
  100% { transform: scale(1.07) translateX(22px); }
}


.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 40px; height: 1px; background: var(--red);
}
.hero-eyebrow span {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-muted);
}
.hero-title { margin-bottom: 36px; }
.hero-title .word {
  display: inline-block; overflow: hidden;
  /* Extra bottom space prevents descenders (g, p, y) from being clipped */
  padding-bottom: 0.22em; margin-bottom: -0.22em;
  vertical-align: top;
}
.hero-title .char { display: inline-block; transform: translateY(120%); }
.hero-sub { max-width: 520px; margin-bottom: 48px; }
.hero-actions {
  display: flex; align-items: center; gap: 24px;
  flex-wrap: wrap;
}
.hero-scroll-hint {
  position: absolute; bottom: 40px; right: 48px;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px;
  z-index: 2;
}
.hero-scroll-label {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(244,244,240,0.35);
  writing-mode: vertical-rl; transform: rotate(180deg);
}
.hero-scroll-line {
  width: 1px; height: 60px; background: rgba(244,244,240,0.12);
  position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: rgba(244,244,240,0.55);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { top: -100%; } 100% { top: 200%; }
}
.hero-stats-row {
  display: flex; gap: 0;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid var(--border);
  position: relative;
}
.hero-stats-row::before {
  content: ''; position: absolute; top: -1px; left: 0;
  width: 48px; height: 2px; background: var(--red);
}
.hero-stat-item {
  flex: 1; padding-right: 36px;
  border-right: 1px solid var(--border);
  margin-right: 36px;
}
.hero-stat-item:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.hero-stat-val {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem; font-weight: 700; line-height: 1;
  color: var(--fg); margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stat-val .red { color: var(--red); }
.hero-stat-label { font-size: 0.7rem; color: var(--fg-muted); font-weight: 400; letter-spacing: 0.02em; }

/* ─────────────────────────────────
   MARQUEE / TICKER
───────────────────────────────── */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  padding: 20px 0;
}
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 48px;
  padding: 0 48px; white-space: nowrap; flex-shrink: 0;
}
.marquee-item span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; font-weight: 500;
  color: var(--fg-muted); letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.3s;
}
/* Premium outlined alternating text effect */
.marquee-item:nth-child(even) span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(13,13,13,0.28);
}
[data-theme="dark"] .marquee-item:nth-child(even) span {
  -webkit-text-stroke: 1px rgba(244,244,240,0.28);
}
.marquee-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(232,25,44,0.5);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────
   SECTION BASICS
───────────────────────────────── */
.section { padding: 120px 0; }
.section-lg { padding: 160px 0; }
.section-sm { padding: 80px 0; }

/* ─────────────────────────────────
   ABOUT / MISSION SECTION
───────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-visual {
  position: relative; aspect-ratio: 4/5; overflow: hidden;
  border-radius: var(--radius-lg);
}
.about-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--transition);
}
.about-visual:hover img { transform: scale(1.04); }
.about-visual-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(11,11,11,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.about-visual-tag .tag-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem; font-weight: 700; color: var(--red); line-height: 1;
   letter-spacing: -0.02em;
}
.about-visual-tag .tag-label {
  font-size: 0.68rem; color: rgba(255,255,255,0.65); letter-spacing: 0.1em; text-transform: uppercase; margin-top: 4px;
}
.about-text .overline { margin-bottom: 20px; }
.about-text .display-2 { margin-bottom: 28px; }
.about-text .lead { margin-bottom: 36px; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.pillar {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.pillar:first-child { border-top: 1px solid var(--border); }
.pillar-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem; font-weight: 600; color: var(--red);
  min-width: 30px; padding-top: 2px;
}
.pillar-text h4 { font-size: 0.9rem; font-weight: 500; margin-bottom: 4px; }
.pillar-text p { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; }

/* ─────────────────────────────────
   SERVICES SECTION
───────────────────────────────── */
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 80px;
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
}
.services-header-left .overline { margin-bottom: 16px; }
.services-header-right { max-width: 360px; }
.service-list { display: flex; flex-direction: column; gap: 0; }
.service-item {
  display: grid; grid-template-columns: 80px 1fr auto;
  align-items: center; gap: 40px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.4s var(--transition);
  cursor: default;
}
.service-item:hover { padding-left: 16px; }
.service-item:hover .service-num { color: var(--fg); }
.service-item:hover .service-arrow { opacity: 1; transform: translateX(0); }
.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem; font-weight: 400;
  color: var(--fg-subtle); transition: color 0.3s;
}
.service-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; font-weight: 500;
  letter-spacing: -0.02em; margin-bottom: 8px;
  transition: color 0.3s;
}
.service-item:hover .service-body h3 { color: var(--fg); }
.service-body p {
  font-size: 0.85rem; color: var(--fg-muted); max-width: 500px;
  line-height: 1.7;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.service-tag {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--fg-subtle);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 4px 10px;
}
.service-arrow {
  opacity: 0; transform: translateX(-12px);
  transition: opacity 0.4s, transform 0.4s var(--transition);
  color: var(--red);
}

/* ─────────────────────────────────
   STATS / NUMBERS
───────────────────────────────── */
.stats-section {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-cell {
  padding: 64px 48px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat-cell:last-child { border-right: none; }
.stat-cell::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform 0.6s var(--transition);
}
.stat-cell:hover::before { transform: scaleX(1); }
.stat-big {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600; line-height: 1;
  color: var(--fg); margin-bottom: 12px;
  letter-spacing: -0.03em;
}
.stat-big sup {
  font-size: 0.4em; font-weight: 400;
  color: var(--red); vertical-align: super;
  letter-spacing: 0;
}
.stat-desc { font-size: 0.82rem; color: var(--fg-muted); line-height: 1.65; max-width: 180px; }

/* ─────────────────────────────────
   PRICING
───────────────────────────────── */
.pricing-header {
  text-align: center; margin-bottom: 72px;
}
.pricing-header .overline { margin-bottom: 16px; }
.pricing-header .display-2 { margin-bottom: 20px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border); border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card { padding: 40px 32px; }
.pricing-card {
  background: var(--bg-2); padding: 48px 40px;
  position: relative;
  transition: background 0.3s;
}
.pricing-card:hover { background: var(--bg-3); }
.pricing-card.featured { background: var(--red); }
.pricing-card.featured:hover { background: #D41527; }
.pricing-label {
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted); margin-bottom: 32px;
}
.pricing-card.featured .pricing-label { color: rgba(255,255,255,0.6); }
.pricing-amount {
  display: flex; align-items: flex-start; gap: 4px; margin-bottom: 6px;
}
.pricing-currency {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem; font-weight: 400; color: var(--fg-muted); padding-top: 8px;
}
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,0.6); }
.pricing-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 5vw, 4.5rem); font-weight: 600;
  line-height: 1; letter-spacing: -0.03em; color: var(--fg);
}
.pricing-card.featured .pricing-number { color: #fff; }
.pricing-range { font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 6px; }
.pricing-period { font-size: 0.78rem; color: var(--fg-muted); margin-bottom: 36px; }
.pricing-card.featured .pricing-range,
.pricing-card.featured .pricing-period { color: rgba(255,255,255,0.55); }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,0.2); }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.pricing-feature {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.85rem; color: var(--fg-muted); line-height: 1.5;
}
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,0.8); }
.feature-check {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: var(--fg-ghost); display: flex; align-items: center;
  justify-content: center; margin-top: 2px; color: var(--fg-muted);
}
.pricing-card.featured .feature-check { background: rgba(255,255,255,0.15); color: #fff; }
.pricing-cta { width: 100%; }
.pricing-badge {
  position: absolute; top: 24px; right: 24px;
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--red);
  background: var(--red-dim); border: 1px solid rgba(232,25,44,0.2);
  padding: 5px 12px; border-radius: 100px;
}
.pricing-card.featured .pricing-badge { color: #fff; background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); }

/* ─────────────────────────────────
   TESTIMONIALS MARQUEE
───────────────────────────────── */
.testimonial-section { overflow: hidden; }
.testimonial-track {
  display: flex; gap: 24px;
  animation: marqueeScroll 40s linear infinite;
  width: max-content;
}
.testimonial-track.reverse { animation-direction: reverse; }
.testimonial-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  min-width: 340px; flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s;
}
.testimonial-card:hover { border-color: var(--border-h); background: var(--bg-3); }
.testimonial-stars { color: #FACC15; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.15rem; font-weight: 400; font-style: italic;
  color: var(--fg); line-height: 1.65; margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--bg-3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.9rem;
  font-weight: 700; color: var(--red); flex-shrink: 0;
}
.author-name { font-size: 0.82rem; font-weight: 500; color: var(--fg); }
.author-biz { font-size: 0.72rem; color: var(--fg-muted); }

/* ─────────────────────────────────
   CTA BAND
───────────────────────────────── */
.cta-section {
  background: var(--bg-2); position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-bg-text {
  position: absolute; bottom: -40px; left: -20px; right: -20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(6rem, 14vw, 16rem);
  font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(244,244,240,0.03);
  letter-spacing: -0.05em; user-select: none; pointer-events: none;
  white-space: nowrap;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner .overline { margin-bottom: 24px; }
.cta-inner .display-2 { margin-bottom: 24px; }
.cta-inner .lead { max-width: 520px; margin: 0 auto 48px; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─────────────────────────────────
   FOOTER
───────────────────────────────── */
.footer {
  background: #080808;
  border-top: 1px solid rgba(244,244,240,0.07);
  padding: 72px 0 32px;
  position: relative; overflow: hidden;
  /* Footer is always dark — override any theme tokens inside */
  --fg:        #F4F4F0;
  --fg-muted:  rgba(244,244,240,0.5);
  --fg-subtle: rgba(244,244,240,0.18);
  --border:    rgba(244,244,240,0.07);
}
.footer .container { position: relative; z-index: 1; }
/* ── Premium watermark ── */
.footer-watermark {
  position: absolute;
  bottom: -0.12em; left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(7rem, 22vw, 22rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #F4F4F0;
  opacity: 0.035;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 64px;
}
.footer-logo-wrap {
  display: flex; align-items: center; gap: 10px; margin-bottom: 14px;
}
.footer-logo-mark {
  width: 32px; height: 27px; flex-shrink: 0; color: var(--fg);
}
.footer-logo-text-group { display: flex; flex-direction: column; gap: 2px; }
.footer-logo-farion {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem; font-weight: 600;
  color: #F4F4F0; letter-spacing: -0.03em; line-height: 1;
  
}
.footer-logo-studio {
  font-size: 0.46rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--fg-muted); line-height: 1;
}
.footer-tagline {
  font-size: 0.82rem; color: var(--fg-muted);
  line-height: 1.75; margin-top: 0px; max-width: 240px;
}
.footer-col h5 {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--fg-subtle); margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  font-size: 0.85rem; color: var(--fg-muted);
  transition: color 0.3s, padding-left 0.3s;
}
.footer-col ul a:hover { color: var(--fg); padding-left: 6px; }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.75rem; color: var(--fg-subtle); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.75rem; color: var(--fg-subtle); transition: color 0.3s; }
.footer-legal a:hover { color: var(--fg-muted); }

/* ─────────────────────────────────
   PAGE HERO (inner pages)
───────────────────────────────── */
.page-hero {
  min-height: 55vh; display: flex;
  align-items: flex-end; padding-bottom: 72px;
  padding-top: 160px; position: relative;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.page-hero .overline { margin-bottom: 20px; }
.page-hero .display-2 { margin-bottom: 20px; }
.page-hero .lead { max-width: 560px; }

/* ── Footer social ── */
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--fg-muted);
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social-link:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-dim);
}

/* ─────────────────────────────────
   SERVICES PAGE SPECIFIC
───────────────────────────────── */
.service-detail-block {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
  padding: 100px 0; border-bottom: 1px solid var(--border);
}
.service-detail-block.reverse .detail-visual { order: -1; }
.detail-visual {
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-2); position: relative;
}
.detail-visual-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 32px;
}
.detail-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem; font-weight: 700; line-height: 1;
  color: transparent; -webkit-text-stroke: 1px var(--border);
}
.detail-icon { color: var(--red); margin-bottom: 20px; }
.detail-text-overline { margin-bottom: 12px; }
.detail-text .display-3 { margin-bottom: 18px; }
.detail-text .lead { margin-bottom: 28px; }
.detail-features { display: flex; flex-direction: column; gap: 14px; }
.detail-feat {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.875rem; color: var(--fg-muted); line-height: 1.6;
}
.feat-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red); flex-shrink: 0; margin-top: 8px;
}
.detail-feat strong { display: block; color: var(--fg); font-weight: 500; margin-bottom: 2px; }

/* ─────────────────────────────────
   ABOUT PAGE
───────────────────────────────── */
.market-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.market-cell {
  background: var(--bg-2); padding: 48px 40px;
  transition: background 0.3s;
}
.market-cell:hover { background: var(--bg-3); }
.market-emoji { font-size: 2.2rem; margin-bottom: 20px; display: block; }
.market-cell h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.6rem; font-weight: 500; margin-bottom: 14px;
}
.market-cell p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.72; }
.market-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.market-tag {
  font-size: 0.62rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px solid var(--border);
  color: var(--fg-subtle); padding: 4px 10px; border-radius: 100px;
}
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px;
  background: var(--border); border-radius: var(--radius-lg); overflow: hidden;
}
.value-cell {
  background: var(--bg-2); padding: 48px 40px;
  transition: background 0.3s;
}
.value-cell:hover { background: var(--bg-3); }
.value-big-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 4.5rem; font-weight: 700; line-height: 1;
  color: var(--red); opacity: 0.30;
  margin-bottom: 12px; letter-spacing: -0.04em;
  
  transition: opacity 0.3s;
}
.value-cell:hover .value-big-num { opacity: 0.55; }
.value-cell h3 {
  font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--fg);
}
.value-cell p { font-size: 0.85rem; color: var(--fg-muted); line-height: 1.72; }

/* ─────────────────────────────────
   CONTACT PAGE
───────────────────────────────── */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: 80px; align-items: start;
}
.contact-info .display-3 { margin-bottom: 20px; }
.contact-info .lead { margin-bottom: 44px; }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.cd-icon {
  width: 36px; height: 36px; border-radius: var(--radius);
  background: var(--fg-ghost); display: flex;
  align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0;
}
.cd-label { font-size: 0.65rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-subtle); margin-bottom: 3px; }
.cd-val { font-size: 0.88rem; color: var(--fg); font-weight: 400; }
.contact-form-wrap {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 52px 44px;
}
.contact-form-wrap h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.8rem; font-weight: 500; margin-bottom: 6px;
}
.contact-form-wrap p { font-size: 0.85rem; color: var(--fg-muted); margin-bottom: 32px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label {
  display: block; font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--fg-muted); margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 14px 16px;
  background: var(--bg-3); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--fg);
  font-family: 'Inter', sans-serif; font-size: 0.88rem;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--fg-subtle); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-dim);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-3); }
.form-submit { width: 100%; justify-content: center; border-radius: var(--radius); }
.success-state { display: none; text-align: center; padding: 60px 24px; }
.success-check {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(22,163,74,0.12); border: 1px solid rgba(22,163,74,0.3);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: #4ADE80;
}

/* ─────────────────────────────────
   PRICING PAGE SPECIFIC
───────────────────────────────── */
/* ─────────────────────────────────
   BUNDLE BUILDER
───────────────────────────────── */
.bundle-builder {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 56px 48px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}
.bundle-step { margin-bottom: 48px; }
.bundle-step-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red); margin-bottom: 10px;
}
.bundle-step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem; font-weight: 600; color: var(--fg);
  margin-bottom: 24px; letter-spacing: -0.02em;
}
.bundle-info-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.bundle-field { display: flex; flex-direction: column; gap: 8px; }
.bundle-field label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--fg-muted);
}
.bundle-field input,
.bundle-field select {
  background: var(--bg); border: 1px solid var(--border);
  color: var(--fg); font-family: 'Inter', sans-serif;
  font-size: 0.9rem; padding: 12px 16px; border-radius: 10px;
  outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.bundle-field input:focus,
.bundle-field select:focus {
  border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,25,44,0.12);
}
.bundle-field.full-width { grid-column: 1 / -1; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
}
.service-toggle {
  display: flex; flex-direction: column; gap: 6px;
  background: var(--bg); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 16px 18px; cursor: pointer;
  transition: all 0.2s ease; user-select: none; position: relative;
}
.service-toggle:hover { border-color: var(--red); }
.service-toggle.selected {
  background: var(--red); border-color: var(--red);
}
.service-toggle-name {
  font-size: 0.83rem; font-weight: 600; color: var(--fg);
  line-height: 1.3; transition: color 0.2s;
}
.service-toggle.selected .service-toggle-name { color: #fff; }
.service-toggle-price {
  font-size: 0.75rem; color: var(--fg-muted); font-weight: 500;
  transition: color 0.2s;
}
.service-toggle.selected .service-toggle-price { color: rgba(255,255,255,0.75); }
.service-toggle-check {
  position: absolute; top: 10px; right: 12px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--fg-ghost); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.service-toggle.selected .service-toggle-check {
  background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.4);
}
.bundle-total-box {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 14px; padding: 24px 28px; margin-top: 28px;
  display: flex; flex-direction: column; gap: 6px;
}
.bundle-total-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--fg-muted);
}
.bundle-total-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.2rem; font-weight: 700; color: var(--red);
  letter-spacing: -0.03em; line-height: 1;
}
.bundle-total-note {
  font-size: 0.75rem; color: var(--fg-subtle); margin-top: 4px;
}
.bundle-divider { height: 1px; background: var(--border); margin: 40px 0; }
.bundle-submit-btn {
  width: 100%; padding: 18px 32px; background: var(--red);
  color: #fff; border: none; border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600;
  letter-spacing: 0.02em; cursor: pointer; transition: background 0.2s, transform 0.15s;
}
.bundle-submit-btn:hover { background: #D41527; transform: translateY(-1px); }
.bundle-submit-btn:active { transform: translateY(0); }
.bundle-success {
  display: none; text-align: center; padding: 48px 24px;
}
.bundle-success-icon {
  width: 64px; height: 64px; background: rgba(232,25,44,0.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; color: var(--red);
}
.bundle-success-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem;
  font-weight: 700; color: var(--fg); margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.bundle-success-msg { font-size: 0.95rem; color: var(--fg-muted); line-height: 1.65; }
.bundle-success-msg span { color: var(--red); font-weight: 600; }

.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td {
  padding: 16px 20px; text-align: left;
  border-bottom: 1px solid var(--border); font-size: 0.85rem;
}
.comparison-table thead th {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--fg-muted);
  background: var(--bg-2); padding: 20px;
}
.comparison-table tbody td { color: var(--fg-muted); }
.comparison-table tbody td:first-child { color: var(--fg); font-weight: 500; }
.comparison-table .feat-yes { color: #4ADE80; font-size: 1.1rem; }
.comparison-table .feat-no { color: var(--fg-subtle); }
.comparison-table .feat-mid { color: var(--fg-muted); font-style: italic; }
.comparison-table .col-featured { background: var(--red-dim); color: var(--fg); }

/* ─────────────────────────────────
   FAQ
───────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between;
  align-items: center; padding: 24px 0; gap: 20px;
  cursor: pointer; font-size: 0.95rem; font-weight: 500;
  color: var(--fg-muted); transition: color 0.3s;
}
.faq-q:hover { color: var(--fg); }
.faq-item.open .faq-q { color: var(--fg); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--border); display: flex;
  align-items: center; justify-content: center;
  color: var(--fg-muted); font-size: 1.1rem; flex-shrink: 0;
  transition: transform 0.3s, background 0.3s, color 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--red); border-color: var(--red); color: #fff; }
.faq-a {
  display: none; padding: 0 0 24px;
  font-size: 0.875rem; color: var(--fg-muted); line-height: 1.78;
}
.faq-item.open .faq-a { display: block; }

/* ─────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.8s var(--transition), transform 0.8s var(--transition); }
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* ─────────────────────────────────
   UTILITY
───────────────────────────────── */
.text-muted { color: var(--fg-muted); }
.text-red { color: var(--red); }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }

/* ─────────────────────────────────
   RESPONSIVE
───────────────────────────────── */
@media (max-width: 1024px) {
  .container-wide { padding: 0 32px; }
  /* Capsule on mobile: logo far-left, controls far-right */
  .nav { width: calc(100% - 32px); }
  .nav-inner {
    padding: 5px 6px 5px 18px;
    justify-content: space-between;
    /* push logo to left edge, nav-right to right edge */
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-right {
    padding-left: 0;
    border-left: none;
    margin-left: auto; /* explicit push to far right */
    gap: 4px;
    flex-shrink: 0;
  }
  .nav-hamburger { display: flex; }
  .hero-num { display: none; }
  .hero-floating-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-cell:nth-child(2) { border-right: none; }
  .stat-cell:nth-child(3) { border-right: 1px solid var(--border); }
  .stat-cell:nth-child(4) { border-right: none; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-info-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .bundle-builder { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-block { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-block.reverse .detail-visual { order: 0; }
  .market-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .bundle-builder { padding: 32px 20px; }
  .section { padding: 80px 0; }
  .section-lg { padding: 100px 0; }

  /* ── Mobile hero: slightly shorter so next section peeks in ── */
  .hero { min-height: 92vh; padding-bottom: 52px; }
  .hero-content { padding-top: 96px; }
  /* Smaller display text — content fits one screen, tease scroll */
  .hero .hero-title,
  .hero .display-1 {
    font-size: clamp(2.2rem, 8.5vw, 3.2rem);
    line-height: 1.06;
  }
  .hero-sub {
    font-size: 0.88rem;
    margin-bottom: 32px;
    line-height: 1.75;
  }
  .hero-badge { font-size: 0.62rem; padding: 6px 14px 6px 10px; margin-bottom: 22px; }
  .hero-eyebrow { margin-bottom: 18px; }
  .hero-eyebrow span { font-size: 0.62rem; }
  .hero-actions { gap: 14px; }
  .hero-actions .btn { padding: 12px 22px; font-size: 0.72rem; }
  .hero-stats-row {
    flex-wrap: wrap; gap: 20px;
    margin-top: 36px; padding-top: 28px;
  }
  .hero-stat-item {
    border-right: none; margin-right: 0; padding-right: 0;
    flex: 0 0 calc(50% - 10px);
  }
  .hero-stat-val { font-size: 2rem; }

  .hero-scroll-hint { display: none; }
  .service-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .service-arrow { display: none; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-cell { padding: 40px 28px; }
  /* Footer: brand full-width top, 3 link cols in one row below */
  .footer { padding: 44px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px 20px;
    margin-bottom: 36px;
  }
  .footer-grid > *:first-child {
    grid-column: 1 / -1; /* brand spans all 3 cols */
    display: flex; flex-direction: column; gap: 10px;
  }
  .footer-tagline { max-width: 100%; font-size: 0.78rem; }
  .footer-col h5 { margin-bottom: 14px; }
  .footer-col ul { gap: 10px; }
  .footer-col ul a { font-size: 0.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 8px; }
  .footer-legal { justify-content: center; gap: 16px; }
  .contact-form-wrap { padding: 36px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  body { cursor: auto; }
  .cursor { display: none; }
}

/* ─────────────────────────────────
   THEME TOGGLE
───────────────────────────────── */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-muted);
  flex-shrink: 0;
  transition: color 0.3s, border-color 0.3s, background 0.3s, transform 0.3s;
}
.theme-toggle:hover { color: var(--fg); border-color: var(--border-h); transform: rotate(20deg); }
.theme-icon-moon { display: block; }
.theme-icon-sun  { display: none;  }
[data-theme="dark"] .theme-icon-moon { display: none; }
[data-theme="dark"] .theme-icon-sun  { display: block; }

/* ─────────────────────────────────
   SPIRAL WAVE CANVAS
───────────────────────────────── */
#spiralCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.6;
}
