:root {
  --ink: #101b35;
  --muted: #58647d;
  --blue: #1457d9;
  --blue-dark: #0b3698;
  --blue-soft: #eaf1ff;
  --sky: #dcecff;
  --lime: #c6f36a;
  --cream: #fbfaf6;
  --white: #ffffff;
  --line: #d9e0ec;
  --danger: #a42a2a;
  --danger-soft: #fff1ef;
  --success: #14734b;
  --shadow: 0 20px 60px rgba(17, 38, 79, .12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;
  --shell: min(1160px, calc(100vw - 48px));
  --font-size: 18px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--cream);
  font: 400 var(--font-size)/1.6 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}
body.large-text { --font-size: 21px; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
img, svg { max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { letter-spacing: -.035em; line-height: 1.08; }
h1 { font-size: clamp(2.5rem, 5.8vw, 5.4rem); }
h2 { font-size: clamp(1.7rem, 3.3vw, 3rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }
button { color: inherit; }
button:disabled { cursor: not-allowed; opacity: .64; transform: none !important; box-shadow: none !important; }
:focus-visible { outline: 4px solid #ffbd3e; outline-offset: 3px; }
[hidden] { display: none !important; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; z-index: 1000; left: 20px; top: -100px; background: var(--ink); color: white; padding: 12px 18px; border-radius: 10px; }
.skip-link:focus { top: 18px; }
.offline-banner { position: sticky; top: 0; z-index: 500; display: flex; justify-content: center; align-items: center; gap: 10px; padding: 11px 20px; color: #5f3b00; background: #fff0c7; border-bottom: 1px solid #e6cd8e; font-size: .84rem; }
.offline-banner > span:first-child { font-size: 1.15rem; }
.shell { width: var(--shell); margin-inline: auto; }
.page { display: none; min-height: 70vh; }
.page.is-active { display: block; animation: page-in .24s ease-out; }
@keyframes page-in { from { opacity: .35; transform: translateY(7px); } }

.site-header {
  height: 84px; display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: 24px; padding: 0 max(24px, calc((100vw - 1160px) / 2));
  background: rgba(251, 250, 246, .94); border-bottom: 1px solid transparent;
  position: sticky; top: 0; z-index: 100; backdrop-filter: blur(16px);
}
.site-header.is-scrolled { border-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; font-size: 1.1rem; font-weight: 800; text-decoration: none; white-space: nowrap; }
.brand-mark { width: 34px; height: 34px; display: inline-grid; place-items: center; color: white; background: var(--blue); border-radius: 10px 10px 10px 4px; }
.main-nav { display: flex; justify-content: center; align-items: center; gap: clamp(14px, 2vw, 29px); }
.main-nav a { font-size: .89rem; font-weight: 650; text-decoration: none; color: #34415c; }
.main-nav a:hover { color: var(--blue); }
.menu-button { display: none; border: 0; background: transparent; align-items: center; gap: 8px; font-weight: 750; }
.header-account-actions,.help-account-actions { display: flex; align-items: center; gap: 10px; }
.header-credit-count { color: var(--muted); font-size: .85rem; font-weight: 750; white-space: nowrap; }
.header-buy-button,.credit-balance-button { min-height: 48px; padding: 10px 17px; border: 1px solid #0d419e; border-radius: 14px; color: white; background: var(--blue); box-shadow: 0 7px 18px rgba(20,87,217,.18); font-weight: 800; cursor: pointer; transition: background .16s, transform .16s, box-shadow .16s; white-space: nowrap; }
.header-buy-button:hover,.credit-balance-button:hover { background: var(--blue-dark); transform: translateY(-2px); }
.header-buy-button:active,.credit-balance-button:active { transform: translateY(1px); box-shadow: none; }
.account-button { min-height: 48px; display: inline-flex; align-items: center; gap: 9px; padding: 8px 14px; color: var(--blue-dark); background: white; border: 1px solid #bdcbe4; border-radius: 14px; font-weight: 750; cursor: pointer; white-space: nowrap; }
.account-button:hover { border-color: var(--blue); background: var(--blue-soft); }
.account-avatar { display: inline-grid; place-items: center; width: 29px; height: 29px; border-radius: 50%; color: white; background: var(--blue); }

.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 11px 21px; border: 2px solid transparent; border-radius: 14px; text-decoration: none;
  font-weight: 800; cursor: pointer; transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(1px); box-shadow: none; }
.button:disabled:hover { transform: none; }
.button-primary { color: white; background: var(--blue); box-shadow: 0 9px 22px rgba(20, 87, 217, .21); }
.button-primary:hover { background: var(--blue-dark); }
.button-secondary { color: var(--ink); background: white; border-color: var(--line); }
.button-secondary:hover { border-color: var(--blue); color: var(--blue); }
.button-google { width: 100%; color: #26334b; background: white; border-color: #c9d3e4; box-shadow: 0 3px 9px rgba(17, 38, 79, .07); }
.google-mark { font-weight: 900; font-size: 1.3rem; color: #4285f4; }
.account-dialog { max-height: calc(100dvh - 32px); overflow-y: auto; }
.auth-form { display: grid; gap: 9px; }
.auth-form label { font-weight: 750; }
.auth-form input { width: 100%; min-height: 50px; border: 1px solid #aab8d0; border-radius: 12px; padding: 10px 14px; background: white; }
.auth-form .button { margin-top: 12px; }
.auth-divider { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.auth-divider::before,.auth-divider::after { content: ''; flex: 1; border-top: 1px solid var(--line); }
.auth-unavailable,.auth-message { font-size: .85rem; margin: 8px 0; }
.auth-links { display: grid; gap: 5px; margin-top: 12px; }
.auth-links button { min-height: 44px; border: 0; background: transparent; color: var(--blue-dark); text-align: left; text-decoration: underline; cursor: pointer; }
.button-light { color: var(--blue-dark); background: white; }
.button-danger { color: white; background: var(--danger); }
.button-large { min-height: 58px; padding: 14px 25px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.eyebrow { margin-bottom: 15px; color: var(--blue); font-size: .78rem; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.eyebrow span { color: var(--lime); }
.eyebrow.light { color: var(--lime); }
.hero { min-height: 680px; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(52px, 7vw, 96px); align-items: center; padding-block: 80px 92px; }
.hero h1 { max-width: 750px; margin-bottom: 25px; }
.hero h1 span { color: var(--blue); }
.hero-intro { max-width: 630px; color: #3c4963; font-size: 1.18rem; line-height: 1.65; }
.hero .button-row { margin: 34px 0 20px; }
.family-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue-dark); font-weight: 750; text-underline-offset: 4px; }
.trust-list { display: flex; flex-wrap: wrap; gap: 14px 26px; margin: 34px 0 0; padding: 0; list-style: none; color: #46536c; font-size: .86rem; }
.trust-list li { display: flex; align-items: center; gap: 8px; }
.trust-list span { display: grid; place-items: center; width: 21px; height: 21px; color: var(--success); background: #e1f7ed; border-radius: 50%; font-weight: 900; }

.hero-demo { position: relative; color: var(--ink); background: var(--white); border: 1px solid #dce3ef; border-radius: var(--radius-lg); box-shadow: var(--shadow); transform: rotate(1.2deg); }
.hero-demo::before { content: ""; position: absolute; inset: -17px 18px 17px -18px; z-index: -1; background: var(--sky); border-radius: var(--radius-lg); transform: rotate(-4deg); }
.demo-top { display: flex; justify-content: space-between; align-items: center; padding: 22px 26px 17px; color: #68738a; font-size: .77rem; font-weight: 750; }
.demo-brand { display: flex; gap: 7px; color: var(--blue); }
.progress-track { height: 7px; background: #eef2f8; }
.progress-track span { display: block; height: 100%; background: var(--blue); border-radius: 0 6px 6px 0; }
.demo-body { padding: 31px 34px 28px; }
.step-number { display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 22px; color: white; background: var(--blue); border-radius: 50%; font-weight: 850; }
.demo-label { margin-bottom: 4px; color: var(--blue); font-size: .75rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.demo-body h2 { margin-bottom: 10px; font-size: 2rem; }
.phone-visual { position: relative; height: 220px; display: grid; place-items: center; margin: 28px 0; overflow: hidden; background: linear-gradient(140deg, #eff5ff, #d9e9ff); border-radius: 22px; }
.phone-screen { width: 127px; height: 181px; display: grid; grid-template-columns: repeat(3, 1fr); align-content: start; gap: 12px; padding: 30px 16px; background: #182440; border: 7px solid #0a1225; border-radius: 22px; box-shadow: 0 16px 28px rgba(17,35,71,.2); }
.mini-app { display: grid; place-items: center; aspect-ratio: 1; background: white; border-radius: 10px; font-size: 1.1rem; }
.focus-app { outline: 5px solid var(--lime); outline-offset: 4px; }
.pointer { position: absolute; right: calc(50% - 108px); top: 86px; padding: 5px 10px; color: var(--ink); background: var(--lime); border-radius: 8px; font-size: .76rem; font-weight: 850; }
.pointer::before { content: ""; position: absolute; right: 100%; top: 50%; border: 7px solid transparent; border-right-color: var(--lime); transform: translateY(-50%); }
.demo-actions { display: flex; justify-content: space-between; gap: 12px; align-items: center; }
.icon-button { min-height: 44px; padding: 8px 14px; color: var(--blue-dark); border: 1px solid var(--line); background: white; border-radius: 11px; font-weight: 750; cursor: pointer; }
.demo-success { color: var(--success); font-size: .81rem; font-weight: 800; }
.orbit-star { position: absolute; display: grid; place-items: center; color: var(--blue); background: var(--lime); border: 6px solid var(--cream); border-radius: 50%; }
.orbit-one { width: 62px; height: 62px; right: -27px; top: 22%; }
.orbit-two { width: 43px; height: 43px; left: -32px; bottom: 14%; color: white; background: var(--blue); }

.problem-strip { padding: 92px 0; background: var(--ink); color: white; }
.problem-strip h2, .problem-strip .section-heading a { color: white; }
.problem-strip .eyebrow { color: var(--lime); }
.section-heading { display: flex; justify-content: space-between; gap: 32px; align-items: end; margin-bottom: 40px; }
.section-heading h2 { margin-bottom: 0; }
.section-heading a { font-weight: 750; text-underline-offset: 5px; }
.section-heading.centered { display: block; max-width: 700px; margin-inline: auto; text-align: center; }
.section-heading.centered p:last-child { font-size: 1.08rem; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.problem-card { min-height: 205px; padding: 25px; display: flex; flex-direction: column; align-items: flex-start; text-align: left; color: var(--ink); background: white; border: 0; border-radius: 20px; cursor: pointer; transition: transform .16s ease, background .16s ease; }
.problem-card:hover { transform: translateY(-5px); background: var(--blue-soft); }
.problem-card > span:nth-child(2) { margin-top: auto; font-size: 1.05rem; font-weight: 850; }
.problem-card small { color: var(--muted); font-size: .75rem; }
.topic-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--blue); background: var(--blue-soft); border-radius: 15px; font-size: 1.45rem; font-weight: 850; }

.home-process { padding-block: 118px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.process-grid article { position: relative; min-height: 270px; padding: 36px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.process-grid article:not(:last-child)::after { content: "→"; position: absolute; z-index: 2; right: -39px; top: 55px; width: 52px; height: 40px; display: grid; place-items: center; color: var(--blue); background: var(--cream); font-weight: 900; }
.process-number { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 40px; color: white; background: var(--blue); border-radius: 15px; font-weight: 850; }
.process-grid h3 { font-size: 1.35rem; }

.safety-callout { display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; margin-bottom: 118px; padding: 38px 42px; background: #e9f7f1; border: 1px solid #cbeadd; border-radius: var(--radius); }
.safety-callout h2 { margin-bottom: 9px; font-size: 1.8rem; }
.safety-callout p:last-child { margin-bottom: 0; }
.safety-symbol { width: 64px; height: 64px; display: grid; place-items: center; color: white; background: var(--success); border-radius: 50% 50% 50% 15px; font-size: 1.7rem; font-weight: 900; }
.final-cta { color: white; background: var(--blue); }
.final-cta .shell { min-height: 330px; display: flex; justify-content: space-between; gap: 50px; align-items: center; }
.final-cta h2 { margin-bottom: 14px; font-size: clamp(2.2rem, 4vw, 4rem); }
.final-cta p:not(.eyebrow) { max-width: 650px; margin-bottom: 0; color: #e2eaff; }

.page-hero { padding: 112px 0 88px; }
.page-hero h1 { max-width: 940px; margin-bottom: 28px; font-size: clamp(2.6rem, 5.2vw, 5rem); }
.page-hero > p:not(.eyebrow) { max-width: 760px; font-size: 1.18rem; }
.page-hero .button { margin-top: 18px; }
.steps-detail { display: grid; gap: 0; padding-bottom: 120px; }
.steps-detail article { display: grid; grid-template-columns: 130px 1fr; gap: 38px; padding: 48px 0; border-top: 1px solid var(--line); }
.steps-detail article > span { color: var(--blue); font-size: 2rem; font-weight: 850; }
.steps-detail h2 { font-size: 2rem; }
.steps-detail p { max-width: 720px; font-size: 1.06rem; }
.control-band { padding: 90px 0; color: white; background: var(--ink); }
.control-band .shell { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.control-band h2 { font-size: 2.6rem; }
.control-band ul { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.control-band li { padding: 14px 18px 14px 52px; position: relative; color: #e4e9f4; border: 1px solid #33415f; border-radius: 12px; }
.control-band li::before { content: "✓"; position: absolute; left: 18px; color: var(--lime); font-weight: 900; }

.topic-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding-bottom: 75px; }
.topic-list article { min-height: 250px; display: flex; flex-direction: column; padding: 28px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.topic-list article h2 { margin: 25px 0 10px; font-size: 1.4rem; }
.topic-list article p { font-size: .93rem; }
.topic-list article button { margin-top: auto; align-self: flex-start; padding: 0; color: var(--blue); background: transparent; border: 0; font-weight: 800; text-decoration: underline; text-underline-offset: 4px; cursor: pointer; }
.blocked-note { display: grid; grid-template-columns: auto 1fr auto; gap: 25px; align-items: center; margin-bottom: 110px; padding: 30px; background: var(--danger-soft); border: 1px solid #f2cfc9; border-radius: var(--radius); }
.blocked-note > span { width: 50px; height: 50px; display: grid; place-items: center; color: white; background: var(--danger); border-radius: 50%; font-weight: 900; }
.blocked-note h2 { margin-bottom: 7px; font-size: 1.35rem; }
.blocked-note p { margin-bottom: 0; }
.blocked-note a { color: var(--danger); font-weight: 800; }

.promise-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding-bottom: 90px; }
.promise-grid article { padding: 36px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.promise-grid span { display: inline-block; margin-bottom: 36px; color: var(--blue); font-weight: 850; }
.promise-grid h2 { font-size: 1.5rem; }
.safety-example { padding-bottom: 110px; }
.alert { padding: 28px; border-radius: var(--radius-sm); }
.alert strong { display: block; margin-bottom: 8px; font-size: 1.16rem; }
.alert p { margin-bottom: 0; color: inherit; }
.alert-danger { color: #751d1d; background: var(--danger-soft); border: 1px solid #efc6c1; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; padding-bottom: 120px; }
.price-card { display: flex; flex-direction: column; padding: 34px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.price-card.featured { color: white; background: var(--blue); border-color: var(--blue); transform: translateY(-12px); box-shadow: var(--shadow); }
.price-card.featured p, .price-card.featured li { color: #e2eaff; }
.plan-label { color: var(--blue); font-weight: 850; }
.price-card.featured .plan-label { color: var(--lime); }
.plan-label span { float: right; padding: 3px 9px; color: var(--ink); background: var(--lime); border-radius: 99px; font-size: .7rem; }
.price-card h2 { min-height: 58px; margin-bottom: 15px; font-size: 1.55rem; }
.price { color: var(--ink) !important; font-size: 2rem; font-weight: 900; }
.price-card.featured .price { color: white !important; }
.price-card ul { flex: 1; padding-left: 22px; color: var(--muted); }
.price-card .button { margin-top: 16px; }
.price-card.featured .button-primary { color: var(--blue-dark); background: white; }
.credit-pricing-grid { grid-template-columns: repeat(4, 1fr); padding-bottom: 34px; }
.pricing-payment-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 18px; margin-bottom: 120px; padding: 24px 28px; background: #e9f7f1; border: 1px solid #b9e3d2; border-radius: var(--radius); }
.pricing-payment-note > span { width: 42px; height: 42px; display: grid; place-items: center; color: white; background: var(--success); border-radius: 50%; font-weight: 900; }
.pricing-payment-note p { margin: 3px 0 0; }

.family-options { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 90px; }
.family-options article { padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.family-options h2 { margin: 30px 0 14px; font-size: 1.8rem; }
.family-options .button { margin-top: 15px; }
.family-tips { padding: 60px; margin-bottom: 110px; background: var(--sky); border-radius: var(--radius-lg); }
.family-tips h2 { max-width: 660px; }
.family-tips ol { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 42px 0 0; padding: 0; list-style: none; counter-reset: tips; }
.family-tips li { counter-increment: tips; padding-top: 20px; border-top: 2px solid var(--blue); }
.family-tips li::before { content: counter(tips, decimal-leading-zero); display: block; margin-bottom: 30px; color: var(--blue); font-weight: 850; }
.family-tips strong, .family-tips span { display: block; }
.family-tips span { margin-top: 8px; color: var(--muted); font-size: .9rem; }

.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 48px; align-items: start; padding-bottom: 120px; }
.contact-form { display: grid; gap: 22px; padding: 38px; background: white; border: 1px solid var(--line); border-radius: var(--radius); }
.contact-form label, .problem-form label { display: block; margin-bottom: 8px; font-weight: 800; }
input, textarea, select { width: 100%; padding: 15px 16px; color: var(--ink); background: white; border: 2px solid #c9d2e1; border-radius: 12px; }
textarea { resize: vertical; }
input:focus, textarea:focus, select:focus { border-color: var(--blue); outline: 3px solid #d8e5ff; }
.form-hint { margin: 7px 0 0; font-size: .8rem; }
.form-status { margin: 0; color: var(--success); font-weight: 800; }
.contact-aside { padding: 34px; background: var(--ink); border-radius: var(--radius); color: white; }
.contact-aside p { color: #dbe1ef; }
.contact-aside hr { margin: 32px 0; border: 0; border-top: 1px solid #394762; }

.help-page { min-height: 100vh; background: #f4f7fb; }
body.help-mode .site-header, body.help-mode .site-footer { display: none; }
.help-shell { max-width: 1540px; margin: auto; }
.help-topbar { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 25px; padding: 0 30px; background: white; border-bottom: 1px solid var(--line); }
.save-status { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; color: var(--success); font-size: .76rem; font-weight: 800; }
.compact-brand { font-size: 1rem; }
.help-tools { display: flex; gap: 8px; align-items: center; }
.credit-balance-button { display: inline-flex; align-items: center; gap: 8px; }
.credit-balance-button > span:first-child { color: white; font-size: 1.35rem; line-height: 1; }
.text-button { min-height: 44px; padding: 8px 12px; color: #4a5872; background: transparent; border: 0; border-radius: 8px; text-decoration: none; font-weight: 750; cursor: pointer; }
.text-button:hover { color: var(--blue); background: var(--blue-soft); }
.help-layout { min-height: calc(100vh - 82px); display: grid; grid-template-columns: 310px 1fr; }
.help-sidebar { padding: 50px 34px; background: var(--ink); color: white; }
.help-sidebar .eyebrow { color: var(--lime); }
.help-sidebar h2 { font-size: 1.55rem; }
.sidebar-steps { display: grid; gap: 8px; margin: 40px 0; padding: 0; list-style: none; }
.sidebar-steps li { display: flex; align-items: center; gap: 12px; padding: 12px; color: #aeb9cd; border-radius: 10px; font-size: .85rem; font-weight: 700; }
.sidebar-steps li span { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #536078; border-radius: 50%; }
.sidebar-steps li.is-current { color: white; background: #263450; }
.sidebar-steps li.is-current span { color: var(--ink); background: var(--lime); border-color: var(--lime); }
.sidebar-steps li.is-done { color: #dce5f3; }
.sidebar-steps li.is-done span { color: var(--ink); background: white; }
.sidebar-safety { display: flex; align-items: flex-start; gap: 12px; margin-top: 55px; padding-top: 24px; border-top: 1px solid #3d4a65; }
.sidebar-safety > span { flex: 0 0 auto; width: 32px; height: 32px; display: grid; place-items: center; color: var(--ink); background: var(--lime); border-radius: 50%; font-weight: 900; }
.sidebar-safety p { margin: 0; color: #b8c2d4; font-size: .75rem; }
.sidebar-safety strong { display: block; color: white; }
.help-main { padding: clamp(30px, 5vw, 72px); }
.help-card { max-width: 900px; margin: auto; padding: clamp(28px, 5vw, 58px); background: white; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: 0 15px 45px rgba(22,42,77,.08); }
.help-intro > h1 { margin-bottom: 18px; font-size: clamp(2.3rem, 5vw, 4.5rem); }
.help-intro > p:not(.eyebrow) { max-width: 700px; font-size: 1.12rem; }
.problem-form { margin-top: 40px; }
.problem-form textarea { min-height: 140px; font-size: 1.05rem; }
.input-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 14px; }
.voice-button { min-height: 58px; display: inline-flex; align-items: center; gap: 11px; padding: 12px 18px; color: var(--blue-dark); background: var(--blue-soft); border: 0; border-radius: 14px; font-weight: 800; cursor: pointer; }
.voice-button > span:first-child { width: 30px; height: 30px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 50%; font-size: .65rem; }
.voice-button.is-listening > span:first-child { animation: pulse 1.2s infinite; background: var(--danger); }
@keyframes pulse { 50% { box-shadow: 0 0 0 10px rgba(164,42,42,.12); } }
.speech-status { min-height: 28px; margin: 8px 0 0; color: var(--blue-dark); font-size: .85rem; }
.screenshot-upload { min-height: 64px; display: flex !important; align-items: center; gap: 13px; margin-top: 14px !important; padding: 12px 16px; color: var(--blue-dark); background: #f7f9fc; border: 2px dashed #aab8ce; border-radius: 14px; cursor: pointer; }
.screenshot-upload:hover { border-color: var(--blue); background: var(--blue-soft); }
.screenshot-upload > span:first-child { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--blue); border-radius: 10px; }
.screenshot-upload strong, .screenshot-upload small { display: block; }
.screenshot-upload small { color: var(--muted); font-weight: 500; }
.screenshot-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.screenshot-status { min-height: 24px; margin: 6px 0 0; color: var(--success); font-size: .82rem; font-weight: 700; }
.quick-choices { margin-top: 44px; padding-top: 35px; border-top: 1px solid var(--line); }
.quick-choices h2 { font-size: 1rem; }
.quick-choices > p { margin: -4px 0 16px; font-size: .88rem; }
.quick-choices > div { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.quick-choice { min-height: 62px; display: flex; align-items: center; gap: 10px; padding: 12px 14px; text-align: left; color: var(--ink); background: white; border: 2px solid var(--line); border-radius: 13px; font-weight: 750; cursor: pointer; }
.quick-choice:hover { border-color: var(--blue); background: var(--blue-soft); }

.dynamic-help h1 { margin-bottom: 17px; font-size: clamp(2rem, 4vw, 3.6rem); }
.dynamic-help .lead { max-width: 690px; font-size: 1.06rem; }
.credit-shop .lead, .credit-confirm .lead { margin-bottom: 28px; }
.credit-balance-card { width: fit-content; display: flex; align-items: baseline; gap: 18px; margin: 0 0 26px; padding: 15px 20px; color: white; background: var(--ink); border-radius: 14px; }
.credit-balance-card span { color: #c9d3e5; font-size: .82rem; font-weight: 750; }
.credit-balance-card strong { font-size: 1.35rem; }
.credit-package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 13px; margin: 30px 0; }
.credit-package { position: relative; display: flex; flex-direction: column; min-height: 230px; padding: 24px 20px 20px; background: #f8faff; border: 2px solid var(--line); border-radius: 18px; }
.credit-package.is-popular { border-color: var(--blue); background: var(--blue-soft); }
.credit-package > strong { font-size: 1.25rem; }
.credit-package-price { margin: 10px 0 2px; color: var(--blue-dark); font-size: 1.65rem; font-weight: 900; }
.credit-package small { flex: 1; color: var(--muted); }
.credit-package .button { width: 100%; margin-top: 18px; }
.credit-package .button:disabled { color: #667085; background: #e3e8f0; border-color: #d2d8e2; box-shadow: none; cursor: not-allowed; }
.popular-label { position: absolute; top: -12px; right: 12px; padding: 5px 9px; color: white; background: var(--blue); border-radius: 999px; font-size: .66rem; font-weight: 850; text-transform: uppercase; letter-spacing: .04em; }
.ideal-safety-note, .credit-setup-note { display: grid; grid-template-columns: auto 1fr; gap: 13px; margin-top: 20px; padding: 18px; border-radius: 14px; }
.ideal-safety-note { background: #e9f7f1; border: 1px solid #b9e3d2; }
.ideal-safety-note > span { width: 34px; height: 34px; display: grid; place-items: center; color: white; background: var(--success); border-radius: 50%; font-weight: 900; }
.ideal-safety-note p, .credit-setup-note p { margin: 3px 0 0; font-size: .86rem; }
.credit-setup-note { grid-template-columns: 1fr; color: #6e4a12; background: #fff6df; border: 1px solid #f0dca8; }
.credit-error { margin-top: 18px; padding: 14px 17px; color: #7b1f1f; background: #fff0f0; border: 1px solid #efc2c2; border-radius: 12px; font-weight: 750; }
.credit-cost-summary { display: grid; grid-template-columns: 1fr auto; gap: 12px 24px; margin: 28px 0; padding: 22px; background: #f7f9fc; border: 1px solid var(--line); border-radius: 16px; }
.credit-cost-summary span { color: var(--muted); }
.credit-cost-summary strong { text-align: right; font-size: 1.12rem; }
.credit-fine-print { margin-top: 18px; color: var(--muted); font-size: .82rem; }
.selected-topic { width: fit-content; display: flex; align-items: center; gap: 13px; margin: 0 0 28px; padding: 10px 16px 10px 10px; color: var(--blue-dark); background: var(--blue-soft); border-radius: 16px; }
.selected-topic .topic-icon { width: 42px; height: 42px; background: white; }
.describe-form { margin-top: 30px; padding: 24px; background: #f7f9fc; border: 1px solid var(--line); border-radius: var(--radius); }
.describe-form textarea { background: white; }
.current-step-note { display: flex; align-items: center; gap: 10px; margin: 25px 0 0; padding: 14px 17px; background: var(--blue-soft); border-radius: 12px; }
.current-step-note span { color: var(--muted); }
.seen-summary { display: grid; gap: 4px; margin: 20px 0 0; padding: 18px 20px; background: #e9f7f1; border-left: 5px solid var(--success); border-radius: 10px; }
.seen-summary span { color: var(--success); font-size: .76rem; font-weight: 850; letter-spacing: .05em; text-transform: uppercase; }
.seen-summary strong { font-size: 1rem; }
.safety-reminder { margin-top: 18px; padding: 14px 17px; color: #6e4a12; background: #fff6df; border: 1px solid #f0dca8; border-radius: 11px; font-size: .83rem; }
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 30px; }
.choice-button { min-height: 68px; padding: 16px 18px; text-align: left; color: var(--ink); background: white; border: 2px solid var(--line); border-radius: 14px; font-weight: 800; cursor: pointer; }
.choice-button:hover { border-color: var(--blue); background: var(--blue-soft); }
.choice-button small { display: block; margin-top: 3px; color: var(--muted); font-weight: 500; }
.choice-other { border-style: dashed; color: var(--blue-dark); }
.question-count { margin-bottom: 12px; color: var(--blue); font-size: .8rem; font-weight: 850; text-transform: uppercase; letter-spacing: .08em; }
.summary-check { margin: 28px 0; padding: 22px; background: var(--blue-soft); border-radius: var(--radius-sm); font-size: 1.05rem; font-weight: 700; }
.plan-list { display: grid; gap: 10px; margin: 30px 0; padding: 0; list-style: none; }
.plan-list li { display: grid; grid-template-columns: 42px 1fr; gap: 14px; align-items: center; padding: 15px; background: #f7f9fc; border: 1px solid var(--line); border-radius: 13px; }
.plan-list span { width: 42px; height: 42px; display: grid; place-items: center; color: var(--blue); background: white; border-radius: 50%; font-weight: 850; }
.plan-list strong { display: block; }
.step-header { display: flex; justify-content: space-between; gap: 20px; align-items: center; margin-bottom: 12px; }
.step-progress { color: var(--blue); font-weight: 850; }
.step-visual { min-height: 260px; display: grid; place-items: center; margin: 28px 0; padding: 25px; background: linear-gradient(140deg, #eef4ff, #dcecff); border-radius: var(--radius); text-align: center; }
.visual-card { width: min(430px, 100%); padding: 28px; background: white; border: 2px solid #abc5f3; border-radius: 18px; box-shadow: 0 12px 28px rgba(28,66,127,.12); }
.visual-icon { width: 74px; height: 74px; display: grid; place-items: center; margin: 0 auto 18px; color: white; background: var(--blue); border-radius: 23px; font-size: 2rem; font-weight: 850; }
.visual-card strong { display: block; font-size: 1.2rem; }
.visual-card span { color: var(--muted); }
.instruction { padding: 22px 0; font-size: 1.17rem; color: var(--ink); }
.step-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 22px; }
.step-actions .button-primary { grid-column: 1 / -1; }
.help-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 22px; margin-top: 20px; }
.help-links button { min-height: 44px; padding: 6px; color: var(--blue-dark); background: transparent; border: 0; text-decoration: underline; text-underline-offset: 4px; font-weight: 750; cursor: pointer; }
.speak-button.is-speaking { color: var(--danger); }
.success-mark { width: 88px; height: 88px; display: grid; place-items: center; margin-bottom: 28px; color: white; background: var(--success); border-radius: 50% 50% 50% 20px; font-size: 2.2rem; font-weight: 900; }
.session-summary { margin: 28px 0; padding: 24px; background: #e9f7f1; border-radius: var(--radius-sm); }
.session-summary h2 { font-size: 1.35rem; }
.session-summary ul { margin-bottom: 0; }
.safety-stop { text-align: left; }
.safety-stop .stop-icon { width: 74px; height: 74px; display: grid; place-items: center; margin-bottom: 24px; color: white; background: var(--danger); border-radius: 50%; font-size: 2rem; font-weight: 900; }
.safety-stop .alert { margin: 25px 0; }
.fallback-box { margin-top: 26px; padding: 22px; background: #f7f9fc; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.fallback-box label { display: block; margin-bottom: 8px; font-weight: 800; }

.visual-guide { display: grid; gap: 24px; }
.guide-format-label { margin: 0 0 7px; color: var(--blue); font-size: .78rem; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.guide-title-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding-bottom: 27px; border-bottom: 1px solid var(--line); }
.guide-title-row h1 { margin: 0 0 8px; font-size: clamp(2.1rem, 5vw, 3.9rem); }
.guide-request { margin: 0; font-size: .9rem; }
.guide-intro { padding: 22px 25px; background: var(--blue-soft); border-left: 6px solid var(--blue); border-radius: 14px; }
.guide-intro p:last-child, .guide-layout-note p:last-child { margin: 0; color: var(--ink); font-size: 1.05rem; }
.guide-context-strip { min-height: 66px; display: flex; align-items: center; gap: 13px; padding: 12px 16px; color: var(--ink); background: #f7f9fc; border: 1px solid var(--line); border-radius: 14px; }
.context-check { width: 36px; height: 36px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--success); border-radius: 50%; font-weight: 900; }
.guide-context-strip strong, .guide-context-strip small { display: block; }
.guide-context-strip small { color: var(--muted); }
.context-upload { margin-left: auto; color: var(--blue-dark); font-size: .82rem; font-weight: 800; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; white-space: nowrap; }
.context-upload span { color: var(--muted); font-weight: 500; }
.context-upload input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.context-screenshot { margin-left: auto; color: var(--success); font-size: .82rem; font-weight: 800; }
.visual-source-needed { min-height: 220px; display: grid; grid-template-columns: 52px 1fr; gap: 17px; align-content: center; margin: 24px 0; padding: clamp(22px, 4vw, 34px); color: var(--ink); background: repeating-linear-gradient(135deg, #f7f9fc, #f7f9fc 15px, #edf2f8 15px, #edf2f8 30px); border: 2px dashed #9cacbf; border-radius: 18px; }
.source-needed-icon { width: 52px; height: 52px; display: grid; place-items: center; color: white; background: #6b7890; border-radius: 50%; font-size: 1.35rem; font-weight: 900; }
.visual-source-needed strong { display: block; margin-bottom: 6px; font-size: 1.15rem; }
.visual-source-needed p { margin: 5px 0; color: #3e4a61; }
.customer-reference { margin: 24px 0; padding: 14px; background: white; border: 2px solid var(--blue); border-radius: 18px; }
.customer-reference img { width: 100%; max-height: 560px; display: block; object-fit: contain; background: #e9eef6; border-radius: 10px; }
.customer-reference figcaption { padding: 11px 4px 0; color: var(--blue-dark); font-weight: 800; }
.device-guide-visual { overflow: hidden; margin: 24px 0; background: #dcefdc; border: 1px solid #b8d2bd; border-radius: 20px; box-shadow: 0 12px 30px rgba(18,44,91,.1); }
.device-guide-visual > img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.device-guide-visual figcaption { min-height: 58px; display: flex; align-items: center; gap: 10px; padding: 12px 18px; color: var(--ink); background: white; font-size: 1rem; }
.device-guide-visual figcaption > span { width: 31px; height: 31px; display: grid; place-items: center; flex: 0 0 auto; color: #d92020; border: 3px solid #d92020; border-radius: 50%; font-size: 0; }
.device-stage { min-height: 440px; display: grid; place-items: center; padding: 28px; background: radial-gradient(circle at 50% 45%, #eef9ed 0, #cde5cf 48%, #b7d4ba 100%); }
.device-phone { width: min(290px, 82vw); padding: 10px; background: linear-gradient(145deg, #404248, #07080a 65%); border: 2px solid #4b4d52; border-radius: 46px; box-shadow: 0 18px 38px rgba(10,25,16,.28); }
.device-screen { position: relative; min-height: 390px; overflow: hidden; padding: 24px 17px 20px; background: #fbfbfc; border-radius: 36px; }
.device-status { display: flex; justify-content: space-between; margin-bottom: 25px; color: #111; font-size: .7rem; }
.device-island { position: absolute; top: 11px; left: 50%; width: 86px; height: 22px; transform: translateX(-50%); background: #050505; border-radius: 20px; }
.device-app-title { margin: 6px 0 15px; color: #111; font-size: 1.25rem; font-weight: 900; }
.device-search { height: 30px; margin-bottom: 14px; background: #eceef1; border-radius: 12px; }
.device-rows { display: grid; gap: 11px; }
.device-rows i { height: 38px; background: linear-gradient(90deg, #d6dce1 0 38px, transparent 38px 48px, #e8eaed 48px); border-radius: 20px 6px 6px 20px; }
.device-target { position: absolute; inset: auto 14px 18px; min-height: 58px; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 8px 14px; color: #121212; background: white; border: 5px solid #ed1c17; border-radius: 40px; box-shadow: 0 4px 18px rgba(0,0,0,.13); text-align: center; }
.device-target > span { width: 32px; height: 32px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--blue); border-radius: 50%; }
.device-target strong { font-size: .92rem; line-height: 1.15; }

.guide-loader { min-height: 590px; display: grid; justify-items: center; align-content: center; padding: clamp(28px, 7vw, 72px) 20px; text-align: center; }
.guide-loader h1 { max-width: 700px; margin: 4px 0 10px; font-size: clamp(2rem, 5vw, 3.7rem); }
.guide-loader .lead { max-width: 620px; margin: 0; }
.loader-visual { position: relative; width: 150px; height: 180px; display: grid; place-items: center; margin-bottom: 25px; }
.loader-phone { position: relative; width: 94px; height: 168px; overflow: hidden; padding: 38px 13px 12px; background: white; border: 7px solid var(--ink); border-radius: 24px; box-shadow: 0 12px 30px rgba(18,44,91,.18); }
.loader-island { position: absolute; top: 10px; left: 50%; width: 39px; height: 9px; transform: translateX(-50%); background: var(--ink); border-radius: 10px; }
.loader-phone i { display: block; height: 10px; margin: 0 0 10px; background: #dce4ef; border-radius: 10px; }
.loader-phone i:nth-of-type(2) { width: 78%; }
.loader-phone i:nth-of-type(3) { width: 60%; }
.loader-phone span { position: absolute; right: 11px; bottom: 15px; width: 34px; height: 34px; border: 5px solid #e53e3e; border-radius: 50%; }
.loader-ring { position: absolute; width: 148px; height: 148px; border: 6px solid transparent; border-top-color: var(--blue); border-right-color: var(--blue); border-radius: 50%; animation: loader-spin 1.1s linear infinite; }
.loader-dots { display: flex; gap: 9px; margin: 25px 0 12px; }
.loader-dots i { width: 11px; height: 11px; background: var(--blue); border-radius: 50%; animation: loader-bounce 1.1s ease-in-out infinite; }
.loader-dots i:nth-child(2) { animation-delay: .15s; }
.loader-dots i:nth-child(3) { animation-delay: .3s; }
.loader-note { margin: 0; color: var(--muted); font-size: .92rem; }
@keyframes loader-spin { to { transform: rotate(360deg); } }
@keyframes loader-bounce { 0%, 60%, 100% { transform: translateY(0); opacity: .45; } 30% { transform: translateY(-7px); opacity: 1; } }
.describe-form > .button { width: 100%; margin-top: 16px; }
.guide-steps { display: grid; gap: 24px; margin-top: 15px; }
.guide-step-card { overflow: hidden; padding: clamp(20px, 4vw, 34px); background: white; border: 2px solid var(--line); border-radius: 22px; box-shadow: 0 10px 28px rgba(22,42,77,.07); }
.guide-step-heading { display: grid; grid-template-columns: 58px 1fr; gap: 16px; align-items: center; }
.guide-step-heading > span { width: 58px; height: 58px; display: grid; place-items: center; color: white; background: var(--blue); border-radius: 50%; font-size: 1.45rem; font-weight: 900; }
.guide-step-heading p { margin: 0 0 2px; color: var(--blue); font-size: .76rem; font-weight: 850; }
.guide-step-heading h2 { margin: 0; font-size: clamp(1.45rem, 3vw, 2rem); }
.guide-short { margin: 18px 0 0; color: var(--ink); font-size: 1.05rem; }
.mock-screenshot { position: relative; overflow: hidden; min-height: 320px; display: grid; align-content: start; margin: 24px 0; padding: 0 24px 58px; background: #edf3fc; border: 1px solid #b9c9df; border-radius: 18px; box-shadow: inset 0 0 0 8px white; }
.mock-screen-bar { height: 48px; display: flex; align-items: center; gap: 7px; margin: 0 -24px 22px; padding: 0 24px; background: white; border-bottom: 1px solid #cdd8e8; }
.mock-screen-bar span { width: 11px; height: 11px; background: #afbdd2; border-radius: 50%; }
.mock-screen-title { margin-bottom: 18px; color: var(--ink); font-size: 1.05rem; font-weight: 850; }
.mock-screen-lines { display: grid; gap: 10px; margin-bottom: 20px; }
.mock-screen-lines i { width: 72%; height: 12px; background: #d6dfed; border-radius: 20px; }
.mock-screen-lines i:last-child { width: 48%; }
.mock-target { position: relative; min-height: 72px; display: flex; align-items: center; gap: 14px; width: min(460px, calc(100% - 55px)); padding: 14px 24px; color: var(--ink); background: white; border: 5px solid #e53e3e; border-radius: 44px; box-shadow: 0 8px 22px rgba(18,44,91,.12); }
.mock-target > span { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--blue); border-radius: 12px; font-size: 1.2rem; }
.mock-target strong { font-size: 1.05rem; }
.mock-target b { position: absolute; right: -55px; color: #e53e3e; font-size: 2.7rem; line-height: 1; }
.mock-screenshot figcaption { position: absolute; inset: auto 0 0; min-height: 48px; display: flex; align-items: center; padding: 9px 22px; color: white; background: var(--blue-dark); font-size: .9rem; font-weight: 850; }
.guide-details { display: grid; gap: 0; margin: 0; padding: 0; border: 1px solid var(--line); border-radius: 14px; }
.guide-details div { display: grid; grid-template-columns: minmax(180px, .8fr) 1.2fr; gap: 14px; padding: 12px 15px; }
.guide-details div + div { border-top: 1px solid var(--line); }
.guide-details dt { color: var(--ink); font-weight: 850; }
.guide-details dd { margin: 0; color: var(--muted); }
.guide-layout-note { padding: 24px; background: #e9f7f1; border: 1px solid #bfe4d3; border-radius: 16px; }
.guide-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 4px; }

.locked-task-banner { display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding: 15px 18px; color: var(--ink); background: #e9f7f1; border: 1px solid #bfe4d3; border-radius: 15px; }
.locked-task-banner > span { width: 38px; height: 38px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: var(--success); border-radius: 50%; font-weight: 900; }
.locked-task-banner small, .locked-task-banner strong { display: block; }
.locked-task-banner small { color: var(--muted); font-size: .78rem; font-weight: 750; }
.locked-task-banner strong { font-size: 1.12rem; }
.step-device-figure { margin: 26px auto 30px; }
.accurate-phone { position: relative; width: min(358px, 100%); aspect-ratio: 9 / 19.5; margin: 0 auto; padding: 9px; background: #101114; border: 2px solid #4d4e53; border-radius: 48px; box-shadow: 0 15px 34px rgba(14,25,43,.2); }
.platform-windows_desktop .accurate-phone { width: min(760px, 100%); aspect-ratio: 16 / 10; padding: 8px; border-radius: 18px; background: #303846; }
.platform-windows_desktop .accurate-screen { padding-top: 25px; border-radius: 10px; background: #f3f5fa; }
.platform-windows_desktop .screen-header { text-align: left; background: #f3f5fa; }
.platform-windows_desktop .screen-header strong { font-size: 1.15rem; }
.platform-windows_desktop .screen-content { padding: 25px clamp(14px, 4vw, 45px); }
.platform-windows_desktop .screen-list { max-width: 560px; margin: 0 auto; }
.platform-windows_desktop .screen-item { min-height: 64px; font-size: 1rem; }
.usb-diagram { min-height: 300px; display: flex; align-items: center; justify-content: space-around; gap: 12px; padding: 28px; background: linear-gradient(135deg,#eef4ff,#fff); border: 2px solid #c4d2e9; border-radius: 20px; }
.usb-printer,.usb-laptop { min-width: 140px; display: grid; justify-items: center; gap: 6px; text-align: center; }
.usb-printer > span,.usb-laptop > span { font-size: 5rem; line-height: 1; color: #31456b; }
.usb-diagram small { color: var(--muted); }
.usb-cable { display: grid; justify-items: center; gap: 9px; padding: 12px; color: #13244a; border: 4px solid #ed4d16; border-radius: 16px; background: white; box-shadow: 0 0 0 5px #ffebd9; text-align: center; }
.usb-cable > span { white-space: nowrap; letter-spacing: -.15em; }
@media (max-width: 580px) { .usb-diagram { flex-direction: column; } .platform-windows_desktop .accurate-phone { aspect-ratio: 4 / 5; } }
.accurate-screen { position: relative; width: 100%; height: 100%; overflow: hidden; padding-top: 45px; color: #111; background: #f7f7f9; border-radius: 38px; }
.accurate-status { position: absolute; z-index: 3; top: 12px; left: 20px; right: 20px; display: flex; justify-content: space-between; align-items: center; font-size: .72rem; }
.accurate-island { position: absolute; z-index: 4; top: 10px; left: 50%; width: 92px; height: 25px; transform: translateX(-50%); background: #050505; border-radius: 20px; }
.screen-header { min-height: 48px; display: grid; grid-template-columns: 34px 1fr 34px; align-items: center; padding: 0 12px; background: rgba(255,255,255,.96); border-bottom: 1px solid #dadce0; text-align: center; }
.screen-header strong { overflow: hidden; font-size: 1rem; text-overflow: ellipsis; white-space: nowrap; }
.screen-back { color: #1677d2; font-size: 2rem; line-height: 1; }
.screen-content { height: calc(100% - 48px); overflow: hidden; padding: 15px 12px 78px; }
.screen-list { overflow: hidden; background: white; border: 1px solid #e2e3e7; border-radius: 13px; }
.screen-item { position: relative; min-height: 54px; display: flex; align-items: center; gap: 11px; padding: 10px 14px; background: white; font-size: .88rem; font-weight: 700; }
.screen-item + .screen-item { border-top: 1px solid #e5e5e8; }
.screen-item::before { content: ""; position: absolute; z-index: 3; inset: 4px; pointer-events: none; border: 0 solid #eb1e19; border-radius: 30px; }
.screen-item.is-target::before { border-width: 4px; box-shadow: 0 0 0 3px rgba(235,30,25,.1); }
.screen-item.is-target::after, .screen-tab.is-target::after { content: ""; position: absolute; z-index: 4; width: 12px; height: 12px; background: #eb1e19; border: 3px solid white; border-radius: 50%; box-shadow: 0 2px 6px rgba(0,0,0,.2); }
.screen-item.is-target::after { right: 8px; top: 4px; }
.screen-item.is-danger { color: #c82626; }
.screen-item-icon { width: 34px; height: 34px; display: grid; place-items: center; flex: 0 0 auto; color: white; background: #21a464; border-radius: 50%; }
.screen-toggle { width: 44px; height: 26px; display: flex; align-items: center; margin-left: auto; padding: 3px; background: #34c759; border-radius: 20px; }
.screen-toggle i { width: 20px; height: 20px; margin-left: auto; background: white; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.25); }
.screen-tabs { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; min-height: 69px; display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; padding: 7px 5px 12px; background: rgba(255,255,255,.97); border-top: 1px solid #d9d9dc; }
.screen-tab { position: relative; display: grid; justify-items: center; align-content: center; gap: 2px; padding: 4px 1px; color: #4d5158; border-radius: 18px; }
.screen-tab > span { font-size: 1.25rem; line-height: 1; }
.screen-tab small { max-width: 70px; overflow: hidden; font-size: .56rem; text-overflow: ellipsis; white-space: nowrap; }
.screen-tab.is-target { outline: 4px solid #eb1e19; outline-offset: -2px; }
.screen-tab.is-target::after { right: -1px; top: -2px; }
.screen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px 11px; padding: 22px 8px; }
.screen-grid .screen-item { min-width: 0; display: grid; justify-items: center; gap: 7px; padding: 7px 3px; background: transparent; border: 0; border-radius: 18px; text-align: center; }
.screen-grid .screen-item > span:not(.screen-item-icon) { max-width: 80px; overflow: hidden; font-size: .68rem; text-overflow: ellipsis; white-space: nowrap; }
.screen-grid-home .screen-item-icon { width: 58px; height: 58px; font-size: 1.35rem; border-radius: 14px; }
.screen-grid-photos .screen-item, .screen-grid-wallpapers .screen-item { min-height: 94px; align-content: end; background: linear-gradient(145deg, var(--swatch, #dce6ed), white); border: 1px solid #d6d9de; }
.screen-sheet { display: grid; align-content: end; padding-bottom: 28px; background: rgba(45,45,48,.18); }
.screen-sheet .screen-list { margin-top: auto; }
.crop-preview { height: 78%; display: grid; place-items: center; background: linear-gradient(145deg, #b8d2bd, #82a58a); }
.crop-circle { width: 210px; height: 210px; border: 3px solid white; border-radius: 50%; box-shadow: 0 0 0 100px rgba(0,0,0,.32); }
.screen-actions { display: flex; gap: 8px; justify-content: flex-end; padding: 12px 0; }
.screen-actions .screen-item { min-height: 42px; padding: 7px 15px; color: #1677d2; border: 1px solid #d9dce1; border-radius: 22px; }
.text-size-demo { min-height: 180px; display: flex; align-items: flex-end; justify-content: space-around; padding: 30px; background: white; border-radius: 14px; }
.text-size-demo small { font-size: 1rem; }
.text-size-demo strong { font-size: 3.4rem; }
.size-slider { position: relative; height: 42px; margin: 34px 18px; border-radius: 24px; }
.size-slider::before { content: ""; position: absolute; left: 6px; right: 6px; top: 19px; height: 5px; background: #90949a; border-radius: 10px; }
.size-slider span { position: absolute; z-index: 2; top: 8px; right: 28px; width: 26px; height: 26px; background: #1677d2; border-radius: 50%; }
.size-slider.is-target { outline: 4px solid #eb1e19; outline-offset: 4px; }
.step-device-figure figcaption { width: min(520px, 100%); min-height: 56px; display: flex; align-items: center; justify-content: center; gap: 9px; margin: 14px auto 0; padding: 11px 15px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 14px; text-align: center; }
.step-device-figure figcaption > span { width: 25px; height: 25px; flex: 0 0 auto; border: 4px solid #eb1e19; border-radius: 50%; }
.screenshot-request { min-height: 110px; display: grid; grid-template-columns: 50px 1fr; align-items: center; gap: 3px 14px; margin: 24px 0; padding: 22px; color: var(--ink); background: #f7f9fc; border: 2px dashed #8da1bc; border-radius: 16px; cursor: pointer; }
.screenshot-request > span { grid-row: 1 / 3; font-size: 2rem; }
.screenshot-request strong, .screenshot-request small { display: block; }
.screenshot-request input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.screenshot-request.compact { min-height: 88px; padding: 15px 18px; }
.step-customer-reference { max-width: 650px; margin-inline: auto; }
.step-actions { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.site-footer { padding: 72px 0 25px; color: white; background: var(--ink); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .7fr .8fr 1fr; gap: 45px; padding-bottom: 55px; }
.footer-brand { color: white; }
.footer-grid p { color: #b9c2d3; }
.footer-grid h2 { margin-bottom: 20px; color: #8e9ab2; font-size: .76rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-grid > div > a:not(.brand):not(.button) { display: block; margin: 8px 0; color: #e5e9f0; text-decoration: none; }
.footer-action { padding: 24px; background: #25334e; border-radius: var(--radius-sm); }
.footer-action p { color: white; font-weight: 800; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; color: #929eb3; border-top: 1px solid #37435d; font-size: .75rem; }

.toast { position: fixed; z-index: 300; left: 50%; bottom: 28px; max-width: min(460px, calc(100vw - 32px)); padding: 15px 20px; color: white; background: var(--ink); border-radius: 12px; box-shadow: var(--shadow); transform: translateX(-50%); font-weight: 750; }
.dialog-backdrop { position: fixed; z-index: 400; inset: 0; display: grid; place-items: center; padding: 20px; background: rgba(8,18,38,.62); }
.dialog { width: min(520px, 100%); padding: 34px; background: white; border-radius: var(--radius); box-shadow: var(--shadow); }
.dialog h2 { font-size: 1.8rem; }

@media (max-width: 1050px) {
  .site-header { grid-template-columns: auto auto 1fr; }
  .menu-button { display: inline-flex; }
  .main-nav { position: absolute; left: 20px; right: 20px; top: 74px; display: none; padding: 18px; align-items: stretch; flex-direction: column; background: white; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow); }
  .main-nav.is-open { display: flex; }
  .main-nav a { min-height: 48px; display: flex; align-items: center; padding: 0 10px; font-size: 1rem; }
  .header-cta { justify-self: end; }
  .hero { grid-template-columns: 1fr 1fr; gap: 45px; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .topic-list { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .help-topbar .brand span:last-child,.help-topbar .header-credit-count,.help-topbar #clearSessionButton { display: none; }
  .help-topbar .help-account-actions { gap: 6px; }
  .help-topbar .credit-balance-button,.help-topbar .account-button { min-height: 44px; padding: 7px 10px; font-size: .78rem; }
  .help-topbar .account-avatar { display: none; }
  :root { --shell: min(calc(100% - 32px), 680px); }
  .site-header { height: 70px; grid-template-columns: 1fr auto auto; padding: 0 16px; gap: 8px; }
  .brand { font-size: .94rem; }
  .brand-mark { width: 31px; height: 31px; }
  .menu-button span:last-child { display: none; }
  .header-cta { min-height: 43px; padding: 7px 13px; font-size: .82rem; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 62px 0 78px; }
  .hero h1 { font-size: clamp(3rem, 13vw, 5rem); }
  .hero-demo { width: min(520px, calc(100% - 10px)); margin: 24px auto 0; }
  .problem-strip, .home-process { padding-block: 76px; }
  .process-grid, .pricing-grid, .family-tips ol { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; }
  .process-grid article:not(:last-child)::after { content: "↓"; right: 40px; top: auto; bottom: -36px; }
  .safety-callout { grid-template-columns: auto 1fr; margin-bottom: 80px; }
  .safety-callout .button { grid-column: 1 / -1; }
  .final-cta .shell { min-height: 390px; flex-direction: column; align-items: flex-start; justify-content: center; }
  .page-hero { padding: 78px 0 62px; }
  .control-band .shell, .contact-layout { grid-template-columns: 1fr; }
  .topic-list { grid-template-columns: 1fr 1fr; }
  .promise-grid, .family-options { grid-template-columns: 1fr; }
  .pricing-grid { gap: 14px; }
  .price-card.featured { transform: none; }
  .pricing-payment-note { grid-template-columns: auto 1fr; }
  .pricing-payment-note .button { grid-column: 1 / -1; }
  .help-topbar { min-height: calc(74px + env(safe-area-inset-top)); height: auto; padding: env(safe-area-inset-top) 16px 0; gap: 8px; }
  .save-status { display: none; }
  .help-tools .text-button:first-child { display: none; }
  .help-layout { grid-template-columns: 1fr; }
  .help-layout, .help-sidebar, .help-main, .help-card, .dynamic-help { min-width: 0; max-width: 100%; }
  .help-sidebar { padding: 22px 20px; }
  .help-sidebar > .eyebrow, .help-sidebar > h2, .sidebar-safety { display: none; }
  .sidebar-steps { grid-template-columns: repeat(4, 1fr); gap: 4px; margin: 0; }
  .sidebar-steps li { min-width: 0; display: grid; justify-items: center; gap: 4px; padding: 5px; text-align: center; font-size: .62rem; }
  .help-main { padding: 22px 16px calc(48px + env(safe-area-inset-bottom)); }
  .help-card { padding: 28px 20px; border-radius: 22px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 580px) {
  .site-header .header-credit-count { display: none; }
  .site-header .header-account-actions { gap: 6px; }
  .site-header .header-buy-button { min-height: 44px; padding: 8px 9px; font-size: .76rem; }
  .site-header .account-button { min-height: 44px; padding: 7px 9px; font-size: .78rem; }
  .site-header .account-avatar { display: none; }
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2rem; }
  .site-header .brand span:last-child { display: none; }
  .main-nav { top: 64px; }
  .hero { gap: 28px; }
  .hero-intro { font-size: 1.04rem; }
  .hero .button-row .button { width: 100%; }
  .trust-list { display: grid; }
  .hero-demo::before { inset: -10px 10px 10px -10px; }
  .demo-body { padding: 25px 20px 22px; }
  .phone-visual { height: 200px; }
  .demo-actions { flex-direction: column; align-items: stretch; }
  .demo-success { text-align: center; }
  .orbit-star { display: none; }
  .section-heading { display: block; }
  .section-heading a { display: inline-block; margin-top: 14px; }
  .problem-grid, .topic-list { grid-template-columns: 1fr; }
  .problem-card { min-height: 175px; }
  .safety-callout { display: block; padding: 28px; }
  .safety-symbol { margin-bottom: 22px; }
  .steps-detail article { grid-template-columns: 1fr; gap: 8px; padding: 35px 0; }
  .control-band { padding: 65px 0; }
  .control-band .shell { gap: 30px; }
  .blocked-note { grid-template-columns: auto 1fr; }
  .blocked-note a { grid-column: 1 / -1; }
  .family-tips { padding: 34px 24px; }
  .contact-form { padding: 24px; }
  input, textarea, select { font-size: 16px; }
  .input-actions { flex-direction: column; }
  .input-actions > * { width: 100%; }
  .quick-choices > div, .choice-grid, .step-actions { grid-template-columns: 1fr; }
  .step-actions .button-primary { grid-column: auto; order: -1; }
  .choice-button, .help-links button { min-height: 52px; }
  .voice-button { min-height: 60px; justify-content: center; }
  .dynamic-help .button-row { display: grid; grid-template-columns: 1fr; }
  .dynamic-help .button-row .button { width: 100%; }
  .step-header { align-items: flex-start; flex-direction: column; }
  .guide-title-row { display: grid; }
  .guide-title-row .icon-button { width: 100%; }
  .guide-step-heading { grid-template-columns: 48px 1fr; }
  .guide-step-heading > span { width: 48px; height: 48px; }
  .mock-screenshot { min-height: 285px; padding-inline: 18px; }
  .mock-target { width: calc(100% - 38px); padding: 12px 15px; }
  .mock-target b { right: -40px; font-size: 2rem; }
  .guide-details div { grid-template-columns: 1fr; gap: 2px; }
  .guide-context-strip { align-items: flex-start; flex-wrap: wrap; }
  .context-upload, .context-screenshot { width: 100%; margin-left: 49px; }
  .visual-source-needed { grid-template-columns: 1fr; }
  .device-stage { min-height: 390px; padding: 20px 12px; }
  .device-phone { width: min(260px, 88vw); }
  .guide-actions { display: grid; }
  .accurate-phone { width: min(360px, 100%); }
  .step-actions { grid-template-columns: 1fr; }
  .step-actions > span { display: none; }
  .help-topbar .brand span:last-child { display: none; }
  #clearSessionButton { display: none; }
  .credit-balance-button { padding-inline: 10px; font-size: .72rem; }
  .help-tools .text-button { font-size: .75rem; padding: 7px; }
  .credit-package-grid { grid-template-columns: 1fr; }
  .credit-package { min-height: 200px; }
  .pricing-payment-note { display: block; }
  .pricing-payment-note > span { margin-bottom: 14px; }
  .pricing-payment-note .button { width: 100%; margin-top: 18px; }
  .sidebar-steps li { font-size: 0; }
  .sidebar-steps li span { font-size: .75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media print {
  body * { visibility: hidden !important; }
  .session-summary, .session-summary *, .visual-guide, .visual-guide * { visibility: visible !important; }
  .session-summary { position: absolute; inset: 24px; margin: 0; padding: 32px; color: #000; background: #fff; border: 2px solid #000; }
  .session-summary::before { content: "Tech All Stars — uw stappen"; display: block; margin-bottom: 20px; font-size: 24px; font-weight: 800; }
  .visual-guide { position: absolute; inset: 0; display: block; padding: 20px; background: white; }
  .guide-step-card { break-inside: avoid; margin: 18px 0; box-shadow: none; }
  .guide-actions, .speak-button { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
/* Apparaat-specifieke guide assistant */
.guide-assumption,
.guide-context-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem .9rem;
  align-items: center;
  margin: 1rem 0;
  padding: .9rem 1rem;
  border: 1px solid #b8d5cb;
  border-radius: 14px;
  background: #f2fbf7;
  color: #173f35;
}
.guide-assumption strong { flex-basis: 100%; }
.guide-assumption span,
.guide-context-row span { font-size: .9rem; }
.guide-context-row span:not(:last-child)::after { content: "·"; margin-left: .9rem; color: #60857b; }
.loader-phases { display: grid; gap: .65rem; max-width: 28rem; margin: 1.25rem auto; padding: 0; list-style: none; text-align: left; }
.loader-phases li { display: flex; gap: .75rem; align-items: center; }
.loader-phases span { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: 50%; background: #e1f3ec; color: #075c48; font-weight: 800; }
.screen-whatsapp-logged-out { background: #f7f8f7; }
.whatsapp-logout-content { display: flex; flex-direction: column; min-height: 31rem; padding: 3.5rem 1rem 1rem; text-align: center; }
.whatsapp-logout-content .whatsapp-mark { display: grid; place-items: center; width: 4.6rem; height: 4.6rem; margin: 0 auto 1rem; border-radius: 1.4rem; background: #25d366; color: white; font-size: 2.4rem; }
.whatsapp-logout-content h3 { margin: 0 0 .5rem; font-size: 1.35rem; }
.whatsapp-logout-content .screen-list { display: contents; }
.whatsapp-logout-content .screen-item { justify-content: center; border: 0; background: transparent; line-height: 1.45; }
.whatsapp-logout-content .screen-item:last-child { margin-top: auto; min-height: 3.15rem; border-radius: 999px; background: #1fa855; color: white; font-weight: 800; }
.whatsapp-logout-content .screen-item.is-target { outline: 5px solid #ff9d00; outline-offset: 5px; box-shadow: 0 0 0 3px white; }
.whatsapp-form-content { padding: 2rem .85rem 1rem; }
.whatsapp-form-content > p { margin: 0 0 1.25rem; text-align: center; line-height: 1.45; }
.screenshot-consent-panel { display: grid; gap: 1rem; grid-template-columns: minmax(8rem, 13rem) 1fr; align-items: center; margin: 1rem 0 1.5rem; padding: 1rem; border: 2px solid #bdd8cf; border-radius: 16px; background: #f6fbf9; }
.screenshot-consent-panel img { width: 100%; max-height: 17rem; object-fit: contain; border-radius: 10px; background: #17231f; }
.screenshot-consent-panel p { margin: 0; line-height: 1.5; }
.screenshot-consent-panel p strong { display: block; margin-bottom: .25rem; }
.screenshot-consent-panel .button { grid-column: 2; justify-self: start; }
.step-device-figure { cursor: zoom-in; border-radius: 20px; }
.step-device-figure:focus-visible { outline: 4px solid #ff9d00; outline-offset: 4px; }
.step-device-figure.is-zoomed { position: fixed; z-index: 1000; inset: 0; display: grid; place-items: center; max-width: 100vw; margin: 0; padding: 1rem; overflow-x: hidden; overflow-y: auto; background: rgba(4, 20, 16, .92); cursor: zoom-out; }
.step-device-figure.is-zoomed .accurate-phone { width: min(358px, calc(100vw - 2rem)); transform: none; max-height: calc(100vh - 5rem); }
.step-device-figure.is-zoomed.platform-windows_desktop .accurate-phone { width: min(1000px, calc(100vw - 2rem)); aspect-ratio: 16 / 10; height: auto; }
.step-device-figure.is-zoomed figcaption { max-width: calc(100vw - 2rem); }
.step-device-figure.is-zoomed figcaption { color: white; }
.button,
.choice-button,
.text-button,
.screenshot-request { min-height: 44px; }
@media (max-width: 640px) {
  .screenshot-consent-panel { grid-template-columns: 1fr; }
  .screenshot-consent-panel img { max-height: 20rem; }
  .screenshot-consent-panel .button { grid-column: 1; width: 100%; }
  .guide-context-row { align-items: flex-start; flex-direction: column; }
  .guide-context-row span:not(:last-child)::after { content: ""; margin: 0; }
}
@media (min-width: 1000px) {
  .step-device-figure.is-zoomed .accurate-phone { height: 90vh; width: auto; aspect-ratio: 390 / 844; }
}

/* Eerlijke, platformgebonden visuele referenties */
.target-instruction { max-width: 44rem; margin: -.25rem auto 1rem; padding: .85rem 1rem; border-left: 5px solid #ff9d00; border-radius: 10px; background: #fff8e8; line-height: 1.5; }
.step-device-figure figcaption { flex-wrap: wrap; }
.step-device-figure figcaption > span { width: 100%; height: auto; flex-basis: 100%; border: 0; color: #5b6470; font-size: .76rem; font-weight: 650; }
.reference-device { width: min(358px, 100%); min-height: 31rem; margin: 0 auto; overflow: hidden; border: 10px solid #15171a; border-radius: 42px; background: #eef2f5; box-shadow: 0 15px 34px rgba(14,25,43,.2); }
.reference-toolbar { display: flex; gap: 6px; min-height: 32px; align-items: center; justify-content: center; background: #202329; }
.reference-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: #8b929d; }
.reference-screen { min-height: 29rem; display: grid; grid-template-rows: auto 1fr; align-items: center; padding: 1.25rem; background: linear-gradient(160deg, #f9fbfc, #e9f2ef); }
.reference-app { justify-self: center; padding: .35rem .7rem; color: #355047; font-size: .82rem; font-weight: 800; }
.reference-target { position: relative; display: grid; grid-template-columns: auto 1fr auto; gap: .7rem; align-items: center; min-height: 64px; padding: .8rem 1rem; border: 5px solid #ff8a00; border-radius: 18px; background: white; box-shadow: 0 0 0 4px rgba(255,255,255,.95), 0 8px 24px rgba(22,39,33,.18); }
.reference-target::after { content: ""; position: absolute; inset: -12px; border: 3px solid rgba(255,138,0,.36); border-radius: 25px; }
.reference-target > span { font-size: 1.6rem; }
.reference-target > b { color: #c54800; font-size: 1.8rem; }
.platform-android_phone .reference-device { border-radius: 28px; border-color: #26313a; }
.platform-android_phone .reference-toolbar { justify-content: flex-start; padding-left: 18px; background: #26313a; }
.platform-windows_desktop .reference-device, .platform-mac_desktop .reference-device { width: min(760px, 100%); min-height: 28rem; border-width: 7px; border-radius: 16px; }
.platform-windows_desktop .reference-toolbar, .platform-mac_desktop .reference-toolbar { justify-content: flex-start; padding-left: 14px; background: #e5e7eb; }
.platform-windows_desktop .reference-toolbar i:first-child { background: #2677d5; }
.platform-mac_desktop .reference-toolbar i:nth-child(1) { background: #ff5f57; }
.platform-mac_desktop .reference-toolbar i:nth-child(2) { background: #febc2e; }
.platform-mac_desktop .reference-toolbar i:nth-child(3) { background: #28c840; }
.platform-windows_desktop .reference-screen, .platform-mac_desktop .reference-screen { min-height: 26rem; }
.user-screenshot-wrap { position: relative; display: inline-block; width: 100%; }
.screenshot-target-overlay { position: absolute; box-sizing: border-box; border: 6px solid #ff8a00; border-radius: 999px; box-shadow: 0 0 0 4px rgba(255,255,255,.92); pointer-events: none; }
.desktop-windowbar { display: flex; gap: 6px; align-items: center; min-height: 28px; padding: 0 12px; background: #e7e9ed; }
.desktop-windowbar i { width: 8px; height: 8px; border-radius: 50%; background: #8e96a3; }
@media (max-width: 580px) {
  .platform-windows_desktop .reference-device, .platform-mac_desktop .reference-device { min-height: 20rem; }
  .platform-windows_desktop .reference-screen, .platform-mac_desktop .reference-screen { min-height: 18rem; }
}
