/* ============================================================
   DESIGN SYSTEM
   ============================================================ */
:root {
  --amber:      #F59D00;
  --amber-dark: #D98C00;
  --dark:       #1A1A1A;
  --dark-2:     #0F0F0F;
  --gray-bg:    #F4F4F5;
  --gray-light: #E5E5E5;
  --text:       #1A1A1A;
  --text-muted: #6B7280;
  --white:      #FFFFFF;

  --radius:     12px;
  --radius-sm:  8px;
  --shadow:     0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.15);

  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.80);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s, border-color .25s;
}

#header.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  border-color: var(--gray-light);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 6px 14px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 6px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--gray-bg); }

.btn-header {
  display: inline-block;
  padding: 8px 20px;
  background: var(--amber);
  color: var(--white);
  font-weight: 700;
  font-size: .9rem;
  border-radius: 20px;
  white-space: nowrap;
  transition: background .15s, transform .15s;
}
.btn-header:hover { background: var(--amber-dark); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .2s;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  padding: 100px 24px 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.70) 0%,
    rgba(0,0,0,.55) 60%,
    rgba(15,10,0,.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  color: var(--white);
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--white);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero-eyebrow {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--amber);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.hero-content h1 {
  font-size: clamp(3rem, 9vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: .95;
  margin-bottom: 20px;
  text-shadow: 0 4px 24px rgba(0,0,0,.4);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255,255,255,.85);
  max-width: 560px;
  margin: 0 auto 36px;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll-hint span {
  display: block;
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 10px;
  position: relative;
}
.hero-scroll-hint span::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 6px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollpulse 2s infinite;
}
@keyframes scrollpulse {
  0%, 100% { opacity: 1; top: 5px; }
  50%       { opacity: 0; top: 14px; }
}

/* ============================================================
   STORE BUTTONS
   ============================================================ */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 14px;
  font-family: var(--font);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background .15s;
  min-width: 170px;
}
.store-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.25); }

.store-btn-primary {
  background: var(--amber);
  color: var(--white);
  border: 2px solid transparent;
}
.store-btn-primary:hover { background: var(--amber-dark); }

.store-btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.store-btn-outline:hover { background: rgba(255,255,255,.10); border-color: var(--white); }

.store-btn-text {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.2;
}
.store-btn-label { font-size: .7rem; opacity: .8; }
.store-btn-name  { font-size: 1rem; font-weight: 700; }

/* ============================================================
   SECTION SHARED
   ============================================================ */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 96px 24px;
}

.section-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 56px;
}

/* ============================================================
   RECURSOS
   ============================================================ */
#recursos .section-inner { padding-bottom: 80px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-light);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
  border-color: var(--amber);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(245,157,0,.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--amber);
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-link {
  font-size: .88rem;
  font-weight: 600;
  color: var(--amber);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  padding: 100px 24px;
  text-align: center;
  overflow: hidden;
  background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245,157,0,.88);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
  color: var(--white);
}

.cta-banner-eyebrow {
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
  margin-bottom: 12px;
}

.cta-banner-content h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.cta-banner-content p {
  font-size: 1.1rem;
  opacity: .9;
  margin-bottom: 36px;
}

.btn-cta-dark {
  display: inline-block;
  padding: 14px 36px;
  background: var(--dark);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 14px;
  transition: background .15s, transform .15s;
}
.btn-cta-dark:hover { background: #333; transform: translateY(-2px); }

/* ============================================================
   COMO FUNCIONA
   ============================================================ */
.how-section { background: var(--gray-bg); }

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

.how-steps {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--amber);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}

.step-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.how-screenshots {
  display: flex;
  gap: 20px;
  align-items: flex-end;
}

.how-phone {
  background: var(--gray-light);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 170px;
}

.how-phone:first-child { transform: translateY(24px); }

.how-phone img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ============================================================
   HIGHLIGHTS
   ============================================================ */
.highlights-section {
  background: var(--dark);
  padding: 56px 24px;
}

.highlights-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.highlight-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.highlight-icon {
  width: 52px;
  height: 52px;
  background: rgba(245,157,0,.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.highlight-label {
  font-size: .82rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.highlight-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,.10);
  flex-shrink: 0;
}

/* ============================================================
   SCREENSHOTS
   ============================================================ */
.screenshots-section { background: var(--white); overflow: visible; }

.screenshots-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* padding extra para o scale não ser cortado nas bordas */
  padding: 48px 32px 24px;
  margin: 0 -32px;
}
.screenshots-scroll::-webkit-scrollbar { display: none; }

.screenshots-grid {
  display: flex;
  gap: 20px;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  min-width: max-content;
  margin: 0 auto;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  width: 160px;
  transform-origin: bottom center;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), z-index 0s;
  position: relative;
}

.screenshot-item.screenshot-featured {
  width: 180px;
}

.screenshot-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
  background: var(--gray-light);
  width: 100%;
  aspect-ratio: 9/19.5;
}

.screenshot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.screenshot-label {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
}

/* ============================================================
   PREÇOS
   ============================================================ */
.pricing-section { background: var(--gray-bg); }

.pricing-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1060px;
  margin: 0 auto;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--gray-light);
  border-radius: 20px;
  overflow: hidden;
  flex: 1;
  min-width: 260px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.price-card-featured {
  border-color: var(--amber);
}

.price-card-free {
  border-color: var(--gray-light);
}

.price-card-free .price-header {
  background: var(--gray-bg);
  color: var(--text);
}

.price-amount-free {
  font-size: 2.8rem !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 6px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.price-amount-free span {
  font-size: 4rem;
}

.price-card-free .price-plan { color: var(--text-muted); }
.price-card-free .price-period { color: var(--text-muted); }

.feature-locked {
  color: var(--text-muted) !important;
  opacity: .55;
}

.feature-locked::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%239CA3AF'%3E%3Cpath fill-rule='evenodd' d='M5 9V7a5 5 0 0110 0v2a2 2 0 012 2v5a2 2 0 01-2 2H5a2 2 0 01-2-2v-5a2 2 0 012-2zm8-2v2H7V7a3 3 0 016 0z' clip-rule='evenodd'/%3E%3C/svg%3E") !important;
}

.price-header {
  background: var(--dark);
  padding: 32px 28px 28px;
  text-align: center;
  color: var(--white);
  position: relative;
}

.price-card-featured .price-header {
  background: var(--amber);
}

.price-badge {
  display: inline-block;
  background: rgba(255,255,255,.2);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.price-plan {
  font-size: .85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  opacity: .7;
  margin-bottom: 8px;
}

.price-amount {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 6px;
}

.price-amount sup {
  font-size: 1.5rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 12px;
  margin-right: 2px;
}

.price-cents {
  font-size: 2rem;
  font-weight: 700;
  vertical-align: bottom;
  margin-bottom: 6px;
}

.price-period {
  font-size: .85rem;
  opacity: .7;
}

.price-economy {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: #16a34a;
  background: #f0fdf4;
  border-bottom: 1px solid #dcfce7;
  padding: 8px 16px;
}

.price-economy-white {
  text-align: center;
  font-size: .85rem;
  font-weight: 600;
  color: #fdfffe;
  background: #fdfffe;
  border-bottom: 1px solid #fdfffe;
  padding: 12px 16px;
}

.price-features {
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.price-features li {
  font-size: .92rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23F59D00'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E") no-repeat center/contain;
}

.price-cta {
  display: block;
  margin: 8px 28px 28px;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  transition: background .15s, transform .15s, border-color .15s;
}
.price-cta:hover { transform: translateY(-1px); }

.price-cta-dark {
  background: var(--dark);
  color: var(--white);
}
.price-cta-dark:hover { background: #333; }

.price-cta-outline {
  border: 2px solid var(--dark);
  color: var(--dark);
}
.price-cta-outline:hover { background: var(--dark); color: var(--white); }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.faq-list details {
  border-bottom: 1px solid var(--gray-light);
}

.faq-list details:first-child { border-top: 1px solid var(--gray-light); }

.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 4px;
  font-size: .97rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  gap: 12px;
  user-select: none;
  transition: color .15s;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: var(--amber); }

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--amber);
  flex-shrink: 0;
  transition: transform .2s;
}

.faq-list details[open] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 4px 20px;
  font-size: .93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 60%;
}

.cta-final-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.75);
}

.cta-final-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 620px;
  margin: 0 auto;
}

.cta-final-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.cta-final-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 14px;
}

.cta-final-content p {
  font-size: 1.05rem;
  opacity: .8;
  margin-bottom: 40px;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark-2);
  color: rgba(255,255,255,.75);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}

.footer-brand p {
  font-size: .9rem;
  line-height: 1.65;
  max-width: 280px;
  margin-top: 16px;
  color: rgba(255,255,255,.55);
}

.logo-footer span { color: var(--white); }

.footer-col h4 {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}

.footer-col a {
  display: block;
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 10px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 24px;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbFadeIn .2s ease;
}

#lightbox.open {
  display: flex;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  animation: lbSlideUp .22s cubic-bezier(.34,1.3,.64,1);
}

@keyframes lbSlideUp {
  from { transform: scale(.88); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

#lightbox-img {
  max-height: 88svh;
  max-width: min(420px, 90vw);
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,.6);
  object-fit: contain;
}

#lightbox-label {
  font-size: .95rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,.12);
  border: none;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  z-index: 1001;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }

/* ============================================================
   RESPONSIVENESS
   ============================================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 64px 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 4px;
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 8px 32px rgba(0,0,0,.12);
    z-index: 99;
    overflow-y: auto;
    margin-left: 0;
  }
  .nav-links.nav-open { display: flex; }
  .nav-links a {
    width: 100%;
    padding: 12px 8px;
    font-size: 1rem;
  }

  .btn-header { display: none; }
  .nav-toggle { display: flex; }

  .section-inner { padding: 64px 20px; }

  .how-layout { grid-template-columns: 1fr; }
  .how-screenshots { display: none; }

  .highlights-inner { gap: 0; }
  .highlight-divider { width: 60px; height: 1px; }

  .screenshot-item.screenshot-featured { transform: none; width: 160px; }

  .pricing-grid { flex-direction: column; align-items: center; }
  .price-card { max-width: 100%; min-width: unset; width: 100%; }

  .footer-inner { grid-template-columns: 1fr; gap: 40px; }

  .hero { background-attachment: scroll; }
  .cta-final { background-attachment: scroll; }
}

@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-screenshots { display: none; }
  .how-layout { grid-template-columns: 1fr; }
}
