/* QalbNourish — component styles (companion to tokens.css) */

/* ─── Animations ──────────────────────────────────────────── */
@keyframes qpulse {
  0%   { transform: scale(0.85); opacity: 0.6; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}
::selection { background: var(--sage-tint); color: var(--ink); }

/* ─── Top nav ──────────────────────────────────────────────── */
.topnav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  background: rgba(242,237,228,0.78);
  border-bottom: 1px solid var(--hairline);
}
.topnav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 28px;
}
.topnav-links {
  display: flex; gap: 32px; align-items: center; font-size: 14px;
}
.topnav-links a { color: var(--ink-2); }
.topnav-links a.btn { color: #fff; }

/* ─── Logo ────────────────────────────────────────────────── */
.logo {
  display: inline-flex; align-items: center; gap: 10px;
}
.logo-text {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ─── Hero pattern bg ─────────────────────────────────────── */
.hero-pattern {
  position: absolute; inset: 0;
  background-image: url(assets/pattern-star.svg);
  background-size: 240px 240px;
  background-position: center top;
  opacity: 0.5;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0));
  pointer-events: none;
}

/* ─── Phone frame primitive (scales via --scale) ──────────── */
.phone-wrap {
  width: calc(360px * var(--scale, 1));
  height: calc(740px * var(--scale, 1));
  position: relative;
  flex-shrink: 0;
}
.phone {
  width: 360px;
  height: 740px;
  background: #1A1815;
  border-radius: 48px;
  padding: 10px;
  box-shadow: var(--shadow-phone);
  position: absolute;
  top: 0; left: 0;
  transform: scale(var(--scale, 1));
  transform-origin: top left;
}
/* side buttons */
.phone::before,
.phone::after,
.phone .btn-rocker-1,
.phone .btn-rocker-2 {
  content: "";
  position: absolute;
  background: #1A1815;
  border-radius: 2px;
}
.phone::before { left: -2px; top: 110px; width: 3px; height: 28px; }
.phone::after  { right: -2px; top: 180px; width: 3px; height: 80px; }
.phone .btn-rocker-1 { left: -2px; top: 160px; width: 3px; height: 50px; }
.phone .btn-rocker-2 { left: -2px; top: 220px; width: 3px; height: 50px; }

.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg);
  border-radius: 38px;
  overflow: hidden;
  position: relative;
}
.phone-island {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 100px; height: 26px; background: #1A1815; border-radius: 999px; z-index: 50;
}
.phone-statusbar {
  height: 44px; padding: 0 22px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; font-weight: 600; color: var(--ink);
  font-family: var(--sans);
}
.phone-content {
  height: calc(100% - 44px);
  overflow: hidden;
  position: relative;
  font-family: var(--sans);
}

/* ─── App bottom nav (inside phones) ──────────────────────── */
.app-botnav {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 0 18px;
  display: flex; justify-content: space-around;
  border-top: 1px solid var(--hairline);
  background: var(--bg);
}
.app-botnav-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  color: var(--muted);
  font-family: var(--sans); font-size: 11px; font-weight: 500;
}
.app-botnav-item.active { color: var(--sage-deep); }

/* ─── Today screen ────────────────────────────────────────── */
.today {
  height: 100%; padding: 20px 24px 80px;
  overflow: hidden;
}
.today h2 {
  font-family: var(--serif); font-size: 34px; line-height: 1.1; font-weight: 500;
  margin-top: 8px;
}
.today-mosque { display: flex; justify-content: center; margin: 18px 0 14px; }
.today-mosque img { width: 220px; height: auto; }
.today-cta {
  width: 100%;
  background: var(--sage-deep);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 18px 20px;
  text-align: center;
  font-family: inherit;
  cursor: pointer;
}
.today-cta-title { font-size: 17px; font-weight: 600; margin-bottom: 4px; }
.today-cta-sub { font-size: 11px; opacity: 0.85; line-height: 1.4; }
.today-pills {
  display: flex; gap: 8px; margin-top: 12px;
}
.today-pill {
  flex: 1; background: #fff; border: 1px solid var(--hairline);
  border-radius: 999px; padding: 10px 14px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; color: var(--ink-2); font-weight: 500;
}
.today-pill svg { color: var(--sage); }
.today-quote {
  margin-top: 22px; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 14px;
  color: var(--ink-2);
}
.today-quote-cite {
  font-style: normal; font-family: var(--sans); font-size: 11px;
  color: var(--muted); margin-top: 4px;
}

/* ─── Voice screen ────────────────────────────────────────── */
.voice {
  height: 100%; padding: 8px 24px 20px;
  display: flex; flex-direction: column; align-items: center;
}
.voice-back { align-self: flex-start; color: var(--ink-2); font-size: 20px; padding: 8px; }
.voice-bismi { font-family: var(--arabic); font-size: 15px; color: var(--muted); margin-top: 8px; direction: rtl; }
.voice h2 {
  font-family: var(--serif); font-size: 36px; text-align: center;
  margin-top: 20px; line-height: 1.1; font-weight: 500;
}
.voice-sub { margin-top: 14px; color: var(--muted); font-size: 14px; }
.voice-orb {
  position: relative; margin-top: 48px;
  width: 180px; height: 180px;
}
.voice-ring {
  position: absolute; inset: 0;
  border: 1px solid var(--sage);
  border-radius: 50%;
  background: rgba(92,122,101,0.06);
}
.voice-ring-1 { margin: 10px; opacity: 0.58; animation: qpulse 2.4s 0.4s infinite ease-out; }
.voice-ring-2 { margin: 0px;  opacity: 0.76; animation: qpulse 2.4s 0.8s infinite ease-out; }
.voice-ring-3 {
  margin: -10px;
  background: rgba(92,122,101,0.10);
  opacity: 0.94; animation: qpulse 2.4s 1.2s infinite ease-out;
}
.voice-mic {
  position: absolute; inset: 40px;
  background: var(--sage-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -4px rgba(63,86,72,0.4);
}
.voice-quote {
  margin-top: auto; text-align: center;
  font-family: var(--serif); font-style: italic; font-size: 13px;
  color: var(--ink-2); padding-bottom: 12px;
}
.voice-quote-cite {
  font-family: var(--sans); font-style: normal; color: var(--muted);
  font-size: 11px; margin-top: 4px;
}

/* ─── Reflection screen ───────────────────────────────────── */
.reflection { height: 100%; padding: 20px 24px; overflow: hidden; }
.reflection-bismi { text-align: right; color: var(--muted); font-size: 14px; font-family: var(--arabic); direction: rtl; }
.reflection h2 {
  font-family: var(--serif); font-size: 28px; font-weight: 600;
  margin-top: 12px; line-height: 1.15;
}
.reflection-illustration { display: flex; justify-content: center; margin: 18px 0 8px; }
.reflection-note { font-size: 12px; color: var(--muted); margin-top: 8px; }
.reflection-card {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: 14px; padding: 14px; margin-top: 10px;
  font-family: var(--serif); font-style: italic;
  font-size: 11.5px; line-height: 1.5; color: var(--ink-2);
}
.reflection-rooted {
  text-align: center; margin-top: 14px; color: var(--sage-deep);
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
}

/* ─── Journey screen ──────────────────────────────────────── */
.journey { height: 100%; padding: 16px 20px 80px; overflow: hidden; }
.journey h2 { font-family: var(--serif); font-size: 28px; font-weight: 600; text-align: center; margin-top: 8px; }
.journey-tagline { text-align: center; color: var(--muted); font-size: 13px; font-style: italic; font-family: var(--serif); }
.journey-row {
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px;
  padding: 14px; margin-top: 16px; display: flex; align-items: center; gap: 12px;
}
.journey-row-icon {
  width: 36px; height: 36px; background: var(--sage-soft); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.journey-row-title { font-weight: 600; font-size: 13.5px; }
.journey-row-sub { color: var(--muted); font-size: 11.5px; }
.journey-row-arrow { color: var(--muted-2); }

.journey-portrait {
  background: #fff; border: 1px solid var(--hairline); border-left: 3px solid var(--sage);
  border-radius: 14px; padding: 14px; margin-top: 10px;
}
.journey-portrait-head { display: flex; gap: 8px; align-items: center; margin-bottom: 6px; }
.journey-portrait-title { font-weight: 600; font-size: 13.5px; }
.journey-portrait-body { color: var(--muted); font-size: 11.5px; line-height: 1.5; }

.journey-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 10px; }
.journey-stat {
  background: #fff; border: 1px solid var(--hairline); border-radius: 12px;
  padding: 12px; text-align: center;
}
.journey-stat svg { display: block; margin: 0 auto; }
.journey-stat-v { font-size: 20px; font-weight: 600; margin-top: 4px; }
.journey-stat-l { font-size: 10px; color: var(--muted); }

.journey-section-title { margin-top: 12px; font-size: 13.5px; font-weight: 600; }

.journey-reflection {
  background: #fff; border: 1px solid var(--hairline); border-radius: 14px;
  padding: 12px; margin-top: 8px;
}
.journey-reflection-row { display: flex; align-items: center; gap: 8px; }
.journey-reflection-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; }
.journey-reflection-date { font-size: 13px; }
.journey-reflection-mood { color: var(--sage-deep); font-size: 11.5px; margin-left: 16px; margin-top: 2px; }
.journey-reflection-tags { display: flex; gap: 4px; margin-top: 8px; flex-wrap: wrap; }
.journey-reflection-tag {
  background: var(--sage-soft); color: var(--sage-deep); font-size: 10px;
  padding: 3px 8px; border-radius: 999px;
}

/* ─── Practices screen ────────────────────────────────────── */
.practices { height: 100%; padding: 20px 20px 80px; overflow: hidden; }
.practices h2 { font-family: var(--serif); font-size: 32px; font-weight: 600; margin-top: 4px; }
.practices-tagline { color: var(--muted); font-size: 13px; font-style: italic; font-family: var(--serif); }
.practices-list { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.practices-item {
  background: #fff; border: 1px solid var(--hairline);
  border-left: 3px solid var(--sage);
  border-radius: 14px; padding: 12px;
}
.practices-item.terracotta { border-left-color: var(--terracotta); }
.practices-item-row { display: flex; align-items: center; gap: 10px; }
.practices-item-icon {
  width: 36px; height: 36px; background: var(--sage-soft); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.practices-item-title { font-weight: 600; font-size: 14px; }
.practices-item-sub { font-size: 11px; color: var(--muted); }
.practices-item-foot {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 8px; padding-top: 8px; border-top: 1px solid var(--hairline);
}
.practices-item-tag {
  background: var(--sage-soft); color: var(--sage-deep);
  font-size: 9.5px; padding: 2px 8px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.08em;
}
.practices-item-tag.terracotta { background: var(--terracotta-soft); color: #8a4a30; }
.practices-item-time { color: var(--muted); font-size: 11px; }

/* ─── Hero phone row ──────────────────────────────────────── */
.hero-phones {
  position: relative; margin-top: 64px;
  display: flex; justify-content: center; align-items: flex-end;
  gap: 28px; flex-wrap: wrap; padding: 0 24px;
}

/* ─── Section: How it works ───────────────────────────────── */
.how-step {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.how-step.alt { direction: rtl; }
.how-step.alt > * { direction: ltr; }
.how-step-num {
  font-family: var(--serif); font-size: 56px; color: var(--sage);
  opacity: 0.4; font-weight: 300; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.how-step h3 {
  margin-top: 12px;
  font-size: clamp(28px, 2.4vw, 36px);
}
.how-step p {
  margin-top: 18px; font-size: 17px; color: var(--ink-2);
  line-height: 1.65; max-width: 480px;
}
.how-step-phone {
  display: flex; justify-content: center;
}

/* ─── Features grid ───────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 28px;
}
.feature-card {
  background: var(--card);
  border-radius: var(--r-lg);
  padding: 32px;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow-sm);
}
.feature-visual {
  height: 300px; padding: 24px; background: var(--card-tint);
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 12px;
}
.feature-card h3 { margin-top: 14px; font-size: 26px; }
.feature-card p {
  margin-top: 12px; font-size: 16px; color: var(--ink-2); line-height: 1.6;
}

/* feature visual variants */
.fv-chat { justify-content: flex-end; }
.fv-list { justify-content: center; gap: 10px; padding: 18px; }
.fv-practices { justify-content: center; gap: 8px; padding: 16px; }
.fv-journey { justify-content: center; gap: 16px; padding: 22px; }

.chat-bubble-user {
  align-self: flex-end; max-width: 78%;
  background: var(--sage-deep); color: #fff;
  padding: 12px 16px;
  border-radius: 16px 16px 4px 16px;
  font-size: 15px; line-height: 1.5;
}
.chat-bubble-qalb {
  align-self: flex-start; max-width: 88%;
  background: #fff; border: 1px solid var(--hairline);
  padding: 14px 16px;
  border-radius: 16px 16px 16px 4px;
  font-size: 14.5px; line-height: 1.55; color: var(--ink-2);
}
.chat-bubble-qalb strong {
  display: block; color: var(--sage-deep);
  font-size: 12px; margin-bottom: 4px; letter-spacing: 0.05em;
}

.aid-quote {
  background: #fff; border: 1px solid var(--hairline);
  border-left: 3px solid var(--sage);
  border-radius: 12px; padding: 14px 16px;
  font-family: var(--serif); font-style: italic;
  font-size: 15px; color: var(--ink-2);
}

.fv-practice-row {
  background: #fff; border: 1px solid var(--hairline);
  border-left: 3px solid var(--sage);
  border-radius: 10px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.fv-practice-info { flex: 1; }
.fv-practice-title { font-weight: 600; font-size: 13.5px; }
.fv-practice-sub { color: var(--muted); font-size: 11.5px; }
.fv-practice-tag {
  background: var(--sage-soft); color: var(--sage-deep);
  font-size: 9.5px; padding: 2px 8px; border-radius: 999px;
  font-weight: 600; letter-spacing: 0.08em;
}
.fv-practice-time { color: var(--muted); font-size: 11px; }

.fv-journey-stats { display: flex; gap: 10px; }
.fv-journey-stat {
  background: #fff; flex: 1;
  border: 1px solid var(--hairline);
  border-radius: 10px; padding: 14px; text-align: center;
}
.fv-journey-stat-v { font-size: 22px; font-weight: 600; }
.fv-journey-stat-l { font-size: 11px; color: var(--muted); }
.fv-journey-entry {
  background: #fff; border: 1px solid var(--hairline);
  border-radius: 10px; padding: 14px;
}
.fv-journey-entry-head { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; }
.fv-journey-entry-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 50%; }
.fv-journey-entry-date { font-size: 13px; }
.fv-journey-entry-mood { color: var(--sage-deep); font-size: 11.5px; margin-left: 4px; }
.fv-journey-entry-tags { display: flex; gap: 6px; margin-top: 6px; }
.fv-journey-entry-tag {
  background: var(--sage-soft); color: var(--sage-deep);
  font-size: 10.5px; padding: 3px 8px; border-radius: 999px;
}

/* ─── Rooted section ──────────────────────────────────────── */
.rooted {
  padding: 140px 0;
  background: var(--bg-deep);
  color: #EFE8DA;
  position: relative;
  overflow: hidden;
}
.rooted-pattern {
  position: absolute; inset: 0;
  background-image: url(assets/pattern-star.svg);
  background-size: 200px 200px;
  opacity: 0.07;
  pointer-events: none;
}
.rooted-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 80px; align-items: flex-start;
}
.rooted h2 { color: #F5EFE0; margin-top: 16px; }
.rooted .eyebrow { color: #B5CCA3; }
.rooted p.lead {
  margin-top: 28px; font-size: 19px; line-height: 1.7;
  color: rgba(245,239,224,0.78);
}
.rooted p.body {
  margin-top: 18px; font-size: 17px; line-height: 1.7;
  color: rgba(245,239,224,0.72);
}
.rooted-quote {
  margin-top: 40px; padding: 24px;
  border: 1px solid rgba(245,239,224,0.15);
  border-radius: var(--r-md);
  background: rgba(245,239,224,0.04);
}
.rooted-quote-ar {
  font-family: var(--arabic); font-size: 26px;
  text-align: right; color: #F5EFE0; line-height: 1.5;
  direction: rtl;
}
.rooted-quote-tr {
  margin-top: 14px; font-family: var(--serif); font-style: italic;
  font-size: 16px; color: rgba(245,239,224,0.85);
}
.rooted-quote-cite {
  margin-top: 6px; font-size: 13px; color: rgba(245,239,224,0.55);
}
.rooted-source {
  padding: 26px 28px;
  background: rgba(245,239,224,0.04);
  border: 1px solid rgba(245,239,224,0.12);
  border-radius: var(--r-lg);
}
.rooted-source-head {
  display: flex; align-items: center; gap: 12px; margin-bottom: 10px;
}
.rooted-source-dot { width: 8px; height: 8px; background: #B5CCA3; border-radius: 999px; }
.rooted-source-name {
  font-family: var(--serif); font-size: 22px; color: #F5EFE0; font-weight: 500;
}
.rooted-source p { color: rgba(245,239,224,0.72); font-size: 15.5px; line-height: 1.65; }
.rooted-vetted {
  margin-top: 12px; padding: 20px 24px;
  border-radius: var(--r-lg);
  display: flex; gap: 14px; align-items: center;
  background: rgba(181,204,163,0.08);
  border: 1px solid rgba(181,204,163,0.2);
  font-size: 14.5px; color: rgba(245,239,224,0.85);
}
.rooted-vetted strong { color: #F5EFE0; }
.rooted-sources {
  display: flex; flex-direction: column; gap: 16px;
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--hairline);
}
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q {
  width: 100%;
  background: transparent; border: none; cursor: pointer;
  padding: 26px 0;
  display: flex; justify-content: space-between; align-items: flex-start; gap: 24px;
  font-family: inherit; color: var(--ink); text-align: left;
}
.faq-q-text {
  font-family: var(--serif); font-size: 22px; font-weight: 500; letter-spacing: -0.005em;
}
.faq-q-toggle {
  flex-shrink: 0; margin-top: 4px;
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--hairline-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-deep);
  transition: transform .25s;
}
.faq-item[data-open="true"] .faq-q-toggle { transform: rotate(45deg); }
.faq-a {
  display: none;
  padding-bottom: 26px;
  font-size: 16.5px; line-height: 1.7; color: var(--ink-2); max-width: 720px;
}
.faq-item[data-open="true"] .faq-a { display: block; }

/* ─── Final CTA ───────────────────────────────────────────── */
.final-cta-bismi {
  font-family: var(--arabic); font-size: 22px; color: var(--sage);
  margin-bottom: 18px; direction: rtl;
}
.store-row {
  margin-top: 36px;
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #1B1F1C; color: #fff;
  padding: 10px 20px 10px 16px;
  border-radius: 12px;
  opacity: 0.7; cursor: default;
}
.store-badge-text {
  display: flex; flex-direction: column; line-height: 1.1; text-align: left;
}
.store-badge-eyebrow {
  font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase;
  opacity: 0.75;
}
.store-badge-name {
  font-size: 17px; font-weight: 600; margin-top: 4px;
}

/* ─── Footer ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-deep);
  color: rgba(245,239,224,0.7);
  padding: 72px 0 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
}
.footer-blurb {
  margin-top: 18px; font-size: 14px; line-height: 1.7;
  max-width: 320px; color: rgba(245,239,224,0.6);
}
.footer-arabic {
  font-family: var(--arabic); color: rgba(245,239,224,0.55);
  margin-top: 22px; font-size: 18px; direction: rtl;
}
.footer-col-title {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(245,239,224,0.55); font-weight: 600; margin-bottom: 18px;
}
.footer-col-links {
  display: flex; flex-direction: column; gap: 12px;
}
.footer-col-links a { font-size: 14.5px; color: rgba(245,239,224,0.78); }
.footer-bottom {
  margin-top: 56px; padding-top: 28px;
  border-top: 1px solid rgba(245,239,224,0.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(245,239,224,0.5); flex-wrap: wrap; gap: 16px;
}

/* ─── Notify form messaging ───────────────────────────────── */
.notify-msg {
  font-size: 13px; color: var(--sage-deep);
  margin-top: 10px; opacity: 0;
  transition: opacity .3s;
}
.notify-foot {
  font-size: 12px; color: var(--muted); margin-top: 10px;
}

/* ─── Status row under hero ───────────────────────────────── */
.platform-row {
  margin-top: 20px; font-size: 13px; color: var(--muted);
  display: inline-flex; align-items: center; gap: 18px;
}
.platform-row span.platform { display: inline-flex; gap: 6px; align-items: center; }
.platform-row span.platform-dot { width: 8px; height: 8px; background: var(--sage); border-radius: 999px; }
.platform-row span.platform-divider { width: 1px; height: 14px; background: var(--hairline-strong); }

/* ─── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .topnav-links { display: none; }
  .topnav-links.mobile-cta { display: flex; gap: 12px; }
  .topnav-links.mobile-cta a:not(.btn) { display: none; }

  .how-step { grid-template-columns: 1fr !important; gap: 40px !important; direction: ltr !important; }
  .rooted-grid { grid-template-columns: 1fr !important; gap: 56px !important; }
  .features-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
}
@media (max-width: 600px) {
  section { padding: 64px 0 !important; }
  .how-step h3, .feature-card h3 { font-size: 24px !important; }
}
