/* ── Design tokens ─────────────────────────────────────────────────────────── */
:root {
  --coral:       #EF6562;
  --crimson:     #dc0c08;
  --gold:        #C49A3C;
  --gold-light:  #F0D98A;
  --near-black:  #1C1917;
  --warm-mid:    #57534E;
  --warm-soft:   #A8A29E;
  --warm-pale:   #F5EFEE;
  --surface:     #FFFFFF;
  --surface-alt: #FFF9F9;
  --border:      #EDE0DF;

  --text-strong: var(--near-black);
  --text-body:   var(--warm-mid);
  --text-muted:  var(--warm-soft);
  --bg:          var(--surface);
  --bg-alt:      var(--surface-alt);
  --card-bg:     var(--surface);
  --card-border: var(--border);
  --nav-bg:      rgba(255,255,255,0.96);
  --footer-bg:   #1C1412;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --shadow-sm:  0 1px 4px rgba(28,20,18,.07);
  --shadow-md:  0 4px 20px rgba(28,20,18,.10);
  --shadow-lg:  0 12px 40px rgba(28,20,18,.13);
}
[data-theme="dark"],
@media (prefers-color-scheme: dark) { :root:not([data-theme="light"]) {
  --near-black:  #F5F0EE;
  --warm-mid:    #C4B8B4;
  --warm-soft:   #6B5F5B;
  --warm-pale:   #2A1F1D;
  --surface:     #1A1210;
  --surface-alt: #221816;
  --border:      #3A2A27;
  --text-strong: #F5F0EE;
  --text-body:   #C4B8B4;
  --text-muted:  #6B5F5B;
  --bg:          var(--surface);
  --bg-alt:      var(--surface-alt);
  --card-bg:     #221816;
  --card-border: #3A2A27;
  --nav-bg:      rgba(26,18,16,0.96);
}}

/* ── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ── Container ─────────────────────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography scale ─────────────────────────────────────────────────────── */
.display {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -.01em;
  text-wrap: balance;
  color: var(--text-strong);
}
.display-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--text-body);
}
.section-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--coral);
}
.section-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--text-strong);
  text-wrap: balance;
  line-height: 1.2;
  margin-top: 10px;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-body);
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.65;
}

/* ── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: box-shadow .2s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--crimson), var(--coral));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 18px;
}
.nav-logo-img,
.nav-logo img {
  width: 60px; height: 60px;
  max-width: 60px; max-height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 700;
  color: var(--text-strong);
  line-height: 1.15;
}
.nav-logo-text span { display: block; font-size: .65rem; font-family: 'DM Sans', sans-serif; font-weight: 400; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  margin-left: auto; list-style: none;
}
.nav-links a {
  font-size: .9rem; font-weight: 500;
  color: var(--text-body);
  transition: color .15s;
}
.nav-links a:hover { color: var(--coral); }
.nav-cta {
  display: flex; align-items: center; gap: 10px; flex-shrink: 0;
}
.btn-outline {
  padding: 8px 18px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--card-border);
  font-size: .88rem; font-weight: 500;
  color: var(--text-strong);
  background: transparent;
  transition: border-color .15s, color .15s;
}
.btn-outline:hover { border-color: var(--coral); color: var(--coral); }
.btn-primary {
  padding: 9px 20px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--crimson), var(--coral));
  color: #fff; font-size: .88rem; font-weight: 600;
  border: none;
  box-shadow: 0 2px 10px rgba(239,101,98,.35);
  transition: opacity .15s, transform .1s;
}
.btn-primary:hover { opacity: .9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text-strong); border-radius: 2px; transition: .2s; }

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  background: linear-gradient(145deg, #1a0201 0%, var(--crimson) 45%, var(--coral) 100%);
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  padding: 120px 0 80px;
}
.hero-pattern {
  position: absolute; inset: 0; pointer-events: none; opacity: .07;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,.12); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 6px 14px;
  font-size: .78rem; font-weight: 600; color: #fff;
  letter-spacing: .04em; margin-bottom: 24px;
}
.hero-badge::before { content: '✦'; color: var(--gold-light); font-size: .7rem; }
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 700; line-height: 1.1;
  color: #fff; text-wrap: balance;
  letter-spacing: -.015em;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(90deg, var(--gold-light), #fff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.78);
  margin-top: 18px; line-height: 1.65; max-width: 440px;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 36px;
}
.btn-store {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.25);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-sm);
  padding: 11px 20px; color: #fff;
  transition: background .15s, transform .1s;
}
.btn-store:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-store-icon { font-size: 1.6rem; line-height: 1; }
.btn-store-text { text-align: left; }
.btn-store-text small { display: block; font-size: .65rem; opacity: .75; letter-spacing: .04em; }
.btn-store-text strong { display: block; font-size: .9rem; font-weight: 600; }
.hero-trust {
  display: flex; align-items: center; gap: 12px;
  margin-top: 32px; color: rgba(255,255,255,.65); font-size: .82rem;
}
.trust-dots { display: flex; gap: -6px; }
.trust-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border: 2px solid rgba(255,255,255,.4);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; color: #5C3D00; font-weight: 700;
  margin-left: -8px;
}
.trust-dot:first-child { margin-left: 0; }

/* ── Phone mockup ─────────────────────────────────────────────────────────── */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.phone-wrap {
  position: relative; width: 240px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.4));
}
.phone-frame {
  width: 240px; border-radius: 36px;
  border: 6px solid rgba(255,255,255,.25);
  background: #fff;
  overflow: hidden;
  aspect-ratio: 9/19;
  position: relative;
}
.phone-notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 80px; height: 22px; background: #fff;
  border-radius: 0 0 16px 16px; z-index: 2;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(170deg, #FFF9F9 0%, #fff 100%);
  display: flex; flex-direction: column;
}
.phone-header {
  background: linear-gradient(135deg, var(--crimson), var(--coral));
  color: #fff; padding: 28px 16px 14px;
  font-family: 'DM Sans', sans-serif; font-size: 11px;
  font-weight: 700; letter-spacing: .08em; text-align: center;
}
.phone-cards {
  padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; flex: 1;
}
.phone-card {
  background: #fff; border-radius: 10px;
  border: 1px solid #F0E8E8;
  padding: 8px 10px;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 8px rgba(239,101,98,.08);
}
.phone-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 700; color: #fff;
}
.phone-card-info { flex: 1; min-width: 0; }
.phone-card-name { font-size: 9px; font-weight: 700; color: #1C1917; }
.phone-card-detail { font-size: 8px; color: #78716C; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.phone-card-heart { color: var(--coral); font-size: 13px; }
.phone-nav-bar {
  background: #fff; border-top: 1px solid #F0E8E8;
  display: flex; justify-content: space-around; padding: 8px 0;
}
.phone-nav-item { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 7px; color: #A8A29E; }
.phone-nav-item.active { color: var(--coral); }
.phone-nav-icon { font-size: 14px; }
.phone-glow {
  position: absolute; inset: -20px; border-radius: 50px;
  background: radial-gradient(ellipse at center, rgba(239,101,98,.25) 0%, transparent 70%);
  z-index: -1;
}
.floating-badge {
  position: absolute; background: #fff;
  border-radius: var(--radius-sm); padding: 8px 12px;
  box-shadow: var(--shadow-lg); font-size: .7rem; font-weight: 600;
  display: flex; align-items: center; gap: 6px;
  white-space: nowrap; color: var(--near-black);
}
.floating-badge-1 { top: 20%; right: -40px; }
.floating-badge-2 { bottom: 25%; left: -50px; }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; }

/* ── Stats strip ──────────────────────────────────────────────────────────── */
.stats-strip {
  background: var(--card-bg);
  border-bottom: 1px solid var(--card-border);
}
.stats-inner {
  display: grid; grid-template-columns: repeat(3, 1fr);
  divide: var(--card-border);
}
.stat-cell {
  padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--card-border);
}
.stat-cell:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem; font-weight: 700; color: var(--coral);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-label { font-size: .82rem; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

/* ── Sections common ───────────────────────────────────────────────────────── */
.section { padding: 88px 0; }
.section-alt { background: var(--bg-alt); }
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 14px auto 0; }

/* ── Feature cards ─────────────────────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.icon-coral  { background: rgba(239,101,98,.1); }
.icon-gold   { background: rgba(196,154,60,.12); }
.icon-blue   { background: rgba(8,86,220,.08); }
.icon-green  { background: rgba(22,163,74,.08); }
.feature-title {
  font-weight: 700; font-size: 1rem; color: var(--text-strong); margin-bottom: 8px;
}
.feature-desc { font-size: .9rem; line-height: 1.6; color: var(--text-body); }

/* ── How it works ──────────────────────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 38px; left: calc(16.67% + 20px); right: calc(16.67% + 20px);
  height: 1px; background: var(--card-border);
  border-top: 2px dashed var(--border);
}
.step { padding: 0 24px; text-align: center; position: relative; }
.step-num {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--card-border);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.4rem; position: relative; z-index: 2;
  transition: border-color .2s, box-shadow .2s;
}
.step:hover .step-num {
  border-color: var(--coral);
  box-shadow: 0 0 0 6px rgba(239,101,98,.08);
}
.step-title { font-weight: 700; color: var(--text-strong); font-size: 1rem; margin-bottom: 8px; }
.step-desc { font-size: .88rem; color: var(--text-body); line-height: 1.6; }

/* ── Values section ────────────────────────────────────────────────────────── */
.values-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center;
}
.values-image-side {
  background: linear-gradient(135deg, var(--crimson), var(--coral));
  border-radius: var(--radius-lg); padding: 48px 40px;
  color: #fff; position: relative; overflow: hidden;
}
.values-image-side::before {
  content: '✟';
  position: absolute; right: -20px; top: -20px;
  font-size: 200px; opacity: .05; color: #fff;
  line-height: 1;
}
.values-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.5; color: #fff; font-weight: 500;
}
.values-ref {
  margin-top: 16px; font-size: .82rem; color: rgba(255,255,255,.65);
  font-weight: 500; letter-spacing: .04em;
}
.values-list { display: flex; flex-direction: column; gap: 22px; }
.value-item { display: flex; gap: 16px; align-items: flex-start; }
.value-icon-wrap {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: rgba(239,101,98,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-top: 2px;
}
.value-text-title { font-weight: 700; color: var(--text-strong); font-size: .95rem; }
.value-text-desc { font-size: .875rem; color: var(--text-body); margin-top: 3px; line-height: 1.55; }

/* ── Testimonials ──────────────────────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px;
}
.testimonial-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius-md); padding: 28px;
}
.testimonial-stars { color: var(--gold); font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: 1rem; line-height: 1.65; color: var(--text-strong);
  margin-bottom: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--coral));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: .95rem;
}
.testimonial-name { font-weight: 700; font-size: .9rem; color: var(--text-strong); }
.testimonial-loc { font-size: .78rem; color: var(--text-muted); margin-top: 1px; }

/* ── Download CTA ──────────────────────────────────────────────────────────── */
.download-section {
  background: linear-gradient(145deg, #1a0201 0%, var(--crimson) 50%, var(--coral) 100%);
  padding: 88px 0; text-align: center; position: relative; overflow: hidden;
}
.download-section::before {
  content: '';
  position: absolute; inset: 0; opacity: .04;
  background-image: repeating-linear-gradient(
    45deg, #fff 0, #fff 1px, transparent 0, transparent 50%
  );
  background-size: 20px 20px;
}
.download-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700; color: #fff; text-wrap: balance;
}
.download-sub { color: rgba(255,255,255,.75); font-size: 1.05rem; margin: 14px auto 0; max-width: 500px; }
.download-actions {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; margin-top: 36px;
}
.btn-store-lg {
  display: flex; align-items: center; gap: 12px;
  background: #fff; border-radius: var(--radius-sm);
  padding: 14px 24px; color: var(--near-black);
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
}
.btn-store-lg:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,0,0,.3); }
.btn-store-lg-icon { font-size: 2rem; line-height: 1; }
.btn-store-lg-text small { display: block; font-size: .65rem; color: #78716C; letter-spacing: .04em; text-transform: uppercase; }
.btn-store-lg-text strong { display: block; font-size: 1rem; font-weight: 700; }

/* ── Partners & Collaborations ─────────────────────────────────────────────── */
.partners-section {
  background: #f8f6f3;
  padding: 52px 0 48px;
  border-top: 1px solid #e8e2da;
  border-bottom: 1px solid #e8e2da;
}
.partners-label {
  text-align: center;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #a09080;
  margin-bottom: 32px;
}
.partners-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 24px;
}
.partner-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e4ddd5;
  border-radius: 14px;
  padding: 14px 24px;
  width: 180px;
  height: 80px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .18s, transform .18s, border-color .18s;
  flex-shrink: 0;
}
.partner-tile:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  border-color: #c8bfb5;
  transform: translateY(-2px);
}
.partner-tile img {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,.55);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  margin-bottom: 48px;
}
.footer-logo-img {
  width: 60px; height: 60px;
  object-fit: contain;
  margin-bottom: 12px;
}
.footer-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: #fff;
  margin-bottom: 12px;
}
.footer-tagline { font-size: .88rem; line-height: 1.6; max-width: 220px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.social-btn {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; transition: background .15s;
}
.social-btn:hover { background: rgba(239,101,98,.35); }
.footer-col-title {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .88rem; transition: color .15s; }
.footer-links a:hover { color: var(--coral); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: .8rem;
}
.footer-bottom a { transition: color .15s; }
.footer-bottom a:hover { color: var(--coral); }

/* ── Scroll reveal ────────────────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ── Mobile nav ───────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .mobile-menu {
    display: none; position: fixed; inset: 0; z-index: 99;
    background: var(--nav-bg); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center; gap: 28px;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { font-size: 1.25rem; font-weight: 600; color: var(--text-strong); }
  .mobile-menu .btn-primary { padding: 13px 36px; font-size: 1rem; }
  .mobile-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; font-size: 1.8rem; color: var(--text-strong); cursor: pointer;
  }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .phone-wrap { width: 180px; }
  .phone-frame { width: 180px; border-radius: 28px; }
  .floating-badge-1 { display: none; }
  .floating-badge-2 { display: none; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .values-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--card-border); }
  .stat-cell:last-child { border-bottom: none; }
}

/* ── Testimonials carousel ─────────────────────────────────────────────────── */
.testimonials-section {
  padding: 88px 0 96px;
  background: var(--bg-alt);
  overflow: hidden;
}

.tcarousel-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.tcarousel-btn {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--card-border);
  background: var(--surface);
  color: var(--coral);
  font-size: 24px; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .2s, color .2s, transform .2s, box-shadow .2s, border-color .2s;
}
.tcarousel-btn:hover {
  background: linear-gradient(135deg, var(--crimson), var(--coral));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.tcarousel-btn:active { transform: translateY(0); }

.tcarousel-viewport {
  flex: 1;
  overflow: hidden;
}
.tcarousel-track {
  display: flex;
  gap: 20px;
  transition: transform .5s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.tcarousel-card {
  flex-shrink: 0;
  box-sizing: border-box;
  background: var(--surface);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 250px;
  transition: box-shadow .25s, transform .25s;
}
.tcarousel-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.tcard-stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: .95rem;
}
.tcard-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 3.6rem;
  line-height: 0;
  color: var(--coral);
  opacity: .16;
  height: 22px;
  margin: 10px 0 4px;
}
.tcard-text {
  font-size: .96rem;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
}
.tcard-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--card-border);
}
.tcard-avatar {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), var(--coral));
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.tcard-name {
  font-weight: 600;
  color: var(--text-strong);
  font-size: .92rem;
}

.tcarousel-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  padding: 0 24px;
}
.tdot {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--card-border);
  cursor: pointer;
  transition: background .2s, width .2s, border-radius .2s;
}
.tdot:hover { background: var(--warm-soft); }
.tdot.active {
  width: 24px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--crimson), var(--coral));
}

@media (max-width: 640px) {
  .testimonials-section { padding: 60px 0 68px; }
  .tcarousel-wrap { padding: 0 12px; gap: 10px; }
  .tcarousel-card { min-height: 230px; padding: 26px 22px 22px; }
}

/* ── Faith statement ───────────────────────────────────────────────────────── */
.faith-section {
  background: linear-gradient(145deg, #1a0201 0%, var(--crimson) 55%, var(--coral) 100%);
  color: #fff;
  padding: 84px 0;
  text-align: center;
}
.faith-section .container { max-width: 780px; }
.faith-mark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 4.5rem;
  line-height: 0.6;
  color: var(--gold-light);
  opacity: .8;
}
.faith-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  line-height: 1.35;
  text-wrap: balance;
  margin: 12px auto 18px;
}
.faith-ref {
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 34px;
}
.faith-btn {
  display: inline-block;
  background: #fff;
  color: var(--crimson);
  padding: 14px 38px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  transition: transform .2s, box-shadow .2s;
}
.faith-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 640px) {
  .faith-section { padding: 60px 0; }
}

/* ── Prayer & Fellowship Times ──────────────────────────────────────────────── */
.prayer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.prayer-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px 20px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.prayer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson), var(--gold));
}
.prayer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.prayer-day {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--crimson);
  background: rgba(220,12,8,.08);
  border-radius: 20px;
  padding: 3px 12px;
  margin-bottom: 14px;
}
.prayer-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}
.prayer-name {
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-strong);
  margin-bottom: 8px;
  line-height: 1.3;
}
.prayer-time {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
@media (max-width: 640px) {
  .prayer-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .prayer-card { padding: 20px 14px 18px; }
}
