/* ═══════════════════════════════════════════════════
   Bíblia Palavra – Layout & Styles
   ═══════════════════════════════════════════════════ */

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

:root {
  --brown-deep:   #2B1A0E;
  --brown-mid:    #4A2E14;
  --brown-warm:   #7A4A20;
  --gold-rich:    #C89B3C;
  --gold-light:   #E8C76A;
  --gold-pale:    #F5E6B8;
  --cream:        #FAF5EC;
  --cream-dark:   #F0E8D8;
  --text-dark:    #1C1208;
  --text-body:    #3D2C18;
  --text-muted:   #7A6050;
  --white:        #FFFFFF;
  --shadow-gold:  rgba(200, 155, 60, 0.25);
  --shadow-dark:  rgba(43, 26, 14, 0.35);

  --font-display: Georgia, 'Times New Roman', serif;
  --font-body:    'Segoe UI', Roboto, Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── NAV ───────────────────────────────────────── */
.main-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(250, 245, 236, 0.0);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200,155,60,0.0);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}
.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  color: var(--brown-deep);
  letter-spacing: 0.02em;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--brown-deep);
  color: var(--gold-light);
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 500;
  padding: 10px 22px; border-radius: 50px;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
}
.nav-cta:hover { background: var(--brown-warm); transform: translateY(-1px); }
.nav-cta svg  { width: 16px; height: 16px; }

/* ─── HERO ──────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px 0 0;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, #FBF6EE 0%, #F2E5C8 45%, #E6D4A8 100%);
}
/* top-right warm glow that bleeds from the banner colours */
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 40%, rgba(210,150,60,0.28) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 0% 100%,  rgba(122,74,32,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-bg::after {
  content: '';
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4; pointer-events: none;
}

/* Two-column grid inside the hero */
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 56px;
  padding: 0 64px;
}

/* ── Left column: copy ── */
.hero-copy {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 28px;
  padding: 60px 48px 80px 0;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,155,60,0.12);
  border: 1px solid rgba(200,155,60,0.35);
  color: var(--brown-warm);
  font-size: 0.78rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px;
  animation: fadeUp 0.8s ease both;
}
.hero-badge span { font-size: 1rem; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 600; line-height: 1.08;
  color: var(--brown-deep);
  letter-spacing: -0.01em;
  animation: fadeUp 0.9s 0.1s ease both;
}
.hero-title em { font-style: italic; color: var(--gold-rich); }

.hero-subtitle {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem);
  font-weight: 300; line-height: 1.75;
  color: var(--text-muted);
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-stat-row {
  display: flex; gap: 32px; flex-wrap: wrap;
  animation: fadeUp 0.9s 0.4s ease both;
}
.hero-stat { text-align: left; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem; font-weight: 600;
  color: var(--brown-deep);
}
.hero-stat-label {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.hero-stat-sep { opacity: 0.2; font-size: 1.4rem; align-self: center; }

/* ── Right column: banner ── */
.hero-banner-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 620px;
  padding-top: 0;
  animation: fadeUp 0.9s 0.35s ease both;
}

/* Diffuse golden aura behind the banner */
.hero-banner-glow {
  position: absolute;
  width: 90%; height: 80%;
  bottom: 0; left: 50%; transform: translateX(-50%);
  background: radial-gradient(ellipse at 50% 60%,
    rgba(210, 150, 50, 0.32) 0%,
    rgba(200, 130, 30, 0.14) 40%,
    transparent 70%);
  filter: blur(32px);
  border-radius: 50%;
  pointer-events: none; z-index: 0;
}

.hero-banner-img {
  position: relative; z-index: 1;
  width: 100%;
  max-width: min(780px, 52vw);
  border-radius: 22px;
  transform: perspective(1200px) rotateY(2deg) rotateX(1deg) translateY(0);
  transform-origin: center;
  transition: transform 0.7s cubic-bezier(0.22,1,0.36,1);
  box-shadow:
    -20px 20px 60px rgba(43,26,14,0.25),
     20px 10px 40px rgba(200,150,50,0.18),
      0   0   0  1px rgba(200,155,60,0.15);
}
.hero-banner-img:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-4px);
}

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-muted); font-size: 0.72rem;
  letter-spacing: 0.1em; text-transform: uppercase;
  animation: fadeIn 1.5s 1.2s both;
}
.scroll-hint-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-rich), transparent);
  animation: scrollLine 2s 1.5s infinite;
}

/* ─── SECTION SHARED ────────────────────────────── */
section { padding: 100px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  display: inline-block;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-rich); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600; line-height: 1.12;
  color: var(--brown-deep); margin-bottom: 20px;
}
.section-body {
  font-size: 1.05rem; font-weight: 300; line-height: 1.8;
  color: var(--text-muted); max-width: 560px;
}

/* ─── BUTTONS ───────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--brown-deep);
  color: var(--gold-pale);
  font-size: 0.95rem; font-weight: 500;
  padding: 16px 32px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 30px var(--shadow-dark);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--shadow-dark);
  background: var(--brown-mid);
}
.btn-primary svg { width: 20px; height: 20px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1.5px solid rgba(122,74,32,0.35);
  color: var(--brown-warm);
  font-size: 0.9rem; font-weight: 400;
  padding: 15px 28px; border-radius: 50px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, transform 0.2s;
}
.btn-secondary:hover {
  border-color: var(--gold-rich);
  color: var(--brown-deep);
  transform: translateY(-2px);
}

/* ─── BENEFITS ──────────────────────────────────── */
.benefits { background: var(--brown-deep); }
.benefits .section-label { color: var(--gold-light); }
.benefits .section-title { color: var(--gold-pale); }
.benefits .section-body  { color: rgba(245,230,184,0.65); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px; margin-top: 60px;
}

.benefit-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,155,60,0.18);
  border-radius: 20px; padding: 36px 32px;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  cursor: default;
}
.benefit-card:hover {
  background: rgba(200,155,60,0.1);
  border-color: rgba(200,155,60,0.45);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(200,155,60,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.benefit-title {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 500;
  color: var(--gold-light); margin-bottom: 10px;
}
.benefit-desc {
  font-size: 0.9rem; font-weight: 300;
  line-height: 1.7; color: rgba(245,230,184,0.6);
}

/* ─── VERSE HIGHLIGHT ───────────────────────────── */
.verse-section {
  background: linear-gradient(135deg, var(--brown-deep) 0%, #1A0F07 100%);
  text-align: center; padding: 120px 24px;
  position: relative; overflow: hidden;
}
.verse-section::before {
  content: '';
  position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.verse-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-style: italic; font-weight: 400;
  color: var(--gold-pale);
  line-height: 1.5; max-width: 720px;
  margin: 0 auto 24px;
  position: relative; z-index: 1;
}
.verse-quote::before {
  content: '\201C';
  font-size: 4rem; line-height: 0;
  vertical-align: -0.5em;
  color: var(--gold-rich); margin-right: 4px;
}
.verse-quote::after {
  content: '\201D';
  font-size: 4rem; line-height: 0;
  vertical-align: -0.5em;
  color: var(--gold-rich); margin-left: 4px;
}
.verse-ref {
  font-size: 0.9rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-rich);
  position: relative; z-index: 1;
}

/* ─── FEATURES ──────────────────────────────────── */
.features { background: var(--cream); }

.feature-list { display: flex; flex-direction: column; gap: 80px; margin-top: 70px; }

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }

.feature-copy .section-label { display: block; margin-bottom: 12px; }
.feature-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; line-height: 1.15;
  color: var(--brown-deep); margin-bottom: 16px;
}
.feature-copy p {
  font-size: 0.97rem; line-height: 1.8;
  color: var(--text-muted); font-weight: 300;
}

.feature-img-wrap {
  position: relative; display: flex; justify-content: center;
}
.feature-img-wrap::before {
  content: '';
  position: absolute;
  width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,155,60,0.15) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.feature-phone {
  width: 210px;
  border-radius: 32px;
  box-shadow: 0 20px 60px rgba(43,26,14,0.22);
  position: relative; z-index: 1;
}

/* ─── SCREENSHOTS ───────────────────────────────── */
.screenshots { background: var(--cream-dark); overflow: hidden; }
.screenshots-heading { margin-bottom: 48px; }

.screenshots-scroll-outer { overflow: hidden; position: relative; }
.screenshots-track {
  display: flex; gap: 20px;
  animation: marquee 30s linear infinite;
  width: max-content; padding: 20px 0;
}
.screenshots-track:hover { animation-play-state: paused; }
.screenshots-track img {
  height: 460px; width: auto;
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(43,26,14,0.2);
  transition: transform 0.4s;
  flex-shrink: 0;
}
.screenshots-track img:hover {
  transform: scale(1.03) translateY(-6px);
}

/* ─── PRIVACY ───────────────────────────────────── */
.privacy { background: var(--cream); }
.privacy-body { margin-top: 16px; }

.privacy-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.privacy-visual {
  background: var(--cream-dark);
  border-radius: 24px; padding: 56px;
  display: flex; flex-direction: column; gap: 24px;
  border: 1px solid rgba(200,155,60,0.2);
}
.privacy-item { display: flex; gap: 16px; align-items: flex-start; }
.privacy-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-rich), var(--gold-light));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.privacy-item-text h4 {
  font-size: 0.95rem; font-weight: 500;
  color: var(--brown-deep); margin-bottom: 4px;
}
.privacy-item-text p {
  font-size: 0.85rem; font-weight: 300;
  color: var(--text-muted); line-height: 1.6;
}

/* ─── ABOUT ─────────────────────────────────────── */
.about { background: var(--cream-dark); }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-logo-stack {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
}
.about-logo-stack img { width: 140px; }
.about-logo-tagline {
  font-family: var(--font-display);
  font-style: italic; font-size: 1rem;
  color: var(--gold-rich); letter-spacing: 0.08em; text-align: center;
}
.about-title { font-size: 2.2rem; }
.about-body { margin-bottom: 20px; }

/* ─── DOWNLOAD CTA ──────────────────────────────── */
.download-cta {
  background: var(--brown-deep);
  text-align: center; padding: 120px 24px;
  position: relative; overflow: hidden;
}
.download-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(232,199,106,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 50% 100%, rgba(122,74,32,0.2) 0%, transparent 60%);
  pointer-events: none;
}
.download-cta .section-label { color: var(--gold-rich); }
.download-cta .section-title { color: var(--gold-pale); margin-bottom: 16px; max-width: 100%; }
.download-cta .section-body  { color: rgba(245,230,184,0.6); margin: 0 auto 40px; }
.download-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.download-title {
  max-width: 600px;
  margin: 0 auto 16px;
}
.download-body {
  max-width: 440px;
  margin: 0 auto 40px;
}

.playstore-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold-rich);
  color: var(--brown-deep);
  font-weight: 600; font-size: 1rem;
  padding: 18px 36px; border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 40px rgba(200,155,60,0.4);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
  position: relative; z-index: 1;
}
.playstore-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(200,155,60,0.5);
  background: var(--gold-light);
}
.playstore-btn svg { width: 24px; height: 24px; }
.cta-note {
  margin-top: 24px;
  font-size: 0.8rem;
  color: rgba(200,155,60,0.45);
  position: relative; z-index: 1;
}

/* ─── FOOTER ─────────────────────────────────────── */
.landing-footer {
  background: #150D06;
  padding: 56px 48px 40px;
  display: flex; flex-direction: column; gap: 40px;
}
.footer-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
}
.footer-brand { display: flex; flex-direction: column; gap: 12px; }
.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 12px;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 500;
  color: var(--gold-pale);
}
.footer-brand-tag {
  font-size: 0.78rem; color: rgba(200,155,60,0.6);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 {
  font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-rich); margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.88rem; font-weight: 300;
  color: rgba(245,230,184,0.5); text-decoration: none;
  margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(200,155,60,0.1);
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.78rem; color: rgba(245,230,184,0.3); }
.footer-made { font-size: 0.78rem; color: rgba(245,230,184,0.3); }
.footer-made span { color: var(--gold-rich); }

/* ─── LEGAL PAGES ───────────────────────────────── */
.legal-page {
  background: var(--cream-dark);
  color: var(--text-body);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 14px clamp(20px, 5vw, 56px);
  background: rgba(250,245,236,0.97);
  border-bottom: 1px solid rgba(200,155,60,0.18);
  box-shadow: 0 2px 20px rgba(43,26,14,0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.footer-home {
  color: inherit;
  text-decoration: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--brown-deep);
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brown-warm);
}

.nav-links a {
  color: inherit;
  text-decoration: none;
}

.nav-links a:hover,
.legal-content a:hover,
.footer-home:hover {
  color: var(--gold-rich);
}

.legal-main {
  padding: 118px 20px 64px;
}

.legal-content {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 48px);
  background: var(--cream);
  border: 1px solid rgba(200,155,60,0.2);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(54,31,15,0.14);
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold-rich);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-content h1,
.legal-content h2 {
  font-family: var(--font-display);
  color: var(--brown-deep);
  line-height: 1.12;
}

.legal-content h1 {
  font-size: clamp(2.3rem, 8vw, 4rem);
  margin-bottom: 8px;
}

.legal-content h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 4vw, 2rem);
}

.legal-content p {
  margin-top: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-content .updated {
  color: var(--brown-warm);
  font-weight: 600;
}

.legal-content a {
  color: var(--brown-warm);
  font-weight: 600;
}

.site-footer.compact {
  padding: 28px 20px;
  background: #150D06;
}

.site-footer .footer-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: rgba(245,230,184,0.58);
}

.footer-home {
  color: var(--gold-pale);
  font-family: var(--font-display);
  font-weight: 600;
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { padding: 0 32px; gap: 0; }
  .hero-copy  { padding-right: 32px; }
  .hero-banner-wrap { min-height: 520px; }
}

@media (max-width: 900px) {
  .main-nav { padding: 16px 20px; }
  .nav-logo span { display: none; }

  /* Hero: stack vertically on tablet/mobile */
  .hero { padding-top: 80px; }
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 0 24px;
    text-align: center;
  }
  .hero-copy {
    align-items: center;
    padding: 48px 0 32px;
  }
  .hero-stat-row { justify-content: center; }
  .hero-stat { text-align: center; }
  .hero-banner-wrap { min-height: auto; padding: 0 0 0; }
  .hero-banner-img {
    border-radius: 16px 16px 0 0;
    transform: perspective(1200px) rotateY(0deg) rotateX(2deg) translateY(0px);
    max-width: 100%;
  }
  .hero-banner-img:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
  }

  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr; direction: ltr; }
  .feature-row.reverse .feature-img-wrap { order: -1; }
  .privacy-inner,
  .about-inner { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; }
}
@media (max-width: 600px) {
  section { padding: 72px 20px; }
  .hero-copy { padding: 40px 0 24px; }
  .hero-stat-row { gap: 20px; }
  .benefit-card { padding: 28px 24px; }
  .landing-footer { padding: 48px 20px 32px; }
  .site-header { align-items: flex-start; flex-direction: column; gap: 12px; }
  .site-footer .footer-inner { align-items: flex-start; flex-direction: column; }
}
