/* ============ DharmaAI Website ============ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #F5F1E8;
  --bg-soft: #EFE9DA;
  --bg-card: #FFFFFF;
  --ink: #1F1B16;
  --ink-soft: #4A4339;
  --ink-muted: #7A7062;
  --saffron: #E89B3C;
  --saffron-deep: #C97A1E;
  --saffron-light: #F4C076;
  --dark: #0F1721;
  --dark-2: #1A2331;
  --border: #E0D8C5;
  --shadow-soft: 0 4px 20px rgba(31, 27, 22, 0.06);
  --shadow-md: 0 12px 40px rgba(31, 27, 22, 0.08);
  --shadow-lg: 0 24px 60px rgba(31, 27, 22, 0.12);
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ====== Subtle background texture ====== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(232, 155, 60, 0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(232, 155, 60, 0.05), transparent 40%);
  pointer-events: none;
  z-index: -1;
}

/* ====== Typography ====== */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }

p { color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

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

/* ====== Navigation ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 241, 232, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(232, 155, 60, 0.35);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--saffron-deep); }

.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem !important;
  transition: all 0.25s;
}
.nav-cta:hover { background: var(--saffron-deep); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* ====== Hero ====== */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 155, 60, 0.12);
  color: var(--saffron-deep);
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-eyebrow span {
  width: 6px;
  height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  display: inline-block;
}

.hero h1 {
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: italic;
  color: var(--saffron-deep);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.65;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 500;
  transition: all 0.25s;
  border: 2px solid var(--ink);
}
.btn-store:hover {
  background: var(--saffron-deep);
  border-color: var(--saffron-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 122, 30, 0.3);
}
.btn-store svg { flex-shrink: 0; }
.btn-store .label-small { font-size: 0.7rem; opacity: 0.8; line-height: 1; }
.btn-store .label-big { font-size: 1rem; line-height: 1.1; font-weight: 600; }

.btn-store.primary {
  background: var(--saffron-deep);
  border-color: var(--saffron-deep);
  box-shadow: 0 8px 20px rgba(201, 122, 30, 0.25);
}
.btn-store.primary:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 480px;
}
.hero-stats div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--ink);
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-top: 2px;
}

/* Hero phone mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 600px;
}

.glow {
  position: absolute;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(232, 155, 60, 0.35), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.phone {
  position: relative;
  width: 280px;
  border-radius: 38px;
  background: var(--dark);
  padding: 10px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.04);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.phone img {
  width: 100%;
  border-radius: 28px;
  display: block;
}

.phone.secondary {
  position: absolute;
  width: 220px;
  top: 60px;
  right: -20px;
  transform: rotate(8deg);
  z-index: 1;
  animation: float 6s ease-in-out infinite 1.5s;
  opacity: 0.92;
}

.phone.tertiary {
  position: absolute;
  width: 210px;
  bottom: 30px;
  left: -10px;
  transform: rotate(-7deg);
  z-index: 1;
  animation: float 6s ease-in-out infinite 3s;
  opacity: 0.92;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0deg)); }
  50% { transform: translateY(-12px) rotate(var(--rot, 0deg)); }
}
.phone.secondary { --rot: 8deg; }
.phone.tertiary { --rot: -7deg; }

/* ====== Section base ====== */
section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.section-head .eyebrow {
  color: var(--saffron-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p {
  font-size: 1.1rem;
  color: var(--ink-muted);
}

/* ====== Scriptures section ====== */
.scriptures {
  background: linear-gradient(180deg, transparent, rgba(232, 155, 60, 0.04));
}

.scripture-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.scripture-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.scripture-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--saffron-light);
}

.scripture-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
}
.scripture-card:nth-child(2) .scripture-icon { background: linear-gradient(135deg, #A78BFA, #7C3AED); }
.scripture-card:nth-child(3) .scripture-icon { background: linear-gradient(135deg, #C084FC, #8B5CF6); }
.scripture-card:nth-child(4) .scripture-icon { background: linear-gradient(135deg, #9F7AEA, #6B46C1); }
.scripture-card:nth-child(5) .scripture-icon { background: linear-gradient(135deg, #B794F4, #805AD5); }

.scripture-card h3 { margin-bottom: 6px; }
.scripture-card .tag {
  color: var(--saffron-deep);
  font-size: 0.85rem;
  font-style: italic;
  font-family: var(--serif);
  display: block;
  margin-bottom: 14px;
}
.scripture-card p { font-size: 0.95rem; }

/* ====== Features ====== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  padding: 32px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.feature:hover {
  border-color: var(--saffron);
  transform: translateY(-4px);
}

.feature-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--saffron);
  font-style: italic;
  line-height: 1;
  margin-bottom: 18px;
  display: block;
}
.feature h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature p { font-size: 0.96rem; }

/* ====== How it works ====== */
.how-it-works {
  background: var(--dark);
  color: var(--bg);
}
.how-it-works h2 { color: var(--bg); }
.how-it-works .section-head p { color: rgba(255,255,255,0.7); }
.how-it-works .section-head .eyebrow { color: var(--saffron-light); }

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step {
  text-align: left;
}
.step-num {
  display: inline-block;
  background: rgba(232, 155, 60, 0.15);
  color: var(--saffron-light);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  font-family: var(--serif);
  font-weight: 600;
  margin-bottom: 18px;
  border: 1px solid rgba(232, 155, 60, 0.3);
}
.step h3 { color: var(--bg); font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

/* ====== Pricing ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 30px 24px;
  text-align: left;
  position: relative;
  transition: all 0.3s;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.price-card.featured {
  background: var(--dark);
  color: var(--bg);
  border-color: var(--saffron-deep);
}
.price-card.featured h3 { color: var(--bg); }
.price-card.featured .price { color: var(--saffron-light); }
.price-card.featured p { color: rgba(255,255,255,0.7); }
.price-card.featured .price-meta { color: rgba(255,255,255,0.55); }

.badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: var(--saffron);
  color: white;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 100px;
}

.price-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.price-card .price-meta {
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 18px;
}
.price-card .price {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}
.price-card .price small {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-muted);
}
.price-card ul {
  list-style: none;
  margin-top: 18px;
  font-size: 0.9rem;
}
.price-card ul li {
  padding: 6px 0;
  color: var(--ink-soft);
}
.price-card.featured ul li { color: rgba(255,255,255,0.85); }
.price-card ul li::before {
  content: "✓ ";
  color: var(--saffron);
  font-weight: 700;
  margin-right: 6px;
}

/* ====== Languages ====== */
.languages {
  background: linear-gradient(180deg, rgba(232, 155, 60, 0.04), transparent);
}
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}
.lang-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 12px 22px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s;
}
.lang-chip:hover {
  background: var(--saffron);
  color: white;
  border-color: var(--saffron);
  transform: translateY(-2px);
}
.lang-chip .flag { font-size: 1.2rem; }

/* ====== Final CTA ====== */
.final-cta {
  background: var(--dark);
  color: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(232, 155, 60, 0.25), transparent 60%);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(60px);
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 { color: var(--bg); margin-bottom: 18px; max-width: 700px; margin-left: auto; margin-right: auto; }
.final-cta p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
}
.final-cta .hero-cta-row { justify-content: center; }
.final-cta .btn-store {
  background: var(--saffron-deep);
  border-color: var(--saffron-deep);
}
.final-cta .btn-store:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

/* ====== Footer ====== */
footer {
  background: #0A0F17;
  color: rgba(255,255,255,0.7);
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  margin-bottom: 16px;
}
.footer-brand h4 {
  font-family: var(--serif);
  color: white;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  max-width: 320px;
}

.footer-col h5 {
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  font-size: 0.93rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--saffron-light); }

.footer-contact a { display: block; margin-bottom: 8px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 12px;
}

/* ====== Inner pages ====== */
.page-hero {
  padding: 80px 0 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .eyebrow {
  color: var(--saffron-deep);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero p {
  font-size: 1.1rem;
  color: var(--ink-muted);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 70px 0 100px;
}
.page-content .container { max-width: 820px; }
.page-content h2 {
  margin-top: 50px;
  margin-bottom: 18px;
  font-size: 1.7rem;
}
.page-content h2:first-child { margin-top: 0; }
.page-content h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  color: var(--ink);
}
.page-content p {
  margin-bottom: 16px;
  font-size: 1.02rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.page-content ul {
  margin: 14px 0 20px 22px;
  color: var(--ink-soft);
}
.page-content ul li { margin-bottom: 8px; }

/* Contact specific */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
}
.contact-info-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.contact-info-card > p {
  margin-bottom: 28px;
  color: var(--ink-muted);
}

.contact-item {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:last-child { border-bottom: none; }
.contact-item .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(232, 155, 60, 0.15);
  color: var(--saffron-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-item .meta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  margin-bottom: 4px;
}
.contact-item a, .contact-item span {
  font-size: 1.02rem;
  color: var(--ink);
  font-weight: 500;
}
.contact-item a:hover { color: var(--saffron-deep); }

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--ink);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--ink);
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--saffron);
  background: white;
}
.form-group textarea { min-height: 130px; resize: vertical; }

.btn-submit {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.98rem;
  transition: all 0.25s;
}
.btn-submit:hover {
  background: var(--saffron-deep);
  transform: translateY(-2px);
}

/* About page specific */
.about-visual {
  display: flex;
  justify-content: center;
  margin: 40px 0;
}
.about-visual img {
  width: 140px;
  height: 140px;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(232, 155, 60, 0.4);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 30px 0;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.value-card p { font-size: 0.95rem; margin-bottom: 0; }

/* ====== Showcase (See it in action) ====== */
.showcase {
  background: linear-gradient(180deg, transparent, rgba(232, 155, 60, 0.05));
}

.showcase-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(8px, 2vw, 24px);
  flex-wrap: nowrap;
}

.showcase-step {
  flex: 1 1 0;
  max-width: 300px;
  min-width: 0;
  text-align: center;
}

.showcase-phone {
  background: var(--dark);
  padding: 7px;
  border-radius: 26px;
  box-shadow: var(--shadow-lg);
  margin: 0 auto 20px;
  width: 100%;
  max-width: 210px;
  transition: transform 0.35s ease;
}
.showcase-phone img {
  width: 100%;
  border-radius: 21px;
  display: block;
}
.showcase-step:hover .showcase-phone {
  transform: translateY(-8px);
}

.showcase-label {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.showcase-num {
  background: var(--saffron-deep);
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.showcase-step p {
  font-size: 0.95rem;
  color: var(--ink-muted);
  max-width: 260px;
  margin: 0 auto;
}

.showcase-arrow {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  color: var(--saffron);
  align-self: center;
  margin-top: 18%;
  flex-shrink: 0;
}

.showcase-note {
  text-align: center;
  margin-top: 50px;
  font-size: 1.05rem;
  color: var(--ink-muted);
}
.showcase-note em {
  font-style: italic;
  color: var(--saffron-deep);
  font-family: var(--serif);
}

.scripture-card-cta {
  background: linear-gradient(160deg, rgba(232,155,60,0.08), var(--bg-card));
  border-style: dashed;
  border-color: var(--saffron-light);
}

/* ====== Mobile ====== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .menu-toggle { display: block; }

  .hero { padding: 60px 0 50px; }
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { min-height: 500px; }
  .phone { width: 240px; }
  .phone.secondary { width: 180px; right: 0; }
  .phone.tertiary { width: 170px; left: 0; }

  section { padding: 60px 0; }
  .scripture-grid, .features-grid, .steps, .pricing-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }

  .showcase-flow { gap: 8px; align-items: flex-start; }
  .showcase-arrow { display: none; }
  .showcase-step { max-width: none; }
  .showcase-phone { max-width: 140px; padding: 4px; border-radius: 16px; }
  .showcase-phone img { border-radius: 13px; }
  .showcase-label {
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    margin-bottom: 6px;
  }
  .showcase-step p { font-size: 0.8rem; max-width: 100%; line-height: 1.45; }
  .showcase-note { font-size: 0.95rem; margin-top: 36px; padding: 0 8px; }
}

@media (min-width: 600px) and (max-width: 900px) {
  .scripture-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

@media (max-width: 600px) {
  h1 { font-size: 2.2rem; }
  .hero-cta-row { flex-direction: column; align-items: stretch; }
  .btn-store { justify-content: center; }
}
