:root {
  --bg: #1A1A2E;
  --surface: #22223B;
  --surface-elevated: #2A2A4A;
  --accent: #D4A843;
  --accent-hover: #E0B855;
  --deep-purple: #4A1942;
  --text: #FFFFFF;
  --text-secondary: #B0B0C8;
  --text-muted: rgba(255, 255, 255, 0.6);
  --border: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

/* ─────────────── NAV ─────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26, 26, 46, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.2px;
  color: var(--text);
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(212, 168, 67, 0.25);
}

.logo-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }

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

.nav-links a {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 6px 24px rgba(212, 168, 67, 0.28);
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212, 168, 67, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-secondary:hover { background: rgba(212, 168, 67, 0.1); }

.btn-nav { padding: 10px 20px; font-size: 14px; }

/* Bouton désactivé "Bientôt disponible" */
.btn-soon {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  border: 1.5px dashed rgba(212, 168, 67, 0.35);
  cursor: not-allowed;
  pointer-events: none;
  user-select: none;
}

.btn-soon svg { opacity: 0.6; }

/* ─────────────── HERO ─────────────── */
.hero { padding: 80px 0 100px; position: relative; overflow: hidden; }

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 62px);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
}

h1 .accent-text { color: var(--accent); font-style: italic; }

.hero p.lead {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note { font-size: 13px; color: var(--text-muted); margin-top: 18px; }

/* Phone mockup */
.phone {
  position: relative;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 9 / 19;
  background: #0F0F1F;
  border-radius: 46px;
  padding: 12px;
  border: 2px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 0 8px rgba(212, 168, 67, 0.06),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  margin: 0 auto;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #1A1A2E 0%, #22223B 100%);
  border-radius: 36px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 48px 22px 28px;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background: #0F0F1F;
  border-radius: 100px;
}

.phone-label {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 2.5px;
  font-weight: 600;
  margin-bottom: 14px;
}

.phone-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  line-height: 1.2;
}

.mood-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.mood-chip {
  padding: 14px 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.mood-chip.active {
  background: rgba(212, 168, 67, 0.12);
  border-color: var(--accent);
}

.mood-emoji { font-size: 22px; }

.mood-label {
  font-size: 10px;
  color: var(--text-secondary);
  font-weight: 500;
}

.mood-chip.active .mood-label { color: var(--accent); font-weight: 600; }

.phone-cta {
  margin-top: auto;
  background: var(--accent);
  color: var(--bg);
  padding: 12px;
  text-align: center;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
}

/* ─────────────── SECTIONS ─────────────── */
section { padding: 100px 0; }

.section-eyebrow {
  display: block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  max-width: 720px;
}

.section-lead {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 56px;
}

/* ─────────────── PROBLEMS / FEATURES / STEPS ─────────────── */
.problems-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.problem-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.2s, border-color 0.2s;
}

.problem-card:hover { transform: translateY(-3px); border-color: rgba(212, 168, 67, 0.3); }

.problem-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 168, 67, 0.12);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}

.problem-icon svg { width: 22px; height: 22px; color: var(--accent); }

.problem-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: white; }
.problem-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.features { background: linear-gradient(180deg, transparent 0%, rgba(74, 25, 66, 0.12) 50%, transparent 100%); }

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

.feature-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.25) 0%, rgba(74, 25, 66, 0.25) 100%);
  border: 1px solid rgba(212, 168, 67, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature-icon svg { width: 24px; height: 24px; color: var(--accent); }

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: white; }
.feature-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 12px;
  position: relative;
}

.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.9;
}

.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--text-secondary); font-size: 15px; line-height: 1.65; }

/* ─────────────── CTA ─────────────── */
.cta-section { padding: 100px 0; text-align: center; }

.cta-box {
  background: linear-gradient(135deg, var(--surface) 0%, var(--deep-purple) 140%);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 24px;
  padding: 72px 40px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box h2 { margin: 0 auto 20px; text-align: center; max-width: none; }

.cta-box p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ─────────────── TOP PROMO BAR (above article hero) ─────────────── */
.top-promo {
  background: linear-gradient(90deg, rgba(212, 168, 67, 0.14) 0%, rgba(74, 25, 66, 0.18) 100%);
  border-bottom: 1px solid rgba(212, 168, 67, 0.22);
}

.top-promo-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 14px 24px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.top-promo-text {
  font-size: 17px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-promo-quote { font-style: italic; }
.top-promo-text strong { font-style: normal; }

.top-promo-text strong {
  color: var(--accent);
  font-weight: 700;
}

.top-promo-text .promo-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--accent);
}

.top-promo-cta {
  background: var(--accent);
  color: var(--bg);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.top-promo-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

@media (max-width: 700px) {
  .top-promo-inner { flex-direction: column; gap: 10px; padding: 12px 18px; align-items: center; }
  .top-promo-text { font-size: 15px; text-align: center; }
  .top-promo-cta { font-size: 12px; padding: 8px 14px; }
}

/* ─────────────── ARTICLE PAGES (priere/verset/meditation) ─────────────── */
.article-hero {
  padding: 60px 0 30px;
  position: relative;
  overflow: hidden;
}

.article-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.breadcrumbs {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}

.breadcrumbs a { color: var(--text-secondary); }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { opacity: 0.5; }

.article-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4.4vw, 50px);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 20px;
  position: relative;
}

.article-intro {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
}

.article-content {
  padding: 0 0 60px;
}

.article-section {
  margin-bottom: 36px;
}

.article-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  letter-spacing: -0.3px;
  margin-bottom: 16px;
  color: white;
}

.prayer-block {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  white-space: pre-line;
  margin-bottom: 24px;
}

.verse-block {
  padding: 28px;
  background: linear-gradient(135deg, rgba(212, 168, 67, 0.08) 0%, rgba(74, 25, 66, 0.08) 100%);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 24px;
}

.verse-ref {
  display: inline-block;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.verse-text {
  font-size: 17px;
  font-style: italic;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.verse-comment {
  margin-top: 14px;
  font-size: 15px;
  color: var(--text-secondary);
  font-style: normal;
  line-height: 1.65;
}

.meditation-steps {
  list-style: none;
  counter-reset: step;
}

.meditation-steps li {
  counter-increment: step;
  position: relative;
  padding: 22px 22px 22px 76px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.65;
}

.meditation-steps li::before {
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 22px;
  width: 36px;
  height: 36px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 16px;
}

.verses-list { display: flex; flex-direction: column; gap: 14px; }

/* ─────────────── INLINE CTA ─────────────── */
.inline-cta {
  margin: 50px 0;
  padding: 36px 32px;
  background: linear-gradient(135deg, var(--surface) 0%, var(--deep-purple) 140%);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.inline-cta-text {
  flex: 1;
  min-width: 240px;
}

.inline-cta-text strong {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
  color: white;
}

.inline-cta-text span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.inline-cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ─────────────── RELATED ─────────────── */
.related-section {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--border);
}

.related-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}

.related-card {
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.15s, border-color 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.related-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(212, 168, 67, 0.04);
  color: white;
}

.related-card .arrow { color: var(--accent); }

/* ─────────────── HUB PAGES (priere/, versets/, meditation/) ─────────────── */
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.hub-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: transform 0.2s, border-color 0.2s;
  display: block;
}

.hub-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.3);
}

.hub-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
  color: white;
}

.hub-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ─────────────── BLOG ─────────────── */
.article-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.meta-sep { opacity: 0.4; }

.article-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.article-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.25);
  color: var(--accent);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.blog-content {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.blog-content > * + * { margin-top: 18px; }

.blog-content p { color: rgba(255, 255, 255, 0.88); }

.blog-content .lead-p {
  font-size: 19px;
  line-height: 1.65;
  color: white;
  font-weight: 500;
}

.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin-top: 48px;
  margin-bottom: 18px;
  color: white;
  line-height: 1.2;
}

.blog-content h3 {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: white;
}

.blog-content ul, .blog-content ol {
  padding-left: 24px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.blog-content li { margin-bottom: 8px; color: rgba(255, 255, 255, 0.88); }

.blog-content li::marker { color: var(--accent); }

.blog-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(212, 168, 67, 0.5);
  transition: text-decoration-color 0.2s;
}

.blog-content a:hover { text-decoration-color: var(--accent); }

.blog-content strong { color: white; font-weight: 700; }

.blog-content em { font-style: italic; color: rgba(255, 255, 255, 0.95); }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 10px; }

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  transition: border-color 0.2s, background 0.2s;
}

.faq-item[open] {
  border-color: rgba(212, 168, 67, 0.3);
  background: rgba(212, 168, 67, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  color: white;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 22px;
  font-weight: 400;
  transition: transform 0.2s;
}

.faq-item[open] summary::after { content: '−'; }

.faq-item p {
  margin-top: 12px;
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.65;
}

/* Blog hub */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.blog-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, border-color 0.2s;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 168, 67, 0.3);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: white;
  line-height: 1.25;
}

.blog-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

.blog-card-cta {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-top: auto;
}

/* ─────────────── FOOTER ─────────────── */
footer {
  padding: 50px 0 30px;
  border-top: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 14px;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links { display: flex; gap: 24px; }

.footer-links a {
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

/* ─────────────── RESPONSIVE ─────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; text-align: left; }
  .phone { max-width: 280px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .problems-grid { grid-template-columns: 1fr; }
  .nav-links a:not(.btn) { display: none; }
  section { padding: 70px 0; }
  .hero { padding: 50px 0 70px; }
  .cta-box { padding: 56px 24px; }
  .article-hero { padding: 40px 0 20px; }
  .prayer-block { padding: 22px; font-size: 16px; }
  .meditation-steps li { padding: 18px 18px 18px 64px; }
  .meditation-steps li::before { left: 16px; top: 18px; width: 32px; height: 32px; font-size: 14px; }
  .inline-cta { padding: 24px; }
  .blog-content { font-size: 16px; }
  .blog-content h2 { font-size: 24px; margin-top: 36px; }
  .blog-content h3 { font-size: 17px; margin-top: 24px; }
  .blog-card { padding: 22px; }
  .blog-card h3 { font-size: 19px; }
}
