/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f6f8fa;
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --bg-card2: #f0f2f5;
  --primary: #10b981;
  --primary-dark: #059669;
  --primary-light: #34d399;
  --primary-glow: rgba(16, 185, 129, 0.12);
  --primary-glow-strong: rgba(16, 185, 129, 0.22);
  --accent: #f59e0b;
  --text: #0f172a;
  --text-muted: #64748b;
  --text-dim: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --shadow: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.05);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.1), 0 8px 24px rgba(0,0,0,0.06);
  --shadow-green: 0 8px 32px rgba(16, 185, 129, 0.25);
  --font-heading: 'Satoshi', sans-serif;
  --font-body: 'General Sans', sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

/* ===========================
   CONTAINERS
=========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===========================
   SECTION LABELS
=========================== */
.section-label {
  display: block;
  text-align: center;
  background: var(--primary-glow);
  color: var(--primary);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 100px;
  padding: 5px 16px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
  position: relative;
}
.btn-icon { font-size: 0.85em; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(16,185,129,0.18);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: var(--bg-white);
  color: var(--text);
  border-color: var(--border);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: transparent;
}
.btn-ghost:hover { color: var(--primary); background: var(--primary-glow); }
.btn-lg { padding: 15px 32px; font-size: 0.98rem; border-radius: 12px; }
.btn-block { width: 100%; margin: 18px 0; }

/* ===========================
   NAVBAR
=========================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: var(--transition-slow);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}
.logo-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 16px; height: 16px; stroke: #fff; }
.logo-accent { color: var(--primary); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text); background: var(--bg-card2); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  border-radius: 8px;
  transition: var(--transition);
}
.hamburger:hover { background: var(--bg-card2); }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--bg-white);
}
.mobile-menu a {
  padding: 11px 14px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--bg-card2); color: var(--text); }
.mobile-menu .btn { width: 100%; margin-top: 6px; justify-content: center; }

/* ===========================
   HERO
=========================== */
.hero {
  padding: 148px 0 96px;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.5;
}
.hero-orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 70%);
  top: -200px; right: -150px;
  animation: floatOrb 8s ease-in-out infinite;
}
.hero-orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(245,158,11,0.08) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}
@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-glow);
  color: var(--primary-dark);
  border: 1px solid rgba(16,185,129,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.badge-icon { font-size: 0.8em; }
.hero-text h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4.5vw, 3.9rem);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 22px;
  letter-spacing: -0.02em;
}
.hero-accent { 
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 490px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.hero-stat strong { color: var(--text); }
.hero-stat-icon { color: var(--accent); font-size: 0.9em; }
.hero-img {
  display: flex;
  justify-content: center;
  perspective: 1200px;
}
.hero-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  width: 100%;
  max-width: 390px;
  box-shadow: var(--shadow-xl);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(16,185,129,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-card:hover {
  transform: rotateY(0) rotateX(0) translateY(-4px);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(16,185,129,0.1);
}
.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-light);
}
.avatar {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.card-name { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.card-stars { color: var(--accent); font-size: 0.7rem; display: flex; gap: 1px; margin-top: 3px; }
.google-badge {
  margin-left: auto;
  width: 32px; height: 32px;
  border-radius: 8px;
  background: #f8f9fa;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4285f4;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.hero-reviews { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.review-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 10px 12px;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.review-item:hover { border-color: rgba(16,185,129,0.2); background: rgba(16,185,129,0.03); }
.review-avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  color: #fff;
  flex-shrink: 0;
}
.rv-amber { background: var(--accent); }
.rv-green { background: var(--primary); }
.review-name { font-size: 0.8rem; font-weight: 700; margin-bottom: 3px; display: flex; align-items: center; gap: 6px; }
.review-stars { color: var(--accent); font-size: 0.62rem; display: inline-flex; gap: 1px; }
.review-text { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }
.hero-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.review-count { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.review-count i { color: var(--primary); }
.review-trend {
  background: var(--primary-glow);
  color: var(--primary-dark);
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid rgba(16,185,129,0.2);
}

/* ===========================
   PROOF BAR
=========================== */
.proof-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.proof-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}
.proof-bar-inner span { white-space: nowrap; display: flex; align-items: center; gap: 7px; }
.proof-icon { color: var(--primary); font-size: 0.85em; }
.divider { width: 1px; height: 20px; background: var(--border); flex-shrink: 0; }

/* ===========================
   SECTIONS COMMON
=========================== */
.section { padding: 100px 0; }
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 60px;
  font-size: 1.02rem;
  line-height: 1.75;
}
.center-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 52px;
}

/* ===========================
   PROBLEM SECTION
=========================== */
.problem-section { background: var(--bg); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.problem-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,0.2); }
.problem-card:hover::before { transform: scaleX(1); }
.problem-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--primary-glow);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}
.problem-card:hover .problem-icon-wrap { background: var(--primary); border-color: var(--primary); }
.problem-icon { font-size: 1.5rem; color: var(--primary); transition: var(--transition); }
.problem-card:hover .problem-icon { color: #fff; }
.problem-card h3 { font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.problem-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }

/* ===========================
   HOW WE FIX / BENEFITS
=========================== */
.how-section { background: var(--bg-white); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
}
.benefit-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: var(--bg-white); border-color: rgba(16,185,129,0.25); }
.benefit-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-glow);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}
.benefit-card:hover .benefit-icon-wrap { background: var(--primary); border-color: var(--primary); transform: scale(1.05); }
.benefit-icon { font-size: 1.25rem; color: var(--primary); transition: var(--transition); }
.benefit-card:hover .benefit-icon { color: #fff; }
.benefit-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.benefit-card p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.65; }

/* ===========================
   TESTIMONIALS
=========================== */
.testimonials-section { background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.testimonial-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,0.2); }
.testimonial-card:hover::after { transform: scaleX(1); }
.result-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--primary-glow);
  color: var(--primary-dark);
  border: 1px solid rgba(16,185,129,0.25);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}
.stars { color: var(--accent); font-size: 0.85rem; display: flex; gap: 2px; }
.testimonial-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; flex: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--border-light); }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #3b82f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.78rem;
  color: #fff;
  flex-shrink: 0;
}
.av-amber { background: var(--accent); }
.av-green { background: var(--primary); }
.author-name { font-size: 0.88rem; font-weight: 700; color: var(--text); }
.author-company { font-size: 0.75rem; color: var(--text-dim); margin-top: 2px; }

/* ===========================
   TIMELINE
=========================== */
.timeline-section { background: var(--bg-white); }
.stat-hero {
  text-align: center;
  background: linear-gradient(135deg, rgba(16,185,129,0.05) 0%, rgba(16,185,129,0.02) 100%);
  border: 1px solid rgba(16,185,129,0.2);
  border-radius: var(--radius-xl);
  padding: 48px 36px;
  margin: 48px auto;
  max-width: 560px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 4.8rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 14px;
}
.stat-desc { font-size: 1rem; color: var(--text-muted); margin-bottom: 10px; line-height: 1.6; }
.stat-person { font-size: 0.82rem; color: var(--text-dim); font-style: italic; }
.timeline {
  display: flex;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  margin: 56px 0;
}
.timeline-item { flex: 1; text-align: center; padding: 0 24px; }
.timeline-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 0 0 8px var(--primary-glow), var(--shadow-green);
}
.timeline-connector {
  width: 80px;
  height: 2px;
  background: var(--primary-glow-strong);
  margin-top: 40px;
  flex-shrink: 0;
  position: relative;
}
.timeline-connector::after {
  content: '';
  position: absolute;
  right: -6px; top: -5px;
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid rgba(16,185,129,0.3);
}
.timeline-day { font-size: 0.75rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 8px; }
.timeline-content h4 { font-family: var(--font-heading); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.timeline-content p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

/* ===========================
   SET & FORGET
=========================== */
.set-forget-section { background: var(--bg); }
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 52px 0;
}
.step-card {
  flex: 1;
  max-width: 280px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(16,185,129,0.25); }
.step-num {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--primary-glow);
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  border: 1.5px solid rgba(16,185,129,0.25);
}
.step-label { font-size: 0.7rem; font-weight: 700; color: var(--primary); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; }
.step-card h4 { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }
.step-arrow { font-size: 1.1rem; color: var(--primary); opacity: 0.4; padding: 0 20px; flex-shrink: 0; }
.social-proof-quote {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow);
}
.quote-mark { font-size: 1.4rem; color: var(--primary); margin-bottom: 12px; opacity: 0.4; }
.social-proof-quote p { font-size: 1.08rem; color: var(--text); font-style: italic; margin-bottom: 18px; line-height: 1.75; }
.quote-author { font-size: 0.84rem; color: var(--text-muted); font-weight: 600; }

/* ===========================
   FEATURES
=========================== */
.features-section { background: var(--bg-white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); background: var(--bg-white); border-color: rgba(16,185,129,0.25); }
.feature-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--primary-glow);
  border: 1px solid rgba(16,185,129,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap { background: var(--primary); border-color: var(--primary); }
.feature-icon { font-size: 1.2rem; color: var(--primary); transition: var(--transition); }
.feature-card:hover .feature-icon { color: #fff; }
.feature-card h4 { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; margin-bottom: 10px; color: var(--text); }
.feature-card p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.7; }

/* ===========================
   SERVICES
=========================== */
.services-section { background: var(--bg); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 52px;
}
.service-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  cursor: default;
}
.service-icon { font-size: 1.6rem; color: var(--primary); transition: var(--transition); }
.service-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); color: var(--text); border-color: rgba(16,185,129,0.25); }
.service-item:hover .service-icon { transform: scale(1.15); }

/* ===========================
   PRICING
=========================== */
.pricing-section { background: var(--bg-white); }
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 52px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.toggle-label { font-weight: 600; transition: color 0.2s; }
.toggle-switch { position: relative; display: inline-block; width: 52px; height: 28px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--border);
  border-radius: 100px;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 4px; bottom: 4px;
  background: #fff;
  border-radius: 50%;
  transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.toggle-switch input:checked + .toggle-slider { background: var(--primary); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }
.badge-save {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #f97316 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  margin-left: 8px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card-popular {
  background: var(--bg-white);
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.2), var(--shadow-lg);
  transform: scale(1.04);
}
.pricing-card-popular:hover { transform: scale(1.04) translateY(-6px); }
.popular-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
  box-shadow: var(--shadow-green);
  display: flex;
  align-items: center;
  gap: 6px;
}
.plan-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.plan-limit { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 22px; display: flex; align-items: center; gap: 6px; }
.plan-price { margin-bottom: 4px; }
.price-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 700; color: var(--text); letter-spacing: -0.02em; }
.price-period { font-size: 0.85rem; color: var(--text-muted); margin-left: 3px; }
.plan-features { list-style: none; margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.plan-features li { font-size: 0.85rem; color: var(--text-muted); display: flex; align-items: center; gap: 9px; }
.plan-check { color: var(--primary); font-size: 0.75rem; flex-shrink: 0; }

/* ===========================
   FAQ
=========================== */
.faq-section { background: var(--bg); }
.faq-list {
  max-width: 780px;
  margin: 52px auto 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(16,185,129,0.35); box-shadow: 0 4px 16px rgba(16,185,129,0.06); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  transition: var(--transition);
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--primary-glow);
  color: var(--primary);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s, color 0.2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary); color: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer p { padding: 0 24px 22px; color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; }
.faq-answer a { color: var(--primary); text-decoration: underline; }

/* ===========================
   CTA SECTION
=========================== */
.cta-section {
  background: var(--bg-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-bg-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.cta-orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(16,185,129,0.12) 0%, transparent 70%);
  top: -200px; left: 50%;
  transform: translateX(-50%);
  animation: floatOrb 8s ease-in-out infinite;
}
.cta-orb-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,0.07) 0%, transparent 70%);
  bottom: -100px; right: 10%;
}
.cta-inner { max-width: 580px; margin: 0 auto; position: relative; z-index: 1; }
.cta-icon-wrap {
  width: 72px; height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  box-shadow: var(--shadow-green);
}
.cta-rocket { font-size: 1.6rem; color: #fff; }
.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.cta-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 8px; line-height: 1.7; }

/* ===========================
   FOOTER
=========================== */
.footer {
  background: var(--text);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 72px 0 36px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
}
.footer-brand .logo { font-size: 1.15rem; margin-bottom: 14px; display: inline-flex; color: #fff; }
.footer-brand .logo-accent { color: #34d399; }
.footer-brand .logo-icon { background: rgba(16,185,129,0.2); border: 1px solid rgba(16,185,129,0.3); }
.footer-brand .logo-icon svg { stroke: #34d399; }
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 18px; max-width: 300px; line-height: 1.7; }
.footer-legal { font-size: 0.73rem !important; color: rgba(255,255,255,0.3) !important; line-height: 1.7; max-width: 380px !important; margin-bottom: 8px !important; }
.footer-copy { font-size: 0.75rem !important; color: rgba(255,255,255,0.3) !important; margin-top: 18px; }
.footer-col h5 { font-family: var(--font-heading); font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.9); margin-bottom: 18px; text-transform: uppercase; letter-spacing: 1px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col a:hover { color: #34d399; }

/* ===========================
   SCROLL REVEAL
=========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-img { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .problem-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: center; gap: 28px; }
  .timeline-connector { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-arrow { transform: rotate(90deg); }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card-popular { transform: none; }
  .pricing-card-popular:hover { transform: translateY(-6px); }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .proof-bar-inner { flex-direction: column; gap: 10px; }
  .divider { display: none; }
  .mobile-menu.open { display: flex; }
}
@media (max-width: 480px) {
  .hero { padding: 110px 0 68px; }
  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .center-btns { flex-direction: column; align-items: center; }
  .center-btns .btn-lg { width: 100%; max-width: 360px; }
}
