/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #07070E;
  --bg2: #0E0E1A;
  --bg3: #141421;
  --card: rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --blue: #5BB8F5;
  --blue-light: #7ECEF8;
  --blue-dark: #4F8EF7;
  --green: #22C55E;
  --white: #FFFFFF;
  --muted: #8B8BA0;
  --text: #E8E8F0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 64px rgba(0,0,0,0.5);
  --glow: 0 0 40px rgba(91,184,245,0.2);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: auto;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-weight: 700; line-height: 1.15; color: var(--white); }
h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); }

.gradient-text {
  background: linear-gradient(135deg, #7ECEF8 0%, #5BB8F5 40%, #89B8FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue-light);
  background: rgba(91,184,245,0.1); border: 1px solid rgba(91,184,245,0.2);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); animation: pulse 2s infinite; }

/* ===== BACKGROUND SPOTLIGHT ===== */
.cursor-glow {
  position: fixed; width: 900px; height: 900px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(91,184,245,0.055) 0%, rgba(91,184,245,0.015) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  will-change: left, top;
  transition: opacity 0.6s;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--blue-light));
  z-index: 9998; transition: width 0.05s linear;
  box-shadow: 0 0 8px rgba(91,184,245,0.6);
}

/* ===== PARTICLE CANVAS ===== */
#particle-canvas {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0; opacity: 0.35;
}

/* ===== BLOBS ===== */
.blob {
  position: absolute; border-radius: 50%; filter: blur(100px);
  pointer-events: none; z-index: 0;
}
.blob-1 { width: 700px; height: 700px; background: rgba(91,184,245,0.08); animation: blob1 18s ease-in-out infinite; }
.blob-2 { width: 500px; height: 500px; background: rgba(79,142,247,0.07); animation: blob2 22s ease-in-out infinite; }

@keyframes blob1 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(60px,-80px) scale(1.1); }
  66% { transform: translate(-40px,50px) scale(0.9); }
}
@keyframes blob2 {
  0%, 100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-50px,60px) scale(0.95); }
  66% { transform: translate(40px,-40px) scale(1.05); }
}

/* ===== BUTTONS ===== */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; padding: 14px 26px;
  border-radius: 10px; border: none; cursor: pointer;
  text-decoration: none; transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  overflow: hidden;
}
.btn::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background 0.3s;
  border-radius: inherit;
}
.btn:hover::after { background: rgba(255,255,255,0.07); }
.btn-primary {
  background: var(--blue); color: #07070E;
  box-shadow: 0 4px 20px rgba(91,184,245,0.35), 0 0 0 0 rgba(91,184,245,0.3);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--blue-light);
  box-shadow: 0 8px 32px rgba(91,184,245,0.5), 0 0 60px rgba(91,184,245,0.15);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.15);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 1rem; border-radius: 12px; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
nav.scrolled {
  background: rgba(7,7,14,0.8);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--card-border);
  padding: 14px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.logo svg { height: 36px; }
.nav-links { display: flex; list-style: none; gap: 4px; }
.nav-links a {
  color: var(--muted); text-decoration: none; font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px; cursor: pointer;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.07); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.35s cubic-bezier(0.23,1,0.32,1), opacity 0.25s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 0 80px; position: relative; overflow: visible;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 50%, rgba(91,184,245,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 80%, rgba(79,142,247,0.06) 0%, transparent 60%);
}
.grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 30%, black, transparent);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-left { display: flex; flex-direction: column; gap: 24px; }

/* Line reveal animation */
.line-reveal {
  display: block; overflow: hidden;
}
.line-reveal span, .line-reveal {
  animation: lineReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) both;
}
.line-reveal.delay-1 { animation-delay: 0.15s; }
.line-reveal.delay-2 { animation-delay: 0.3s; }
@keyframes lineReveal {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-title { margin-bottom: 4px; letter-spacing: -0.02em; }
.hero-sub { font-size: 1.1rem; max-width: 480px; color: var(--muted); line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-proof { display: flex; align-items: center; gap: 12px; }
.hero-proof-avatars { display: flex; }
.hero-proof-avatars span {
  width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; color: white; margin-left: -8px;
}
.hero-proof-avatars span:first-child { margin-left: 0; }
.hero-proof-text { font-size: 0.85rem; color: var(--muted); }
.hero-proof-text strong { color: var(--white); }

/* ===== HERO VISUAL ===== */
.hero-right { position: relative; display: flex; justify-content: center; overflow: visible; }
.globe-wrap {
  position: relative; width: 500px; height: 500px; overflow: visible;
  max-width: 90vw; max-height: 90vw;
  display: flex; align-items: center; justify-content: center;
}
.globe-glow {
  position: absolute; inset: -20%; border-radius: 50%;
  background: radial-gradient(circle, rgba(91,184,245,0.12) 0%, transparent 60%);
  pointer-events: none; animation: globePulse 4s ease-in-out infinite;
}
@keyframes globePulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.05); }
}
#globe-canvas { width: 100%; height: 100%; display: block; background: transparent; }

/* Desktop: näytä globe, piilota GBP-kortti */
.gbp-mobile { display: none; }
.globe-desktop { display: block; }

/* Mobile: piilota globe, näytä GBP-kortti */
@media (max-width: 900px) {
  .globe-desktop { display: none !important; }
  .gbp-mobile { display: block; }
}
.gbp-mock {
  width: 300px;
  background: rgba(18,18,32,0.95);
  border: 1px solid rgba(91,184,245,0.2);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(91,184,245,0.08), 0 0 60px rgba(91,184,245,0.06);
  backdrop-filter: blur(20px);
}
.gbp-search-bar {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.03);
}
.gbp-g {
  font-size: 1.1rem; font-weight: 900; flex-shrink: 0;
  background: linear-gradient(135deg,#4285F4 0%,#EA4335 35%,#FBBC05 65%,#34A853 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.gbp-query { font-size: 0.8rem; color: var(--text); flex: 1; }
.gbp-search-icon { font-size: 0.85rem; flex-shrink: 0; opacity: 0.7; }
.gbp-map-area {
  position: relative; height: 110px;
  background: rgba(14,14,26,0.7);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.gbp-map-area::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(91,184,245,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,184,245,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.gbp-map-pin {
  width: 22px; height: 22px; border-radius: 50% 50% 50% 0;
  background: #4285F4; transform: rotate(-45deg);
  position: relative; z-index: 1;
  box-shadow: 0 4px 20px rgba(66,133,244,0.5);
  animation: pinBounce 2.4s ease-in-out infinite;
}
@keyframes pinBounce {
  0%,100% { transform: rotate(-45deg) translateY(0); }
  50%      { transform: rotate(-45deg) translateY(-7px); }
}
.gbp-ring {
  position: absolute; border-radius: 50%;
  border: 1.5px solid rgba(66,133,244,0.35);
  animation: ringExpand 3s ease-out infinite;
}
.gbp-ring-1 { width: 44px; height: 44px; animation-delay: 0s; }
.gbp-ring-2 { width: 72px; height: 72px; animation-delay: 1s; }
.gbp-ring-3 { width: 100px; height: 100px; animation-delay: 2s; }
@keyframes ringExpand {
  0%   { opacity: 0.8; transform: scale(0.5); }
  100% { opacity: 0;   transform: scale(1); }
}
.gbp-result-card {
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gbp-rank-badge {
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; font-weight: 900; color: white;
  box-shadow: 0 4px 16px rgba(91,184,245,0.35);
}
.gbp-biz-name { font-size: 0.85rem; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.gbp-stars { font-size: 0.76rem; color: #FACC15; margin-bottom: 2px; }
.gbp-stars span { color: var(--text); font-weight: 600; }
.gbp-biz-meta { font-size: 0.72rem; color: var(--muted); }
.gbp-open { color: #4ADE80; font-weight: 500; }

/* Hero gradient shimmer */
.hero-title .gradient-text {
  animation: heroShimmer 4s ease-in-out 1s infinite;
}
@keyframes heroShimmer {
  0%, 100% { filter: brightness(1); }
  50%       { filter: brightness(1.25) saturate(1.15); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  opacity: 0; animation: fadeInDelayed 1s 2.5s ease both;
}
.scroll-hint span {
  width: 2px; height: 9px; background: rgba(91,184,245,0.4); border-radius: 2px;
  animation: scrollDot 1.5s ease-in-out infinite;
}
.scroll-hint span:nth-child(2) { animation-delay: 0.2s; }
.scroll-hint span:nth-child(3) { animation-delay: 0.4s; }
@keyframes scrollDot {
  0%, 100% { opacity: 0.2; transform: scaleY(0.7); }
  50%       { opacity: 1;   transform: scaleY(1.3); }
}
@keyframes fadeInDelayed { from { opacity: 0; } to { opacity: 1; } }

/* Float notif entrance */
.float-notif-1 { animation: floatCard 6s ease-in-out infinite, floatIn 0.6s cubic-bezier(0.23,1,0.32,1) 0.9s both; }
.float-notif-2 { animation: floatCard 6s ease-in-out infinite, floatIn 0.6s cubic-bezier(0.23,1,0.32,1) 1.3s both; animation-delay: -2s, 1.3s; }
.float-notif-3 { animation: floatCard 6s ease-in-out infinite, floatIn 0.6s cubic-bezier(0.23,1,0.32,1) 1.7s both; animation-delay: -4s, 1.7s; }
.float-stat    { animation: floatCard 6s ease-in-out infinite, floatIn 0.6s cubic-bezier(0.23,1,0.32,1) 1.1s both; animation-delay: -1s, 1.1s; }
@keyframes floatIn {
  from { opacity: 0; transform: translateY(18px) scale(0.88); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Btn primary shimmer on hover */
.btn-primary::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transition: left 0.5s ease;
}
.btn-primary:hover::before { left: 150%; }

/* Floating cards around globe */
.float-notif {
  position: absolute; background: rgba(14,14,26,0.9);
  border: 1px solid rgba(91,184,245,0.2);
  border-radius: 14px; padding: 12px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 0 1px rgba(91,184,245,0.1);
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(20px);
  animation: floatCard 6s ease-in-out infinite;
}
.float-notif-1 { top: 40px; right: -10px; width: 210px; }
.float-notif-2 { bottom: 80px; left: -10px; width: 215px; animation-delay: -2s; }
.float-notif-3 { bottom: 20px; right: 20px; width: 210px; animation-delay: -4s; }
.notif-icon { width: 36px; height: 36px; border-radius: 9px; background: rgba(91,184,245,0.12); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.notif-title { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.notif-sub { font-size: 0.74rem; color: var(--muted); }

.float-stat {
  position: absolute; top: 50px; left: -30px;
  background: rgba(14,14,26,0.9); border: 1px solid rgba(91,184,245,0.2);
  border-radius: 14px; padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  backdrop-filter: blur(20px);
  animation: floatCard 6s ease-in-out infinite; animation-delay: -1s;
}
.stat-num { font-size: 1.6rem; font-weight: 800; }
.stat-label { font-size: 0.75rem; color: var(--muted); }

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

/* ===== LOGOS BAR ===== */
.logos-bar {
  padding: 48px 0; position: relative; z-index: 1;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(14,14,26,0.6); backdrop-filter: blur(20px);
}
.logos-bar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 40px; }
.logos-bar-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }
.tool-badge {
  display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-size: 0.9rem; font-weight: 500;
  transition: color 0.2s;
}
.tool-badge:hover { color: var(--white); }
.tool-badge .ico { font-size: 1.2rem; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; position: relative; z-index: 1; }
.section-center { text-align: center; }
.section-center p { max-width: 560px; margin: 16px auto 0; font-size: 1.05rem; }

/* ===== STATS STRIP ===== */
.stats-section { padding: 60px 0; }
.stats-grid {
  display: flex; align-items: center; justify-content: space-around;
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 40px; gap: 20px; flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-big { font-size: 3.5rem; font-weight: 900; line-height: 1; letter-spacing: -0.03em; }
.stat-desc { font-size: 0.88rem; color: var(--muted); margin-top: 8px; }
.stat-divider { width: 1px; height: 60px; background: var(--card-border); }

/* ===== PROBLEMS GRID ===== */
.problems-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.problem-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d; will-change: transform;
}
.problem-card:hover {
  border-color: rgba(91,184,245,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(91,184,245,0.08);
  transform: translateY(-6px);
}
.problem-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.problem-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--white); }
.problem-card p { font-size: 0.92rem; line-height: 1.65; }

/* ===== HOW IT WORKS ===== */
.how-bg { background: rgba(14,14,26,0.5); }
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 64px;
  position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 28px;
  left: calc(12.5% + 20px); right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,184,245,0.3) 20%, rgba(91,184,245,0.3) 80%, transparent);
}
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(91,184,245,0.1); border: 1px solid rgba(91,184,245,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 800; color: var(--blue);
  margin: 0 auto 20px; position: relative; z-index: 1;
  box-shadow: 0 0 20px rgba(91,184,245,0.15);
  transition: all 0.3s;
}
.step:hover .step-num { box-shadow: 0 0 40px rgba(91,184,245,0.4); background: rgba(91,184,245,0.2); }
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.88rem; }

/* Vertical steps */
.steps-vertical { display: flex; flex-direction: column; gap: 32px; max-width: 700px; margin: 56px auto 0; }
.step-v { display: flex; gap: 24px; align-items: flex-start; }
.step-v-num {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: rgba(91,184,245,0.1); border: 1px solid rgba(91,184,245,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: var(--blue);
  box-shadow: 0 0 20px rgba(91,184,245,0.15);
}
.step-v-content h3 { margin-bottom: 8px; }
.step-v-content p { font-size: 0.95rem; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px; max-width: 1100px; margin-left: auto; margin-right: auto;
}
.price-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 36px 28px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
}
.price-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,184,245,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.price-card:hover {
  border-color: rgba(91,184,245,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(91,184,245,0.08);
  transform: translateY(-8px);
}
.price-card.popular {
  background: rgba(91,184,245,0.06);
  position: relative;
}
.price-card.popular::after {
  content: ''; position: absolute; inset: -1px; border-radius: 21px;
  background: linear-gradient(135deg, rgba(91,184,245,0.6), rgba(79,142,247,0.3), rgba(91,184,245,0.6));
  background-size: 200% 200%;
  animation: borderGlow 3s ease-in-out infinite;
  z-index: -1;
}
@keyframes borderGlow {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.popular-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--blue); color: #07070E;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 4px 12px; border-radius: 100px;
}
.price-name { font-size: 0.82rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; }
.price-tagline { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.price-amount { display: flex; align-items: baseline; gap: 6px; margin-bottom: 8px; }
.price-setup { font-size: 2.6rem; font-weight: 900; color: var(--white); letter-spacing: -0.03em; }
.price-setup-label { font-size: 0.9rem; color: var(--muted); }
.price-monthly {
  font-size: 0.82rem; color: var(--muted); margin-bottom: 28px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
  border-radius: 8px; padding: 6px 12px; display: inline-block;
}
.price-monthly strong { color: var(--text); font-weight: 600; }
.price-divider { height: 1px; background: var(--card-border); margin-bottom: 24px; }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.price-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; color: var(--text); }
.price-features li .check { color: var(--blue); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ===== RESULTS ===== */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 60px; }
.result-card {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 40px 28px; text-align: center;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.result-card:hover {
  border-color: rgba(91,184,245,0.25);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(91,184,245,0.07);
  transform: translateY(-6px);
}
.result-num {
  font-size: 3.2rem; font-weight: 900; line-height: 1; margin-bottom: 10px;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #7ECEF8, #5BB8F5);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.result-label { font-size: 0.9rem; color: var(--muted); }

/* ===== FAQ ===== */
.faq-list { max-width: 720px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--card); border: 1px solid var(--card-border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(91,184,245,0.25); }
.faq-q {
  padding: 20px 24px; font-weight: 600; color: var(--white);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.95rem; user-select: none;
}
.faq-q .arrow { color: var(--muted); font-size: 1.1rem; transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); color: var(--blue); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.3s;
  font-size: 0.9rem; color: var(--muted); padding: 0 24px; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 24px 20px; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 120px 0; text-align: center; position: relative; overflow: hidden; z-index: 1;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 700px 500px at 50% 50%, rgba(91,184,245,0.07) 0%, transparent 60%);
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.cta-section p { font-size: 1.05rem; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: 0.82rem; color: var(--muted); margin-top: 16px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form {
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 36px 32px;
  transition: border-color 0.3s;
}
.contact-form:hover { border-color: rgba(91,184,245,0.2); }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 10px; padding: 12px 16px; color: var(--white); font-size: 0.92rem;
  font-family: inherit; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
  cursor: text;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(91,184,245,0.1);
}
.form-group select option { background: var(--bg3); }
.form-group textarea { resize: vertical; min-height: 100px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info h3 { font-size: 1.8rem; }
.contact-info p { font-size: 1rem; line-height: 1.7; }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-detail .ico {
  width: 44px; height: 44px; background: rgba(91,184,245,0.08);
  border: 1px solid rgba(91,184,245,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-detail-text { font-size: 0.88rem; color: var(--muted); }
.contact-detail-text strong { color: var(--white); font-size: 0.95rem; display: block; }

/* ===== CASE STUDY CARDS ===== */
.case-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 56px; }
.case-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 28px; position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
}
.case-card:hover { border-color: rgba(91,184,245,0.3); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(91,184,245,0.08); }
.case-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(91,184,245,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.case-type { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--blue-light); background: rgba(91,184,245,0.1); border: 1px solid rgba(91,184,245,0.2); display: inline-block; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px; }
.case-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.case-stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 20px; }
.case-stat { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.case-before { color: var(--muted); text-decoration: line-through; flex: 1; }
.case-arrow { color: var(--blue); font-weight: 700; flex-shrink: 0; }
.case-after { color: #4ADE80; font-weight: 700; flex: 1; text-align: right; }
.case-time { font-size: 0.78rem; color: var(--muted); border-top: 1px solid var(--card-border); padding-top: 14px; display: flex; align-items: center; gap: 6px; }
.case-time::before { content: '⏱'; }

/* ===== COMPARISON TABLE ===== */
.comp-table { max-width: 780px; margin: 48px auto 0; border-radius: 20px; overflow: hidden; border: 1px solid var(--card-border); }
.comp-header { display: grid; grid-template-columns: 1.5fr 1fr 1fr; background: rgba(14,14,26,0.8); padding: 16px 24px; border-bottom: 1px solid var(--card-border); }
.comp-col-label { font-size: 0.82rem; font-weight: 700; text-align: center; }
.comp-col-label.with-us { color: var(--blue-light); }
.comp-col-label.without { color: var(--muted); }
.comp-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; padding: 14px 24px; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s; }
.comp-row:hover { background: rgba(91,184,245,0.03); }
.comp-row:last-child { border-bottom: none; }
.comp-feature { font-size: 0.88rem; color: var(--text); display: flex; align-items: center; }
.comp-yes { font-size: 0.85rem; color: #4ADE80; font-weight: 600; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }
.comp-no  { font-size: 0.85rem; color: #F87171; text-align: center; display: flex; align-items: center; justify-content: center; gap: 5px; }

/* ===== STEP CONNECTOR LINE ===== */
.steps-vertical { position: relative; }
.steps-vertical::before {
  content: ''; position: absolute;
  left: 25px; top: 58px;
  width: 2px; height: 0;
  background: linear-gradient(180deg, rgba(91,184,245,0.5) 0%, rgba(91,184,245,0.1) 100%);
  transition: height 1.6s cubic-bezier(0.23,1,0.32,1);
  border-radius: 1px;
}
.steps-vertical.line-revealed::before { height: calc(100% - 64px); }
.step-v-num { position: relative; z-index: 1; }

/* ===== CONTACT PAGE REDESIGN ===== */
.contact-hero-bg-section {
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(91,184,245,0.07) 0%, transparent 60%);
}
.contact-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 20px; }
.c-trust-item { display: flex; align-items: center; gap: 7px; font-size: 0.88rem; color: var(--text); }
.c-trust-item span { color: var(--blue); font-weight: 700; font-size: 1rem; }

.availability-card {
  display: flex; align-items: center; gap: 12px;
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.2);
  border-radius: 12px; padding: 14px 18px; margin-bottom: 28px;
}
.avail-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2); flex-shrink: 0;
  animation: pulse 2s infinite;
}
.avail-title { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.avail-sub   { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }

.next-steps { display: flex; flex-direction: column; gap: 16px; margin: 0 0 28px; }
.next-step  { display: flex; align-items: flex-start; gap: 14px; }
.ns-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: rgba(91,184,245,0.1); border: 1px solid rgba(91,184,245,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; font-weight: 700; color: var(--blue);
  transition: background 0.3s, box-shadow 0.3s;
}
.next-step:hover .ns-num {
  background: rgba(91,184,245,0.2);
  box-shadow: 0 0 16px rgba(91,184,245,0.3);
}
.ns-text strong { display: block; font-size: 0.9rem; color: var(--white); margin-bottom: 2px; }
.ns-text span   { font-size: 0.8rem; color: var(--muted); }

.form-header { margin-bottom: 24px; border-bottom: 1px solid var(--card-border); padding-bottom: 20px; }
.form-header h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-header p  { font-size: 0.85rem; color: var(--muted); }

/* ===== FOOTER ===== */
footer {
  background: rgba(14,14,26,0.8); border-top: 1px solid var(--card-border);
  padding: 60px 0 32px; position: relative; z-index: 1;
  backdrop-filter: blur(20px);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; margin-top: 16px; max-width: 300px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--white); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a, .footer-col span { display: block; font-size: 0.88rem; color: var(--muted); text-decoration: none; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; border-top: 1px solid var(--card-border);
  font-size: 0.82rem; color: var(--muted);
}

/* ===== PAGE HERO ===== */
.page-hero {
  padding: 150px 0 80px; text-align: center; position: relative; z-index: 1;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
.page-hero p { font-size: 1.05rem; color: var(--muted); }
.page-hero .label { justify-content: center; margin-bottom: 16px; }
.nav-links a.active { color: var(--white); background: rgba(255,255,255,0.08); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px var(--green); }
  50% { opacity: 0.4; box-shadow: 0 0 2px var(--green); }
}

/* ===== RADAR DEMO ===== */
.demo-section { padding: 60px 0; }
.demo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.radar-outer { display: flex; align-items: center; justify-content: center; }
.radar-map-dots {
  position: absolute; width: 340px; height: 340px; border-radius: 50%;
  background-image: radial-gradient(circle, rgba(91,184,245,0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle, black 40%, transparent 70%);
}
.radar-wrap {
  position: relative; width: 320px; height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.radar-ring {
  position: absolute; border-radius: 50%; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid rgba(91,184,245,0.6);
  animation: radarExpand 4s ease-out infinite;
  box-shadow: 0 0 12px rgba(91,184,245,0.15);
}
.radar-ring:nth-child(1) { animation-delay: 0s; }
.radar-ring:nth-child(2) { animation-delay: 1s; }
.radar-ring:nth-child(3) { animation-delay: 2s; }
.radar-ring:nth-child(4) { animation-delay: 3s; }
@keyframes radarExpand {
  0%   { width: 0;     height: 0;     opacity: 1;   border-color: rgba(91,184,245,0.8); }
  70%  { opacity: 0.4; }
  100% { width: 320px; height: 320px; opacity: 0;   border-color: rgba(91,184,245,0); }
}
.radar-pin-main {
  position: relative; z-index: 10;
  filter: drop-shadow(0 0 16px rgba(91,184,245,0.7));
  animation: pinBounce 2s ease-in-out infinite;
}
@keyframes pinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.radar-biz-pin {
  position: absolute; width: 12px; height: 12px;
  background: var(--blue); border-radius: 50%;
  box-shadow: 0 0 10px rgba(91,184,245,0.8);
  animation: bizPinPop 4s ease-in-out infinite;
}
.radar-biz-pin::after {
  content: ''; position: absolute; inset: -4px;
  border-radius: 50%; border: 1px solid rgba(91,184,245,0.4);
  animation: bizPinRing 4s ease-in-out infinite;
}
@keyframes bizPinPop {
  0%, 20% { opacity: 0; transform: scale(0); }
  35%, 80% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0); }
}
@keyframes bizPinRing {
  35% { width: 12px; height: 12px; opacity: 0.8; }
  80% { width: 28px; height: 28px; inset: -8px; opacity: 0; }
}

/* Google Search Demo */
.google-demo-wrap {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(91,184,245,0.15);
  border-radius: 20px; padding: 28px; display: flex; flex-direction: column; gap: 16px;
}
.gdemo-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-light); opacity: 0.7;
}
.gdemo-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 12px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.gdemo-google-g {
  font-size: 1.1rem; font-weight: 900; color: var(--blue);
  background: rgba(91,184,245,0.15); width: 28px; height: 28px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.gdemo-text { font-size: 0.95rem; color: var(--white); font-weight: 500; flex: 1; }
.gdemo-cursor {
  width: 2px; height: 18px; background: var(--blue);
  display: inline-block; border-radius: 1px;
  animation: cursorBlink 0.8s step-end infinite;
}
@keyframes cursorBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.gdemo-result {
  background: rgba(14,14,26,0.9); border: 1px solid rgba(91,184,245,0.2);
  border-radius: 14px; padding: 18px;
  opacity: 0; transform: translateY(14px) scale(0.98);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex; justify-content: space-between; align-items: flex-start;
}
.gdemo-result.show { opacity: 1; transform: translateY(0) scale(1); }
.gdemo-result-inner { flex: 1; }
.gdemo-biz-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.gdemo-biz-logo {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #07070E; flex-shrink: 0;
}
.gdemo-biz-name { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.gdemo-open { font-size: 0.75rem; color: var(--green); font-weight: 600; }
.gdemo-stars-row { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.gdemo-rating { font-size: 1rem; font-weight: 800; color: var(--white); }
.gdemo-stars { color: #FACC15; font-size: 0.85rem; letter-spacing: 1px; }
.gdemo-reviews { font-size: 0.78rem; color: var(--blue-light); }
.gdemo-addr { font-size: 0.8rem; color: var(--muted); margin-bottom: 12px; }
.gdemo-actions { display: flex; gap: 8px; }
.gdemo-action {
  font-size: 0.75rem; font-weight: 600; padding: 5px 12px;
  border: 1px solid rgba(91,184,245,0.25); border-radius: 100px;
  color: var(--blue-light); background: rgba(91,184,245,0.07);
}
.gdemo-rank-badge {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(91,184,245,0.1); border: 1px solid rgba(91,184,245,0.2);
  border-radius: 10px; padding: 10px 12px; margin-left: 12px; flex-shrink: 0;
}
.gdemo-rank-num { font-size: 1.4rem; font-weight: 900; color: var(--blue); line-height: 1; }
.gdemo-rank-label { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

.gdemo-call-notif {
  display: flex; align-items: center; gap: 10px;
  background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.25);
  border-radius: 10px; padding: 12px 16px;
  font-size: 0.85rem; font-weight: 600; color: var(--green);
  opacity: 0; transform: translateY(8px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.gdemo-call-notif.show { opacity: 1; transform: translateY(0); }
.gdemo-call-icon { font-size: 1.1rem; }

/* ===== RISING STARS ===== */
.results-hero { position: relative; overflow: hidden; }
#stars-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

/* ===== PAGE TRANSITIONS ===== */
body { animation: pageEnter 0.55s cubic-bezier(0.23,1,0.32,1) both; }
@keyframes pageEnter {
  from { opacity: 0; transform: translateY(20px) scale(0.985); }
  to   { opacity: 1; transform: none; }
}
body.enter-from-right { animation: enterFromRight 0.5s cubic-bezier(0.23,1,0.32,1) both; }
body.enter-from-left  { animation: enterFromLeft  0.5s cubic-bezier(0.23,1,0.32,1) both; }
@keyframes enterFromRight { from { opacity: 0; transform: translateX(60px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes enterFromLeft  { from { opacity: 0; transform: translateX(-60px) scale(0.97); } to { opacity: 1; transform: none; } }
body.page-out-left  { animation: exitLeft  0.32s ease both; pointer-events: none; }
body.page-out-right { animation: exitRight 0.32s ease both; pointer-events: none; }
body.page-out-fade  { animation: exitFade  0.32s ease both; pointer-events: none; }
@keyframes exitLeft  { to { opacity: 0; transform: translateX(-50px) scale(0.97); } }
@keyframes exitRight { to { opacity: 0; transform: translateX(50px)  scale(0.97); } }
@keyframes exitFade  { to { opacity: 0; transform: scale(0.95) translateY(-12px); } }


/* ===== METRICS STRIP ===== */
.metrics-strip {
  position: relative; z-index: 1;
  padding: 56px 0;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  background: rgba(14,14,26,0.5);
}
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.metric-block {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--card-border);
  transition: background 0.3s;
}
.metric-block:last-child { border-right: none; }
.metric-block:hover { background: rgba(91,184,245,0.04); }
.metric-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 0 10px rgba(91,184,245,0.3));
}
.metric-big {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff 0%, var(--blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.metric-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 160px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-block:nth-child(2) { border-right: none; }
  .metric-block:nth-child(3) { border-right: 1px solid var(--card-border); border-top: 1px solid var(--card-border); }
  .metric-block:nth-child(4) { border-right: none; border-top: 1px solid var(--card-border); }
}
@media (max-width: 480px) {
  .metrics-grid { grid-template-columns: 1fr; }
  .metric-block { border-right: none !important; border-top: 1px solid var(--card-border); }
  .metric-block:first-child { border-top: none; }
}

/* ===== STEP SEQUENTIAL GLOW ===== */
.step-v-num {
  transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, color 0.4s;
}
.step-v-num.step-active {
  background: rgba(91,184,245,0.25);
  border-color: rgba(91,184,245,0.8);
  box-shadow: 0 0 0 4px rgba(91,184,245,0.15), 0 0 40px rgba(91,184,245,0.5);
  color: #fff;
}
.step-v { transition: opacity 0.5s cubic-bezier(0.23,1,0.32,1); opacity: 0.68; }
.step-v.step-active { opacity: 1; }
.step-v.step-active .step-v-content h3 { color: var(--blue-light); }
.step-v.step-active .step-v-content p { color: var(--text); }

/* ===== SHIMMER ON POPULAR CARD ===== */
.price-card.popular .shimmer {
  position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.07) 50%, transparent 60%);
  animation: shimmerSweep 4s ease-in-out infinite;
  pointer-events: none; z-index: 2;
}
@keyframes shimmerSweep {
  0%   { left: -80%; }
  40%, 100% { left: 140%; }
}

/* ===== BEFORE / AFTER SECTION ===== */
.ba-section { background: rgba(14,14,26,0.3); }
.ba-wrapper {
  display: grid; grid-template-columns: 1fr auto 1fr;
  gap: 24px; align-items: center; margin-top: 56px;
  max-width: 860px; margin-left: auto; margin-right: auto;
}
.ba-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 28px; overflow: hidden; position: relative;
}
.ba-before { border-color: rgba(239,68,68,0.2); }
.ba-after { border-color: rgba(91,184,245,0.3); background: rgba(91,184,245,0.04); }
.ba-after::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,184,245,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.ba-tag {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.before-tag { background: rgba(239,68,68,0.1); color: #F87171; border: 1px solid rgba(239,68,68,0.2); }
.after-tag { background: rgba(91,184,245,0.1); color: var(--blue-light); border: 1px solid rgba(91,184,245,0.25); }
.ba-google-mock {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 14px; margin-bottom: 20px;
}
.ba-g-header { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.ba-g-logo {
  width: 22px; height: 22px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900; color: #07070E; flex-shrink: 0;
}
.ba-g-search { font-size: 0.82rem; color: var(--text); opacity: 0.7; }
.ba-g-result {
  display: flex; align-items: flex-start; gap: 10px; padding: 10px;
  border-radius: 8px; background: rgba(255,255,255,0.03);
}
.ba-g-result.faded { opacity: 0.4; }
.ba-g-result.glow { background: rgba(91,184,245,0.08); border: 1px solid rgba(91,184,245,0.18); }
.ba-g-pos { font-size: 1.3rem; font-weight: 900; color: var(--muted); flex-shrink: 0; width: 30px; margin-top: 2px; }
.ba-g-pos.top { color: var(--blue-light); text-shadow: 0 0 14px rgba(91,184,245,0.6); }
.ba-g-name { font-size: 0.85rem; font-weight: 600; color: var(--white); margin-bottom: 3px; }
.ba-g-stars { font-size: 0.75rem; color: var(--muted); margin-bottom: 3px; }
.ba-g-stars.gold { color: #FACC15; }
.ba-g-stars span { color: var(--text); font-weight: 600; }
.ba-g-addr { font-size: 0.72rem; color: var(--muted); }
.ba-metrics { display: flex; justify-content: space-around; }
.ba-metric { text-align: center; }
.ba-m-num { display: block; font-size: 1.5rem; font-weight: 900; line-height: 1.1; margin-bottom: 2px; }
.ba-m-num.red { color: #F87171; }
.ba-m-num.green { color: #4ADE80; }
.ba-m-label { font-size: 0.7rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.ba-connector {
  display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 4px;
}
.ba-days {
  font-size: 0.72rem; font-weight: 700; color: var(--blue-light);
  background: rgba(91,184,245,0.1); border: 1px solid rgba(91,184,245,0.2);
  padding: 5px 10px; border-radius: 100px; white-space: nowrap;
}
.ba-arrow-line { width: 2px; height: 40px; background: linear-gradient(180deg, transparent, rgba(91,184,245,0.5), transparent); }
.ba-arrow-head { font-size: 1.4rem; color: var(--blue); line-height: 1; }

/* ===== TOAST NOTIFICATIONS ===== */
.toast-notif {
  position: fixed; bottom: 24px; left: 24px; z-index: 9990;
  display: flex; align-items: center; gap: 12px;
  background: rgba(10,10,20,0.97); border: 1px solid rgba(91,184,245,0.25);
  border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(91,184,245,0.08);
  backdrop-filter: blur(24px);
  transform: translateX(-120%); opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  max-width: 280px; min-width: 220px;
}
.toast-notif.show { transform: translateX(0); opacity: 1; }
.toast-icon { font-size: 1.5rem; flex-shrink: 0; }
.toast-title { font-size: 0.88rem; font-weight: 600; color: var(--white); }
.toast-sub { font-size: 0.76rem; color: var(--muted); margin-top: 2px; }
.toast-close {
  background: none; border: none; color: var(--muted); cursor: pointer;
  font-size: 0.72rem; padding: 4px; line-height: 1;
  margin-left: auto; flex-shrink: 0; opacity: 0.5; transition: opacity 0.2s;
}
.toast-close:hover { opacity: 1; }

/* ===== FLOATING CTA ===== */
.float-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 9980;
  display: flex; align-items: center; gap: 8px;
  background: var(--blue); color: #07070E;
  font-weight: 700; font-size: 0.88rem;
  padding: 13px 22px; border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(91,184,245,0.4);
  animation: ctaPulse 3s ease-in-out infinite;
  transition: transform 0.25s, box-shadow 0.25s;
}
.float-cta:hover { transform: scale(1.06); box-shadow: 0 8px 40px rgba(91,184,245,0.65); }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(91,184,245,0.4), 0 0 0 0 rgba(91,184,245,0.25); }
  50%       { box-shadow: 0 4px 24px rgba(91,184,245,0.4), 0 0 0 8px rgba(91,184,245,0); }
}
@media (max-width: 600px) {
  .float-cta { display: none; }
  .ba-wrapper { grid-template-columns: 1fr; }
  .ba-connector { flex-direction: row; padding: 0; }
  .ba-arrow-line { width: 40px; height: 2px; background: linear-gradient(90deg, transparent, rgba(91,184,245,0.5), transparent); }
  .toast-notif { max-width: calc(100vw - 32px); min-width: 0; left: 16px; bottom: 16px; }
}

/* ===== BUTTON RIPPLE ===== */
.btn { overflow: hidden; }
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: scale(0); animation: ripple 0.65s linear forwards;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* ===== SECTION HEADING UNDERLINE ===== */
.section-center h2 { position: relative; }
.section-center h2::after {
  content: ''; position: absolute;
  bottom: -8px; left: 10%;
  width: 0; height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,184,245,0.7) 30%, rgba(91,184,245,0.7) 70%, transparent);
  transition: width 1.2s cubic-bezier(0.23,1,0.32,1) 0.1s;
}
.section-center h2.h2-revealed::after { width: 80%; }

/* ===== FAQ TRUST ROW ===== */
.faq-trust-row {
  display: flex; align-items: center; justify-content: center; gap: 0;
  max-width: 720px; margin: 0 auto 48px;
  background: rgba(255,255,255,0.02); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 20px 28px;
}
.faq-trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; }
.faq-trust-num { font-size: 1.5rem; font-weight: 900; color: var(--blue-light); line-height: 1; }
.faq-trust-label { font-size: 0.72rem; color: var(--muted); text-align: center; }
.faq-trust-div { width: 1px; height: 40px; background: var(--card-border); flex-shrink: 0; margin: 0 16px; }

/* FAQ open accent */
.faq-item.open { border-color: rgba(91,184,245,0.3); background: rgba(91,184,245,0.03); }
.faq-item.open .faq-q { color: var(--blue-light); }

/* CTA trust chips */
.cta-trust-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.cta-chip {
  font-size: 0.8rem; font-weight: 600; color: var(--muted);
  background: rgba(255,255,255,0.04); border: 1px solid var(--card-border);
  padding: 6px 14px; border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.cta-chip:hover { color: var(--blue-light); border-color: rgba(91,184,245,0.3); }

/* ===== RESULT CARDS ===== */
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 0; }
.result-card {
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 40px 28px; text-align: center;
  transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
  position: relative; overflow: hidden;
}
.result-card::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,184,245,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.result-card:hover { border-color: rgba(91,184,245,0.35); transform: translateY(-8px); box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(91,184,245,0.1); }
.result-num {
  font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 900; line-height: 1; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, var(--blue-light) 55%, var(--blue) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 18px rgba(91,184,245,0.35));
  margin-bottom: 12px;
}
.result-label { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ===== TIMELINE ===== */
.timeline-track {
  position: relative; display: flex; flex-direction: column;
  gap: 0; margin-top: 56px; max-width: 820px; margin-left: auto; margin-right: auto;
}
.timeline-track::before {
  content: ''; position: absolute;
  left: 130px; top: 20px; bottom: 20px; width: 1px;
  background: linear-gradient(180deg, transparent, rgba(91,184,245,0.3) 10%, rgba(91,184,245,0.3) 90%, transparent);
}
.tl-item {
  display: flex; gap: 0; align-items: flex-start; padding: 20px 0;
  position: relative;
}
.tl-week {
  width: 120px; flex-shrink: 0; text-align: right; padding-right: 26px;
  font-size: 0.74rem; font-weight: 700; color: var(--blue-light);
  text-transform: uppercase; letter-spacing: 0.08em; padding-top: 14px;
}
.tl-dot {
  width: 16px; height: 16px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); border: 3px solid var(--bg);
  box-shadow: 0 0 20px rgba(91,184,245,0.7); margin-top: 6px; position: relative; z-index: 1;
  margin-left: -8px; margin-right: 28px;
}
.tl-content {
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 14px; padding: 18px 22px; flex: 1;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.tl-content:hover { border-color: rgba(91,184,245,0.3); transform: translateX(6px); box-shadow: 0 8px 32px rgba(0,0,0,0.3), 0 0 20px rgba(91,184,245,0.06); }
.tl-content h4 { font-size: 1rem; color: var(--white); margin-bottom: 6px; font-weight: 700; }
.tl-content p { font-size: 0.88rem; line-height: 1.65; }

/* ===== COMP TABLE EXTRA ===== */
.comp-row:hover .comp-feature { color: var(--white); }
.comp-table { background: rgba(14,14,26,0.6); backdrop-filter: blur(12px); }
.comp-header { background: linear-gradient(135deg, rgba(91,184,245,0.07) 0%, rgba(14,14,26,0.9) 100%); }

/* ===== SCARCITY BAR ===== */
.scarcity-bar {
  display: flex; align-items: center; gap: 16px;
  background: rgba(91,184,245,0.05); border: 1px solid rgba(91,184,245,0.15);
  border-radius: 16px; padding: 20px 24px; margin-bottom: 48px;
  position: relative; overflow: hidden;
}
.scarcity-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 0%, rgba(91,184,245,0.04) 50%, transparent 100%);
  animation: shimmerSweep 5s ease-in-out infinite;
  pointer-events: none;
}
.scarcity-icon { font-size: 1.6rem; flex-shrink: 0; animation: scarcityPulse 2s ease-in-out infinite; }
@keyframes scarcityPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.18); } }
.scarcity-text { flex: 1; }
.scarcity-text strong { display: block; font-size: 0.95rem; color: var(--white); margin-bottom: 4px; }
.scarcity-text span { font-size: 0.82rem; color: var(--muted); }
.scarcity-right { display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0; }
.scarcity-slots { display: flex; gap: 6px; }
.s-slot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.1); }
.s-slot.taken { background: #F87171; border-color: rgba(248,113,113,0.4); box-shadow: 0 0 8px rgba(248,113,113,0.4); }
.s-slot.open  { background: rgba(91,184,245,0.2); border-color: rgba(91,184,245,0.4); }
.scarcity-label { font-size: 0.74rem; color: var(--muted); font-weight: 600; }

/* ===== CHART SECTION ===== */
.chart-section { padding: 80px 0; }
.chart-wrap {
  background: rgba(255,255,255,0.02); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 32px; margin-top: 48px;
  position: relative; overflow: hidden;
}
.chart-wrap::before {
  content: ''; position: absolute; inset: 0; border-radius: 20px;
  background: radial-gradient(ellipse 60% 40% at 80% 80%, rgba(91,184,245,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.chart-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.chart-title { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.chart-sub { font-size: 0.78rem; color: var(--muted); }
.chart-legend { display: flex; gap: 16px; }
.chart-legend-item { display: flex; align-items: center; gap: 7px; font-size: 0.78rem; color: var(--muted); }
.chart-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.chart-dot.blue { background: var(--blue); box-shadow: 0 0 8px rgba(91,184,245,0.5); }
.chart-dot.dim { background: rgba(255,255,255,0.2); }
#growthChart { display: block; width: 100%; }
.chart-x-labels { display: flex; justify-content: space-between; margin-top: 10px; padding: 0 10px; }
.chart-x-label { font-size: 0.7rem; color: var(--muted); }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .results-grid { grid-template-columns: repeat(3,1fr); gap: 12px; }
  .result-card { padding: 24px 16px; }
  .case-grid { grid-template-columns: 1fr; }
  .comp-table { font-size: 0.82rem; }
  .timeline-track::before { left: 80px; }
  .tl-week { width: 70px; font-size: 0.65rem; }
}
@media (max-width: 640px) {
  .results-grid { grid-template-columns: 1fr; }
  .nav-links { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: rgba(7,7,14,0.97); border-bottom: 1px solid var(--card-border); padding: 0; max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1); }
  .nav-links.open { max-height: 400px; }
  .nav-links li a { display: block; padding: 14px 24px; border-radius: 0; }
  .hamburger { display: flex; }
  .nav-inner .btn-primary { display: none; }
  .pricing-grid { grid-template-columns: 1fr; }
  .problems-grid { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .globe-wrap { width: 300px; height: 300px; }
  .gbp-mock { width: 250px; }
  .steps { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .comp-table { margin-left: -8px; margin-right: -8px; border-radius: 12px; }
  .comp-header, .comp-row { padding: 10px 12px; }
  .comp-col-label, .comp-yes, .comp-no { font-size: 0.72rem; }
}

/* ===== CARD SPOTLIGHT ===== */
.problem-card,
.case-card,
.result-card { position: relative; overflow: hidden; }
.problem-card::after,
.case-card::after,
.result-card::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(91,184,245,0.12) 0%, transparent 55%);
  opacity: 0; transition: opacity 0.35s;
}
.problem-card:hover::after,
.case-card:hover::after,
.result-card:hover::after { opacity: 1; }

/* ===== ANIMATED PROGRESS BARS ===== */
.progress-section { padding: 80px 0; }
.progress-grid { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 28px; }
.progress-item {}
.progress-label-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; }
.progress-name { font-size: 0.92rem; color: var(--text); font-weight: 500; }
.progress-pct { font-size: 0.9rem; font-weight: 800; color: var(--blue-light); }
.progress-track {
  height: 8px; border-radius: 100px;
  background: rgba(255,255,255,0.06); overflow: hidden;
  position: relative;
}
.progress-fill {
  height: 100%; border-radius: 100px; width: 0%;
  background: linear-gradient(90deg, var(--blue-dark), var(--blue), var(--blue-light));
  transition: width 1.4s cubic-bezier(0.23,1,0.32,1);
  position: relative; overflow: hidden;
}
.progress-fill::after {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 60px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3));
  animation: progressShimmer 2s ease-in-out infinite;
}
@keyframes progressShimmer {
  0%, 100% { opacity: 0; }
  50% { opacity: 1; }
}

/* ===== PROBLEM ICON FLOAT ===== */
.problem-icon {
  display: block; font-size: 2rem; margin-bottom: 16px;
  animation: iconFloat 4s ease-in-out infinite;
  transform-origin: center bottom;
}
.problem-card:nth-child(2) .problem-icon { animation-delay: -1.3s; }
.problem-card:nth-child(3) .problem-icon { animation-delay: -2.6s; }
@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-6px) scale(1.08); }
}

/* ===== ACTIVE NAV GLOW ===== */
.nav-links a.active {
  color: var(--white); background: rgba(91,184,245,0.1);
  box-shadow: inset 0 0 0 1px rgba(91,184,245,0.2), 0 0 12px rgba(91,184,245,0.08);
}

/* ===== STEP NUMBER ACTIVE GLOW ===== */
.step-active {
  background: rgba(91,184,245,0.25) !important;
  border-color: rgba(91,184,245,0.8) !important;
  box-shadow: 0 0 0 4px rgba(91,184,245,0.12), 0 0 32px rgba(91,184,245,0.45) !important;
  color: #fff !important;
}

/* ===== GRADIENT TEXT SHIMMER ===== */
.gradient-text {
  background-size: 200% auto;
  animation: textShimmer 5s linear infinite;
}
@keyframes textShimmer {
  from { background-position: 0% center; }
  to   { background-position: 200% center; }
}

/* ===== TL-DOT PULSE ===== */
.tl-dot {
  animation: dotPulse 2.5s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(91,184,245,0.7), 0 0 0 0 rgba(91,184,245,0.3); }
  50% { box-shadow: 0 0 20px rgba(91,184,245,0.7), 0 0 0 8px rgba(91,184,245,0); }
}

/* ===== CONFETTI PARTICLE ===== */
.confetti-dot {
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  animation: confettiFall 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes confettiFall {
  0% { opacity: 1; transform: translate(0, 0) scale(1); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0); }
}

/* ===== WORD SWAP ===== */
.swap-word {
  display: inline-block; color: var(--blue-light); font-style: normal;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.23,1,0.32,1);
}
.swap-word.swapping { opacity: 0; transform: translateY(-10px); }

/* ===== SCARCITY BAR ===== */
.scarcity-bar {
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  background: rgba(239,68,68,0.05); border: 1px solid rgba(239,68,68,0.18);
  border-radius: 16px; padding: 18px 24px; margin-bottom: 40px;
}
.scarcity-icon { font-size: 1.6rem; flex-shrink: 0; }
.scarcity-text { flex: 1; min-width: 200px; }
.scarcity-text strong { color: var(--white); font-size: 0.95rem; display: block; margin-bottom: 3px; }
.scarcity-text span { font-size: 0.85rem; color: var(--muted); }
.scarcity-right { flex-shrink: 0; text-align: right; }
.scarcity-slots { display: flex; gap: 5px; margin-bottom: 4px; }
.s-slot { width: 36px; height: 7px; border-radius: 100px; }
.s-slot.taken { background: rgba(239,68,68,0.55); }
.s-slot.open  { background: rgba(91,184,245,0.3); border: 1px solid rgba(91,184,245,0.25); }
.scarcity-label { font-size: 0.72rem; color: var(--muted); }

/* ===== GROWTH CHART ===== */
.chart-section { background: rgba(14,14,26,0.3); }
.chart-wrap {
  background: rgba(255,255,255,0.03); border: 1px solid var(--card-border);
  border-radius: 20px; padding: 32px; margin-top: 48px; position: relative; overflow: hidden;
}
.chart-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.chart-title { font-size: 1rem; font-weight: 600; color: var(--white); }
.chart-sub  { font-size: 0.8rem; color: var(--muted); margin-top: 3px; }
.chart-legend { display: flex; gap: 16px; }
.chart-legend-item { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--muted); }
.chart-dot { width: 8px; height: 8px; border-radius: 50%; }
.chart-dot.blue { background: var(--blue); }
.chart-dot.dim  { background: rgba(255,255,255,0.2); }
#growthChart { width: 100%; height: 200px; display: block; }
.chart-x-labels { display: flex; justify-content: space-between; padding: 6px 10px 0; }
.chart-x-label  { font-size: 0.68rem; color: var(--muted); }

/* ===== MOBILE ===== */
@media (max-width: 1024px) {
  .globe-wrap { width: 380px; height: 380px; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-right { margin-top: 24px; }
  .hero-btns, .hero-proof { justify-content: center; }
  .globe-wrap { width: 320px; height: 320px; }
  .gbp-mock { width: 260px; }
  .float-notif, .float-stat { display: none; }
  .demo-grid { grid-template-columns: 1fr; gap: 40px; }
  .radar-outer { min-height: 360px; }
  .problems-grid, .results-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .steps::before { display: none; }
  .pricing-grid { grid-template-columns: 1fr !important; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .nav-links {
    display: flex !important; flex-direction: column;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(7,7,14,0.97); backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
    padding: 0 24px; max-height: 0; overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1), padding 0.3s;
    gap: 0;
  }
  .nav-links.open { max-height: 400px; padding: 12px 24px 24px; }
  .nav-links li a { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: block; }
  .nav-links li:last-child a { border-bottom: none; }
  .hamburger { display: flex; }
  nav .btn { display: none; }
  .stats-grid { gap: 32px; padding: 24px; }
  .stat-divider { display: none; }

  /* Section spacing */
  .section { padding: 64px 0; }
  .cta-section { padding: 80px 0; }

  /* Center problem cards when 1-col */
  .problem-card { text-align: center; }
  .problem-icon { display: block; text-align: center; }

  /* Center footer columns when stacked */
  .footer-brand { text-align: center; }
  .footer-brand p { margin: 12px auto 0; max-width: 100%; }
  .footer-col { text-align: center; }

  /* Center section headings that aren't in section-center */
  .section > .container > h2,
  .section > .container > p { text-align: center; }
}
@media (max-width: 600px) {
  .steps { grid-template-columns: 1fr; }
  .logos-bar-inner { gap: 20px; }
  .stat-big { font-size: 2.5rem; }
  .globe-wrap { width: 280px; height: 280px; }
  .gbp-mock { width: 240px; font-size: 0.9em; }
  .radar-wrap { width: 260px; height: 260px; }
  .radar-map-dots { width: 280px; height: 280px; }

  /* faq-trust-row: 4 items → 2×2 grid */
  .faq-trust-row { flex-wrap: wrap; padding: 16px 12px; gap: 16px; }
  .faq-trust-item { width: calc(50% - 8px); flex: none; }
  .faq-trust-div { display: none; }

  /* contact-trust chips stack */
  .contact-trust { flex-direction: column; align-items: center; gap: 8px; }

  /* ba-connector: hide line/arrow, just show the days badge centered */
  .ba-arrow-line, .ba-arrow-head { display: none; }
  .ba-connector { justify-content: center; padding: 0; }

  /* hero padding smaller */
  .page-hero { padding: 80px 0 48px; }
}

@media (max-width: 480px) {
  /* timeline: collapse to simple stacked layout */
  .timeline-track::before { display: none; }
  .tl-item { flex-direction: column; padding: 12px 0; gap: 8px; }
  .tl-week { width: auto; text-align: left; padding-right: 0; padding-top: 0; }
  .tl-dot { display: none; }
  .tl-content { margin-left: 0; }

  /* results-grid 1 col */
  .results-grid { grid-template-columns: 1fr; }

  /* faq-trust-row full width items on tiny screens */
  .faq-trust-item { width: 100%; }
}
