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

:root {
  /* Primary Backgrounds */
  --bg-primary: #0B1E34;
  --bg-secondary: #091729;
  --bg-card: #122a45;
  --bg-card-hover: #1a3555;
  /* Borders */
  --border-color: rgba(255, 255, 255, 0.08);
  --border-subtle: rgba(170, 88, 255, 0.2);
  /* Brand Colors */
  --purple: #aa58ff;
  --purple-light: #BFA0FF;
  --purple-glow: rgba(170, 88, 255, 0.2);
  --btn-blue: #376af6;
  --btn-blue-hover: #4a7df7;
  --teal: #00A8A8;
  --cyan: #00D3FF;
  --orange: #FF7A00;
  --warm-gold: #FFC857;
  /* Text */
  --text-primary: #FFFFFF;
  --text-secondary: #E4E4E4;
  --text-muted: #8892a4;
  /* Typography */
  --font-sans: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
  /* Layout */
  --container: 1140px;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  --shadow-btn: 0 4px 30px rgba(55, 106, 246, 0.25);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background: #060e1a;
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==================== TYPOGRAPHY ==================== */
.gold-text {
  color: var(--purple);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 211, 255, 0.2);
  border-radius: 100px;
  background: rgba(0, 211, 255, 0.06);
}

.section-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ==================== BUTTONS ==================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--btn-blue), #5a8af7);
  color: #FFFFFF;
  box-shadow: var(--shadow-btn);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--btn-blue-hover), #6b96f8);
  box-shadow: 0 8px 40px rgba(55, 106, 246, 0.4), 0 0 20px rgba(55, 106, 246, 0.2);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-nav {
  background: var(--btn-blue);
  color: #FFFFFF;
  padding: 10px 22px;
  font-size: 0.875rem;
  border-radius: 8px;
}

.btn-nav:hover {
  background: var(--btn-blue-hover);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(6, 14, 26, 0.9);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
  border-bottom: 1px solid rgba(170, 88, 255, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.25rem;
  z-index: 1001;
}

.logo-img {
  height: 36px;
  width: auto;
}

.logo-text {
  letter-spacing: -0.02em;
}

.logo-tm {
  font-size: 0.6em;
  vertical-align: super;
  color: var(--purple);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(170, 88, 255, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(0, 211, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 20% 80%, rgba(55, 106, 246, 0.08) 0%, transparent 50%),
    linear-gradient(160deg, #060e1a 0%, #0d1b2e 20%, #1a0a3a 45%, #0B1E34 70%, #060e1a 100%);
}

/* Particle Canvas */
.particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  z-index: 3;
}

/* Noise texture overlay */
.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.035;
  pointer-events: none;
  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='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* Aurora Borealis */
.hero-aurora {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(170, 88, 255, 0.06) 20%,
    rgba(0, 211, 255, 0.04) 40%,
    rgba(55, 106, 246, 0.06) 60%,
    transparent 80%
  );
  filter: blur(60px);
  animation: aurora 15s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-aurora-2 {
  top: -30%;
  left: 10%;
  width: 120%;
  background: linear-gradient(
    200deg,
    transparent 0%,
    rgba(0, 211, 255, 0.05) 25%,
    rgba(170, 88, 255, 0.04) 50%,
    rgba(255, 122, 0, 0.02) 75%,
    transparent 100%
  );
  filter: blur(80px);
  animation: aurora2 20s ease-in-out infinite;
}

@keyframes aurora {
  0%, 100% {
    transform: translateX(-5%) rotate(-2deg) scaleY(1);
    opacity: 0.6;
  }
  25% {
    transform: translateX(3%) rotate(1deg) scaleY(1.15);
    opacity: 1;
  }
  50% {
    transform: translateX(-2%) rotate(-1deg) scaleY(0.9);
    opacity: 0.7;
  }
  75% {
    transform: translateX(5%) rotate(2deg) scaleY(1.1);
    opacity: 0.9;
  }
}

@keyframes aurora2 {
  0%, 100% {
    transform: translateX(5%) rotate(1deg) scaleY(1);
    opacity: 0.4;
  }
  33% {
    transform: translateX(-8%) rotate(-2deg) scaleY(1.2);
    opacity: 0.8;
  }
  66% {
    transform: translateX(3%) rotate(1deg) scaleY(0.85);
    opacity: 0.5;
  }
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(170, 88, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(170, 88, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 70%);
  z-index: 2;
  animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Floating Orbs — Bigger, More dramatic */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-orb-1 {
  width: 700px;
  height: 700px;
  top: -250px;
  right: -200px;
  background: radial-gradient(circle, rgba(170, 88, 255, 0.18) 0%, rgba(170, 88, 255, 0.06) 40%, transparent 70%);
  filter: blur(60px);
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
  width: 600px;
  height: 600px;
  bottom: -200px;
  left: -200px;
  background: radial-gradient(circle, rgba(0, 211, 255, 0.15) 0%, rgba(0, 211, 255, 0.04) 40%, transparent 70%);
  filter: blur(70px);
  animation: orbFloat2 14s ease-in-out infinite;
}

.hero-orb-3 {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(55, 106, 246, 0.12) 0%, transparent 60%);
  filter: blur(60px);
  animation: orbFloat3 16s ease-in-out infinite;
}

.hero-orb-4 {
  width: 350px;
  height: 350px;
  top: 10%;
  left: 15%;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.06) 0%, transparent 60%);
  filter: blur(80px);
  animation: orbFloat4 18s ease-in-out infinite;
}

/* Shooting Stars */
.hero-shooting-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.shooting-star {
  position: absolute;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, rgba(170, 88, 255, 0.8), rgba(0, 211, 255, 0.4), transparent);
  border-radius: 999px;
  opacity: 0;
}

.shooting-star:nth-child(1) {
  top: 15%;
  left: -120px;
  animation: shootingStar 6s ease-in-out 1s infinite;
}

.shooting-star:nth-child(2) {
  top: 40%;
  left: -120px;
  width: 80px;
  animation: shootingStar 8s ease-in-out 4s infinite;
}

.shooting-star:nth-child(3) {
  top: 65%;
  left: -120px;
  width: 100px;
  animation: shootingStar 7s ease-in-out 7s infinite;
}

@keyframes shootingStar {
  0% {
    transform: translateX(0) translateY(0) rotate(-25deg);
    opacity: 0;
  }
  2% {
    opacity: 1;
  }
  15% {
    transform: translateX(calc(100vw + 200px)) translateY(120px) rotate(-25deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateX(calc(100vw + 200px)) translateY(120px) rotate(-25deg);
  }
}

/* Animated glow line */
.hero-glow-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--purple) 25%, var(--cyan) 50%, var(--purple) 75%, transparent 100%);
  background-size: 200% 100%;
  z-index: 5;
  animation: glowLineScroll 4s linear infinite;
}

@keyframes glowLineScroll {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(-40px, 30px) scale(1.08); }
  50% { transform: translate(20px, -20px) scale(0.95); }
  75% { transform: translate(-20px, -10px) scale(1.03); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(30px, -25px) scale(1.1); }
  50% { transform: translate(-20px, 30px) scale(0.92); }
  75% { transform: translate(15px, 10px) scale(1.05); }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translateX(-50%) translate(0, 0) scale(1); }
  33% { transform: translateX(-50%) translate(20px, -30px) scale(1.12); }
  66% { transform: translateX(-50%) translate(-15px, 20px) scale(0.9); }
}

@keyframes orbFloat4 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -40px) scale(1.15); }
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(170, 88, 255, 0.1) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -250px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 211, 255, 0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  position: relative;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  z-index: 10;
}

.hero-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  padding: 8px 20px;
  border: 1px solid var(--border-subtle);
  border-radius: 100px;
  margin-bottom: 32px;
  background: rgba(170, 88, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
  animation: fadeInUp 0.8s ease-out 0.1s both;
  text-wrap: balance;
}

.hero-title .gold-text {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto 28px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-promises {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 8px;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-promises span {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--cyan);
}

.hero-tagline {
  font-size: 1.1rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease-out 0.35s both;
}

.hero .btn {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--cyan), var(--purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* ==================== PROBLEM SECTION ==================== */
.problem {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(170, 88, 255, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 10% 80%, rgba(0, 211, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-secondary) 30%, var(--bg-secondary) 70%, #060e1a 100%);
  position: relative;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.problem-card {
  background: rgba(18, 42, 69, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(170, 88, 255, 0), rgba(0, 211, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease;
  pointer-events: none;
}

.problem-card:hover::before {
  background: linear-gradient(135deg, rgba(170, 88, 255, 0.5), rgba(0, 211, 255, 0.5));
}

.problem-card:hover {
  border-color: transparent;
  background: rgba(26, 53, 85, 0.8);
  box-shadow: 0 8px 32px rgba(170, 88, 255, 0.1), 0 0 60px rgba(170, 88, 255, 0.05);
}

.problem-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(170, 88, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem-callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: linear-gradient(135deg, rgba(170, 88, 255, 0.08) 0%, rgba(0, 211, 255, 0.04) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 28px 32px;
}

.callout-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.problem-callout p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.problem-callout strong {
  color: var(--cyan);
}

/* ==================== HOW IT WORKS ==================== */
.how-it-works {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(55, 106, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 50% at 90% 70%, rgba(170, 88, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-primary) 20%, var(--bg-primary) 80%, #060e1a 100%);
  position: relative;
}

.how-it-works .section-title,
.how-it-works .section-subtitle {
  text-align: center;
}

.how-it-works .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.step {
  background: rgba(18, 42, 69, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  margin-bottom: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
  border-color: rgba(170, 88, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(170, 88, 255, 0.1);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.step-number {
  font-size: 0.8rem;
  font-weight: 900;
  color: var(--purple);
  background: rgba(170, 88, 255, 0.1);
  border: 1px solid var(--border-subtle);
  padding: 6px 14px;
  border-radius: 8px;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.step-title {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
}

.step-content {
  padding-left: 68px;
}

.step-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.step-features {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.step-features li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 24px;
  position: relative;
}

.step-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  opacity: 0.6;
}

.step-note {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  font-style: italic;
  padding-top: 8px;
  border-top: 1px solid var(--border-color);
}

/* ==================== WHY IT WORKS ==================== */
.why-works {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 40% at 70% 30%, rgba(0, 211, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(170, 88, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-secondary) 20%, var(--bg-secondary) 80%, #060e1a 100%);
  position: relative;
}

.why-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 48px;
}

.why-statement {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.why-highlight {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 900;
  color: var(--purple);
  margin-bottom: 16px;
}

.why-subtext {
  font-size: 1rem;
  color: var(--text-muted);
}

.why-description {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pipeline-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.pipeline-node {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--transition);
}

.pipeline-node:hover {
  border-color: var(--purple);
  background: rgba(170, 88, 255, 0.06);
}

.pipeline-arrow {
  flex-shrink: 0;
  opacity: 0.5;
}

.pipeline-summary {
  margin-top: 20px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ==================== WHO IT'S FOR ==================== */
.who-for {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 45% 35% at 80% 50%, rgba(170, 88, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 10% 30%, rgba(55, 106, 246, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-primary) 20%, var(--bg-primary) 80%, #060e1a 100%);
  position: relative;
}

.who-for .section-title,
.who-for .section-subtitle {
  text-align: center;
}

.who-for .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.who-card {
  background: rgba(18, 42, 69, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.who-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, rgba(170, 88, 255, 0), rgba(0, 211, 255, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease;
  pointer-events: none;
}

.who-card:hover::before {
  background: linear-gradient(135deg, rgba(0, 211, 255, 0.4), rgba(170, 88, 255, 0.4));
}

.who-card:hover {
  border-color: transparent;
  background: rgba(26, 53, 85, 0.8);
  box-shadow: 0 8px 32px rgba(0, 211, 255, 0.08);
}

.who-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(170, 88, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  margin: 0 auto 20px;
}

.who-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.who-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.who-callout {
  text-align: center;
}

.who-callout p {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ==================== WHAT MAKES US DIFFERENT ==================== */
.different {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 50% at 50% 50%, rgba(0, 211, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 90% 20%, rgba(170, 88, 255, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-secondary) 20%, var(--bg-secondary) 80%, #060e1a 100%);
  position: relative;
}

.different .section-title {
  text-align: center;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 48px auto 40px;
}

.diff-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px 24px;
  transition: all var(--transition);
}

.diff-item:hover {
  border-color: var(--border-subtle);
  background: var(--bg-card-hover);
}

.diff-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 168, 0.12);
  border-radius: 8px;
}

.diff-item span {
  font-size: 0.9rem;
  font-weight: 700;
}

.diff-callout {
  text-align: center;
  margin-top: 40px;
}

.diff-callout p {
  font-size: 1.3rem;
  font-weight: 700;
}

/* ==================== RESULTS / SOCIAL PROOF ==================== */
.results {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 30%, rgba(255, 200, 87, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 70%, rgba(170, 88, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-primary) 20%, var(--bg-primary) 80%, #060e1a 100%);
  position: relative;
}

.results .section-title,
.results .section-subtitle {
  text-align: center;
}

.results .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.result-card {
  background: rgba(18, 42, 69, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
  border-color: rgba(255, 200, 87, 0.3);
  box-shadow: 0 8px 32px rgba(255, 200, 87, 0.08);
}

.result-screenshot {
  width: 100%;
  aspect-ratio: 16 / 10;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.result-screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-meta {
  padding: 20px 24px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.result-stat {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--warm-gold);
}

.result-timeframe {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(18, 42, 69, 0.6);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  border-color: rgba(170, 88, 255, 0.3);
  box-shadow: 0 8px 32px rgba(170, 88, 255, 0.08);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: normal;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--btn-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #FFFFFF;
  flex-shrink: 0;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ==================== GUARANTEE ==================== */
.guarantee {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(0, 168, 168, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-secondary) 20%, var(--bg-secondary) 80%, #060e1a 100%);
  position: relative;
}

.guarantee-card {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(18, 42, 69, 0.6);
  border: 1px solid rgba(0, 168, 168, 0.2);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
}

.guarantee-icon {
  margin-bottom: 24px;
}

.guarantee-title {
  font-family: var(--font-sans);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.guarantee-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 32px;
}

.guarantee-points {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.guarantee-point {
  display: flex;
  align-items: center;
  gap: 8px;
}

.guarantee-point span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--teal);
}

/* ==================== FAQ ==================== */
.faq {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 40% at 60% 30%, rgba(170, 88, 255, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 70%, rgba(55, 106, 246, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-primary) 20%, var(--bg-primary) 80%, #060e1a 100%);
  position: relative;
}

.faq .section-title {
  text-align: center;
}

.faq .section-label {
  text-align: center;
}

.faq-grid {
  max-width: 740px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--purple-light);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: var(--purple);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ==================== NEXT STEPS ==================== */
.next-steps {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 50% 40% at 30% 40%, rgba(55, 106, 246, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 60%, rgba(0, 211, 255, 0.04) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-primary) 20%, var(--bg-primary) 80%, #060e1a 100%);
  position: relative;
}

.next-steps .section-title,
.next-steps .section-label {
  text-align: center;
}

.steps-timeline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 56px 0 40px;
  flex-wrap: wrap;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 0 24px;
}

.timeline-number {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #FFFFFF;
  background: var(--btn-blue);
  border-radius: 50%;
}

.timeline-step p {
  font-size: 0.9rem;
  font-weight: 700;
  text-align: center;
  max-width: 160px;
}

.timeline-connector {
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--btn-blue), rgba(55, 106, 246, 0.2));
  flex-shrink: 0;
  margin-top: -28px;
}

.steps-tagline {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: 0.08em;
}

/* ==================== FINAL CTA ==================== */
.cta {
  padding: 120px 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(170, 88, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(0, 211, 255, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(55, 106, 246, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, #060e1a 0%, var(--bg-secondary) 20%, var(--bg-secondary) 80%, #060e1a 100%);
  position: relative;
}

.cta-card {
  text-align: center;
  background: rgba(18, 42, 69, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(170, 88, 255, 0.12) 0%, rgba(0, 211, 255, 0.05) 40%, transparent 70%);
  pointer-events: none;
  animation: orbFloat3 8s ease-in-out infinite;
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(55, 106, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 20px;
  position: relative;
}

.cta-text {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
  position: relative;
}

.btn-cta {
  position: relative;
}

.cta-note {
  margin-top: 20px;
  font-size: 0.8rem;
  color: var(--text-muted);
  position: relative;
}

/* HubSpot Form Styling — max specificity to override HubSpot's injected styles */
.hubspot-form-wrapper {
  max-width: 520px;
  margin: 0 auto 24px;
  position: relative;
  text-align: left;
}

.hubspot-form-wrapper .hs-form-field {
  margin-bottom: 16px !important;
}

.hubspot-form-wrapper label,
.hubspot-form-wrapper .hs-form-field > label,
.hubspot-form-wrapper .hbspt-form label,
.hubspot-form-wrapper .hs-form label {
  display: block !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 6px !important;
}

.hubspot-form-wrapper .hs-form-field > label > span,
.hubspot-form-wrapper .hs-form-field label span,
.hubspot-form-wrapper label span {
  color: #FFFFFF !important;
}

/* Nuclear specificity: target every possible HubSpot input selector */
.hubspot-form-wrapper input[type="text"],
.hubspot-form-wrapper input[type="email"],
.hubspot-form-wrapper input[type="tel"],
.hubspot-form-wrapper input[type="number"],
.hubspot-form-wrapper textarea,
.hubspot-form-wrapper select,
.hubspot-form-wrapper .hs-input,
.hubspot-form-wrapper .hbspt-form .hs-input,
.hubspot-form-wrapper .hs-form .hs-input,
.hubspot-form-wrapper .hs-form-field .input .hs-input,
.hubspot-form-wrapper .hs-form-field input,
.hubspot-form-wrapper .hs-form-field textarea,
.hubspot-form-wrapper .hs-form-field select {
  width: 100% !important;
  padding: 14px 16px !important;
  background: #0B1E34 !important;
  background-color: #0B1E34 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 10px !important;
  color: #FFFFFF !important;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-size: 0.95rem !important;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-appearance: none !important;
  appearance: none !important;
}

.hubspot-form-wrapper input::placeholder,
.hubspot-form-wrapper textarea::placeholder,
.hubspot-form-wrapper .hs-input::placeholder {
  color: #8892a4 !important;
  opacity: 1 !important;
}

.hubspot-form-wrapper input:focus,
.hubspot-form-wrapper textarea:focus,
.hubspot-form-wrapper select:focus,
.hubspot-form-wrapper .hs-input:focus {
  outline: none !important;
  border-color: #376af6 !important;
  box-shadow: 0 0 0 3px rgba(55, 106, 246, 0.2) !important;
  background: #0B1E34 !important;
  background-color: #0B1E34 !important;
}

.hubspot-form-wrapper input[type="submit"],
.hubspot-form-wrapper .hs-button,
.hubspot-form-wrapper .hs-form .hs-button,
.hubspot-form-wrapper .hbspt-form .hs-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding: 16px 32px !important;
  background: #376af6 !important;
  background-color: #376af6 !important;
  color: #FFFFFF !important;
  font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  border: none !important;
  border-radius: 10px !important;
  cursor: pointer !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 30px rgba(55, 106, 246, 0.25);
}

.hubspot-form-wrapper input[type="submit"]:hover,
.hubspot-form-wrapper .hs-button:hover {
  background: #4a7df7 !important;
  background-color: #4a7df7 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(55, 106, 246, 0.35);
}

.hubspot-form-wrapper .hs-error-msgs {
  list-style: none !important;
  padding: 0 !important;
  margin: 6px 0 0 !important;
}

.hubspot-form-wrapper .hs-error-msgs li,
.hubspot-form-wrapper .hs-error-msgs label {
  font-size: 0.8rem !important;
  color: #e74c3c !important;
}

/* HubSpot form legal/GDPR text */
.hubspot-form-wrapper .legal-consent-container,
.hubspot-form-wrapper .legal-consent-container p,
.hubspot-form-wrapper .legal-consent-container span {
  color: #8892a4 !important;
  font-size: 0.75rem !important;
}

.hubspot-form-wrapper .legal-consent-container a {
  color: #BFA0FF !important;
}

/* HubSpot select dropdowns */
.hubspot-form-wrapper select option {
  background: #0B1E34 !important;
  color: #FFFFFF !important;
}

.cta-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin: 32px auto;
}

.cta-divider::before,
.cta-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border-color);
}

.cta-divider span {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.hubspot-meetings-wrapper {
  max-width: 700px;
  margin: 32px auto 0;
  position: relative;
  min-height: 600px;
}

/* ==================== FOOTER ==================== */
.footer {
  padding: 60px 0 30px;
  border-top: 1px solid rgba(170, 88, 255, 0.15);
  background: linear-gradient(180deg, #060e1a 0%, #030812 100%);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  flex: 1;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 8px;
  max-width: 360px;
  line-height: 1.6;
}

.footer-form {
  flex: 1;
  max-width: 420px;
}

.footer-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.footer-form-text {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.footer-links-row {
  display: flex;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.footer-links-row a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 0;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.ims-link {
  color: var(--purple);
  font-weight: 700;
  transition: color var(--transition);
}

.ims-link:hover {
  color: var(--purple-light);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .why-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 30, 52, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    font-size: 1.1rem;
  }

  /* --- PERFORMANCE: disable expensive effects on mobile --- */
  .hero-aurora,
  .hero-aurora-2,
  .hero-orb,
  .hero-shooting-stars,
  .hero-noise,
  .particle-canvas {
    display: none !important;
  }

  .hero-bg-grid {
    animation: none;
    opacity: 0.6;
  }

  .problem-card,
  .who-card,
  .step,
  .cta-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar.scrolled {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  /* --- HERO MOBILE --- */
  .hero {
    padding: 100px 0 56px;
    min-height: auto;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7.5vw, 2.5rem);
    margin-bottom: 16px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 auto 20px;
  }

  .hero-promises {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 4px;
  }

  .hero-promises span {
    font-size: 0.85rem;
  }

  .hero-tagline {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 36px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .stat-divider {
    height: 32px;
  }

  /* --- SECTIONS MOBILE — tight vertical rhythm --- */
  .problem,
  .how-it-works,
  .why-works,
  .who-for,
  .different,
  .next-steps,
  .cta {
    padding: 56px 0;
  }

  .section-label {
    font-size: 0.7rem;
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
    margin-bottom: 10px;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  /* --- PROBLEM CARDS MOBILE --- */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 24px;
  }

  .problem-card {
    padding: 20px 18px;
  }

  .problem-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    border-radius: 10px;
  }

  .problem-icon svg {
    width: 20px;
    height: 20px;
  }

  .problem-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .problem-card p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .problem-callout {
    padding: 20px;
    gap: 12px;
  }

  .problem-callout p {
    font-size: 0.9rem;
  }

  /* --- STEPS MOBILE --- */
  .step {
    padding: 22px 18px;
    margin-bottom: 12px;
    border-radius: var(--radius);
  }

  .step-header {
    gap: 12px;
    margin-bottom: 14px;
  }

  .step-number {
    font-size: 0.7rem;
    padding: 5px 10px;
    border-radius: 6px;
  }

  .step-title {
    font-size: 1.1rem;
  }

  .step-content {
    padding-left: 0;
  }

  .step-description {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }

  .step-features {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }

  .step-features li {
    font-size: 0.85rem;
    padding-left: 18px;
  }

  .step-features li::before {
    width: 6px;
    height: 6px;
    top: 7px;
  }

  .step-note {
    font-size: 0.85rem;
    padding-top: 10px;
  }

  /* --- WHY IT WORKS MOBILE --- */
  .why-statement {
    font-size: 1.15rem;
  }

  .why-highlight {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .why-subtext {
    font-size: 0.9rem;
  }

  .why-description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .pipeline-flow {
    justify-content: center;
  }

  .pipeline-arrow {
    display: none;
  }

  .pipeline-node {
    margin: 3px;
    padding: 8px 12px;
    font-size: 0.8rem;
  }

  .pipeline-summary {
    margin-top: 14px;
    font-size: 0.9rem;
  }

  /* --- WHO IT'S FOR MOBILE --- */
  .who-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 28px;
  }

  .who-card {
    padding: 24px 20px;
  }

  .who-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    margin-bottom: 14px;
  }

  .who-icon svg {
    width: 24px;
    height: 24px;
  }

  .who-card h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }

  .who-card p {
    font-size: 0.85rem;
  }

  .who-callout p {
    font-size: 1.15rem;
  }

  /* --- RESULTS MOBILE --- */
  .results-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 32px;
  }

  .result-meta {
    padding: 16px 18px;
  }

  .result-stat {
    font-size: 1.1rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .testimonial-quote {
    font-size: 0.9rem;
  }

  /* --- GUARANTEE MOBILE --- */
  .guarantee-card {
    padding: 36px 24px;
    border-radius: var(--radius);
  }

  .guarantee-title {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .guarantee-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .guarantee-points {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* --- FAQ MOBILE --- */
  .faq-grid {
    margin-top: 28px;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 20px 0;
  }

  .faq-answer p {
    font-size: 0.9rem;
  }

  /* --- DIFFERENTIATORS MOBILE --- */
  .diff-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 28px auto 24px;
  }

  .diff-item {
    padding: 14px 16px;
    gap: 12px;
    border-radius: 8px;
  }

  .diff-check {
    width: 28px;
    height: 28px;
    border-radius: 6px;
  }

  .diff-check svg {
    width: 16px;
    height: 16px;
  }

  .diff-item span {
    font-size: 0.85rem;
  }

  .diff-callout {
    margin-top: 24px;
  }

  .diff-callout p {
    font-size: 1.05rem;
  }

  /* --- NEXT STEPS MOBILE --- */
  .steps-timeline {
    flex-direction: column;
    gap: 0;
    margin: 32px 0 28px;
  }

  .timeline-step {
    padding: 8px 0;
    gap: 10px;
  }

  .timeline-number {
    width: 44px;
    height: 44px;
    font-size: 1rem;
  }

  .timeline-step p {
    font-size: 0.85rem;
    max-width: 220px;
  }

  .timeline-connector {
    width: 2px;
    height: 20px;
    margin-top: 0;
    background: linear-gradient(180deg, var(--btn-blue), rgba(55, 106, 246, 0.2));
  }

  .steps-tagline {
    font-size: 1.1rem;
    letter-spacing: 0.04em;
  }

  /* --- CTA MOBILE --- */
  .cta-card {
    padding: 36px 20px;
    border-radius: var(--radius);
  }

  .cta-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
    margin-bottom: 14px;
  }

  .cta-text {
    font-size: 0.95rem;
    margin-bottom: 24px;
    line-height: 1.7;
  }

  .cta-divider {
    margin: 24px auto;
  }

  .hubspot-meetings-wrapper {
    min-height: 500px;
  }

  .cta-note {
    font-size: 0.75rem;
  }

  /* --- FOOTER MOBILE --- */
  .footer {
    padding: 40px 0 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
    margin-bottom: 28px;
  }

  .footer-brand .logo-text {
    font-size: 1rem;
  }

  .footer-brand p {
    font-size: 0.8rem;
  }

  .footer-form-title {
    font-size: 1rem;
  }

  .footer-links-row {
    flex-wrap: wrap;
    gap: 16px 24px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .footer-links-row a {
    font-size: 0.8rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 14px;
  }

  .hero-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 14px 24px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: row;
    gap: 16px;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-divider {
    height: 28px;
  }
}
