/* ============================================
   AhorrApp Landing — Bold Fresh Editorial
   ============================================ */

:root {
  --bg: #FAFAF8;
  --bg-dark: #0B1D14;
  --text: #111810;
  --text-muted: #5A6B5E;
  --accent: #1D9E75;
  --accent-light: #2BC48E;
  --accent-glow: rgba(29, 158, 117, 0.25);
  --lime: #A8F06A;
  --surface: #FFFFFF;
  --surface-alt: #F0F4F1;
  --border: rgba(17, 24, 16, 0.08);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --font-display: 'Bricolage Grotesque', serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

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

/* ============ NAVBAR ============ */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(250, 250, 248, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.navbar:not(.scrolled) .nav-logo { color: #fff; }

.logo-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

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

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

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.navbar.scrolled .nav-links a { color: var(--text-muted); }
.nav-links a:hover { color: #fff; }
.navbar.scrolled .nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: transform 0.3s var(--transition), box-shadow 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

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

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.navbar.scrolled .nav-hamburger span { background: var(--text); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
  z-index: 99;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  border-bottom: 1px solid var(--border);
}

.mobile-menu a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
}

.mobile-menu .nav-cta {
  text-align: center;
  margin-top: 8px;
}

.mobile-menu.open { display: flex; }

/* ============ HERO ============ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: 120px 0 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.6;
}

.hero-blob--1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -20%;
  right: -10%;
  animation: blobFloat 20s ease-in-out infinite;
}

.hero-blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #1a5c3f 0%, transparent 70%);
  bottom: -10%;
  left: -5%;
  animation: blobFloat 25s ease-in-out infinite reverse;
}

.hero-blob--3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  top: 40%;
  left: 30%;
  opacity: 0.2;
  animation: blobFloat 15s ease-in-out infinite;
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-badge strong { color: #fff; }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero-highlight {
  position: relative;
  display: inline-block;
  color: var(--lime);
}

.hero-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 12px;
  background: var(--accent);
  opacity: 0.4;
  border-radius: 4px;
  z-index: -1;
  transform: skewX(-3deg);
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}

.hero-sub strong { color: var(--lime); font-weight: 600; }

/* Forms */
.form-row {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.hero-form input, .cta-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.3s ease, background 0.3s ease;
  outline: none;
}

.hero-form input::placeholder, .cta-form input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.hero-form input:focus, .cta-form input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.hero-form button, .cta-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s var(--transition);
}

.hero-form button:hover, .cta-form button:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px var(--accent-glow);
}

.btn-arrow {
  display: flex;
  transition: transform 0.3s var(--transition);
}

.hero-form button:hover .btn-arrow, .cta-form button:hover .btn-arrow {
  transform: translateX(4px);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.form-row-inline {
  display: flex;
  gap: 8px;
}

.form-row-inline input[name="postal_code"] {
  max-width: 140px;
  flex: 0 0 auto;
}

.form-micro {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.form-micro--light { color: rgba(255,255,255,0.4); }

/* Phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 280px;
  background: var(--surface);
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
  z-index: 2;
  animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.phone-notch {
  width: 120px;
  height: 28px;
  background: var(--bg-dark);
  border-radius: 100px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: var(--surface-alt);
  border-radius: 24px;
  padding: 20px 16px;
  min-height: 420px;
}

.phone-header {
  margin-bottom: 16px;
}

.phone-greeting {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.phone-title {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.phone-card {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.phone-product {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
}

.phone-product + .phone-product { border-top: 1px solid var(--border); }

.product-emoji { font-size: 24px; }

.product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.product-brand {
  font-size: 11px;
  color: var(--text-muted);
}

.product-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
}

.phone-comparison {
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.comparison-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
}

.comparison-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.comparison-winner {
  background: linear-gradient(135deg, rgba(29, 158, 117, 0.08), rgba(168, 240, 106, 0.08));
  border: 1px solid rgba(29, 158, 117, 0.2);
  border-radius: var(--radius-xs);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.super-icon {
  width: 10px;
  height: 10px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

.winner-badge {
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  background: var(--accent);
  color: #fff;
  padding: 2px 5px;
  border-radius: 100px;
  white-space: nowrap;
}

.winner-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  flex: 1;
}

.winner-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 800;
  color: var(--accent);
}

.comparison-other {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  gap: 8px;
}

.other-name {
  font-size: 12px;
  color: var(--text-muted);
  flex: 1;
}

.other-price {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.6;
}

.phone-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(80px);
  opacity: 0.3;
  z-index: 1;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.hero-scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.3);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  50.1% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============ LOGOS MARQUEE ============ */

.logos-section {
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.logos-label {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.logos-label strong { color: var(--text); }

.logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logos-track {
  display: flex;
  gap: 12px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

.logo-item {
  flex-shrink: 0;
  padding: 8px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  white-space: nowrap;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  height: 28px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease;
}

.logo-item:hover {
  border-color: var(--accent);
}

.logo-item:hover img {
  filter: grayscale(0%) opacity(1);
}

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

/* ============ PROBLEM SECTION ============ */

.problem-section {
  padding: 120px 0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 6px 14px;
  background: rgba(29, 158, 117, 0.08);
  border-radius: 100px;
}

.section-tag--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--lime);
}

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--text);
  margin-bottom: 16px;
}

.problem-text p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.pain-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.pain-list li {
  position: relative;
  padding: 8px 0 8px 28px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-muted);
}

.pain-list li::before {
  content: "\2717";
  position: absolute;
  left: 0;
  color: #e74c3c;
  font-weight: 700;
  font-size: 16px;
}

.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.4s var(--transition);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.stat-card:first-child {
  grid-column: 1 / -1;
}

.stat-card--accent {
  background: var(--accent);
  border-color: transparent;
}

.stat-card--accent .stat-number,
.stat-card--accent .stat-label { color: #fff; }

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ============ STEPS ============ */

.steps-section {
  padding: 120px 0;
  background: var(--surface-alt);
}

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

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text);
}

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

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--transition);
}

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

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

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--surface-alt);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -3px;
}

.step-icon {
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

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

/* ============ BENEFITS ============ */

.benefits-section {
  padding: 120px 0;
}

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

.benefit-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: rgba(29, 158, 117, 0.2);
}

.benefit-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

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

.benefit-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.coming-soon {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  background: rgba(29, 158, 117, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.02em;
}

/* ============ SOCIAL PROOF ============ */

.social-section {
  padding: 80px 0;
  background: var(--surface-alt);
}

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

.social-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.social-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
}

.social-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
}

.author-name {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.author-loc {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============ CTA SECTION ============ */

.cta-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background: var(--bg-dark);
}

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

.cta-blob--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -30%;
  left: -10%;
  opacity: 0.4;
}

.cta-blob--2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 70%);
  bottom: -20%;
  right: -5%;
  opacity: 0.15;
}

.cta-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}

.cta-content > p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
  line-height: 1.6;
}

.cta-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  text-align: left;
  display: inline-block;
}

.cta-perks li {
  position: relative;
  padding: 6px 0 6px 28px;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.cta-perks li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 700;
  font-size: 16px;
}

.cta-perks li strong {
  color: #fff;
}

.cta-form {
  margin-bottom: 32px;
}

.cta-form .form-row {
  max-width: 480px;
  margin: 0 auto 12px;
}

.cta-counter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

.counter-avatars {
  display: flex;
}

.c-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text);
  margin-left: -8px;
  border: 2px solid var(--bg-dark);
}

.c-avatar:first-child { margin-left: 0; }

/* ============ FOOTER ============ */

.footer {
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-brand .logo-text {
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

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

/* ============ TOAST ============ */

.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  z-index: 200;
  transition: transform 0.5s var(--transition);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============ REVEAL ANIMATIONS ============ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}

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

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

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }

  .hero-sub { margin: 0 auto 32px; }
  .hero-form { max-width: 480px; margin: 0 auto; }

  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .social-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

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

  .hero { padding: 100px 0 40px; }
  .hero h1 { font-size: 36px; }

  .form-row { flex-direction: column; }
  .form-row-inline { flex-direction: column; }
  .form-row-inline input[name="postal_code"] { max-width: none; }

  .phone-mockup { width: 240px; }
  .phone-screen { min-height: 360px; padding: 16px 12px; }

  .problem-section, .steps-section, .benefits-section, .cta-section { padding: 80px 0; }

  .benefits-grid { grid-template-columns: 1fr; }

  .stat-number { font-size: 36px; }

  .footer-inner { flex-direction: column; gap: 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 80px 0 32px; min-height: auto; }
  .hero h1 { font-size: 30px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  .hero-badge { font-size: 12px; }
}
