/* ─────────────────────────────────────────────
   Levi Recorder — Marketing site styles
   Stack: plain CSS, no framework
   Fonts: Lexend (display) + Inter Tight (body)
   Colors: from Figma design system
───────────────────────────────────────────── */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }
img, svg { display: block; }
a { color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font: inherit; }

/* ── Variables ── */
:root {
  /* Figma exact palette */
  --hero-bg:      #262625;
  --hero-raised:  #1C1B18;
  --hero-card:    #1F1E1B;
  --orange:       #CD5500;
  --orange-deep:  #B54A00;
  --orange-soft:  #E78C4B;
  --green-rec:    #34C759;
  --red-stop:     #E45D60;

  /* Light surface palette */
  --sand:         #F0EDE8;
  --sand-light:   #F7F5F1;
  --sand-border:  rgba(14, 10, 5, 0.09);
  --cream:        #FAFAF8;
  --warm:         #786D5C;
  --warm-light:   #9E9488;

  /* Text */
  --text-dark-primary:  rgba(255, 255, 255, 0.88);
  --text-dark-secondary: rgba(255, 255, 255, 0.56);
  --text-dark-muted:    rgba(255, 255, 255, 0.32);
  --text-light-primary: #1A1712;
  --text-light-secondary: #786D5C;

  /* Popover */
  --pop-bg:       #1F1E1B;
  --pop-border:   rgba(255, 255, 255, 0.07);
  --pop-divider:  rgba(255, 255, 255, 0.05);
  --pop-row-hover: rgba(255, 255, 255, 0.04);

  /* Type */
  --font-display: 'Lexend', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:    'Inter Tight', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1120px;
  --nav-h: 60px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  color: var(--text-light-primary);
  background: var(--sand);
  line-height: 1.6;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* section skins */
.section-dark  { background: #1A1814; color: var(--text-dark-primary); }
.section-warm  { background: var(--sand); color: var(--text-light-primary); }
.section-light { background: var(--sand-light); color: var(--text-light-primary); }
.section-hero  { background: var(--hero-bg); color: var(--text-dark-primary); }

/* ── Typography ── */
h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.03em;
}
h3 {
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.3;
}
code {
  font-family: 'SF Mono', 'Menlo', 'Consolas', monospace;
  font-size: 0.82em;
  background: rgba(14, 10, 5, 0.07);
  border-radius: 4px;
  padding: 2px 6px;
}
.section-dark code, .section-hero code {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-dark-primary);
}
.orange { color: var(--orange); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 11px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: transform 0.18s var(--ease), box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-lg { padding: 14px 28px; font-size: 15px; }
.btn-sm { padding: 8px 17px; font-size: 13px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--orange);
  color: #fff;
}
.btn-primary:hover {
  background: var(--orange-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(205, 85, 0, 0.30);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-light-primary);
  border: 1.5px solid rgba(14, 10, 5, 0.18);
}
.btn-outline:hover {
  border-color: rgba(14, 10, 5, 0.36);
  background: rgba(14, 10, 5, 0.04);
}

/* ── Entrance animations ── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s var(--ease) both;
  animation-delay: var(--d, 0s);
}
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ────────────────────────
   NAV
──────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  transition: background 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(38, 38, 37, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: var(--nav-h);
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-tray {
  width: 20px;
  height: 20px;
  opacity: 0.82;
}
.logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: var(--text-dark-primary);
}
/* .logo-dot removed — no punctuation in logo */

/* Nav links */
.nav-links {
  display: flex;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  color: var(--text-dark-secondary);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text-dark-primary); }
.nav-cta { margin-left: auto; }

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  margin-left: 8px;
}
.lang-btn-globe {
  background: transparent;
  border: none;
  color: var(--text-dark-secondary);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}
.lang-btn-globe:hover {
  color: var(--text-dark-primary);
  background: rgba(255,255,255,0.07);
}

/* ── Language Modal ── */
.lang-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s ease;
}
.lang-modal.show {
  visibility: visible;
  opacity: 1;
}
.lang-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.lang-modal-content {
  position: relative;
  background: var(--hero-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 12px;
  width: 90%;
  max-width: 320px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(10px) scale(0.98);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.lang-modal.show .lang-modal-content {
  transform: translateY(0) scale(1);
}
.lang-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: transparent;
  border: none;
  color: var(--text-dark-secondary);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
}
.lang-modal-close:hover {
  color: var(--text-dark-primary);
  background: rgba(255,255,255,0.07);
}
.lang-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}
.lang-option {
  background: transparent;
  border: none;
  color: var(--text-dark-secondary);
  font-family: var(--font-sans, inherit);
  font-size: 0.95rem;
  text-align: left;
  padding: 12px 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lang-option:hover {
  background: rgba(255,255,255,0.05);
  color: var(--text-dark-primary);
}
.lang-option--active {
  color: var(--orange-soft);
  font-weight: 500;
  background: rgba(255, 122, 0, 0.05);
}
.lang-option-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
}
.lang-option--active .lang-option-indicator {
  background: var(--orange-soft);
  box-shadow: 0 0 8px rgba(255, 122, 0, 0.5);
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text-dark-primary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: rgba(28, 27, 24, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  gap: 0;
  z-index: 199;
  border-bottom: 1px solid var(--pop-border);
  padding-bottom: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark-primary);
  font-size: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--pop-divider);
}
.mobile-menu .btn { margin: 20px 24px 0; justify-content: center; }

/* ────────────────────────
   HERO
──────────────────────── */
.hero {
  position: relative;
  background: var(--hero-bg);
  color: var(--text-dark-primary);
  min-height: 100vh;
  overflow: hidden;
}

/* Subtle dot-grid — right half only so image area stays clean */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.065) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 60% 80% at 75% 40%, black 20%, transparent 70%);
}

/* Two-column grid: full section width, no container */
.hero-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  align-items: stretch;
}

/* ── Left col: screenshot flush left + bottom ── */
.hero-screenshot-wrap {
  display: flex;
  align-items: flex-end;   /* anchor to bottom */
  justify-content: flex-start; /* flush left */
  overflow: hidden;
  padding-top: var(--nav-h); /* clear the fixed nav */
}

.hero-screenshot {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - var(--nav-h));
  object-fit: contain;
  object-position: left bottom;
  /* no shadows, no border-radius — image blends with background */
}

/* ── Right col: text centered vertically, padded like container ── */
.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: calc(var(--nav-h) + 48px) max(28px, 8%) 80px max(28px, 7%);
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  letter-spacing: 0.01em;
  color: var(--text-dark-secondary);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 6px 14px;
  border-radius: 100px;
}
.badge-pulse {
  width: 6px; height: 6px;
  background: var(--green-rec);
  border-radius: 50%;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

/* Headline */
.hero-headline {
  font-size: clamp(38px, 4.2vw, 64px);
  font-weight: 400;
  color: var(--text-dark-primary);
  letter-spacing: -0.04em;
  line-height: 1.08;
}
.hero-orange {
  color: var(--orange);
  font-weight: 700;
}

.hero-sub {
  font-size: clamp(14px, 1.3vw, 16px);
  color: var(--text-dark-secondary);
  font-weight: 400;
  line-height: 1.72;
  max-width: 400px;
}

/* Feature pills */
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.hero-pills li {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-dark-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 5px 12px;
  border-radius: 100px;
}

.hero-actions { display: flex; }

.hero-compat {
  font-size: 12px;
  color: var(--text-dark-muted);
  letter-spacing: 0.01em;
}

/* ────────────────────────
   FEATURE BELT
──────────────────────── */
.belt {
  background: var(--hero-raised);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.belt-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 28px;
  overflow-x: auto;
  scrollbar-width: none;
}
.belt-inner::-webkit-scrollbar { display: none; }
.belt-inner span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  white-space: nowrap;
  letter-spacing: 0.02em;
  font-weight: 500;
}
.belt-inner .sep { opacity: 0.5; }

/* ────────────────────────
   SECTION HEADERS
──────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 12px;
}
.section-header--dark p { color: var(--text-dark-secondary); }
.section-header p {
  font-size: 15.5px;
  color: var(--text-light-secondary);
  font-weight: 400;
}

/* ────────────────────────
   FEATURES
──────────────────────── */
.features { padding: 100px 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--sand-border);
}

.feature-card {
  background: var(--sand);
  padding: 36px 30px;
  transition: background 0.2s ease;
}
.feature-card:hover { background: var(--cream); }

.ficon {
  width: 40px; height: 40px;
  background: rgba(14, 10, 5, 0.06);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm);
  margin-bottom: 18px;
  transition: background 0.2s ease, color 0.2s ease;
}
.feature-card:hover .ficon {
  background: var(--orange);
  color: #fff;
}

.feature-card h3 {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--text-light-primary);
}
.feature-card p {
  font-size: 13.5px;
  color: var(--text-light-secondary);
  line-height: 1.65;
}

/* ────────────────────────
   HOW IT WORKS
──────────────────────── */
.how { padding: 100px 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.step {
  padding: 0 40px;
  position: relative;
}
.step:first-child { padding-left: 0; }
.step:last-child  { padding-right: 0; }

.step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.12);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 20px;
}
.step-divider {
  position: absolute;
  top: 20px; right: 0;
  width: 1px; height: 40px;
  background: rgba(255, 255, 255, 0.08);
}
.step h3 {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text-dark-primary);
}
.step p {
  font-size: 13.5px;
  color: var(--text-dark-secondary);
  line-height: 1.7;
}

/* ────────────────────────
   ABOUT QUOTE
──────────────────────── */
.about { padding: 90px 0; }
.about-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
}
.about-eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 24px;
  font-weight: 500;
}
blockquote {
  font-family: var(--font-body);
  font-size: clamp(18px, 2.5vw, 24px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: -0.02em;
  color: var(--text-light-primary);
}
blockquote strong {
  font-weight: 700;
  font-style: normal;
  color: var(--text-light-primary);
}

/* ────────────────────────
   PRIVACY
──────────────────────── */
.privacy { padding: 100px 0; }
.privacy-inner {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}
.privacy-shield {
  width: 60px; height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
}
.privacy-inner h2 {
  font-size: clamp(28px, 4.5vw, 46px);
  color: var(--text-dark-primary);
}
.privacy-body {
  font-size: 16px;
  color: var(--text-dark-secondary);
  line-height: 1.75;
  font-weight: 400;
}
.privacy-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}
.privacy-tags span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: var(--text-dark-secondary);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 7px 13px;
  border-radius: 100px;
  font-weight: 500;
}
.privacy-tags svg { color: var(--orange-soft); flex-shrink: 0; }

/* ────────────────────────
   PRICING
──────────────────────── */
.pricing { padding: 100px 0; }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--sand-light);
  border: 1.5px solid var(--sand-border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pricing-card--pro {
  background: var(--hero-bg);
  border-color: rgba(205, 85, 0, 0.26);
  color: var(--text-dark-primary);
  position: relative;
}
.pricing-pro-badge {
  position: absolute;
  top: -12px;
  left: 50%; transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
}
.pricing-tier {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light-secondary);
}
.pricing-card--pro .pricing-tier { color: var(--text-dark-secondary); }
.pricing-price {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text-light-primary);
}
.pricing-card--pro .pricing-price { color: var(--text-dark-primary); }
.pricing-price span {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark-secondary);
  letter-spacing: 0;
}
.pricing-tagline {
  font-size: 13px;
  color: var(--text-light-secondary);
  line-height: 1.6;
}
.pricing-card--pro .pricing-tagline { color: var(--text-dark-secondary); }
.pricing-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pricing-list li {
  font-size: 13.5px;
  color: var(--text-light-secondary);
  padding-left: 18px;
  position: relative;
}
.pricing-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--warm);
}
.pricing-card--pro .pricing-list li { color: var(--text-dark-secondary); }
.pricing-card--pro .pricing-list li::before { color: var(--orange); }
.pricing-fine {
  font-size: 11px;
  color: var(--text-dark-secondary);
  text-align: center;
  opacity: 0.6;
  margin-top: -4px;
}

/* ────────────────────────
   CTA SECTION
──────────────────────── */
.cta-section { padding: 100px 0; }
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.cta-icon {
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.cta-inner h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: var(--text-dark-primary);
}
.cta-inner > p {
  font-size: 15px;
  color: var(--text-dark-secondary);
}
.cta-fine {
  font-size: 11.5px;
  color: var(--text-dark-muted);
  margin-top: 4px;
}

/* ────────────────────────
   FOOTER
──────────────────────── */
.footer {
  background: var(--hero-raised);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 34px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer .logo-tray { width: 16px; height: 16px; opacity: 0.6; }
.footer .logo-text { font-size: 16px; color: var(--text-dark-secondary); }
.footer-links {
  display: flex;
  gap: 22px;
  flex: 1;
  justify-content: center;
}
.footer-links a {
  text-decoration: none;
  font-size: 12.5px;
  color: var(--text-dark-secondary);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text-dark-primary); }
.footer-copy {
  font-size: 11.5px;
  color: var(--text-dark-muted);
  white-space: nowrap;
}

/* ────────────────────────
   RESPONSIVE — Tablet
──────────────────────── */
/* Tablet: duas colunas ainda mas texto menor */
@media (max-width: 960px) {
  .hero-body { min-height: 100vh; }
  .hero-text { gap: 20px; padding: calc(var(--nav-h) + 40px) 6% 60px 5%; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Phablet: quebra para coluna única, screenshot em cima (50vh) */
@media (max-width: 720px) {
  .hero-body {
    grid-template-columns: 1fr;
    grid-template-rows: 50vh 1fr;
    min-height: 100vh;
    align-items: stretch;
  }

  /* Screenshot: ocupa 50vh, alinhada ao bottom e centralizada */
  .hero-screenshot-wrap {
    height: 50vh;
    justify-content: center;
    align-items: flex-end;
    padding-top: var(--nav-h);
  }
  .hero-screenshot {
    width: auto;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    object-position: center bottom;
  }

  /* Texto: abaixo da imagem */
  .hero-text {
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 36px 24px 56px;
    gap: 18px;
  }
  .hero-badge     { align-self: center; }
  .hero-sub       { max-width: 460px; }
  .hero-actions   { justify-content: center; }
  .hero-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ────────────────────────
   RESPONSIVE — Mobile
──────────────────────── */
@media (max-width: 720px) {
  .nav-links  { display: none; }
  .nav-cta    { display: none; }
  .nav-toggle { display: flex; }

  .features { padding: 68px 0; }
  .features-grid { grid-template-columns: 1fr; border-radius: 14px; }
  .feature-card { padding: 28px 24px; }

  .how { padding: 68px 0; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .step { padding: 0; }
  .step-divider { display: none; }

  .about { padding: 60px 0; }
  .privacy { padding: 72px 0; }
  .pricing { padding: 68px 0; }
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card { padding: 28px 26px; }

  .cta-section { padding: 68px 0; }
  .section-header { margin-bottom: 40px; }

  .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 30px; }
  .features-grid { gap: 1px; }
}
