/* ===========================
   Le-vo Landing Page
   =========================== */

:root {
  --base-1: #234322;
  --base-dark: #1d6b1b;
  --base-light: #e8f5e8;
  --base-lighter: #f2faf2;
  --accent: #234322;
  --text-primary: #111827;
  --text-secondary: #6b7280;
  --text-muted: #9ca3af;
  --bg: #ffffff;
  --bg-alt: #f9fafb;
  --border: #e5e7eb;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 40px rgba(0,0,0,0.12);
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--base-1);
  color: #fff;
  border-color: var(--base-1);
}
.btn--primary:hover { background: var(--base-dark); border-color: var(--base-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(39,130,37,0.35); }
.btn--outline {
  background: transparent;
  color: var(--base-1);
  border-color: var(--base-1);
}
.btn--outline:hover { background: var(--base-light); }
.btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border-color: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.25); }
.btn--lg { padding: 16px 32px; font-size: 16px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 70px;
}
.nav__logo img {
  height: 120px;
  width: auto;
  transition: filter var(--transition);
}
.nav__links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
}
.nav__links a:hover { color: #fff; }
.nav.scrolled .nav__links a { color: var(--text-secondary); }
.nav.scrolled .nav__links a:hover { color: var(--base-1); }
.nav__actions { display: flex; gap: 10px; margin-left: 24px; }
/* ===== LANG SWITCHER ===== */
.lang-switcher { position: relative; }
.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 22px;
  height: 47px;
  border-radius: 999px;
  border: 2px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.15);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  box-sizing: border-box;
}
.lang-switcher__btn:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.25); }
.nav.scrolled .lang-switcher__btn {
  border-color: var(--border);
  background: var(--bg);
  color: var(--text-primary);
}
.nav.scrolled .lang-switcher__btn:hover { border-color: var(--base-1); color: var(--base-1); }
.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  overflow: hidden;
  min-width: 160px;
  z-index: 200;
}
.lang-switcher__dropdown button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 16px;
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
  text-align: left;
}
.lang-switcher__dropdown button:hover { background: var(--bg-alt); color: var(--text-primary); }
.lang-switcher__dropdown button.active { color: var(--base-1); font-weight: 700; background: var(--base-lighter); }

/* Nav buttons — transparent hero mode */
.btn--nav-signin {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  padding: 0 22px;
  height: 47px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
  box-sizing: border-box;
}
.btn--nav-signin:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.9); }
.nav.scrolled .btn--nav-signin { color: var(--text-primary); border-color: var(--border); }
.nav.scrolled .btn--nav-signin:hover { background: var(--bg-alt); }

.btn--nav-signup {
  background: #fff;
  color: var(--base-1);
  border: 2px solid #fff;
  border-radius: 999px;
  padding: 0 22px;
  height: 47px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition);
  box-sizing: border-box;
}
.btn--nav-signup:hover { background: rgba(255,255,255,0.88); transform: translateY(-1px); }
.nav.scrolled .btn--nav-signup {
  background: var(--base-1);
  color: #fff;
  border-color: var(--base-1);
}
.nav.scrolled .btn--nav-signup:hover { background: var(--base-dark); border-color: var(--base-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(39,130,37,0.35); }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav__burger span { background: var(--text-primary); }

/* ===== HERO ===== */
.hero {
  background: var(--base-1);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Center content */
.hero__center {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 580px;
  padding: 100px 24px 80px;
  margin: 0 auto;
}

/* Brand logo centered */
.hero__brand-logo {
  height: 156px;
  width: auto;
  margin: 0 auto 28px;
  display: block;
}

/* Title */
.hero__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero__title .accent { color: #a8e6a6; }

/* Eyebrow repurposed as subtitle */
.hero__eyebrow {
  display: block;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 32px;
  letter-spacing: 0;
  text-transform: none;
  background: none;
  padding: 0;
  border-radius: 0;
}

/* Search bar */
.hero__search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  padding: 6px 6px 6px 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  margin-bottom: 16px;
  gap: 10px;
  width: 100%;
}
.hero__search-icon {
  width: 20px;
  height: 20px;
  color: #9ca3af;
  flex-shrink: 0;
}
.hero__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text-primary);
  background: transparent;
  min-width: 0;
  font-family: inherit;
}
.hero__search-input::placeholder { color: var(--text-muted); }
.hero__search-btn {
  width: 46px;
  height: 46px;
  background: var(--base-1);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  flex-shrink: 0;
  transition: background var(--transition);
}
.hero__search-btn:hover { background: var(--base-dark); }

/* Save link */
.hero__save-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 500;
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 999px;
  padding: 9px 22px;
  transition: all var(--transition);
  background: rgba(255,255,255,0.08);
}
.hero__save-link:hover { background: rgba(255,255,255,0.18); color: #fff; border-color: rgba(255,255,255,0.7); }

/* Food decorations (absolute, left & right) */
.hero__deco {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38%;
  z-index: 1;
  pointer-events: none;
}
.hero__deco--left { left: 0; }
.hero__deco--right { right: 0; }

/* Posições individuais dos pratos */
.hero__deco--left .food-plate--bowl {
  position: absolute;
  top: 10%;
  left: -80px;
}
.hero__deco--left .food-plate--salad {
  position: absolute;
  bottom: 8%;
  left: -60px;
}
.hero__deco--right .food-plate--taco {
  position: absolute;
  top: 8%;
  right: -80px;
}
.hero__deco--right .food-plate--chips {
  position: absolute;
  bottom: 6%;
  right: -100px;
}

/* Phone mockup */
.hero__phone-wrap { position: relative; z-index: 2; }
.hero__phone {
  width: 220px;
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
  overflow: hidden;
  border: 5px solid rgba(255,255,255,0.2);
}
.hero__phone-screen { padding: 18px 16px; background: #fff; }
.phone-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.phone-logo { font-size: 22px; }
.phone-header p { font-weight: 700; font-size: 14px; color: var(--base-1); line-height: 1.2; }
.phone-header small { font-size: 11px; color: var(--text-muted); }

/* Delivery route steps */
.phone-route {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0 8px;
  gap: 0;
}
.route-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.route-dot {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #f3f4f6;
  border: 2px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  flex-shrink: 0;
}
.route-dot--active {
  background: var(--base-1);
  border-color: var(--base-1);
  color: #fff;
}
.route-line {
  width: 2px;
  height: 26px;
  background: #d1d5db;
  margin: 0 auto;
}

/* Food plates */
.food-plate {
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.1);
  line-height: 1;
  flex-shrink: 0;
}
.food-plate--salad {
  width: 380px;
  height: 380px;
  transform: rotate(-8deg);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.food-plate--salad img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.25));
}
.food-plate--bowl {
  width: 460px;
  height: 460px;
  font-size: 78px;
  transform: rotate(10deg);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.food-plate--bowl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.25));
}
.food-plate--chips {
  width: 480px;
  height: 480px;
  font-size: 68px;
  transform: rotate(-10deg);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.food-plate--chips img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.25));
}
.food-plate--taco {
  width: 360px;
  height: 360px;
  font-size: 86px;
  transform: rotate(6deg);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  padding: 0;
}
.food-plate--taco img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 32px rgba(0,0,0,0.25));
}

.store-badge img { height: 40px; width: auto; filter: brightness(0) invert(1); opacity: 0.85; transition: opacity var(--transition); }
.store-badge:hover img { opacity: 1; }
.store-badge--large img { height: 48px; filter: none; opacity: 1; }

.hero__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
}
.hero__wave svg { position: absolute; bottom: 0; width: 100%; height: 100%; }

/* ===== STATS ===== */
.stats {
  background: var(--bg-alt);
  padding: 60px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px;
  text-align: center;
}
.stat--divider {
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.stat__number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--base-1);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat__plus { font-size: 0.65em; vertical-align: super; }
.stat__label {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== SECTIONS COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-eyebrow {
  display: inline-block;
  color: var(--base-1);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-primary);
}

/* ===== FEATURES ===== */
.features { padding: 100px 0; background: var(--bg); }
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  text-align: center;
  padding: 40px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--base-1);
  box-shadow: 0 8px 40px rgba(39,130,37,0.12);
  transform: translateY(-4px);
}
.feature-card__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  background: var(--base-lighter);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  color: var(--base-1);
  transition: background var(--transition);
}
.feature-card:hover .feature-card__icon { background: var(--base-light); }
.feature-card__icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-it-works { padding: 100px 0; background: var(--bg-alt); }
.how__tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.how__tab {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.how__tab.active, .how__tab:hover {
  background: var(--base-1);
  border-color: var(--base-1);
  color: #fff;
}
.how__panels { position: relative; }
.how__panel { display: none; }
.how__panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.how__steps { display: flex; flex-direction: column; gap: 36px; }
.how__step { display: flex; gap: 20px; align-items: flex-start; }
.how__step-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--base-1);
  background: var(--base-light);
  min-width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}
.how__step-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how__step-content p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }

/* Illustration cards */
.how__illustration { display: flex; justify-content: center; }
.illustration-card, .download-mockup {
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  text-align: center;
  min-width: 220px;
}
.illustration-icon { font-size: 48px; margin-bottom: 12px; }
.illustration-card p, .download-mockup p { font-weight: 600; font-size: 16px; margin-bottom: 14px; }
.progress-bar { height: 8px; background: #e5e7eb; border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.progress-fill { height: 100%; background: var(--base-1); border-radius: 999px; }
.illustration-card small { color: var(--text-muted); font-size: 13px; }

.mini-chart {
  display: flex;
  gap: 6px;
  align-items: flex-end;
  justify-content: center;
  height: 60px;
  margin-bottom: 8px;
}
.bar {
  width: 24px;
  background: var(--base-light);
  border-radius: 4px 4px 0 0;
  transition: all var(--transition);
}
.bar.active { background: var(--base-1); }

.earnings {
  font-size: 32px;
  font-weight: 900;
  color: var(--base-1);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  padding: 36px 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all var(--transition);
}
.testimonial-card--featured {
  background: var(--base-1);
  border-color: var(--base-1);
  color: #fff;
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(39,130,37,0.3);
}
.testimonial-card:not(.testimonial-card--featured):hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial-card__stars { font-size: 18px; color: #f59e0b; margin-bottom: 16px; }
.testimonial-card--featured .testimonial-card__stars { color: #fde68a; }
.testimonial-card p { font-size: 15px; line-height: 1.7; margin-bottom: 24px; color: var(--text-secondary); }
.testimonial-card--featured p { color: rgba(255,255,255,0.9); }
.testimonial-card__author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--base-light);
  color: var(--base-1);
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card--featured .avatar { background: rgba(255,255,255,0.2); color: #fff; }
.testimonial-card__author strong { display: block; font-size: 14px; font-weight: 700; }
.testimonial-card__author span { font-size: 13px; color: var(--text-muted); }
.testimonial-card--featured .testimonial-card__author span { color: rgba(255,255,255,0.7); }

/* ===== CTA DOWNLOAD ===== */
.cta-download {
  background: linear-gradient(135deg, var(--base-1), var(--base-dark));
  padding: 100px 0;
}
.cta-download__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.cta-download__text h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-download__text p { font-size: 18px; color: rgba(255,255,255,0.8); margin-bottom: 32px; }
.cta-download__badges { display: flex; gap: 16px; flex-wrap: wrap; }
.cta-download__badges .store-badge img { filter: none; opacity: 1; }

.download-mockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 200px;
  margin: 0 auto;
}
.download-mockup__icon { font-size: 64px; margin-bottom: 12px; }
.download-mockup p { color: var(--text-primary); }
.download-mockup__rating {
  display: flex;
  gap: 16px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 8px;
}
.download-mockup__rating span:first-child { color: #f59e0b; font-weight: 600; }

/* ===== FOOTER ===== */
.footer { background: #ffffff; color: #374151; padding: 80px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid #374151;
}
.footer__logo { height: 120px; width: auto; margin-bottom: 16px; }
.footer__brand p { font-size: 15px; line-height: 1.6; color: #6b7280; margin-bottom: 24px; }
.footer__social { display: flex; gap: 14px; }
.footer__social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1f2937;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: all var(--transition);
}
.footer__social a:hover { background: var(--base-1); color: #fff; }
.footer__social svg { width: 18px; height: 18px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.footer__col h4 { font-size: 14px; font-weight: 700; color: #111827; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 20px; }
.footer__col a, .footer__col span {
  display: block;
  font-size: 14px;
  color: #9ca3af;
  margin-bottom: 10px;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer__col a:hover { color: var(--base-1); }
.footer__bottom { padding: 24px 0; }
.footer__bottom .container { display: flex; justify-content: center; }
.footer__bottom span { font-size: 14px; color: #9ca3af; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonial-card--featured { transform: none; }
  .footer__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__links { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .nav.menu-open .nav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    z-index: 99;
  }
  .nav.menu-open .nav__actions {
    display: flex;
    position: absolute;
    top: 220px;
    left: 0;
    right: 0;
    padding: 0 24px 24px;
    background: #fff;
    z-index: 99;
    justify-content: center;
  }
  .hero__deco { display: none; }
  .hero__center { max-width: 100%; padding: 100px 24px 80px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat--divider { border: none; }
  .how__panel.active { grid-template-columns: 1fr; gap: 40px; }
  .how__illustration { order: -1; }
  .cta-download__inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .cta-download__badges { justify-content: center; }
  .cta-download__visual { display: none; }
  .footer__links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .features__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .hero__search { flex-wrap: nowrap; }
  .footer__links { grid-template-columns: 1fr; }
}

/* ===== LEAD FORMS ===== */
.leads { padding: 100px 0; background: var(--bg-alt); }
.section-desc { margin-top: 12px; font-size: 17px; color: var(--text-secondary); }

.leads__tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.leads__tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  background: var(--bg);
  border: 2px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--transition);
}
.leads__tab svg { width: 20px; height: 20px; }
.leads__tab.active {
  background: var(--base-1);
  border-color: var(--base-1);
  color: #fff;
  box-shadow: 0 6px 24px rgba(39,130,37,0.3);
}
.leads__tab:not(.active):hover { border-color: var(--base-1); color: var(--base-1); }

.leads__forms {
  max-width: 720px;
  margin: 0 auto;
}
.lead-form { display: none; }
.lead-form.active { display: block; }

.lead-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  background: var(--bg);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text-primary);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-muted); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--base-1);
  box-shadow: 0 0 0 3px rgba(39,130,37,0.12);
}
.field input.error,
.field select.error,
.field textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 18px;
  padding-right: 40px;
  cursor: pointer;
}
.field textarea { resize: vertical; min-height: 88px; }

.lead-form__footer {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.lead-form__submit {
  min-width: 280px;
  justify-content: center;
}
.lead-form__submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Success state */
.lead-form__success {
  background: var(--bg);
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.success-icon {
  width: 64px;
  height: 64px;
  background: var(--base-1);
  color: #fff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.lead-form__success h3 { font-size: 24px; font-weight: 800; margin-bottom: 10px; }
.lead-form__success p { font-size: 16px; color: var(--text-secondary); }

@media (max-width: 600px) {
  .lead-form__grid { grid-template-columns: 1fr; padding: 28px 20px; }
  .leads__tab { padding: 12px 20px; font-size: 14px; }
}

/* ===== COOKIE BANNER (GDPR) ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1a1a2e;
  color: #e2e8f0;
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
  animation: slideUp 0.35s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.cookie-banner__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.cookie-banner__text p:not(.cookie-banner__title) { font-size: 13px; color: #94a3b8; line-height: 1.5; }
.cookie-banner__text a { color: var(--base-1); text-decoration: underline; }
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner__actions .btn { padding: 10px 20px; font-size: 14px; }
.cookie-banner__actions .btn--outline { border-color: #475569; color: #94a3b8; }
.cookie-banner__actions .btn--outline:hover { border-color: #94a3b8; color: #fff; background: transparent; }
.cookie-banner__link { font-size: 13px; color: #64748b; text-decoration: underline; white-space: nowrap; cursor: pointer; }
.cookie-banner__link:hover { color: #94a3b8; }

/* Manage cookies button in footer */
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.cookie-settings-btn {
  background: none;
  border: none;
  font-size: 13px;
  color: #6b7280;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
  text-decoration: underline;
  transition: color var(--transition);
}
.cookie-settings-btn:hover { color: var(--base-1); }

/* ===== GDPR CONSENT CHECKBOX ===== */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}
.consent-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.consent-check__box {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 5px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.consent-check input:checked ~ .consent-check__box {
  background: var(--base-1);
  border-color: var(--base-1);
}
.consent-check input:checked ~ .consent-check__box::after {
  content: '';
  width: 5px;
  height: 9px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translateY(-1px);
  display: block;
}
.consent-check input.error ~ .consent-check__box { border-color: #ef4444; }
.consent-check__text { font-size: 13px; color: var(--text-secondary); line-height: 1.5; }
.consent-check__text a { color: var(--base-1); text-decoration: underline; }
.consent-check:hover .consent-check__box { border-color: var(--base-1); }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__text { animation: fadeUp 0.7s ease both; }
.hero__visual { animation: fadeUp 0.7s ease 0.2s both; }

[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: none;
}
