/* ═══════════ HERO ═══════════ */
.hero { padding-top: 56px; padding-bottom: 60px; position: relative; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}
.hero h1 { margin-top: 20px; text-wrap: balance; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(180deg, var(--orange) 0%, var(--orange-dark) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lead { margin-top: 22px; max-width: 540px; }
.hero-ctas { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 24px;
  display: flex; align-items: center; gap: 14px;
  color: var(--ink-3); font-size: 14px; font-weight: 500;
}
.hero-meta-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-2); }

/* Phones diorama */
.diorama {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 460px;
}
.diorama-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 30%, var(--orange-soft) 0%, transparent 55%),
    radial-gradient(circle at 75% 70%, var(--teal-soft) 0%, transparent 55%);
  border-radius: 40% 60% 55% 45% / 50% 45% 55% 50%;
  filter: blur(8px);
  z-index: 0;
}
.phone {
  position: absolute;
  width: 56%;
  aspect-ratio: 390 / 780;
  border-radius: 38px;
  background: #111;
  padding: 10px;
  box-shadow:
    0 50px 90px -20px rgba(15,27,46,.45),
    0 20px 40px -16px rgba(15,27,46,.25),
    inset 0 0 0 1px rgba(255,255,255,.06);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.phone-inner {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
}
.phone-inner img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px; background: #111; border-radius: 100px;
  z-index: 5;
}
.phone-label {
  position: absolute;
  bottom: -14px; left: 50%; transform: translateX(-50%);
  background: var(--surface);
  padding: 7px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}
.phone.parent {
  left: 2%; top: 6%;
  transform: rotate(-6deg);
  z-index: 2;
}
.phone.kids {
  right: 0; top: 24%;
  transform: rotate(7deg);
  z-index: 3;
}
.phone.kids .phone-label { color: #2D8488; }
.diorama:hover .phone.parent { transform: rotate(-4deg) translateY(-6px); }
.diorama:hover .phone.kids   { transform: rotate(5deg) translateY(-6px); }
@media (max-width: 940px) {
  .diorama { min-height: 540px; max-width: 520px; margin: 0 auto; }
  .diorama {display: none;}
}
@media (max-width: 480px) {
  .diorama { min-height: 480px; }
}

/* Floating chips on diorama */
.chip {
  position: absolute;
  background: var(--surface);
  border-radius: 14px;
  padding: 10px 14px;
  font-size: 13px; font-weight: 500;
  color: var(--ink);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  z-index: 6;
}
.chip-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(42,157,111,.16); }
.chip.tl { top: 4%; left: 38%; }
.chip.br { bottom: 6%; right: 4%; }
@media (max-width: 480px) { .chip { display: none; } }

/* ═══════════ INTRO ═══════════ */
.intro { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; gap: 32px; } }
.intro h2 { text-wrap: balance; }
.intro h2 strong { color: var(--orange-dark); font-weight: 700; }
.intro-points { list-style: none; padding: 0; margin: 0; display: grid; gap: 18px; }
.intro-points li {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 16px; color: var(--ink-2);
}
.intro-points .x, .intro-points .check {
  flex: 0 0 28px; height: 28px; border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 700; font-size: 14px;
  margin-top: 2px;
}
.intro-points .x { background: #FCE3E5; color: #C82F3C; }
.intro-points .check { background: #DEF1E6; color: #1F7A55; }

/* ═══════════ HOW IT WORKS ═══════════ */
.how-head { text-align: center; max-width: 720px; margin: 0 auto 60px; }
.how-head h2 { text-wrap: balance; margin-top: 14px; }
.how-head .lead { margin-top: 18px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px 26px;
  position: relative;
  display: flex; flex-direction: column;
  min-height: 280px;
}
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-warm);
  display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: var(--ink);
  margin-bottom: 22px;
}
.step h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--ink-3); }
.step-visual {
  margin-top: auto;
  padding-top: 22px;
}

/* Step visuals */
.sv-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
}
.sv-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
}
.sv-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px;
  flex: 0 0 auto;
}
.sv-avatar.teal { background: var(--teal-soft); color: #2D8488; }
.sv-avatar.yellow { background: #FFF3D6; color: #946100; }
.sv-name { font-weight: 600; color: var(--ink); flex: 1; }
.sv-sub { font-size: 11px; color: var(--ink-3); font-weight: 500; }
.sv-toggle {
  width: 32px; height: 18px; border-radius: 100px;
  background: var(--line);
  position: relative;
  flex: 0 0 auto;
}
.sv-toggle::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,.2);
  transition: left .15s;
}
.sv-toggle.on { background: var(--green); }
.sv-toggle.on::after { left: 16px; }

.sv-pin {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px;
  margin-top: 4px;
}
.sv-pin button {
  background: #fff; border: 1px solid var(--line);
  height: 32px; border-radius: 8px;
  font-size: 13px; font-weight: 600; color: var(--ink);
  pointer-events: none;
}
.sv-pin-dots { display: flex; gap: 8px; justify-content: center; margin-bottom: 4px; }
.sv-pin-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.sv-pin-dot.f { background: var(--orange); }

.sv-connect { position: relative; padding: 8px 0; }
.sv-fams { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.sv-fam {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: 8px 10px; font-size: 12px; font-weight: 600;
  flex: 1; text-align: center;
}
.sv-arrow {
  display: flex; flex-direction: column; align-items: center;
  font-size: 10px; color: var(--ink-3); gap: 2px;
  text-transform: uppercase; letter-spacing: 0.08em;
  font-weight: 600;
}
.sv-arrow svg { width: 36px; height: 14px; color: var(--orange); }
