/**
 * ========== VARIABILE ȘI RESET ==========
 *
 * @format
 */

:root {
  /* Paletă profesională: slate/charcoal + albastru accent */
  --primary: #0f172a;
  /* Slate 900 */
  --primary-light: #1e293b;
  /* Slate 800 */
  --accent: #2563eb;
  /* Blue 600 */
  --accent-hover: #1d4ed8;
  /* Blue 700 */
  --accent-light: #e0eeff;
  /* Blue 100 */
  --bg-color: #f8fafc;
  /* Slate 50 — fundal neutru */
  --bg-alt: #f1f5f9;
  /* Slate 100 — fundal alternativ */
  --surface: #ffffff;
  /* Alb pur pentru carduri */
  --text-main: #0f172a;
  /* Text principal */
  --text-muted: #475569;
  /* Text secundar */
  --border: #e2e8f0;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.3s ease;
}

/* ========== DARK MODE ========== */
[data-theme="dark"] {
  --primary: #f0f6ff; /* near-white for headings */
  --primary-light: #ffffff;
  --accent: #58a6ff; /* GitHub blue */
  --accent-hover: #388bfd;
  --accent-light: #0c2d6b; /* dark blue container */
  --bg-color: #0d1117; /* canvas */
  --bg-alt: #161b22; /* canvas subtle */
  --surface: #21262d; /* surface — distinct from bg */
  --text-main: #e6edf3;
  --text-muted: #8b949e;
  --border: #30363d;
}

/* Sections that use var(--primary) as dark background — override explicitly */
[data-theme="dark"] .stats-section {
  background: #010409;
}

[data-theme="dark"] .pain-section {
  background: #010409;
}

[data-theme="dark"] .final-cta {
  background: #010409;
}

[data-theme="dark"] .website-offer {
  background-color: #161b22;
  border: 1px solid #30363d;
}

[data-theme="dark"] .website-offer p,
[data-theme="dark"] .website-offer .website-examples-intro,
[data-theme="dark"] .website-offer .website-examples-list {
  color: #cbd5e1;
}

[data-theme="dark"] .website-offer .btn-secondary {
  background-color: #e2e8f0;
  color: #0f172a;
}

[data-theme="dark"] .website-offer .btn-secondary:hover {
  background-color: #fff;
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #161b22 0%, #0c1a2e 100%);
}

[data-theme="dark"] .pricing-card.featured {
  background: #010409;
  border-color: var(--accent);
  box-shadow: 0 20px 60px rgba(88, 166, 255, 0.15);
}

[data-theme="dark"] .pricing-card.featured .pricing-plan-name,
[data-theme="dark"] .pricing-card.featured .pricing-price .amount {
  color: #f0f6ff;
}

[data-theme="dark"] .btn-primary {
  background-color: var(--accent);
}

[data-theme="dark"] .btn-primary:hover {
  background-color: var(--accent-hover);
}

[data-theme="dark"] .scroll-top {
  background: var(--accent);
}

[data-theme="dark"] .step-number {
  background: var(--accent);
}

[data-theme="dark"] .testimonial-quote-mark {
  color: rgba(88, 166, 255, 0.12);
}

[data-theme="dark"] .tablet-mockup {
  background: #0d1117;
}

/* Glow orbs for light sections in dark mode */
[data-theme="dark"] #how-it-works,
[data-theme="dark"] #features,
[data-theme="dark"] #pricing,
[data-theme="dark"] #audience,
[data-theme="dark"] #reports,
[data-theme="dark"] #faq {
  position: relative;
  overflow: hidden;
}

[data-theme="dark"] #how-it-works::before,
[data-theme="dark"] #features::before,
[data-theme="dark"] #pricing::before,
[data-theme="dark"] #audience::before,
[data-theme="dark"] #reports::before,
[data-theme="dark"] #faq::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 0%,
    transparent 65%
  );
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .waitlist-card {
  background: linear-gradient(135deg, #0c1a2e 0%, #0f1f38 100%);
}

[data-theme="dark"] .waitlist-form .btn-waitlist {
  background: var(--accent);
  color: white;
}

[data-theme="dark"] .waitlist-form .btn-waitlist:hover {
  background: var(--accent-hover);
}

[data-theme="dark"] .cookie-banner {
  background: #161b22;
  border-top: 1px solid #30363d;
}

[data-theme="dark"] .scroll-top:hover {
  background: var(--accent-hover);
}

[data-theme="dark"] .btn-secondary {
  background-color: var(--surface);
  color: var(--text-main);
}

[data-theme="dark"] .btn-secondary:hover {
  background-color: var(--bg-alt);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
    sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 3rem 0;
}

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

/* ========== UTILITĂȚI FUNDAL ========== */
.bg-light {
  background-color: var(--bg-color);
}

.bg-surface {
  background-color: var(--surface);
}

.bg-alt {
  background-color: var(--bg-alt);
}

h1,
h2,
h3,
h4 {
  color: var(--primary);
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

/* ========== BUTOANE ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: var(--accent-light);
  color: var(--accent-hover);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--border);
  cursor: default;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-top: 1.25rem;
  justify-content: center;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.hero-trust svg {
  flex-shrink: 0;
  stroke: var(--accent);
}

.btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}

/* ========== HEADER ========== */
header {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: transform 0.3s ease;
}

header.header-hidden {
  transform: translateY(-100%);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

.logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.5rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========== UTILITY CLASSES ========== */
.logo-img {
  border-radius: 7px;
  display: block;
}

.btn-icon {
  margin-right: 0.5rem;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.pricing-save-badge {
  background: var(--accent);
  color: white;
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  vertical-align: middle;
  margin-left: 0.25rem;
}

.pricing-footer-note {
  text-align: center;
  margin-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.website-offer-tagline {
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 500;
}

.cta-download-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-badge-main {
  transform: scale(1.1);
}

.cta-wip-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ========== THEME TOGGLE ========== */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 0;
}

.theme-toggle:hover {
  background-color: var(--bg-alt);
  color: var(--primary);
  border-color: var(--primary);
}

/* ========== LANGUAGE SELECTOR ========== */
.lang-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: 20px;
  height: 38px;
  padding: 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition);
  white-space: nowrap;
}

.lang-toggle:hover {
  background-color: var(--bg-alt);
  color: var(--primary);
  border-color: var(--primary);
}

/* Improve header controls contrast on light theme */
[data-theme="light"] .theme-toggle,
[data-theme="light"] .lang-toggle {
  background-color: #f8fafc;
  border-color: #cbd5e1;
  color: #334155;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08);
}

[data-theme="light"] .theme-toggle:hover,
[data-theme="light"] .lang-toggle:hover {
  background-color: #ffffff;
  border-color: #94a3b8;
  color: #0f172a;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.12);
}

.lang-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  padding: 0.5rem 0.75rem;
  text-align: left;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-primary);
  border-radius: 8px;
  transition: background 0.15s;
}

.lang-option:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.lang-option.active {
  color: var(--primary);
  font-weight: 600;
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  z-index: 200;
  overflow: hidden;
  padding: 4px;
}

.lang-dropdown.open {
  display: block;
}

.lang-selector {
  position: relative;
}

/* ========== NAV MENU DROPDOWN ========== */
.nav-menu {
  position: relative;
  flex-shrink: 0;
}

.nav-menu-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  z-index: 200;
  overflow: hidden;
  padding: 4px;
}

.nav-menu-dropdown.open {
  display: block;
}

.nav-menu-item {
  display: block;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  transition:
    background 0.15s,
    color 0.15s;
  white-space: nowrap;
}

.nav-menu-item:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e0eeff 100%);
  overflow: hidden;
  padding: 3rem 0;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.07) 0%,
    transparent 65%
  );
  top: -200px;
  right: -150px;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.05) 0%,
    transparent 65%
  );
  bottom: -100px;
  left: -50px;
  pointer-events: none;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.hero-content {
  text-align: center;
  max-width: 600px;
}

.hero h1 {
  font-size: 1.875rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.hero-questions {
  margin-top: 1.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.hero-questions-intro {
  font-weight: 650;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.hero-questions ul {
  list-style: none;
  margin: 0 0 0.5rem 0;
  padding: 0;
}

.hero-questions li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.hero-questions li::before {
  content: "?";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.hero-questions-note {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
}

.features-questions {
  max-width: 800px;
  margin: 1.75rem auto 0 auto;
  background-color: var(--surface);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  border: 1px solid var(--border);
}

.features-questions-intro {
  font-weight: 650;
  margin-bottom: 0.75rem;
  color: var(--primary);
  text-align: left;
}

.features-questions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.features-questions li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.features-questions li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.iphone-mockup {
  width: min(280px, 82vw);
  height: auto;
  border: none;
  border-radius: 0;
  background-color: transparent;
  position: relative;
  box-shadow: none;
  margin: 0 auto;
}

.iphone-mockup::before {
  content: none;
}

.iphone-mockup .screen {
  width: 100%;
  height: auto;
  background: transparent;
}

.iphone-screenshot {
  width: 100%;
  height: auto;
  object-fit: unset;
  display: block;
}

/* Theme-aware image switching */
img.theme-img-dark {
  display: none;
}
img.theme-img-light {
  display: block;
}

[data-theme="dark"] img.theme-img-dark {
  display: block;
}
[data-theme="dark"] img.theme-img-light {
  display: none;
}

.device-availability {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== AUDIENCE & PROBLEM ========== */
.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 1.75rem auto;
  font-size: 1.125rem;
}

.tags-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.tag {
  background-color: var(--surface);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
  border: 1px solid var(--border);
}

.problem-card {
  background-color: var(--surface);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
}

.problem-list {
  margin-top: 1.5rem;
}

.problem-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.problem-list li::before {
  content: "✕";
  position: absolute;
  left: 0;
  color: #ef4444;
  /* roșu */
  font-weight: bold;
}

.solution-highlight {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
  text-align: center;
}

/* ========== FEATURES ========== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--surface);
  padding: 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  border-top: 3px solid transparent;
  transition: var(--transition);
}

.feature-card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.08);
  border-color: var(--border);
  border-top-color: var(--accent);
  transform: translateY(-4px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  background-color: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

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

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

/* ========== IMAGINE TEXT SECTIONS (Reports + Security) ========== */
.split-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

.split-content h2 {
  font-size: 1.375rem;
  margin-bottom: 0.75rem;
}

ul.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-muted);
}

ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
  background: var(--accent-light);
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
}

.placeholder-box {
  background: var(--surface);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  padding: 2rem;
}

/* report screenshot now folosește același cadru .iphone-mockup + .iphone-screenshot ca în hero */

/* ========== DISPOZITIVE APPLE (iPhone, iPad, Mac) ========== */
.devices-section {
  /* padding handled by .section-padding */
}

.devices-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.devices-text .section-title {
  margin-bottom: 0.75rem;
}

.devices-text .section-subtitle {
  margin-bottom: 1.75rem;
}

.devices-text .check-list {
  list-style: none;
  padding-left: 0;
  text-align: left;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.devices-text .check-list li {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  justify-content: start;
  column-gap: 0.75rem;
  margin-bottom: 1rem;
  padding-left: 0;
  text-align: left;
}

.devices-text .check-list li::before {
  position: static;
  flex-shrink: 0;
  align-self: start;
  margin-top: 0.15rem;
}

.devices-mockup {
  width: 90%;
  max-width: 90vw;
  margin: 0 auto;
}

.devices-placeholder {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.devices-placeholder span {
  display: inline-block;
  max-width: 260px;
}

.tablet-mockup {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: #1a1a2e;
  border-radius: 28px;
  padding: 18px 22px;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

/* camera dot — dreapta, centrat vertical (landscape) */
.tablet-mockup::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: #2d2d44;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #111;
}

.tablet-screen {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: #000;
}

.tablet-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* ========== DEMO OFFER ========== */
.demo-offer {
  background: linear-gradient(
    135deg,
    var(--accent-light) 0%,
    var(--bg-alt) 100%
  );
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
}

.demo-offer-icon {
  width: 64px;
  height: 64px;
  background-color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  color: white;
}

.demo-offer h2 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.demo-offer p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.125rem;
}

.demo-offer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.demo-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background-color: var(--surface);
  color: var(--primary);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.demo-badge svg {
  color: var(--accent);
  flex-shrink: 0;
}

.demo-cta {
  padding: 0.75rem 1.4rem;
  font-size: 0.95rem;
  line-height: 1.3;
  max-width: 320px;
  width: 100%;
  margin: 0 auto;
}

.demo-cta svg {
  fill: none;
}

/* ========== WEBSITE OFFER ========== */
.website-offer {
  background-color: var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.4);
}

.website-offer h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.website-offer p {
  color: var(--border);
  max-width: 600px;
  margin: 0 auto 2rem auto;
  font-size: 1.125rem;
}

.website-offer .website-examples-intro {
  font-size: 1.05rem;
  color: #e2e8f0;
  margin: 0 auto 0.5rem auto;
  max-width: 600px;
}

.website-offer .website-examples-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 1.75rem auto;
  max-width: 600px;
  color: #e2e8f0;
  font-size: 1rem;
}

.website-offer .website-examples-list li {
  margin-bottom: 0.35rem;
}

.website-offer .website-examples-list a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.website-offer .website-examples-list a:hover {
  color: #f1f5f9;
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--primary);
  background-color: var(--bg-alt);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.btn:disabled:hover {
  transform: none;
  box-shadow: none;
  background-color: var(--primary);
}

.btn-outline:disabled:hover {
  background-color: transparent;
  border-color: var(--border);
}

.btn-secondary {
  background-color: white;
  color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--bg-color);
  transform: translateY(-2px);
}

.tag-inline {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  background: var(--accent-light);
  color: var(--accent-hover);
  border-radius: 4px;
  padding: 0.1rem 0.4rem;
  vertical-align: middle;
  margin-left: 0.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ========== FAQ ========== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
  background-color: var(--bg-color);
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-muted);
}

.faq-item.active {
  border-color: var(--accent);
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

/* ========== FINAL CTA & FOOTER ========== */
.final-cta {
  text-align: center;
  padding: 5rem 0;
  background: var(--primary);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.2) 0%,
    transparent 65%
  );
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: 1.75rem;
  color: white;
  margin-bottom: 1rem;
}

.final-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .cta-wip-note {
  color: rgba(255, 255, 255, 0.4);
}

footer {
  background-color: var(--surface);
  padding: 2rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 2;
  margin-top: auto;
}

/* ========== SCROLL ANIMATIONS ========== */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-animate].in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ========== HERO FLOAT + GRADIENT + PULSE ========== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero .iphone-mockup {
  animation: float 4s ease-in-out infinite;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, #818cf8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.2);
  }
  50% {
    box-shadow:
      0 4px 24px rgba(79, 70, 229, 0.5),
      0 0 0 7px rgba(79, 70, 229, 0.12);
  }
}

.btn-pulse {
  animation: pulse-glow 2.5s ease-in-out infinite;
}

/* ========== STATS SECTION ========== */
.stats-section {
  background: var(--primary);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.18) 0%,
    transparent 65%
  );
  top: -350px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: white;
  line-height: 1;
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
  position: relative;
}

.step {
  text-align: center;
  padding: 2.5rem 1.75rem;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.step:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.08);
  transform: translateY(-3px);
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: white;
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35);
  position: relative;
  z-index: 2;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.step p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
}

/* ========== NAV LINKS ========== */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  gap: 0;
  z-index: 99;
}

.nav-links.open {
  display: flex;
}

.nav-links a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.nav-links a:last-child {
  border-bottom: none;
}

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

.nav-links .nav-cta {
  color: var(--accent);
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========== SCROLL TO TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
  z-index: 998;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.scroll-top:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}

/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.9;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-actions .btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

.cookie-actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: white;
}

.cookie-actions .btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

/* ========== TEXT BLOCK (legal pages) ========== */
.text-block {
  margin-bottom: 2rem;
}

.text-block h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.text-block p,
.text-block li {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}

.text-block ul {
  padding-left: 1.25rem;
}

.text-block a {
  color: var(--accent);
}

.nav-download-btn {
  display: none;
}

.nav-menu-lang-section {
  display: block;
}

.nav-menu-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 2px;
}

.nav-menu-mobile-only {
  display: none;
}

.nav-menu-theme-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  color: var(--text-muted);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-menu-theme-btn:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.nav-menu-mobile-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.5rem;
}

.nav-menu-control-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}

.nav-menu-lang-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.35rem;
  padding: 0.4rem;
}

.nav-lang-chip {
  text-align: center;
  padding: 0.45rem 0.3rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* ========== RESPONSIVE DESIGN (DESKTOP) ========== */
@media (min-width: 768px) {
  .nav-download-btn {
    display: inline-flex;
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .nav-links {
    display: flex;
    flex-direction: row;
    position: static;
    transform: none;
    border: none;
    padding: 0;
    gap: 0.25rem;
    align-items: center;
    background: transparent;
    margin-left: auto;
  }

  .nav-links a {
    font-size: 0.9rem;
    padding: 0.4rem 0.75rem;
    border-bottom: none;
    border-radius: 6px;
  }

  .nav-links .nav-cta {
    background: var(--accent);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
  }

  .nav-links .nav-cta:hover {
    background: var(--accent-hover);
    color: white;
  }

  .hamburger {
    display: none;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
  }

  .cookie-banner p {
    max-width: 70%;
  }

  .btn-group {
    flex-direction: row;
    align-items: center;
  }

  .iphone-mockup {
    width: 320px;
    height: auto;
    margin: 0 auto;
  }

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

  .split-section {
    grid-template-columns: 1fr 1fr;
  }

  .split-section.reverse .split-content {
    order: 2;
  }

  .split-section.reverse .placeholder-box {
    order: 1;
  }

  .section-padding {
    padding: 5rem 0;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    margin-bottom: 3rem;
  }

  .hero {
    padding: 4rem 0 6rem 0;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .split-section {
    gap: 3rem;
    margin-bottom: 5rem;
  }

  .split-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .features-questions {
    margin-top: 3rem;
  }

  .final-cta {
    padding: 8rem 0;
  }

  .final-cta h2 {
    font-size: 2.5rem;
  }

  .problem-card {
    padding: 2.5rem;
  }
}

@media (max-width: 480px) {
  .demo-cta {
    padding: 0.7rem 1.1rem;
    font-size: 0.92rem;
    max-width: 290px;
  }
}

/* Header behavior under 550px: keep one row, move theme/lang into menu */
@media (max-width: 550px) {
  .nav-container {
    height: 70px;
    flex-wrap: nowrap;
    row-gap: 0;
    padding-top: 0;
    padding-bottom: 0;
  }

  .logo {
    width: auto;
    font-size: 1.05rem;
    line-height: 1.2;
  }

  .header-controls {
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
  }

  .header-controls > #theme-toggle,
  .header-controls > .lang-selector {
    display: none;
  }

  .nav-menu-mobile-only {
    display: block;
  }
}

/* SVGs in buttons */
.btn svg {
  margin-right: 0.5rem;
  fill: none;
}

/* ========== GOOGLE PLAY BADGE ========== */
.google-play-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000;
  color: #fff;
  border-radius: 10px;
  padding: 10px 20px;
  text-decoration: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  border: 1px solid #333;
  width: fit-content;
}

.google-play-badge:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.google-play-badge svg {
  flex-shrink: 0;
  margin-right: 0;
  fill: white;
}

.google-play-badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  text-align: left;
}

.google-play-badge-text span:first-child {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.85;
}

.google-play-badge-text span:last-child {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ========== PRICING SECTION ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.25);
  transform: scale(1.02);
}

.pricing-card.featured .pricing-plan-name,
.pricing-card.featured .pricing-price .amount,
.pricing-card.featured .pricing-price .free-label {
  color: white;
}

.pricing-card.featured .pricing-trial {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.75);
}

.pricing-card.featured .pricing-features li::before {
  color: #93c5fd;
}

.pricing-card.featured .pricing-features li.unavailable {
  opacity: 0.3;
}

.pricing-card.featured .pricing-divider {
  border-color: rgba(255, 255, 255, 0.12);
}

.pricing-card.featured .pricing-price .period {
  color: rgba(255, 255, 255, 0.55);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-plan-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin-bottom: 0.5rem;
}

.pricing-price .amount {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-price .period {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-left: 0.25rem;
}

.pricing-price .free-label {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary);
}

.pricing-trial {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.pricing-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1.25rem 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.pricing-features li.unavailable {
  opacity: 0.4;
}

.pricing-features li.unavailable::before {
  content: "–";
  color: var(--text-muted);
}

.pricing-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.5rem;
}

/* ========== WAITLIST SECTION ========== */
.waitlist-card {
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.25);
  position: relative;
  overflow: hidden;
}

.waitlist-card::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.2) 0%,
    transparent 65%
  );
  top: -250px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.waitlist-card h2 {
  color: white;
  margin-bottom: 0.75rem;
}

.waitlist-card p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 2rem auto;
  font-size: 1.05rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 460px;
  margin: 0 auto;
}

.waitlist-form input[type="email"] {
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 1rem;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  width: 100%;
}

.waitlist-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.waitlist-form input[type="email"]:focus {
  border-color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.2);
}

.waitlist-form .btn-waitlist {
  background: white;
  color: var(--primary);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.875rem 1.75rem;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}

.waitlist-form .btn-waitlist:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.waitlist-privacy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 1.25rem;
}

/* ========== PAIN SECTION ========== */
.pain-section {
  background: var(--primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.pain-section::before {
  content: "";
  position: absolute;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.13) 0%,
    transparent 60%
  );
  top: -300px;
  right: -150px;
  pointer-events: none;
}

.pain-section::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(88, 101, 242, 0.08) 0%,
    transparent 60%
  );
  bottom: -200px;
  left: -80px;
  pointer-events: none;
}

.pain-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pain-title {
  color: white;
  text-align: center;
  font-size: 1.75rem;
  font-weight: 800;
  max-width: 680px;
  margin: 0 auto 3rem auto;
  line-height: 1.25;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.pain-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}

.pain-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.pain-num {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.pain-icon {
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.pain-card h3 {
  color: white;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.35;
}

.pain-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0 0 1.25rem 0;
}

.pain-blur-answer {
  font-size: 1.4rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.2);
  letter-spacing: 0.05em;
}

.pain-blur-answer span {
  filter: blur(6px);
  display: inline-block;
}

.pain-resolution {
  margin-top: 3rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.5rem;
}

.pain-resolution p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2rem;
  background: var(--accent);
  color: white;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.4);
}

.btn-accent:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 99, 235, 0.5);
}

/* ========== HERO ADDITIONS ========== */
.hero-badge-row {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-ios-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  align-self: center;
}

/* ========== SECTION EYEBROW ========== */
.section-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ========== BEFORE / AFTER ========== */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.before-col,
.after-col {
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.before-col {
  background-color: var(--bg-alt);
  border: 1px solid var(--border);
}

.after-col {
  background-color: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 30px rgba(79, 70, 229, 0.1);
}

.before-after-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}

.before-label {
  color: var(--text-muted);
}

.after-label {
  color: var(--accent);
}

.ba-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ba-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.ba-list li p {
  margin: 0.2rem 0 0 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.ba-list li strong {
  color: var(--text-main);
  font-size: 0.95rem;
}

.ba-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.ba-icon-no {
  background-color: rgba(239, 68, 68, 0.12);
  color: #ef4444;
}

.ba-icon-yes {
  background-color: rgba(37, 99, 235, 0.12);
  color: var(--accent);
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.testimonial-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.testimonial-quote-mark {
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-light);
  font-family: Georgia, serif;
  font-weight: 700;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  user-select: none;
}

[data-theme="dark"] .testimonial-quote-mark {
  color: rgba(129, 140, 248, 0.15);
}

.testimonial-quote {
  color: var(--text-main);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
  font-style: italic;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  gap: 1rem;
}

.testimonial-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--text-main);
  font-size: 0.9rem;
  font-style: normal;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: normal;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .waitlist-form {
    flex-direction: row;
  }

  .waitlist-form input[type="email"] {
    flex: 1;
  }

  .before-after-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .pain-title {
    font-size: 2.25rem;
  }

  /* Steps connector line */
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps-grid::after {
    content: "";
    position: absolute;
    top: 27px;
    left: calc(100% / 6);
    right: calc(100% / 6);
    height: 2px;
    background: linear-gradient(
      90deg,
      var(--accent),
      var(--accent-light),
      var(--accent)
    );
    opacity: 0.3;
    z-index: 0;
  }

  /* Hero desktop */
  .hero-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }

  .hero-content {
    text-align: left;
    max-width: 560px;
    flex-shrink: 0;
  }

  .hero-trust {
    justify-content: flex-start;
  }

  .hero-badge-row {
    justify-content: flex-start;
  }

  /* Pricing featured card scale fix */
  .pricing-card.featured {
    transform: scale(1.03);
  }

  /* Final CTA bigger headline */
  .final-cta h2 {
    font-size: 3rem;
  }
}
