/* ══════════════════════════════════════════
   NEARWALA – Premium CSS Design System
   Brand Color: #d5212a
   ══════════════════════════════════════════ */

:root {
  /* Brand Colors */
  --brand: #d5212a;
  --brand-dark: #b01c22;
  --brand-light: #e8454d;
  --brand-glow: rgba(213, 33, 42, 0.25);
  --brand-subtle: rgba(213, 33, 42, 0.08);

  /* Gold Accent */
  --gold: #f5a623;
  --gold-dark: #d4881a;
  --gold-light: #ffc85a;

  /* Neutral Palette */
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1e1e2a;
  --bg-glass: rgba(255,255,255,0.04);
  --bg-glass-hover: rgba(255,255,255,0.07);

  /* Text */
  --text-primary: #f0f0f8;
  --text-secondary: #a0a0b8;
  --text-muted: #6060780;

  /* Borders */
  --border: rgba(255,255,255,0.08);
  --border-hover: rgba(213, 33, 42, 0.4);

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;

  /* Shadows */
  --shadow-card: 0 4px 40px rgba(0,0,0,0.4);
  --shadow-brand: 0 8px 40px rgba(213, 33, 42, 0.3);
  --shadow-gold: 0 8px 40px rgba(245, 166, 35, 0.3);

  /* Fonts */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── ANIMATED TEXT ── */
.animated-text-container {
  display: inline-grid;
}

.animated-text-container > span {
  grid-area: 1/1;
  opacity: 0;
  animation: textFadeSlide 6s infinite;
}

.animated-text-container > span:nth-child(1) {
  animation-delay: 0s;
}

.animated-text-container > span:nth-child(2) {
  animation-delay: 3s;
}

@keyframes textFadeSlide {
  0% { opacity: 0; transform: translateY(15px); }
  10% { opacity: 1; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(0); }
  50% { opacity: 0; transform: translateY(-15px); }
  100% { opacity: 0; transform: translateY(-15px); }
}

.text-gold {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(245, 166, 35, 0.15);
  font-weight: 600;
  white-space: nowrap;
}

/* ════════════════════════════════════
   NAVBAR
   ════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.logo-icon {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  color: white;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

/* SVG logo image */
.site-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-logo:hover .site-logo-img {
  opacity: 0.85;
  transform: scale(1.03);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--text-primary);
  background: var(--bg-glass);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-outline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand);
  background: var(--brand-subtle);
}

.btn-primary {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: white;
  padding: 9px 18px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: var(--r-sm);
  transition: all 0.25s ease;
  white-space: nowrap;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px var(--brand-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -200px; left: -200px;
  animation: float-orb 8s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: 100px; right: -200px;
  animation: float-orb 10s ease-in-out infinite reverse;
  opacity: 0.2;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #6c2de8 0%, transparent 70%);
  bottom: -100px; left: 40%;
  animation: float-orb 12s ease-in-out infinite;
  opacity: 0.15;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-20px, 30px) scale(0.95); }
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--brand);
  border-radius: 50%;
  opacity: 0.4;
  animation: particle-float linear infinite;
}

@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.4; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(213, 33, 42, 0.1);
  border: 1px solid rgba(213, 33, 42, 0.3);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-light);
  margin-bottom: 28px;
  letter-spacing: 0.3px;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(213, 33, 42, 0.7); }
  50% { box-shadow: 0 0 0 6px rgba(213, 33, 42, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text-primary);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-hero-primary, .btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  padding: 16px 32px;
  border-radius: var(--r-lg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  box-shadow: 0 8px 32px var(--brand-glow), 0 0 0 1px rgba(213, 33, 42, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 48px var(--brand-glow), 0 0 0 1px rgba(213, 33, 42, 0.4);
}

.btn-hero-secondary {
  background: var(--bg-glass);
  color: var(--text-primary);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover {
  border-color: var(--brand);
  background: var(--brand-subtle);
  transform: translateY(-3px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 40px;
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 0 32px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--brand);
  display: inline;
}

.stat-plus {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--brand);
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-top: 2px;
  letter-spacing: 0.5px;
}

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

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-dot {
  width: 20px;
  height: 34px;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  position: relative;
}

.scroll-dot::before {
  content: '';
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--brand);
  border-radius: 2px;
  left: 50%;
  top: 5px;
  transform: translateX(-50%);
  animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.3; }
}

/* ── HERO CITIES MARQUEE ── */
.hero-cities-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 10px 0 10px 20px;
  overflow: hidden;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.hero-cities-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 0.5px;
  white-space: nowrap;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  margin-right: 0;
  flex-shrink: 0;
}

.hero-cities-track-wrap {
  flex: 1;
  min-width: 0; /* CRITICAL: Prevent flex item from stretching parent */
  overflow: hidden;
  position: relative;
  /* Fade edges */
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 8%,
    black 92%,
    transparent 100%
  );
}

.hero-cities-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: cities-scroll 28s linear infinite;
  padding-left: 20px;
}

.hero-cities-track:hover {
  animation-play-state: paused;
}

@keyframes cities-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.hc-item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.2px;
  transition: color 0.2s ease;
  padding: 0 4px;
}

.hero-cities-track:hover .hc-item {
  color: var(--text-primary);
}

.hc-sep {
  font-size: 14px;
  color: rgba(213, 33, 42, 0.45);
  padding: 0 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ════════════════════════════════════
   SECTIONS COMMON
   ════════════════════════════════════ */
section {
  padding: 100px 0 140px;
  position: relative;
  scroll-margin-top: 80px;
}

.feature-block[id],
.sw-card[id],
.waitlist-container[id] {
  scroll-margin-top: 100px;
}

/* ── SHAPE DIVIDERS ── */
.shape-divider {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
  pointer-events: none;
}

.shape-divider-bottom {
  bottom: -1px;
}

.shape-divider-top {
  top: -1px;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 60px;
}

.shape-divider .shape-fill {
  transition: fill 0.3s ease;
}

.hero-divider .shape-fill { fill: var(--bg-secondary); }
.cities-divider-bottom .shape-fill { fill: var(--bg-primary); }
.six-ways-divider-bottom .shape-fill { fill: var(--bg-primary); }
.why-divider-bottom .shape-fill { fill: var(--bg-secondary); }
.features-divider-bottom .shape-fill { fill: var(--bg-primary); }
.mini-divider-bottom .shape-fill { fill: var(--bg-secondary); }
.love-divider-bottom .shape-fill { fill: var(--bg-primary); }
.use-cases-divider-bottom .shape-fill { fill: var(--bg-secondary); }
.pricing-divider-bottom .shape-fill { fill: var(--bg-primary); }
.cta-divider-bottom .shape-fill { fill: var(--bg-secondary); }

/* ════════════════════════════════════
   CITIES SECTION
   ════════════════════════════════════ */
.cities-section {
  background: var(--bg-secondary);
  padding: 80px 0 140px !important;
}


.cities-header {
  text-align: center;
  margin-bottom: 52px;
}

.cities-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-subtle);
  border: 1px solid rgba(213, 33, 42, 0.2);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.cities-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.cities-subtitle {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* City pills flex grid */
.cities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual pill badge */
.city-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 22px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50px;
  cursor: default;
  transition: transform 0.28s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.28s ease,
              border-color 0.25s ease,
              background 0.25s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.28);
  position: relative;
  overflow: hidden;
}

/* Subtle shimmer sweep on hover */
.city-pill::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 30%,
    rgba(213, 33, 42, 0.08) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}

.city-pill:hover::before {
  transform: translateX(100%);
}

.city-pill:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: rgba(213, 33, 42, 0.45);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4),
              0 0 0 1px rgba(213, 33, 42, 0.2);
}

/* Pin icon */
.city-pin {
  font-size: 15px;
  line-height: 1;
  filter: drop-shadow(0 1px 3px rgba(213, 33, 42, 0.5));
  flex-shrink: 0;
}

/* City name text */
.city-pill-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* "More cities" footer tag */
.cities-cta {
  text-align: center;
  margin-top: 40px;
}

.cities-more-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 600px) {
  .city-pill {
    padding: 10px 16px;
  }
  .city-pill-name {
    font-size: 13px;
  }
}


.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-subtle);
  border: 1px solid rgba(213, 33, 42, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-title::after {
  content: '';
  display: block;
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  border-radius: 4px;
  margin: 14px auto 0;
}

.six-ways-section .section-title::after {
  display: none;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ════════════════════════════════════
   WHY SECTION
   ════════════════════════════════════ */
.why-section {
  background: var(--bg-primary);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 22px;
  text-align: center;
  transition: all 0.35s ease;
  cursor: default;
}

.why-card:hover {
  border-color: var(--brand);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
  box-shadow: var(--shadow-brand);
}

.why-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ════════════════════════════════════
   FEATURES SECTION
   ════════════════════════════════════ */
.features-section { background: var(--bg-secondary); }

.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.feature-block:last-child { margin-bottom: 0; }

.feature-block--right .feature-content { order: 1; }
.feature-block--right .feature-visual { order: 2; }

.curved-media-card {
  position: relative;
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  padding: 0;
  display: block;
  width: 100%;
}

.curved-media-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6);
  border-color: rgba(213, 33, 42, 0.3);
}

.feature-img {
  width: 100%;
  height: 420px;
  object-fit: contain;
  display: block;
  transition: transform 0.5s ease;
}

.curved-media-card:hover .feature-img {
  transform: scale(1.03);
}

.feature-img-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(10,10,15,0.88);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.feature-img-badge span { font-size: 20px; }

.feature-img-badge strong {
  color: var(--text-primary);
  font-weight: 700;
}

.feature-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--brand-subtle);
  border: 1px solid rgba(213, 33, 42, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.feature-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 14px;
  line-height: 1.2;
}

.feature-desc {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  line-height: 1.7;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-secondary);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
}

/* AI Chat Demo */
.ai-chat-wrapper {
  padding: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.ai-chat-demo {
  padding: 0;
}

.ai-chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: linear-gradient(135deg, rgba(213, 33, 42, 0.15), rgba(245, 166, 35, 0.08));
  border-bottom: 1px solid var(--border);
}

.ai-avatar {
  width: 44px;
  height: 44px;
  background: var(--brand-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(213, 33, 42, 0.3);
}

.ai-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
}

.ai-status {
  font-size: 12px;
  color: #4ade80;
  font-weight: 500;
}

.ai-messages {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ai-msg {
  font-size: 14px;
  line-height: 1.5;
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 80%;
}

.user-msg {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

.bot-msg {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  color: var(--text-primary);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.ai-example-queries {
  margin-top: 24px;
  padding: 18px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

.ai-example-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.ai-query {
  font-size: 13px;
  color: var(--text-secondary);
  font-style: italic;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.ai-query:last-child { border-bottom: none; }

/* Rewards Grid */
.rewards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.reward-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.reward-chip:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 166, 35, 0.08);
}

/* ════════════════════════════════════
   MINI FEATURES
   ════════════════════════════════════ */
.mini-features { background: var(--bg-primary); }

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

.mini-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.mini-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mini-card:hover {
  border-color: rgba(213, 33, 42, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}

.mini-card:hover::before { opacity: 1; }

.featured-card {
  border-color: rgba(245, 166, 35, 0.3);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.05) 100%);
}

.featured-card::before {
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 1;
}

.mini-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.mini-card h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.mini-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 18px;
  line-height: 1.6;
}

.mini-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.mini-list li {
  font-size: 13px;
  color: var(--text-secondary);
  padding-left: 16px;
  position: relative;
}

.mini-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 12px;
}

.featured-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-top: 16px;
}

/* ════════════════════════════════════
   LOVE SECTION
   ════════════════════════════════════ */
.love-section { background: var(--bg-secondary); }

.love-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.love-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.35s ease;
  backdrop-filter: blur(8px);
}

.love-card:hover {
  border-color: var(--brand);
  transform: translateY(-6px);
  box-shadow: var(--shadow-brand);
  background: var(--bg-card-hover);
}

.love-icon {
  font-size: 36px;
  margin-bottom: 14px;
}

.love-card h4 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.love-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ════════════════════════════════════
   USE CASES
   ════════════════════════════════════ */
.use-cases { background: var(--bg-primary); }

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.use-case-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px;
  transition: all 0.35s ease;
  cursor: default;
}

.use-case-card:hover {
  border-color: rgba(213, 33, 42, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.4);
}

.use-case-emoji {
  font-size: 44px;
  margin-bottom: 18px;
}

.use-case-card h4 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.use-case-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ════════════════════════════════════
   PRICING
   ════════════════════════════════════ */
.pricing-section { background: var(--bg-secondary); }

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 56px;
}

.toggle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
  cursor: pointer;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 13px;
  transition: 0.3s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; bottom: 2px;
  background: var(--brand);
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: 0 2px 6px var(--brand-glow);
}

input:checked + .toggle-slider { background: rgba(213, 33, 42, 0.15); border-color: rgba(213, 33, 42, 0.4); }
input:checked + .toggle-slider::before { transform: translateX(23px); }

.save-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1008;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 40px 32px;
  position: relative;
  transition: all 0.35s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.pricing-card--popular {
  border-color: rgba(213, 33, 42, 0.4);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(213, 33, 42, 0.05) 100%);
  transform: scale(1.04);
}

.pricing-card--popular:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: var(--shadow-brand);
}

.pricing-card--gold {
  border-color: rgba(245, 166, 35, 0.3);
  background: linear-gradient(160deg, var(--bg-card) 0%, rgba(245, 166, 35, 0.04) 100%);
}

.pricing-card--gold:hover {
  border-color: rgba(245, 166, 35, 0.5);
  box-shadow: var(--shadow-gold);
}

.popular-badge, .gold-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.popular-badge {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.gold-badge {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1008;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.4);
}

.plan-header { margin-bottom: 30px; }

.plan-icon { font-size: 36px; margin-bottom: 10px; }

.plan-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  margin-bottom: 6px;
}

.price-currency {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.yearly-price-note {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-secondary);
}

.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-secondary);
}

.feat-check {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
}

.feat-separator {
  font-size: 12px;
  font-weight: 700;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.plan-ideal {
  font-size: 12px;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.btn-plan {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text-primary);
}

.btn-plan:hover {
  border-color: var(--brand);
  background: var(--brand-subtle);
  transform: translateY(-2px);
}

.btn-plan--popular {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 6px 24px var(--brand-glow);
}

.btn-plan--popular:hover {
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
  box-shadow: 0 10px 36px var(--brand-glow);
}

.btn-plan--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #1a1008;
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(245, 166, 35, 0.3);
}

.btn-plan--gold:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 10px 36px rgba(245, 166, 35, 0.4);
}

/* ════════════════════════════════════
   FINAL CTA
   ════════════════════════════════════ */
.final-cta {
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.cta-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  top: -200px; left: -150px;
  opacity: 0.25;
}

.cta-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  opacity: 0.2;
}

.cta-content { position: relative; z-index: 2; }

.cta-emoji { font-size: 64px; margin-bottom: 20px; }

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 20px;
  max-width: 700px;
  margin: 0 auto 20px;
}

.cta-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 580px;
  margin: 0 auto 16px;
  line-height: 1.7;
}

.cta-tagline {
  font-size: 18px;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-store {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 16px 28px;
  transition: all 0.3s ease;
  backdrop-filter: blur(12px);
}

.btn-store:hover {
  background: rgba(213, 33, 42, 0.15);
  border-color: rgba(213, 33, 42, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(213, 33, 42, 0.2);
}

.store-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px var(--brand-glow);
}

.store-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.store-sub {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.store-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
}

.cta-note {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ════════════════════════════════════
   FOOTER
   ════════════════════════════════════ */
.footer {
  background: var(--bg-secondary);
  border-top: none;
  padding: 120px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand-desc {
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s ease;
}

.social-link:hover {
  background: var(--brand-subtle);
  border-color: rgba(213, 33, 42, 0.4);
  color: var(--brand);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-link:hover { color: var(--brand); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

.footer-tagline {
  color: var(--brand) !important;
  font-weight: 600 !important;
}

/* ════════════════════════════════════
   ANIMATIONS (AOS-like)
   ════════════════════════════════════ */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="zoom-in"] { transform: scale(0.9); }

[data-aos].aos-animate {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* ════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .love-grid { grid-template-columns: repeat(3, 1fr); }
  .mini-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-block { gap: 48px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    padding: 24px 24px 8px;
    gap: 8px;
    border-bottom: none;
    z-index: 999;
    height: 178px; /* Force height to meet .nav-actions at 240px without gaps */
  }

  .nav-links.open + .nav-actions {
    display: flex;
    position: fixed;
    top: 240px;
    left: 0; right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(24px);
    padding: 0 24px 24px;
    z-index: 999;
    gap: 10px;
    flex-direction: column;
    border-bottom: 1px solid var(--border);
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .love-grid { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--popular { transform: scale(1); }
  .pricing-card--popular:hover { transform: translateY(-8px); }

  .feature-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .feature-block--right .feature-content { order: 1; }
  .feature-block--right .feature-visual { order: 2; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-stats { padding: 20px 24px; }
  .stat-item { padding: 0 16px; }
}

@media (max-width: 640px) {
  section { padding: 60px 0 100px; }
  .why-grid { grid-template-columns: 1fr; }
  .love-grid { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .mini-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-divider { display: none; }
  .stat-item { padding: 0; flex: 1; min-width: 100px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-title { letter-spacing: -1px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .hero-cta { flex-direction: column; }
}

/* ════════════════════════════════════
   6 POWERFUL WAYS SECTION
   ════════════════════════════════════ */
.six-ways-section {
  background: var(--bg-secondary);
  position: relative;
}

.six-ways-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 12px;
}

.divider-line {
  flex: 1;
  max-width: 120px;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--brand) 50%, transparent 100%);
  border-radius: 50%;
}

.six-ways-tagline {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
}

/* 3×2 card grid */
.six-ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

/* Individual card */
.sw-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 28px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.sw-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, var(--brand)), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(255,255,255,0.12);
}

.sw-card:hover::before { opacity: 1; }

/* Number badge */
.sw-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 2px;
}

.sw-number {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent, var(--brand));
  color: #fff;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px color-mix(in srgb, var(--accent, var(--brand)) 40%, transparent);
}

.sw-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.sw-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
}

.sw-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Illustration zone — top half of card, tinted bg, full transparent PNG */
.sw-illus-zone {
  position: relative;
  width: calc(100% + 48px);
  margin: -28px -24px 0;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
    ellipse at center,
    rgba(var(--accent-rgb, 213,33,42), 0.18) 0%,
    rgba(var(--accent-rgb, 213,33,42), 0.06) 55%,
    transparent 100%
  );
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  overflow: hidden;
}

.sw-illus-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 50% 60%,
    rgba(var(--accent-rgb, 213,33,42), 0.25) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.sw-illus {
  width: auto;
  height: 150px;
  max-width: 90%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
  filter: drop-shadow(0 12px 24px rgba(var(--accent-rgb, 0,0,0), 0.4));
}

.sw-card:hover .sw-illus {
  transform: translateY(-10px) scale(1.06);
  filter: drop-shadow(0 20px 32px rgba(var(--accent-rgb, 0,0,0), 0.55));
}

/* Body — padded text content below the illustration */
.sw-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 20px;
  flex: 1;
}

/* Tagline color via accent variable */
.sw-tagline {
  color: var(--accent, var(--brand));
}


/* Tags row */
.sw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 4px;
  border-top: 1px solid var(--border);
}

.sw-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 10px;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
}

.sw-card:hover .sw-tag {
  color: var(--text-primary);
  border-color: rgba(255,255,255,0.15);
}

/* ── Trust Bar ── */
.sw-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: 8px;
}

.sw-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 28px 24px;
  border-right: 1px solid var(--border);
  transition: background 0.25s ease;
}

.sw-trust-item:last-child { border-right: none; }

.sw-trust-item:hover {
  background: var(--bg-glass);
}

.sw-trust-icon {
  font-size: 32px;
  flex-shrink: 0;
  color: var(--brand);
}

.sw-trust-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sw-trust-desc {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .six-ways-grid { grid-template-columns: repeat(2, 1fr); }
  .sw-trust-bar { grid-template-columns: repeat(2, 1fr); }
  .sw-trust-item:nth-child(2) { border-right: none; }
  .sw-trust-item:nth-child(3) { border-top: 1px solid var(--border); }
  .sw-trust-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
}

@media (max-width: 640px) {
  .six-ways-grid { grid-template-columns: 1fr; }
  .sw-trust-bar { grid-template-columns: 1fr; }
  .sw-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .sw-trust-item:last-child { border-bottom: none; }
  .six-ways-tagline { white-space: normal; }
}

/* ── COMING SOON & MEMBERSHIP WAITLIST ── */
.badge-coming-soon {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 4px 12px;
  border-radius: 50px;
  margin-left: 10px;
  vertical-align: middle;
}

.waitlist-container {
  max-width: 640px;
  margin: 56px auto 0;
  text-align: center;
}

.waitlist-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 44px 36px;
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--gold) 100%);
}

.waitlist-card h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.waitlist-card p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 28px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 14px 20px;
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.waitlist-input:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px var(--brand-glow);
}

.waitlist-btn {
  padding: 14px 28px;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--r-md);
  cursor: pointer;
}

.btn-plan.disabled {
  pointer-events: none;
  opacity: 0.6;
  filter: grayscale(0.8);
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .waitlist-form {
    flex-direction: column;
    gap: 10px;
  }
  .waitlist-btn {
    width: 100%;
  }
}

/* ════════════════════════════════════
   COMPREHENSIVE MOBILE RESPONSIVE
   ════════════════════════════════════ */

/* ── Tablet / Large Mobile (≤768px) ── */
@media (max-width: 768px) {

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 80px;
  }
  .hero-content {
    max-width: 100%;
    padding: 0 16px;
    text-align: center;
  }
  .hero-title {
    font-size: clamp(30px, 8vw, 52px);
    letter-spacing: -1px;
  }
  .hero-subtitle {
    font-size: 15px;
    max-width: 100%;
  }
  .hero-badge {
    margin: 0 auto 20px;
  }
  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }
  .hero-stats {
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 20px;
    justify-content: center;
  }
  .stat-divider { display: none; }
  .stat-item {
    min-width: 90px;
    flex: 1;
    text-align: center;
    padding: 0;
  }
  .stat-number { font-size: 26px; }
  .stat-label { font-size: 11px; }

  /* Hero cities marquee */
  .hero-cities-bar {
    max-width: 100%;
    border-radius: 12px;
    margin: 20px auto 0;
    padding: 10px 0 10px 14px;
  }
  .hero-cities-label { font-size: 11px; padding-right: 12px; }
  .hc-item { font-size: 12px; }

  /* Section padding */
  section { padding: 56px 0 80px; }

  /* Section headers */
  .section-title { font-size: clamp(22px, 6vw, 36px); }
  .section-header { margin-bottom: 40px; }

  /* Why / Love grids */
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .love-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mini-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .use-cases-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

  /* Feature blocks */
  .feature-block {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-block--right .feature-content { order: 1; }
  .feature-block--right .feature-visual   { order: 2; }
  .feature-visual { justify-content: center; }
  .feature-img-wrapper { max-width: 320px; margin: 0 auto; }

  /* 6 Ways grid */
  .six-ways-grid { grid-template-columns: 1fr; }
  .sw-trust-bar  { grid-template-columns: repeat(2, 1fr); }
  .sw-trust-item:nth-child(2) { border-right: none; }
  .sw-trust-item:nth-child(3) { border-top: 1px solid var(--border); }
  .sw-trust-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  /* Pricing */
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .pricing-card--popular { transform: scale(1); }

  /* Final CTA */
  .cta-title { font-size: clamp(24px, 6vw, 40px); }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .btn-store {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ── Small Mobile (≤480px) ── */
@media (max-width: 480px) {

  /* Container padding */
  .container { padding: 0 16px; }

  /* Hero */
  .hero-title { font-size: clamp(26px, 9vw, 40px); }
  .hero-subtitle { font-size: 14px; }

  /* Why / grids collapse to 1 col */
  .why-grid,
  .love-grid,
  .mini-grid,
  .use-cases-grid { grid-template-columns: 1fr; }

  /* 6 Ways trust bar single col */
  .sw-trust-bar { grid-template-columns: 1fr; }
  .sw-trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .sw-trust-item:last-child { border-bottom: none; }
  .six-ways-tagline { white-space: normal; text-align: center; }

  /* Footer full single col */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col { min-width: 0; }

  /* Nav mobile: reduce top padding */
  .nav-links.open {
    top: 60px;
    height: 182px; /* Force height to meet .nav-actions at 240px (240 - 60 + 2px overlap) */
  }

  /* Pricing max-width reset */
  .pricing-grid { max-width: 100%; }

  /* Waitlist form */
  .waitlist-form { flex-direction: column; }
  .waitlist-btn { width: 100%; }
  .waitlist-card { padding: 28px 20px; }

  /* Cities marquee */
  .hero-cities-bar { margin: 16px auto 0; padding: 8px 0 8px 12px; }

  /* Section padding tighter */
  section { padding: 48px 0 64px; }
  .section-title { font-size: clamp(20px, 7vw, 32px); }
  .cta-title { font-size: clamp(22px, 7vw, 34px); }
}
