/* ═══════════════════════════════════════════════
   DEVOTION — holydevotion.app
   Sacred dark theme — matches Flutter app exactly
   ═══════════════════════════════════════════════ */

/* ── 1. CUSTOM PROPERTIES ───────────────────── */
:root {
  --bg: #0D1F35;
  --bg-secondary: #1B3A5C;
  --bg-deep: #0F2238;
  --gold: #C9A227;
  --gold-light: #E8D5A3;
  --gold-dim: #B89020;
  --cream: #FAF7F2;
  --white-06: rgba(255, 255, 255, 0.06);
  --white-10: rgba(255, 255, 255, 0.10);
  --white-12: rgba(255, 255, 255, 0.12);
  --white-15: rgba(255, 255, 255, 0.15);
  --white-35: rgba(255, 255, 255, 0.35);
  --white-55: rgba(255, 255, 255, 0.55);
  --white-70: rgba(255, 255, 255, 0.70);
  --gold-gradient: linear-gradient(135deg, #C9A227, #B89020);
  --hero-gradient: linear-gradient(135deg, #1B3A5C, #0F2238);
  --card-gradient: linear-gradient(135deg, #243F63, #1B3A5C);
  --font: 'Lora', Georgia, 'Times New Roman', serif;
  --content-max: 1200px;
  --content-narrow: 800px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
}

/* ── 2. RESET & BASE ────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: var(--gold); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.8; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ── 3. TYPOGRAPHY ──────────────────────────── */
h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.12;
  color: #fff;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
p { color: var(--white-70); line-height: 1.8; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* ── 4. LAYOUT ──────────────────────────────── */
.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow {
  max-width: var(--content-narrow);
  margin: 0 auto;
  padding: 0 24px;
}
.section {
  padding: 120px 0;
}
.text-center { text-align: center; }

/* ── 5. NAVIGATION ──────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(13, 31, 53, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-cross {
  font-size: 1.4rem;
  color: var(--gold-light);
  line-height: 1;
}
.nav-logo span {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  color: var(--white-70);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-light); opacity: 1; }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  padding: 10px 24px;
  background: var(--gold-gradient);
  border-radius: var(--radius-pill);
  color: var(--bg) !important;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.4);
  opacity: 1;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-70);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Mobile nav */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 31, 53, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem;
  color: var(--white-70);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile .nav-cta { font-size: 1.1rem; }

/* ── 6. PHONE FRAME ─────────────────────────── */
.phone-frame {
  width: 280px;
  padding: 12px;
  background: linear-gradient(145deg, #1a1a2e, #0a0a14);
  border-radius: 40px;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 60px rgba(201, 162, 39, 0.08);
  position: relative;
}
.phone-frame img {
  width: 100%;
  border-radius: 28px;
  display: block;
}
.phone-frame--tilted {
  transform: rotate(-5deg);
}

/* ── 7. HERO ─────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(27, 58, 92, 0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 1;
}
.hero-text {
  max-width: 580px;
}
.hero .tagline {
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero h1 { margin-bottom: 20px; }
.hero .subtitle {
  font-size: 1.15rem;
  color: var(--white-55);
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero .store-buttons {
  justify-content: flex-start;
}
.hero .free-line {
  text-align: left;
}
.store-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  background: var(--white-06);
  border: 1px solid var(--white-15);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.store-btn:hover {
  background: var(--white-10);
  border-color: rgba(201, 162, 39, 0.3);
  transform: translateY(-2px);
  opacity: 1;
  color: #fff;
}
.store-btn svg { width: 24px; height: 24px; fill: #fff; }
.store-btn .store-label { text-align: left; }
.store-btn .store-label small {
  display: block;
  font-size: 10px;
  color: var(--white-55);
  margin-bottom: 2px;
}
.store-btn .store-label strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}
.free-line {
  margin-top: 16px;
  font-size: 13px;
  color: var(--white-35);
  letter-spacing: 0.5px;
}

/* ── 8. SHOWCASE SECTIONS ────────────────────── */
.showcase {
  position: relative;
}
.showcase-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 80px;
}
.showcase--flipped .showcase-row {
  grid-template-columns: 1fr auto;
}
.showcase--flipped .showcase-phone {
  order: 2;
}
.showcase--flipped .showcase-text {
  order: 1;
}
.showcase-phone {
  display: flex;
  justify-content: center;
}
.showcase-text {
  max-width: 480px;
}
.showcase-text h2 {
  margin-bottom: 16px;
}
.showcase-text > p {
  font-size: 1rem;
  margin-bottom: 24px;
}
.showcase-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--white-70);
}
.showcase-points li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── 9. STATS SECTION ────────────────────────── */
.stats-section {
  text-align: center;
}
.stats-header {
  margin-bottom: 64px;
}
.stats-header h2 {
  margin-top: 8px;
  margin-bottom: 12px;
}
.stats-subtitle {
  font-size: 1.05rem;
  color: var(--white-55);
  max-width: 500px;
  margin: 0 auto;
}
.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 700px;
  margin: 0 auto;
}
.stat-card {
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, transform 0.3s;
}
.stat-card:hover {
  border-color: rgba(201, 162, 39, 0.35);
  transform: translateY(-4px);
}
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.stat-card p {
  font-size: 14px;
  color: var(--white-55);
}

/* ── 10. COMPACT FEATURES ────────────────────── */
.compact-features .section-header {
  text-align: center;
  margin-bottom: 64px;
}
.compact-features .section-header h2 { margin-top: 8px; }
.compact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.compact-card {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 162, 39, 0.12);
  border-radius: var(--radius-md);
  transition: transform 0.3s, border-color 0.3s;
}
.compact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 162, 39, 0.3);
}
.compact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(201, 162, 39, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.compact-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.compact-card p {
  font-size: 13px;
  color: var(--white-55);
  line-height: 1.7;
}

/* ── 11. HOW IT WORKS — TIMELINE ─────────────── */
.how-it-works {
  background: var(--bg-deep);
}
.how-it-works .section-header {
  text-align: center;
  margin-bottom: 80px;
}
.how-it-works .section-header h2 { margin-top: 8px; }
.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}
.timeline-line {
  position: absolute;
  top: 24px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(to right, transparent, rgba(201, 162, 39, 0.3), rgba(201, 162, 39, 0.3), transparent);
}
.timeline-step {
  text-align: center;
  position: relative;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 24px rgba(201, 162, 39, 0.2);
}
.timeline-step h3 { margin-bottom: 12px; }
.timeline-step p {
  font-size: 14px;
  color: var(--white-55);
  max-width: 280px;
  margin: 0 auto;
}

/* ── 12. SCRIPTURE BANNER ────────────────────── */
.scripture-banner {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  border-top: 1px solid rgba(201, 162, 39, 0.12);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
}
.scripture-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.04) 0%, transparent 70%);
}
.scripture-banner blockquote {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--gold-light);
  line-height: 1.8;
}
.scripture-banner cite {
  display: block;
  margin-top: 20px;
  font-size: 0.9rem;
  font-style: normal;
  color: rgba(201, 162, 39, 0.6);
  letter-spacing: 1px;
}

/* ── 13. CTA BANNER ──────────────────────────── */
.cta-banner {
  padding: 120px 0;
  background: var(--hero-gradient);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.05) 0%, transparent 70%);
  pointer-events: none;
}
.cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 80px;
}
.cta-text {
  max-width: 480px;
  position: relative;
  z-index: 1;
}
.cta-text h2 { margin-bottom: 12px; }
.cta-text > p {
  font-size: 1.1rem;
  color: var(--white-55);
  margin-bottom: 32px;
  font-style: italic;
}
.cta-text .store-buttons {
  justify-content: flex-start;
}
.cta-text .free-line {
  text-align: left;
}
.cta-phone {
  position: relative;
  z-index: 1;
}

/* ── 14. FOOTER ──────────────────────────────── */
.footer {
  padding: 64px 0 32px;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { max-width: 280px; }
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p {
  font-size: 13px;
  color: var(--white-35);
  font-style: italic;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--white-55);
  margin-bottom: 10px;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom p {
  font-size: 12px;
  color: var(--white-35);
}

/* ── 15. LEGAL PAGES ─────────────────────────── */
.legal-page {
  padding-top: 100px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}
.legal-date {
  font-size: 12px;
  font-style: italic;
  color: var(--white-35);
  margin-bottom: 32px;
}
.legal-section {
  margin-bottom: 36px;
}
.legal-section-title {
  font-size: 11px;
  font-weight: 700;
  color: rgba(201, 162, 39, 0.7);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.legal-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--white-70);
  margin-bottom: 8px;
}
.legal-text {
  font-size: 13px;
  color: var(--white-55);
  line-height: 1.7;
  margin-bottom: 12px;
}
.legal-bullets {
  padding-left: 4px;
  margin-bottom: 12px;
}
.legal-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--white-55);
  line-height: 1.7;
}
.legal-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.5);
  margin-top: 9px;
}
.legal-link {
  color: rgba(201, 162, 39, 0.8);
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 39, 0.4);
}

/* ── 16. SUPPORT PAGE ────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 64px;
}
.support-card {
  display: block;
  padding: 28px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: var(--radius-md);
  transition: transform 0.2s, border-color 0.2s;
}
.support-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.35);
  opacity: 1;
}
.support-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.support-card .email {
  font-size: 13px;
  color: var(--gold);
  margin-bottom: 8px;
}
.support-card p {
  font-size: 13px;
  color: var(--white-55);
}

/* FAQ */
.faq-section { margin-top: 20px; }
.faq-section h2 {
  text-align: center;
  margin-bottom: 40px;
}
.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question::after {
  content: '+';
  font-size: 1.25rem;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}
.faq-answer p {
  font-size: 14px;
  color: var(--white-55);
  padding-bottom: 20px;
  line-height: 1.7;
}

/* ── 17. CHURCH PORTAL LOGIN ─────────────────── */
.church-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: url('/assets/church_interior.png') center center / cover no-repeat;
  position: relative;
  overflow: hidden;
}
.church-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  pointer-events: none;
}
.login-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  background: rgba(13, 31, 53, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: var(--radius-lg);
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.login-card .hero-cross {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.login-card h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}
.login-card .login-subtitle {
  font-size: 14px;
  color: var(--white-55);
  margin-bottom: 36px;
  font-style: italic;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.login-input {
  width: 100%;
  padding: 14px 18px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s;
}
.login-input::placeholder {
  color: var(--white-35);
  font-style: italic;
}
.login-input:focus {
  border-color: var(--gold);
}
.login-btn {
  width: 100%;
  padding: 14px;
  background: var(--gold-gradient);
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--bg);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(201, 162, 39, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 8px;
}
.login-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201, 162, 39, 0.4);
}
.login-footer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--white-35);
}
.login-footer a { color: rgba(201, 162, 39, 0.7); }

/* ── 18. ANIMATIONS ──────────────────────────── */
@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(232, 213, 163, 0.3); opacity: 0.9; }
  50% { text-shadow: 0 0 40px rgba(232, 213, 163, 0.6), 0 0 80px rgba(201, 162, 39, 0.2); opacity: 1; }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ── 19. RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { gap: 48px; }
  .phone-frame { width: 240px; }
  .showcase-row { gap: 48px; }
  .compact-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-row { gap: 48px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Hero stacks */
  .hero { padding: 100px 24px 60px; min-height: auto; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-text { max-width: 100%; }
  .hero .store-buttons { justify-content: center; }
  .hero .free-line { text-align: center; }
  .hero-phone { order: 2; display: flex; justify-content: center; }
  .phone-frame { width: 220px; }

  /* Showcases stack */
  .showcase-row {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .showcase--flipped .showcase-phone { order: 0; }
  .showcase--flipped .showcase-text { order: 0; }
  .showcase-phone { order: -1; }
  .showcase-text { max-width: 100%; }
  .showcase-points { align-items: center; }

  /* Stats */
  .stats-row { grid-template-columns: 1fr; }

  /* Compact features */
  .compact-grid { grid-template-columns: 1fr; }

  /* Timeline stacks */
  .timeline { grid-template-columns: 1fr; gap: 32px; }
  .timeline-line { display: none; }

  /* CTA stacks */
  .cta-banner { padding: 80px 0; }
  .cta-row {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .cta-text .store-buttons { justify-content: center; }
  .cta-text .free-line { text-align: center; }
  .cta-phone { display: flex; justify-content: center; }
  .phone-frame--tilted { transform: none; }

  .store-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .scripture-banner blockquote { font-size: 1.1rem; }
  .login-card { padding: 36px 24px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  .container { padding: 0 16px; }
  .phone-frame { width: 200px; }
}
