/* ════════════════════════════════════════════
   MOMENTUM — DARK PREMIUM REDESIGN
   Aesthetic: Industrial Luxury × Digital Organism
   ════════════════════════════════════════════ */

:root {
  --bg:       #080a0e;
  --bg2:      #0d1018;
  --surface:  #111419;
  --surface2: #181c24;
  --border:   rgba(255,255,255,.07);
  --border2:  rgba(255,255,255,.12);
  --text:     #e8eaf0;
  --muted:    rgba(232,234,240,.45);
  --accent:   #a3ff12;
  --accent2:  #00f5d4;
  --accent3:  #7b61ff;
  --danger:   #ff4d6d;
  --font-display: 'Syne', sans-serif;
  --font-mono:    'Space Mono', monospace;
  --font-body:    'DM Sans', sans-serif;
  --radius:   16px;
  --radius-lg: 24px;
  --glow-accent: 0 0 40px rgba(163,255,18,.15);
  --glow-teal: 0 0 40px rgba(0,245,212,.12);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; cursor: pointer; }
button { font: inherit; cursor: pointer; }
.date-btn, .time-btn, .price-card, .btn-hero-primary, .btn-hero-ghost,
.btn-continue, .btn-confirm, .btn-back, .btn-restart, .btn-price,
.change-btn, .nav-cta { cursor: pointer; }

/* ── Background Canvas ── */
.bg-canvas {
  position: fixed; inset: 0; z-index: -2; overflow: hidden;
}
.bg-canvas::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 15% 10%, rgba(163,255,18,.07), transparent 60%),
    radial-gradient(ellipse 600px 500px at 85% 20%, rgba(0,245,212,.06), transparent 60%),
    radial-gradient(ellipse 700px 400px at 50% 90%, rgba(123,97,255,.05), transparent 60%);
}

/* ── Noise texture ── */
.noise-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ── Container ── */
.container { width: min(1100px, calc(100% - 40px)); margin: 0 auto; }

/* ── Mono Tag ── */
.mono-tag {
  font-family: var(--font-mono); font-size: 11px; font-weight: 400;
  letter-spacing: .08em; color: var(--accent); opacity: .85;
  display: inline-flex; align-items: center; gap: 6px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
  from { opacity: 0; transform: translateX(-28px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(.5deg); }
  50%       { transform: translateY(-12px) rotate(-.5deg); }
}
@keyframes blinkCursor {
  0%, 100% { opacity: 1; } 50% { opacity: 0; }
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(163,255,18,.15); }
  50%       { box-shadow: 0 0 50px rgba(163,255,18,.4); }
}
@keyframes drawCheck {
  from { stroke-dashoffset: 80; }
  to   { stroke-dashoffset: 0; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(.8); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes countUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 15px) scale(.95); }
}
@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(-25px, 20px) scale(1.08); }
  66%       { transform: translate(20px, -15px) scale(.92); }
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes progress-fill {
  from { width: 0; }
  to   { width: var(--w); }
}
@keyframes typewriter-blink {
  0%, 100% { opacity: 1; } 49% { opacity: 1; } 50% { opacity: 0; }
}

/* ── Scroll reveal ── */
.reveal-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1) var(--d, 0s),
              transform .7s cubic-bezier(.22,1,.36,1) var(--d, 0s);
}
.reveal-up.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0; transform: translateX(-24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1) var(--d, 0s),
              transform .7s cubic-bezier(.22,1,.36,1) var(--d, 0s);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0; transform: translateX(32px);
  transition: opacity .8s cubic-bezier(.22,1,.36,1) .1s,
              transform .8s cubic-bezier(.22,1,.36,1) .1s;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Topbar ── */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(8,10,14,.75);
  backdrop-filter: blur(24px) saturate(200%);
  -webkit-backdrop-filter: blur(24px) saturate(200%);
  border-bottom: 1px solid var(--border);
  transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s, background .3s;
}
.topbar.topbar-hidden { transform: translateY(-110%); opacity: 0; pointer-events: none; }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
}
.brand-text {
  font-family: var(--font-display); font-weight: 700; font-size: 17px;
  background: linear-gradient(135deg, #e8eaf0, rgba(232,234,240,.6));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 14px; font-weight: 500; color: var(--muted);
  padding: 8px 13px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-cta {
  background: rgba(163,255,18,.08) !important;
  border: 1px solid rgba(163,255,18,.2) !important;
  color: var(--accent) !important;
  border-radius: 10px;
  display: inline-flex; align-items: center; gap: 5px;
  transition: background .2s, border-color .2s, transform .2s !important;
}
.nav-cta:hover {
  background: rgba(163,255,18,.14) !important;
  border-color: rgba(163,255,18,.4) !important;
  transform: translateY(-1px) !important;
}
.nav-arrow { font-size: 12px; }

/* ── Hamburger ── */
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; padding: 6px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--text); border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }

/* ── Mobile Nav Overlay ── */
.nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(8,10,14,.97); backdrop-filter: blur(24px);
  flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.nav-overlay.open { display: flex; animation: fadeUp .2s ease; }
.nav-overlay a {
  font-family: var(--font-display); font-weight: 700; font-size: 28px;
  color: var(--muted); padding: 14px 32px; border-radius: 14px;
  transition: color .2s, background .2s;
}
.nav-overlay a:hover, .nav-overlay a.nav-book-btn { color: var(--text); }
.nav-overlay a.nav-book-btn {
  font-size: 22px; margin-top: 12px;
  background: rgba(163,255,18,.08); border: 1px solid rgba(163,255,18,.2);
  color: var(--accent) !important;
}
.nav-close {
  position: absolute; top: 22px; right: 22px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--muted); width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  transition: color .2s, background .2s;
}
.nav-close:hover { color: var(--text); background: rgba(255,255,255,.08); }

/* ── Mobile FAB ── */
.mobile-fab {
  display: none; position: fixed; bottom: 24px; left: 50%;
  transform: translateX(-50%); z-index: 90;
  background: linear-gradient(135deg, #a3ff12, #00f5d4);
  color: #080a0e; font-family: var(--font-display); font-weight: 700;
  font-size: 14px; padding: 13px 24px; border-radius: 999px;
  box-shadow: 0 8px 32px rgba(163,255,18,.35);
  align-items: center; gap: 8px; white-space: nowrap;
  transition: transform .2s, box-shadow .2s;
  animation: glow-pulse 3s ease infinite;
}
.mobile-fab:hover { transform: translateX(-50%) translateY(-2px); }
.fab-arrow { font-size: 16px; }

/* ── Hero ── */
.hero {
  padding: 80px 0 40px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  max-width: min(1100px, calc(100% - 40px)); margin: 0 auto;
}

.hero-eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 24px;
}
.pulse-ring {
  position: relative; width: 10px; height: 10px;
}
.pulse-ring::before, .pulse-ring::after {
  content: ''; position: absolute; border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.pulse-ring::before {
  width: 8px; height: 8px; background: var(--accent);
}
.pulse-ring::after {
  width: 8px; height: 8px; border: 1.5px solid var(--accent);
  animation: pulseRing 2s ease infinite;
}
.eyebrow-stat {
  font-size: 13px; color: var(--muted);
  background: rgba(163,255,18,.05); border: 1px solid rgba(163,255,18,.1);
  padding: 4px 12px; border-radius: 999px;
}

.hero-h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(40px, 4.8vw, 68px);
  line-height: 1.0; letter-spacing: -2.5px;
  margin-bottom: 22px;
}
.h1-line { display: block; }
.h1-accent-line { color: var(--accent); }
.gradient-text {
  background: linear-gradient(135deg, #a3ff12 0%, #00f5d4 60%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.cursor-blink {
  display: inline-block; width: 3px;
  background: var(--accent); color: transparent;
  animation: typewriter-blink 1.1s ease infinite;
  margin-left: 2px; vertical-align: text-bottom;
}

.hero-sub {
  font-size: 17px; line-height: 1.7; color: var(--muted);
  max-width: 480px; margin-bottom: 32px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.btn-hero-primary {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #080a0e;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 999px; border: none;
  box-shadow: 0 8px 32px rgba(163,255,18,.3);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  
}
.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 48px rgba(163,255,18,.45);
}
.btn-glow {
  position: absolute; inset: -20px; border-radius: inherit;
  background: radial-gradient(circle at center, rgba(163,255,18,.3), transparent 70%);
  opacity: 0; transition: opacity .3s;
}
.btn-hero-primary:hover .btn-glow { opacity: 1; }

.btn-hero-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; border: 1px solid var(--border2);
  color: var(--text); font-family: var(--font-display); font-weight: 600;
  font-size: 15px; padding: 13px 24px; border-radius: 999px;
  transition: border-color .2s, background .2s, transform .2s;
  
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.04);
  transform: translateY(-2px);
}
.ghost-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid var(--border);
  display: grid; place-items: center; font-size: 9px;
}

.hero-stats {
  display: flex; gap: 32px; padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat { position: relative; }
.stat-num {
  font-family: var(--font-display); font-weight: 800; font-size: 30px;
  letter-spacing: -1px; display: inline-block;
  background: linear-gradient(135deg, #e8eaf0, rgba(232,234,240,.7));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-plus { display: inline; font-family: var(--font-display); font-weight: 800; font-size: 18px; color: var(--accent); }
.stat-lbl { font-size: 12px; color: var(--muted); margin-top: 3px; }
.stat-sep { width: 1px; background: var(--border); flex-shrink: 0; }

/* ── Hero Float Card ── */
.hero-float-card {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  box-shadow: 0 32px 80px rgba(0,0,0,.6), var(--glow-accent);
  overflow: hidden; animation: float 7s ease-in-out infinite;
  position: relative;
}
.hero-float-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hfc-header {
  padding: 12px 16px; background: rgba(0,0,0,.3);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 12px;
}
.hfc-dots { display: flex; gap: 6px; }
.hfc-dots span { width: 10px; height: 10px; border-radius: 50%; }
.hfc-dots span:nth-child(1) { background: #ff5f57; }
.hfc-dots span:nth-child(2) { background: #febc2e; }
.hfc-dots span:nth-child(3) { background: #28c840; }
.hfc-url { flex: 1; text-align: center; }
.hfc-status {
  display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--accent);
  font-family: var(--font-mono);
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: glow-pulse 2s ease infinite;
  box-shadow: 0 0 8px var(--accent);
}

.hfc-body { padding: 16px; display: grid; gap: 14px; }

.hfc-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.hfc-metric {
  background: rgba(0,0,0,.3); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 10px; text-align: center;
  transition: border-color .2s, background .2s;
}
.hfc-metric:hover { border-color: rgba(163,255,18,.3); background: rgba(163,255,18,.04); }
.hfc-metric-icon [data-lucide] { width: 16px; height: 16px; stroke: var(--accent); margin-bottom: 6px; }
.hfc-metric-val {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  letter-spacing: -.5px; color: var(--text);
}
.hfc-metric-lbl { font-size: 10px; color: var(--muted); margin-top: 2px; }
.hfc-metric-up { font-size: 10px; color: var(--accent); font-family: var(--font-mono); margin-top: 3px; }

.hfc-chart-wrap { border-radius: 10px; overflow: hidden; background: rgba(0,0,0,.2); padding: 4px; }

.hfc-chat {
  background: rgba(0,0,0,.25); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.hfc-chat-label { padding: 8px 12px; border-bottom: 1px solid var(--border); }
.hfc-msg { display: flex; align-items: flex-start; gap: 8px; padding: 10px 12px; }
.hfc-msg.user-msg { flex-direction: row-reverse; }
.hfc-av {
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center; font-size: 10px; font-weight: 800;
  border: 1px solid var(--border);
}
.hfc-av-user { background: rgba(255,255,255,.06); }
.hfc-av-user [data-lucide] { width: 12px; height: 12px; stroke: var(--muted); }
.hfc-av-ai {
  background: linear-gradient(135deg, rgba(163,255,18,.2), rgba(0,245,212,.15));
  border-color: rgba(163,255,18,.25); color: var(--accent);
  font-family: var(--font-mono);
}
.hfc-bubble {
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  border-radius: 10px 10px 10px 3px; padding: 8px 11px;
  font-size: 12px; line-height: 1.5; color: rgba(232,234,240,.8); max-width: 82%;
}
.hfc-msg.user-msg .hfc-bubble {
  border-radius: 10px 10px 3px 10px;
  background: rgba(163,255,18,.08); border-color: rgba(163,255,18,.15); color: var(--text);
}
.ai-bubble { position: relative; }
.hfc-typing {
  display: flex; align-items: center; gap: 4px; padding: 0 12px 10px 46px;
}
.hfc-typing span {
  width: 5px; height: 5px; border-radius: 50%; background: var(--muted);
  animation: typingDot 1.4s ease infinite;
}
.hfc-typing span:nth-child(2) { animation-delay: .2s; }
.hfc-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ── Ticker ── */
.ticker-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 14px 0; background: rgba(0,0,0,.2);
}
.ticker {
  display: flex; align-items: center; gap: 24px; white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker span {
  font-family: var(--font-display); font-weight: 600; font-size: 14px;
  color: var(--muted); letter-spacing: .02em;
}
.tick-sep { color: var(--accent); font-size: 8px !important; }

/* ── Sections ── */
.section { padding: 96px 0; }
.section-alt {
  background: var(--bg2);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.section-booking { background: var(--bg2); border-top: 1px solid var(--border); }

.section-head { margin-bottom: 56px; }
.section-tag { margin-bottom: 14px; display: block; }
.section-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4vw, 56px); letter-spacing: -2px; line-height: 1.05;
  margin-bottom: 16px;
}
.section-h2 em { font-style: normal; color: var(--accent); }
.section-sub { color: var(--muted); font-size: 17px; line-height: 1.65; max-width: 520px; }

/* ── Problem Grid ── */
.problem-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.problem-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s cubic-bezier(.22,1,.36,1);
  cursor: default;
}
.problem-card:hover { border-color: rgba(163,255,18,.25); }
.problem-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.problem-card:hover::before { transform: scaleX(1); }
.pc-num { display: block; margin-bottom: 14px; }
.pc-icon { margin-bottom: 14px; }
.pc-icon [data-lucide] { width: 22px; height: 22px; stroke: var(--accent); }
.problem-card h3 { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; margin-bottom: 9px; }
.problem-card p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }
.problem-card p strong { color: var(--text); }
.pc-stat {
  font-family: var(--font-display); font-weight: 800; font-size: 40px;
  letter-spacing: -2px; margin-top: 20px;
  background: linear-gradient(135deg, rgba(163,255,18,.2), rgba(163,255,18,.05));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pc-stat span { font-size: 20px; }

/* ── Services Layout ── */
.services-layout {
  display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; align-items: start;
}
.service-main {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 36px;
  position: relative; overflow: hidden;
}
.service-main::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(163,255,18,.06), transparent 70%);
  pointer-events: none;
}
.service-num { display: block; margin-bottom: 16px; }
.service-main h3 {
  font-family: var(--font-display); font-weight: 800; font-size: 28px;
  letter-spacing: -1px; margin-bottom: 14px;
}
.service-main p { color: var(--muted); line-height: 1.65; margin-bottom: 22px; }
.service-list { list-style: none; display: grid; gap: 10px; margin-bottom: 28px; }
.service-list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: rgba(232,234,240,.8);
}
.check-icon { color: var(--accent); font-size: 14px; flex-shrink: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  color: var(--accent); transition: gap .2s;
}
.service-link:hover { gap: 12px; }

.services-right { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.service-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
  position: relative; overflow: hidden;
  transition: border-color .3s, background .3s, transform .3s cubic-bezier(.22,1,.36,1);
}
.service-card:hover { border-color: rgba(0,245,212,.25); background: var(--surface2); }
.service-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(0,245,212,.04), transparent 70%);
  pointer-events: none;
}
.service-card-opt { border-color: rgba(123,97,255,.2); }
.service-card-opt:hover { border-color: rgba(123,97,255,.4); }
.sc-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  background: rgba(123,97,255,.12); border: 1px solid rgba(123,97,255,.25);
  color: #a78bfa; padding: 3px 9px; border-radius: 999px; margin-bottom: 10px;
}
.sc-icon { margin-bottom: 12px; }
.sc-icon [data-lucide] { width: 20px; height: 20px; stroke: var(--accent2); }
.service-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 15px; margin-bottom: 7px; }
.service-card p { color: var(--muted); font-size: 13px; line-height: 1.55; margin-bottom: 12px; flex: 1; }
.sc-link { font-size: 13px; font-weight: 600; color: var(--accent2); transition: color .2s; }
.sc-link:hover { color: var(--accent); }

/* ── Tilt Card ── */
.tilt-card { transition-property: transform, border-color, background, box-shadow; }

/* ── Process ── */
.process-track {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  padding-top: 32px;
}
.process-line {
  position: absolute; top: 54px; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--accent3), transparent);
  opacity: .3;
}
.process-step { padding: 0 16px 0 0; }
.ps-num {
  font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  margin-bottom: 16px; display: block;
}
.ps-body { position: relative; }
.ps-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 12px rgba(163,255,18,.6);
  margin-bottom: 18px;
  position: relative;
}
.ps-dot::before {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1px solid rgba(163,255,18,.25); animation: pulseRing 3s ease infinite;
}
.process-step h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  margin-bottom: 9px;
}
.process-step p { color: var(--muted); font-size: 13.5px; line-height: 1.6; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  position: relative; overflow: hidden;
  transition: border-color .3s, transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s;
  cursor: pointer;
}
.price-card:hover { border-color: rgba(163,255,18,.25); transform: translateY(-4px); }
.price-card.price-featured {
  border-color: rgba(163,255,18,.3);
  background: linear-gradient(180deg, rgba(163,255,18,.06), var(--surface));
  box-shadow: 0 0 60px rgba(163,255,18,.08);
}
.price-card.price-featured:hover { box-shadow: 0 0 80px rgba(163,255,18,.16); }
.price-card.price-selected {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 2px rgba(163,255,18,.2), 0 20px 60px rgba(163,255,18,.1) !important;
}
.pc-popular {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  background: rgba(163,255,18,.12); border: 1px solid rgba(163,255,18,.3);
  color: var(--accent); padding: 4px 10px; border-radius: 999px; margin-bottom: 12px;
}
.pc-header { margin-bottom: 20px; }
.price-tier {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  letter-spacing: -.5px; margin-bottom: 4px;
}
.price-desc { color: var(--muted); font-size: 13px; }
.price-amount { margin-bottom: 24px; }
.price-from { font-size: 12px; color: var(--muted); font-family: var(--font-mono); margin-bottom: 2px; }
.price-val {
  font-family: var(--font-display); font-weight: 800; font-size: 36px;
  letter-spacing: -2px; line-height: 1;
}
.price-val span { font-size: 16px; letter-spacing: 0; color: var(--muted); font-weight: 600; }
.price-setup { font-size: 12px; color: var(--muted); margin-top: 4px; font-family: var(--font-mono); }
.price-features {
  list-style: none; display: grid; gap: 8px; margin-bottom: 24px;
}
.price-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: rgba(232,234,240,.75); line-height: 1.4;
}
.price-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; font-family: var(--font-mono); }
.btn-price {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 18px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border2);
  color: var(--text); font-family: var(--font-display); font-weight: 600; font-size: 14px;
   transition: background .2s, border-color .2s, color .2s;
}
.btn-price:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.2); }
.btn-price-featured {
  background: var(--accent) !important; color: #080a0e !important;
  border-color: transparent !important;
  box-shadow: 0 8px 24px rgba(163,255,18,.3);
}
.btn-price-featured:hover { background: #b8ff30 !important; box-shadow: 0 12px 32px rgba(163,255,18,.45) !important; }

/* ── Testimonials ── */
.testi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: border-color .3s, transform .3s cubic-bezier(.22,1,.36,1);
}
.testi-card:hover { border-color: rgba(163,255,18,.2); }
.testi-metric {
  font-family: var(--font-display); font-weight: 800; font-size: 32px;
  letter-spacing: -1.5px; line-height: 1;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 14px;
}
.testi-metric span { font-size: 16px; letter-spacing: 0; }
.testi-card blockquote {
  font-style: italic; font-size: 13.5px; line-height: 1.65;
  color: rgba(232,234,240,.72); margin-bottom: 18px;
  border-left: 2px solid rgba(163,255,18,.2); padding-left: 12px;
}
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-av {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(163,255,18,.15), rgba(0,245,212,.1));
  border: 1px solid rgba(163,255,18,.2);
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 800; font-size: 13px; color: var(--accent);
}
.testi-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; }
.testi-role { font-size: 12px; color: var(--muted); margin-top: 1px; }

/* ════════════ BOOKING ════════════ */
.booking-head { text-align: center; margin-bottom: 48px; }
.booking-head .section-sub { margin: 0 auto; }

.booking-widget {
  background: var(--surface); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.booking-widget::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
}

.booking-stepper {
  display: flex; align-items: center; justify-content: center;
  padding: 22px 24px; border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,.2); gap: 12px;
}
.step-pill {
  display: flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 14px; color: var(--muted);
  transition: color .3s;
}
.step-pill.active { color: var(--text); }
.step-pill.done   { color: var(--accent); }
.sp-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: var(--surface2); border: 1px solid var(--border2);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 12px;
  transition: background .3s, border-color .3s, color .3s;
}
.step-pill.active .sp-num {
  background: var(--accent); border-color: transparent; color: #080a0e !important;
  box-shadow: 0 4px 16px rgba(163,255,18,.35);
}
.step-pill.done .sp-num {
  background: rgba(163,255,18,.1); border-color: rgba(163,255,18,.3); color: var(--accent);
}
.step-connector { width: 60px; height: 1px; background: var(--border2); }

/* Step 1 */
.booking-step-1 { display: grid; grid-template-columns: 1fr 1fr; }
.booking-col { padding: 24px; }
.booking-col:first-child { border-right: 1px solid var(--border); }
.bcol-head {
  display: flex; align-items: center; gap: 7px; margin-bottom: 18px;
}
.bcol-head [data-lucide] { width: 14px; height: 14px; stroke: var(--accent); }
.dates-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.date-btn {
  border-radius: 12px; border: 1px solid var(--border); background: rgba(255,255,255,.02);
  padding: 11px 6px; text-align: center;  color: var(--text);
  transition: border-color .2s, background .2s, transform .2s;
}
.date-btn:hover    { border-color: rgba(163,255,18,.3); background: rgba(163,255,18,.05); transform: translateY(-1px); }
.date-btn.selected { border-color: var(--accent); background: rgba(163,255,18,.1); }
.db-day   { font-size: 10px; color: var(--muted); font-family: var(--font-mono); }
.db-num   { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -.5px; }
.db-month { font-size: 10px; color: var(--muted); font-family: var(--font-mono); }
.times-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px; }
.time-btn {
  border-radius: 10px; border: 1px solid var(--border); background: rgba(255,255,255,.02);
  padding: 10px; text-align: center;  color: var(--text);
  font-size: 13px; font-weight: 500;
  transition: border-color .2s, background .2s, transform .2s;
}
.time-btn:hover    { border-color: rgba(163,255,18,.3); background: rgba(163,255,18,.05); transform: translateY(-1px); }
.time-btn.selected { border-color: var(--accent); background: rgba(163,255,18,.1); color: var(--accent); }
.booking-footer {
  padding: 16px 24px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(0,0,0,.15);
}
.booking-hint { font-size: 13px; color: var(--muted); font-family: var(--font-mono); }
.btn-continue {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: #080a0e;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  padding: 11px 22px; border-radius: 10px; border: none; 
  transition: opacity .3s, transform .2s, box-shadow .2s;
  box-shadow: 0 6px 20px rgba(163,255,18,.25);
}
.btn-continue:not(:disabled):hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(163,255,18,.4); }
.btn-continue:disabled { opacity: .35; }
.btn-arrow { font-size: 16px; }

/* Step 2 */
.booking-step-2 { display: none; padding: 24px; }
.booking-step-2.active { display: block; }
.selected-slot {
  display: flex; align-items: center; gap: 12px;
  background: rgba(163,255,18,.05); border: 1px solid rgba(163,255,18,.2);
  border-radius: 12px; padding: 14px 16px; margin-bottom: 24px;
}
.selected-slot [data-lucide] { width: 20px; height: 20px; stroke: var(--accent); flex-shrink: 0; }
.slot-text { flex: 1; }
.slot-text strong { font-family: var(--font-display); font-weight: 700; display: block; font-size: 15px; }
.slot-text span { color: var(--muted); font-size: 13px; }
.change-btn {
  background: none; border: none; color: rgba(163,255,18,.7); font-size: 13px;
  font-weight: 600;  transition: color .2s; font-family: var(--font-body);
}
.change-btn:hover { color: var(--accent); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full-width { grid-column: 1/-1; }
.form-label { font-size: 12.5px; font-weight: 600; color: rgba(232,234,240,.65); font-family: var(--font-mono); letter-spacing: .02em; }
.form-label em { color: var(--muted); font-style: normal; }
.form-input, .form-select, .form-textarea {
  background: rgba(255,255,255,.04); border: 1px solid var(--border2);
  border-radius: 10px; padding: 12px 14px; color: var(--text);
  font-family: var(--font-body); font-size: 14px; outline: none; width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(232,234,240,.2); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(163,255,18,.45); background: rgba(163,255,18,.04);
  box-shadow: 0 0 0 3px rgba(163,255,18,.12);
}
.form-select { appearance: none;  }
.form-select option { background: #1a1e28; color: var(--text); }
.form-textarea { resize: vertical; min-height: 90px; line-height: 1.55; }
.input-error { border-color: var(--danger) !important; box-shadow: 0 0 0 3px rgba(255,77,109,.12) !important; }
.field-error { font-size: 11.5px; color: var(--danger); margin-top: 3px; font-family: var(--font-mono); }
.form-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; gap: 12px; }
.btn-back {
  display: flex; align-items: center; gap: 6px;
  background: none; border: none; color: var(--muted); font-size: 14px; font-weight: 600;
   font-family: var(--font-body); transition: color .2s;
}
.btn-back:hover { color: var(--text); }
.btn-back [data-lucide] { width: 14px; height: 14px; stroke: currentColor; }
.btn-confirm {
  display: flex; align-items: center; gap: 8px;
  background: var(--accent); color: #080a0e;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 13px 26px; border-radius: 12px; border: none; 
  box-shadow: 0 8px 24px rgba(163,255,18,.3);
  transition: transform .2s, box-shadow .2s, opacity .2s;
}
.btn-confirm:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(163,255,18,.45); }
.btn-confirm:disabled { opacity: .6; }

/* Step 3 — Confirm */
.booking-confirm { text-align: center; padding: 48px 32px 44px; }
.confirm-checkmark {
  width: 72px; height: 72px; margin: 0 auto 20px;
  animation: scaleIn .5s cubic-bezier(.22,1,.36,1) both;
}
.confirm-checkmark svg { width: 100%; height: 100%; }
.confirm-checkmark path { stroke-dasharray: 80; stroke-dashoffset: 80; animation: drawCheck .6s .3s cubic-bezier(.22,1,.36,1) forwards; }
.confirm-title { font-family: var(--font-display); font-weight: 800; font-size: 28px; letter-spacing: -1px; margin-bottom: 8px; }
.confirm-sub { color: var(--muted); font-size: 15px; margin-bottom: 28px; }
.confirm-layout {
  display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: 8px;
}
.confirm-details {
  display: inline-flex; flex-direction: column; gap: 0;
  background: rgba(163,255,18,.04); border: 1px solid rgba(163,255,18,.12);
  border-radius: var(--radius); overflow: hidden; min-width: 300px;
  text-align: left;
}
.confirm-row {
  display: flex; justify-content: space-between; gap: 24px;
  padding: 12px 18px; border-bottom: 1px solid rgba(163,255,18,.08); font-size: 14px;
}
.confirm-row:last-child { border-bottom: none; }
.confirm-row span { color: var(--muted); font-family: var(--font-mono); font-size: 12px; }
.confirm-row strong { font-weight: 600; }
.btn-restart {
  display: inline-flex; background: transparent; border: 1px solid var(--border2);
  color: var(--muted); font-family: var(--font-display); font-weight: 600; font-size: 14px;
  padding: 11px 22px; border-radius: 10px;  margin-top: 8px;
  transition: border-color .2s, color .2s;
}
.btn-restart:hover { border-color: rgba(255,255,255,.25); color: var(--text); }

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--border); padding: 64px 0 0;
  background: var(--bg);
}
.footer-inner { display: grid; grid-template-columns: 1.3fr 1.7fr; gap: 48px; padding-bottom: 48px; }
.footer-brand .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-tagline { color: var(--muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-contact {
  display: block; color: rgba(163,255,18,.7); font-family: var(--font-mono);
  font-size: 12px; margin-bottom: 5px; transition: color .2s;
}
.footer-contact:hover { color: var(--accent); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-col-head {
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
  color: var(--text); margin-bottom: 14px; letter-spacing: .02em;
}
.footer-col a {
  display: block; color: var(--muted); font-size: 13.5px;
  padding: 4px 0; transition: color .2s, transform .2s;
}
.footer-col a:hover { color: var(--accent); transform: translateX(4px); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 0;
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.footer-bottom-inner span { font-size: 12.5px; color: var(--muted); font-family: var(--font-mono); }
.footer-bottom-inner div { display: flex; gap: 16px; }
.footer-bottom-inner a { font-size: 12.5px; color: var(--muted); transition: color .2s; }
.footer-bottom-inner a:hover { color: var(--accent); }

/* ── Brand mark text ── */
.brand-mark-text {
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  background: linear-gradient(135deg, #a3ff12, #00f5d4);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1.2; white-space: nowrap; flex-shrink: 0; display: inline-block;
  letter-spacing: 0.02em;
}
.sc-link { background: none; border: none; font-family: var(--font-body); padding: 0; text-align: left; }

/* ── Service Modal ── */
.svc-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 500;
  background: rgba(8,10,14,.8); backdrop-filter: blur(8px);
  align-items: center; justify-content: center; padding: 20px;
}
.svc-modal-overlay.open { display: flex; }
.svc-modal {
  position: relative; background: var(--surface2); border: 1px solid var(--border2);
  border-radius: var(--radius-lg); padding: 36px 32px 32px; max-width: 460px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.6), 0 0 0 1px rgba(163,255,18,.08);
  animation: fadeUp .3s cubic-bezier(.22,1,.36,1) both; max-height: 90vh; overflow-y: auto;
}
.svc-modal::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent2), transparent);
}
.svc-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: rgba(255,255,255,.05); border: 1px solid var(--border);
  color: var(--muted); width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  transition: background .2s, color .2s;
}
.svc-modal-close:hover { background: rgba(255,255,255,.1); color: var(--text); }
.svc-modal-close [data-lucide] { width: 14px; height: 14px; stroke: currentColor; }
.svc-modal-icon {
  width: 44px; height: 44px; border-radius: 12px; margin-bottom: 14px;
  background: linear-gradient(135deg, rgba(163,255,18,.12), rgba(0,245,212,.08));
  border: 1px solid rgba(163,255,18,.18); display: grid; place-items: center;
}
.svc-modal-icon [data-lucide] { width: 22px; height: 22px; stroke: var(--accent); }
.svc-modal-title { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -.5px; margin-bottom: 10px; }
.svc-modal-desc { color: var(--muted); font-size: 14.5px; line-height: 1.65; margin-bottom: 18px; }
.svc-modal-list { list-style: none; display: grid; gap: 9px; margin-bottom: 26px; }
.svc-modal-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(232,234,240,.8); line-height: 1.45; }
.svc-modal-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-family: var(--font-mono); flex-shrink: 0; }
.svc-modal-cta {
  display: flex; align-items: center; justify-content: center;
  width: 100%; padding: 13px 20px; border-radius: 12px;
  background: var(--accent); color: #080a0e;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  box-shadow: 0 8px 24px rgba(163,255,18,.3); cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.svc-modal-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(163,255,18,.45); }

/* ── Toast ── */
#toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--surface2); border: 1px solid var(--border2);
  color: var(--text); padding: 12px 22px; border-radius: 999px;
  font-size: 13.5px; font-weight: 500; font-family: var(--font-mono);
  box-shadow: 0 8px 32px rgba(0,0,0,.5); z-index: 600; white-space: nowrap;
  transition: transform .35s cubic-bezier(.22,1,.36,1), opacity .35s ease;
  opacity: 0; pointer-events: none;
}
#toast.toast-show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ════════════════════════════════════════════
   RESPONSIVE — COMPREHENSIVE MOBILE SUPPORT
   ════════════════════════════════════════════ */

/* ── Tablet landscape (≤1050px) ── */
@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 60px 0 40px;
    gap: 36px;
  }
  .hero-float-card {
    max-width: 560px;
    margin: 0 auto;
    animation: none;
    transform: none !important;
  }
  .hero-h1 { font-size: clamp(36px, 6vw, 56px); letter-spacing: -1.5px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); }
  .process-track { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .process-line { display: none; }
}

/* ── Tablet portrait (≤860px) ── */
@media (max-width: 860px) {
  .section { padding: 72px 0; }
  .section-h2 { font-size: clamp(28px, 5vw, 44px); letter-spacing: -1.5px; }

  .services-layout { grid-template-columns: 1fr; gap: 24px; }
  .service-main { padding: 28px; }

  .process-track { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .process-line { display: none; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }

  .booking-step-1 { grid-template-columns: 1fr; }
  .booking-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ── Mobile (≤700px) ── */
@media (max-width: 700px) {
  /* Layout */
  .container { width: calc(100% - 32px); }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-h2 { font-size: clamp(26px, 7vw, 38px); letter-spacing: -1px; }
  .section-sub { font-size: 15px; }

  /* Nav */
  .nav { display: none; }
  .hamburger { display: flex; }
  .mobile-fab { display: flex; }

  /* Hero */
  .hero { padding: 40px 0 28px; gap: 28px; }
  .hero-h1 { font-size: clamp(34px, 9vw, 48px); letter-spacing: -1.5px; margin-bottom: 16px; }
  .hero-sub { font-size: 15px; margin-bottom: 24px; }
  .hero-actions { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
  .hero-actions a, .hero-actions .btn-hero-primary, .hero-actions .btn-hero-ghost {
    width: 100%; justify-content: center; text-align: center;
  }
  .btn-hero-primary, .btn-hero-ghost { padding: 14px 20px; font-size: 15px; }
  .hero-stats { gap: 20px; padding-top: 20px; flex-wrap: wrap; }
  .stat-num { font-size: 24px; }

  /* Hero float card */
  .hero-float-card { max-width: 100%; animation: none; transform: none !important; }
  .hfc-body { padding: 12px; gap: 10px; }
  .hfc-msg { padding: 8px 10px; }

  /* Problem */
  .problem-grid { grid-template-columns: 1fr; gap: 12px; }
  .pc-stat { font-size: 32px; }

  /* Services */
  .services-layout { grid-template-columns: 1fr; gap: 20px; }
  .service-main { padding: 24px; }
  .service-main h3 { font-size: 22px; }
  .services-right { grid-template-columns: 1fr; gap: 10px; }

  /* Process */
  .process-track { grid-template-columns: 1fr; gap: 20px; }
  .process-line { display: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 100%; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; gap: 12px; }
  .testi-metric { font-size: 26px; }

  /* Booking */
  .booking-widget { border-radius: 16px; }
  .booking-stepper { padding: 16px; gap: 8px; flex-wrap: nowrap; }
  .step-pill { font-size: 13px; gap: 7px; }
  .sp-num { width: 26px; height: 26px; font-size: 11px; }
  .step-connector { width: 30px; }
  .booking-step-1 { grid-template-columns: 1fr; }
  .booking-col { padding: 16px; }
  .booking-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .dates-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .db-num { font-size: 17px; }
  .times-grid { grid-template-columns: repeat(2, 1fr); gap: 6px; }
  .time-btn { padding: 9px 6px; font-size: 12.5px; }
  .booking-footer { padding: 12px 16px; flex-wrap: wrap; gap: 10px; }
  .booking-hint { font-size: 11.5px; }
  .btn-continue { padding: 10px 18px; font-size: 14px; width: 100%; justify-content: center; }
  .booking-step-2 { padding: 16px; }
  .selected-slot { padding: 12px; flex-wrap: wrap; gap: 10px; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-input, .form-select, .form-textarea { font-size: 16px; /* prevents iOS zoom */ }
  .form-footer { flex-direction: column-reverse; gap: 10px; }
  .btn-confirm { width: 100%; justify-content: center; padding: 14px; }
  .btn-back { justify-content: center; }
  .booking-confirm { padding: 32px 16px 28px; }
  .confirm-details { min-width: 0; width: 100%; }
  .confirm-title { font-size: 24px; }

  /* Footer */
  .footer { padding: 44px 0 0; }
  .footer-inner { gap: 28px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; text-align: left; }

  /* Ticker */
  .ticker span { font-size: 13px; }

  /* Hide hero chat card on mobile */
  .hero-float-card { display: none; }

  /* Tilt — disable on mobile (no hover) */
  .tilt-card { transform: none !important; }
}

/* ── Small mobile (≤420px) ── */
@media (max-width: 420px) {
  .container { width: calc(100% - 24px); }
  .hero-h1 { font-size: 30px; letter-spacing: -1px; }
  .section-h2 { font-size: 26px; }

  .topbar-inner { padding: 12px 0; }

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

  .booking-stepper { padding: 14px 12px; }
  .step-pill span { display: none; } /* show just numbers on tiny screens */
  .step-connector { width: 20px; }

  .hero-stats { flex-direction: column; gap: 12px; }
  .stat-sep { display: none; }

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

  .price-val { font-size: 30px; }

  .svc-modal { padding: 28px 20px 24px; }
  .svc-modal-title { font-size: 19px; }

  .hfc-bubble { font-size: 11.5px; }
  .nav-overlay a { font-size: 24px; }
}