/* ===== AnLTracker Landing Page — Fresh Design ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --primary: #3b82f6;
  --primary-dark: #1e40af;
  --primary-light: #dbeafe;
  --bg: #f8fafc;
  --bg-alt: #f1f5f9;
  --bg-dark: #1e293b;
  --text: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --white: #fff;
  --border: #e2e8f0;
  --red: #ef4444;
  --gold: #f59e0b;
  --success: #22c55e;
  --radius: 16px;
  --radius-lg: 20px;
  --shadow: 0 1px 3px rgba(0,0,0,0.04), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-lg: 0 4px 6px rgba(0,0,0,0.04), 0 10px 30px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
}
.logo span { color: var(--primary); }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-signin {
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
}
.nav-signin:hover { color: var(--text); }

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: 9999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 14px rgba(59,130,246,0.35);
  transform: translateY(-1px);
}
.btn-large { padding: 14px 36px; font-size: 1rem; }
.btn-outline-cta {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-cta:hover { background: var(--primary-light); box-shadow: none; transform: none; }
.btn-white {
  background: var(--white);
  color: var(--primary-dark);
}
.btn-white:hover { background: #f0f7ff; box-shadow: 0 4px 20px rgba(255,255,255,0.3); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #eaf3ff 0%, #f4f7ff 50%, #ffffff 100%);
}

/* Two-column flex row */
.hero-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

/* ── Left column: text ── */
.hero-text {
  flex: 0 0 420px;
  max-width: 420px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 9999px;
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 3.4rem;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #6366f1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 460px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.btn-ghost-hero {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
}
.btn-ghost-hero:hover { color: var(--primary); }

/* ── Right column: image ── */
.hero-image-wrap {
  flex: 1;
  min-width: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Soft radial glow behind image */
.hero-image-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(ellipse at center, rgba(59,130,246,0.14) 0%, rgba(99,102,241,0.07) 45%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-img {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(59,130,246,0.12),
    0 32px 80px rgba(59,130,246,0.12);
  animation: heroFloat 7s ease-in-out infinite;
  will-change: transform;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(0.3deg); }
  66%       { transform: translateY(-5px) rotate(-0.2deg); }
}

/* Floating stat badges on top of image */
.hero-badge-float {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  font-size: 0.8rem;
  white-space: nowrap;
}
.hero-badge-tl { top: 10%; left: -6%; animation: badgeFloat1 7s ease-in-out infinite; }
.hero-badge-br { bottom: 12%; right: -4%; animation: badgeFloat2 7s ease-in-out infinite; }

@keyframes badgeFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes badgeFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hbf-icon { font-size: 1.3rem; line-height: 1; }
.hbf-val { font-weight: 700; font-size: 0.88rem; color: var(--text); }
.hbf-label { font-size: 0.68rem; color: var(--text-muted); margin-top: 1px; }

/* Large ambient glow behind everything */
.hero-glow {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(99,102,241,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* ===== STATS STRIP ===== */
.stats-strip {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}
.stats-strip .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  font-family: 'Nunito', sans-serif;
  color: var(--text);
}
.stat-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}
.section-heading {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  text-align: center;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ===== FEATURE PILLARS ===== */
.pillars {
  padding: 100px 0;
  background: var(--bg);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}
.pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.pillar-featured {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow);
}
.pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pillar-card h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.pillar-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.pillar-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pillar-features li {
  font-size: 0.82rem;
  color: var(--text-secondary);
  padding-left: 20px;
  position: relative;
}
.pillar-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

/* ===== DASHBOARD PREVIEW ===== */
.preview-section {
  padding: 100px 0;
  background: var(--white);
}
.preview-window {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  margin-top: 48px;
}
.preview-bar {
  background: var(--bg-alt);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.preview-dots { display: flex; gap: 6px; }
.preview-dots span { width: 12px; height: 12px; border-radius: 50%; }
.preview-dots span:nth-child(1) { background: #ff5f57; }
.preview-dots span:nth-child(2) { background: #febc2e; }
.preview-dots span:nth-child(3) { background: #28c840; }
.preview-url {
  flex: 1;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--white);
  padding: 4px 16px;
  border-radius: 6px;
}
.preview-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 320px;
}
.preview-sidebar {
  background: var(--bg);
  padding: 16px 12px;
  border-right: 1px solid var(--border);
}
.ps-logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  padding: 0 8px 16px;
  color: var(--text);
}
.ps-item {
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.ps-item.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
}
.preview-main { padding: 20px; }
.preview-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}
.ps-card {
  background: var(--bg);
  border-radius: 12px;
  padding: 14px;
}
.ps-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.ps-value { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.ps-change { font-size: 0.7rem; font-weight: 600; }
.ps-change.positive { color: var(--success); }
.ps-sub { font-size: 0.7rem; color: var(--text-muted); }
.preview-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.pc-chart {
  background: var(--bg);
  border-radius: 12px;
  padding: 16px;
}
.pc-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.pc-bars { display: flex; flex-direction: column; gap: 8px; }
.pc-bar-row {
  display: grid;
  grid-template-columns: 70px 1fr 30px;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}
.pc-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.pc-bar div { height: 100%; border-radius: 3px; }
.pc-cashflow { display: flex; flex-direction: column; gap: 10px; }
.pc-cf-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.pc-cf-item:last-child { border-bottom: none; }
.pc-cf-item.saved { font-weight: 600; }
.positive { color: var(--success); }
.negative { color: var(--red); }

/* ===== HOW IT WORKS — TIMELINE ===== */
.how-section {
  padding: 100px 0;
  background: var(--bg);
}
.timeline {
  max-width: 600px;
  margin: 48px auto 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 2;
}
.timeline-content { padding-top: 8px; }
.timeline-content h3 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== COMPARISON TABLE ===== */
.compare-section {
  padding: 100px 0;
  background: var(--white);
}
.compare-table-wrap {
  max-width: 800px;
  margin: 0 auto;
  overflow-x: auto;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.compare-table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.compare-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}
.compare-table .highlight-col {
  background: rgba(59,130,246,0.04);
  color: var(--primary-dark);
  font-weight: 600;
}
.compare-table th.highlight-col {
  color: var(--primary);
  border-bottom-color: var(--primary);
}
.compare-table tbody tr:hover { background: var(--bg); }

/* ===== PRICING ===== */
.pricing-section {
  padding: 100px 0;
  background: var(--bg);
}
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 48px auto 0;
}
.price-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.price-card-pro {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px var(--primary), var(--shadow-lg);
}
.price-popular {
  position: absolute;
  top: -14px;
  right: 24px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  letter-spacing: 0.05em;
}
.price-tag {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--text);
}
.price-amount {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.price-amount span {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--text-muted);
}
.price-amount del {
  font-size: 1rem;
  color: var(--red);
  margin-right: 6px;
}
.price-desc {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.price-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.price-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.price-card li svg { flex-shrink: 0; }
.price-card .btn-cta { width: 100%; text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.t-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.t-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 12px;
}
.t-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  font-style: italic;
}
.t-author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.t-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
}
.t-author strong { display: block; font-size: 0.85rem; }
.t-author span { font-size: 0.75rem; color: var(--text-muted); }

/* ===== FAQ ===== */
.faq-section {
  padding: 100px 0;
  background: var(--bg);
}
.faq-list {
  max-width: 680px;
  margin: 48px auto 0;
}
.faq-item {
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}
.faq-icon {
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: transform 0.3s;
  font-weight: 300;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p {
  padding: 0 24px 18px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== CTA ===== */
.cta-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #6366f1);
  text-align: center;
  color: var(--white);
}
.cta-section h2 {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 12px;
}
.cta-section p {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 28px;
}
.cta-note {
  display: block;
  margin-top: 16px;
  font-size: 0.82rem;
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 0 24px;
  background: var(--bg-dark);
  color: #cbd5e1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 32px;
}
.footer-brand .logo { color: #fff; margin-bottom: 8px; display: inline-block; }
.footer-brand .logo span { color: #60a5fa; }
.footer-brand p { font-size: 0.85rem; color: #64748b; }
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: #94a3b8;
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #334155;
  font-size: 0.8rem;
  color: #64748b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== RESPONSIVE ===== */

/* Tablet: stack hero at 900px */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column-reverse;
    gap: 40px;
    padding: 0 24px;
  }
  .hero-text {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
  .hero-sub { margin: 0 auto 32px; max-width: 560px; }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { width: 100%; max-width: 600px; }
  .hero-badge-tl { top: 8%; left: 0%; }
  .hero-badge-br { bottom: 8%; right: 0%; }
  .hero { padding: 100px 0 60px; }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions { display: none; }
  .hamburger { display: flex; }
  .navbar.menu-open .nav-links,
  .navbar.menu-open .nav-actions {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
    gap: 12px;
    z-index: 99;
  }
  .hero h1 { font-size: 2.2rem; }
  .hero { padding: 100px 0 50px; }
  .pillars-grid { grid-template-columns: 1fr; }
  .preview-body { grid-template-columns: 1fr; }
  .preview-sidebar { display: none; }
  .preview-stats { grid-template-columns: 1fr 1fr; }
  .preview-charts { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .section-heading { font-size: 1.7rem; }
  .stats-strip .container { gap: 20px; }
  .stat-item strong { font-size: 1.3rem; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .compare-table { font-size: 0.8rem; }
  .compare-table th, .compare-table td { padding: 10px 12px; }
  .cta-section h2 { font-size: 1.6rem; }
  /* Hide floating badges on small screens — avoid overlap */
  .hero-badge-float { display: none; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .preview-stats { grid-template-columns: 1fr; }
  .stats-strip .container { flex-direction: column; gap: 16px; }
  .hero-trust { gap: 12px; }
}
