/* ═══════════ FEATURE: PARENT VIEW ═══════════ */
.feature {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature.reverse { grid-template-columns: 1fr 1.05fr; }
.feature.reverse .feature-copy { order: 2; }
@media (max-width: 880px) {
  .feature, .feature.reverse { grid-template-columns: 1fr; gap: 48px; display: flex;flex-direction: column;}
  .feature.reverse .feature-copy { order: 0; }
  .feature.reverse {flex-direction: column-reverse;}
}
.feature h2 { margin-top: 14px; text-wrap: balance; }
.feature .lead { margin-top: 20px; max-width: 520px; }
.feature-list {
  margin-top: 28px;
  list-style: none; padding: 0;
  display: grid; gap: 14px;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--ink-2);
}
.feature-list svg {
  width: 22px; height: 22px; flex: 0 0 22px;
  color: var(--orange); margin-top: 1px;
}
.feature.kids .feature-list svg { color: #2D8488; }

/* Phone stage */
.phone-stage {
  position: relative;
  display: flex; justify-content: center;
  padding: 30px 0;
}
.phone-stage::before {
  content: '';
  position: absolute; inset: 6% 4%;
  background: linear-gradient(135deg, var(--orange-soft), transparent 65%);
  border-radius: 36px;
  z-index: 0;
}
.feature.kids .phone-stage::before {
  background: linear-gradient(135deg, var(--teal-soft), transparent 65%);
}
.phone-lg {
  position: relative; z-index: 1;
  width: min(320px, 100%);
  aspect-ratio: 390 / 800;
  background: #111;
  border-radius: 44px;
  padding: 11px;
  box-shadow:
    0 60px 100px -30px rgba(15,27,46,.4),
    0 24px 50px -20px rgba(15,27,46,.25);
}
@media (max-width: 880px) { 
  .phone-stage {
      max-width: 60%;
      margin: 0 auto;
  }
}

.phone-lg .phone-inner { border-radius: 32px; }
.phone-lg .phone-notch {
  width: 108px; height: 26px;
}

/* Decorative annotation pills */
.annot {
  position: absolute;
  background: var(--surface);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500;
  z-index: 4;
  max-width: 220px;
}
.annot-icon {
  width: 32px; height: 32px; border-radius: 10px;
  background: var(--orange-soft);
  display: grid; place-items: center;
  color: var(--orange-dark);
  flex: 0 0 32px;
}
.annot-icon svg { width: 16px; height: 16px; }
.annot strong { display: block; color: var(--ink); }
.annot span { display: block; color: var(--ink-3); font-size: 11px; margin-top: 2px; font-weight: 500; }
.annot.teal .annot-icon { background: var(--teal-soft); color: #2D8488; }
.annot.green .annot-icon { background: #DEF1E6; color: var(--green); }

.annot.a-1 { top: 8%; left: -10%; }
.annot.a-2 { bottom: 14%; right: -12%; }
@media (max-width: 1080px) {
  .annot.a-1 { left: 0; }
  .annot.a-2 { right: 0; }
}
@media (max-width: 600px) {
  .annot { display: none; }
}

/* ═══════════ TRUST ═══════════ */
.trust { background: var(--night); color: #fff; }
.trust h2 { color: #fff; }
.trust .lead { color: rgba(255,255,255,.7); }
.trust-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.trust-head .eyebrow { background: rgba(255,106,26,.15); color: #FFB48A; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: background .2s, border-color .2s;
}
.trust-card:hover { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.14); }
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,106,26,.15);
  color: #FFB48A;
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.trust-icon svg { width: 22px; height: 22px; }
.trust-card h4 { color: #fff; margin-bottom: 8px; font-size: 18px; }
.trust-card p { color: rgba(255,255,255,.65); font-size: 14px; }

/* ═══════════ WHY ═══════════ */
.why { background: var(--bg-warm); }
.why-inner {
  max-width: 760px; margin: 0 auto;
  text-align: left;
}
.why h2 { margin-top: 14px; text-wrap: balance; }
.why-body { margin-top: 28px; }
.why-body p { font-size: 18px; color: var(--ink-2); line-height: 1.6; }
.why-body p + p { margin-top: 18px; }
.why-sig {
  margin-top: 36px;
  display: flex; align-items: center; gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.why-sig-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  display: grid; place-items: center;
  font-weight: 700;
}
.why-sig-name { font-weight: 600; font-size: 15px; }
.why-sig-role { font-size: 13px; color: var(--ink-3); }

/* ═══════════ FAQ ═══════════ */
.faq-head { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.faq-head h2 { margin-top: 14px; text-wrap: balance; }
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding: 22px 4px;
  background: transparent; border: none;
  text-align: left;
  font-family: inherit; font-size: 18px; font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::marker { content: ''; }
details.faq-item { padding: 0; }
.faq-a-inner {
  padding: 0 4px 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 660px;
}
.faq-q .ic {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1.5px solid var(--line-2);
  display: grid; place-items: center;
  flex: 0 0 32px;
  transition: transform .25s, background .15s, border-color .15s;
  color: var(--ink-2);
}
.faq-q .ic svg { width: 14px; height: 14px; }
details.faq-item[open] .faq-q .ic { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: #fff; }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner {
  padding: 0 4px 24px;
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 660px;
}
.faq-item.open .faq-a { max-height: 320px; }

/* ═══════════ CTA ═══════════ */
.cta {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #FF7B30 0%, #D85410 100%);
  color: #fff;
}
.cta::before, .cta::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(40px);
}
.cta::before { width: 320px; height: 320px; background: rgba(255,255,255,.12); top: -120px; right: -60px; }
.cta::after { width: 280px; height: 280px; background: rgba(15,27,46,.18); bottom: -120px; left: -40px; }
.cta-inner { position: relative; text-align: center; }
.cta h2 { color: #fff; text-wrap: balance; }
.cta .lead { color: rgba(255,255,255,.85); margin-top: 18px; }
.cta-ctas { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.cta .btn-light { background: #fff; color: var(--orange-dark); }
.cta .btn-light:hover { background: var(--bg); }
.cta-meta { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.7); letter-spacing: 0.03em; }

/* ═══════════ FOOTER ═══════════ */
footer.foot {
  padding: 44px 0 40px;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.foot-inner {
  display: flex; flex-direction: column; align-items: center;
  gap: 18px; text-align: center;
  font-size: 14px; color: var(--ink-3);
}
.foot-brand {
  display: flex; align-items: center; gap: 8px;
  flex-wrap: wrap; justify-content: center;
}
.foot-links {
  display: flex; gap: 22px;
  flex-wrap: wrap; justify-content: center;
}
.foot-links a { color: var(--ink-3); transition: color .15s; }
.foot-links a:hover { color: var(--ink); }
.foot-copy { font-size: 13px; color: var(--ink-4); }

/* ─── Hero app icons ─── */
.hero-apps { display: flex; align-items: center; gap: 4px; }
.hero-apps img {
  width: 36px; height: 36px;
  border-radius: 9px;
  box-shadow: 0 4px 12px rgba(15,27,46,.18);
  border: 2px solid var(--bg);
}
.hero-apps img:last-child { margin-left: -10px; }
.hero-meta { font-size: 13px; line-height: 1.45; }

/* ─── Step 3 install card ─── */
.sv-install { gap: 8px; padding: 12px; }
.sv-install-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px;
}
.sv-install-row img {
  width: 32px; height: 32px; border-radius: 8px;
  box-shadow: 0 2px 6px rgba(15,27,46,.15);
  flex: 0 0 32px;
}
.sv-install-row > div { flex: 1; }
.sv-install-pill {
  font-size: 11px; font-weight: 600;
  padding: 5px 9px; border-radius: 100px;
  background: var(--orange-soft); color: var(--orange-dark);
  white-space: nowrap;
}
.sv-install-pill.teal { background: var(--teal-soft); color: #2D8488; }
