/* === Section styles === */

/* Nav */
.bt-nav { position: sticky; top: 0; z-index: 50; background: color-mix(in oklab, var(--bg) 85%, transparent); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.bt-nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; max-width: var(--container); margin: 0 auto; }
.bt-logo { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.bt-logo-tag { font-family: var(--font-mono); font-size: 13px; color: var(--muted); font-weight: 400; }
.bt-nav-links { display: flex; gap: 28px; }
.bt-nav-links a { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.bt-nav-links a:hover { color: var(--ink); }
.bt-nav-cta { display: flex; align-items: center; gap: 14px; }
.bt-nav-login { font-size: 14px; color: var(--ink-2); font-weight: 500; }
.bt-nav-burger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.bt-nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.bt-nav-mobile { display: none; flex-direction: column; gap: 14px; padding: 20px 24px; border-top: 1px solid var(--line); background: var(--bg-elev); }
.bt-nav-mobile a { font-size: 16px; font-weight: 500; }
@media (max-width: 920px) {
  .bt-nav-links, .bt-nav-cta { display: none; }
  .bt-nav-burger { display: flex; }
  .bt-nav-mobile { display: flex; }
}

/* Hero */
.hero { padding-top: 56px; padding-bottom: 0; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; padding-bottom: 96px; }
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; padding-bottom: 64px; } }
.hero h1 .hl { background: linear-gradient(180deg, transparent 60%, color-mix(in oklab, var(--accent) 28%, transparent) 60%); padding: 0 4px; }
.hero-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 28px; color: var(--ink-2); font-size: 14px; }
.hero-meta-divider { width: 1px; height: 16px; background: var(--line-strong); }
.hero-meta .check { color: var(--good); font-weight: 700; }
.hero-meta strong { color: var(--ink); }

.hero-visual { position: relative; min-height: 520px; }
.hero-stage { position: relative; width: 100%; aspect-ratio: 1 / 1; max-width: 560px; margin-left: auto; }
@media (max-width: 980px) { .hero-stage { margin: 0 auto; } }

.hero-card { position: absolute; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 22px; }
.hero-card--main { left: 4%; top: 8%; right: 12%; padding: 22px 24px; }
.hero-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.hero-question { display: flex; gap: 16px; align-items: center; padding: 18px; background: var(--bg-soft); border-radius: var(--radius); margin-bottom: 16px; }
.hero-question-text h3 { font-size: 18px; line-height: 1.3; margin-top: 4px; }
.hero-options { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.hero-option { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; font-size: 14px; color: var(--ink-2); }
.hero-option.correct { background: var(--good-soft); border-color: color-mix(in oklab, var(--good) 40%, var(--line)); color: var(--ink); font-weight: 500; }
.hero-option-key { width: 22px; height: 22px; border-radius: 6px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 12px; font-weight: 600; flex-shrink: 0; }
.hero-option.correct .hero-option-key { background: var(--good); color: #fff; }
.hero-option-mark { margin-left: auto; color: var(--good); font-weight: 700; }
.hero-card-foot { display: flex; align-items: center; gap: 12px; }

.hero-card--streak { right: -2%; top: 50%; padding: 18px 20px; min-width: 220px; }
.streak-row { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.streak-flame { font-size: 28px; }
.streak-num { font-size: 22px; font-weight: 600; letter-spacing: -0.02em; }
.streak-dots { display: flex; gap: 4px; }
.streak-dots .dot { width: 12px; height: 12px; border-radius: 3px; background: var(--bg-soft); }
.streak-dots .dot.on { background: var(--accent); }
.streak-dots .dot.today { background: var(--signal); box-shadow: 0 0 0 2px color-mix(in oklab, var(--signal) 30%, transparent); }

.hero-card--score { left: -4%; bottom: 8%; padding: 18px 22px; }
.score-num { font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin: 6px 0 4px; }
.score-num span { font-size: 22px; color: var(--muted); }
.score-label { font-size: 13px; font-weight: 500; }
.score-label.good { color: var(--good); }

.hero-sign-rail { position: absolute; right: -8%; bottom: 18%; display: flex; flex-direction: column; gap: 12px; opacity: 0.95; }
.hero-sign-rail > svg { filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08)); transition: transform .25s; }
.hero-sign-rail > svg:hover { transform: translateX(-4px) scale(1.05); }

@media (max-width: 600px) {
  .hero-card--streak, .hero-card--score, .hero-sign-rail { display: none; }
  .hero-card--main { position: relative; left: 0; right: 0; top: 0; }
  .hero-stage { aspect-ratio: auto; }
}

.hero-stage--route { background: var(--bg-soft); border-radius: var(--radius-xl); padding: 24px; border: 1px solid var(--line); overflow: hidden; }
.route-svg { width: 100%; height: 100%; opacity: 0.9; }
.route-stop { position: absolute; transform: translate(-50%, -50%); display: flex; align-items: center; gap: 8px; }
.route-pin { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-elev); border: 2px solid var(--line-strong); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 14px; }
.route-pin.on { background: var(--accent); color: #fff; border-color: var(--accent); }
.route-label { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 8px; padding: 6px 10px; font-size: 12px; box-shadow: var(--shadow-sm); }
.route-label strong { display: block; }
.route-label span { color: var(--muted); font-size: 11px; }

/* Hero proof strip + store badges (v2) */
.hero-proof { display: flex; align-items: center; flex-wrap: wrap; gap: 12px 20px; margin-top: 28px; }
.hero-proof-item { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; color: var(--ink-2); }
.hero-proof-item .check { color: var(--good); font-weight: 700; }
.hero-proof-item strong { color: var(--ink); }
.hero-proof-divider { width: 1px; height: 16px; background: var(--line-strong); }
.store-badges { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.store-badge { display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px 9px 14px; border-radius: 12px; background: var(--ink); color: var(--bg); }
.store-badge .sb-glyph { display: flex; align-items: center; justify-content: center; color: var(--bg); }
.store-badge .sb-text { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge .sb-top { font-size: 10px; opacity: 0.75; letter-spacing: 0.02em; }
.store-badge .sb-name { font-size: 15px; font-weight: 600; letter-spacing: -0.01em; }
@media (max-width: 980px) { .store-badges { justify-content: flex-start; } }

/* Guarantee block (v2) */
.guarantee { padding-top: 72px; padding-bottom: 72px; }
.guarantee-card { background: var(--ink); color: var(--bg); border-radius: var(--radius-xl); padding: 56px; }
@media (max-width: 760px) { .guarantee-card { padding: 32px 22px; } }
.guarantee-head { max-width: 680px; margin-bottom: 36px; }
.guarantee-head .eyebrow { color: rgba(255,255,255,0.6); }
.guarantee-head .eyebrow .dot { background: var(--signal); }
.guarantee-head h2 { color: var(--bg); margin: 14px 0 16px; }
.guarantee-head p { color: rgba(255,255,255,0.72); font-size: 17px; line-height: 1.55; }
.guarantee-steps { display: flex; align-items: stretch; gap: 14px; }
@media (max-width: 760px) { .guarantee-steps { flex-direction: column; } }
.g-step { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; }
.g-step-n { width: 30px; height: 30px; border-radius: 50%; background: var(--signal); color: #0E1726; font-weight: 700; display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-size: 14px; margin-bottom: 4px; }
.g-step h3 { color: var(--bg); font-size: 18px; }
.g-step p { color: rgba(255,255,255,0.68); font-size: 14px; line-height: 1.5; }
.g-arrow { display: flex; align-items: center; justify-content: center; color: var(--signal); font-size: 24px; flex-shrink: 0; }
@media (max-width: 760px) { .g-arrow { transform: rotate(90deg); padding: 2px 0; } }

/* Feature grid — 3 items, single fallback on narrow */
.features-grid.features-grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .features-grid.features-grid--3 { grid-template-columns: 1fr; } }

/* Feature grid — 5 items centered last row */
.features-grid--5 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 980px) { .features-grid--5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid--5 { grid-template-columns: 1fr; } }
.plan-features li.feat-guarantee { color: var(--ink); font-weight: 500; }


.hero-trust { border-top: 1px solid var(--line); padding: 28px 0; background: var(--bg-soft); }
.trust-row { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; justify-content: center; }
.trust-logo { font-family: 'Times New Roman', serif; font-style: italic; font-size: 18px; font-weight: 600; color: var(--muted); letter-spacing: -0.02em; }
.trust-row .trust-logo:nth-child(2) { font-family: var(--font-sans); font-style: normal; font-weight: 700; }
.trust-row .trust-logo:nth-child(4) { font-family: var(--font-mono); font-style: normal; }
.trust-row .trust-logo:nth-child(5) { font-family: 'Georgia', serif; font-style: normal; }

/* How — App Store-style screenshot rail */
.how-rail { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 4px max(24px, calc((100vw - var(--container)) / 2 + 24px)) 8px; scrollbar-width: none; }
.how-rail::-webkit-scrollbar { display: none; }
.how-shot { flex: 0 0 auto; width: clamp(224px, 62vw, 268px); scroll-snap-align: start; margin: 0; }
.how-shot img { display: block; width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: 22px; background: var(--bg-soft); border: 1px solid var(--line); box-shadow: var(--shadow); }
@media (max-width: 760px) { .how-shot { width: clamp(210px, 70vw, 250px); } .how-rail { gap: 12px; padding-left: 20px; padding-right: 20px; } }

/* Demo */
.demo { background: var(--bg-soft); }
.demo-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .demo-grid { grid-template-columns: 1fr; gap: 40px; } }
.demo-copy h2 { margin: 14px 0 18px; }
.demo-list { list-style: none; padding: 0; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; font-size: 16px; color: var(--ink-2); }
.demo-list li { display: flex; align-items: flex-start; gap: 12px; }

.check-circle { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: var(--good-soft); color: var(--good); font-size: 12px; font-weight: 700; flex-shrink: 0; }

.demo-card { padding: 28px; }
.demo-guarantee { display: flex; align-items: flex-start; gap: 12px; margin-top: 20px; padding: 14px 16px; border: 1px solid color-mix(in oklab, var(--accent) 35%, var(--line)); background: color-mix(in oklab, var(--accent) 7%, var(--bg)); border-radius: 12px; font-size: 14.5px; line-height: 1.45; color: var(--ink-2); }
.demo-guarantee .dg-shield { flex: none; color: var(--accent); line-height: 0; margin-top: 1px; }
.demo-guarantee strong { color: var(--ink); }
.price-recap { padding: 72px 0; }
.price-recap-card { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 40px; align-items: center; padding: 40px 48px; border: 1px solid var(--line); border-radius: 20px; background: var(--bg-soft); }
.price-recap-card h2 { margin: 12px 0 16px; font-size: clamp(24px, 3vw, 34px); }
.pr-guarantee { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--accent); font-weight: 500; }
.pr-guarantee .dg-shield { flex: none; line-height: 0; }
.pr-right { display: flex; flex-direction: column; gap: 14px; padding-left: 40px; border-left: 1px solid var(--line); }
.pr-price { display: flex; align-items: baseline; gap: 6px; }
.pr-from { align-self: flex-start; margin-top: 6px; }
.pr-num { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.pr-cur { font-size: 22px; font-weight: 600; color: var(--ink-2); }
@media (max-width: 760px) { .price-recap { padding: 48px 0; } .price-recap-card { grid-template-columns: 1fr; gap: 28px; padding: 32px 24px; } .pr-right { padding-left: 0; border-left: none; padding-top: 24px; border-top: 1px solid var(--line); } }
.demo-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.demo-dots { display: flex; gap: 6px; }
.dd { width: 18px; height: 4px; border-radius: 2px; background: var(--line-strong); }
.dd.on { background: var(--accent); }
.demo-question { display: flex; gap: 20px; align-items: center; margin-bottom: 24px; }
.demo-question h3 { font-size: 22px; line-height: 1.3; }
.demo-options { display: flex; flex-direction: column; gap: 10px; }
.demo-opt { display: flex; align-items: center; gap: 14px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 12px; background: var(--bg-elev); text-align: left; transition: all .15s; font-size: 15px; color: var(--ink); width: 100%; }
.demo-opt:hover:not(:disabled) { border-color: var(--accent); background: var(--accent-soft); }
.demo-opt-key { width: 28px; height: 28px; border-radius: 8px; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-mono); font-weight: 600; font-size: 13px; flex-shrink: 0; }
.demo-opt:nth-child(1) .demo-opt-key { background: color-mix(in oklab, #3b82f6 12%, var(--bg-soft)); color: #2563eb; }
.demo-opt:nth-child(2) .demo-opt-key { background: color-mix(in oklab, #10b981 12%, var(--bg-soft)); color: #059669; }
.demo-opt:nth-child(3) .demo-opt-key { background: color-mix(in oklab, #f59e0b 14%, var(--bg-soft)); color: #d97706; }
.demo-opt-text { flex: 1; }
.demo-opt-mark { margin-left: auto; font-weight: 700; font-size: 18px; }
.demo-opt-mark.good { color: var(--good); }
.demo-opt-mark.bad { color: var(--bad); }
.demo-opt.correct { background: var(--good-soft); border-color: color-mix(in oklab, var(--good) 40%, var(--line)); }
.demo-opt.correct .demo-opt-key { background: var(--good); color: #fff; }
.demo-opt.wrong { background: var(--bad-soft); border-color: color-mix(in oklab, var(--bad) 40%, var(--line)); }
.demo-opt.wrong .demo-opt-key { background: var(--bad); color: #fff; }
.demo-explain { margin-top: 18px; padding: 16px 18px; border-radius: 12px; font-size: 14px; line-height: 1.55; }
.demo-explain.good { background: var(--good-soft); color: var(--ink); }
.demo-explain.bad { background: var(--bad-soft); color: var(--ink); }
.demo-card-foot { display: flex; justify-content: flex-end; align-items: center; margin-top: 24px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Features */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }
.feature { padding: 0; overflow: hidden; display: flex; flex-direction: column; transition: transform .2s, box-shadow .2s; }
.feature:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.feature-visual { padding: 28px; min-height: 180px; background: var(--bg-soft); border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center; }
.feature-body { padding: 24px 28px 28px; }
.feature-body h3 { margin-bottom: 8px; font-size: 19px; }
.feature-body p { font-size: 15px; color: var(--muted); line-height: 1.55; }

.fv-adaptive { width: 100%; display: flex; flex-direction: column; gap: 8px; }
.fv-row { display: grid; grid-template-columns: 90px 1fr 36px; align-items: center; gap: 10px; font-size: 13px; }
.fv-label { color: var(--ink-2); }

.fv-explain { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.fv-bubble { background: var(--bg-elev); border: 1px solid var(--line); border-radius: 12px; padding: 12px 14px; font-size: 13px; }
.fv-bubble--good { background: var(--good-soft); border-color: color-mix(in oklab, var(--good) 30%, var(--line)); }
.fv-bubble--good .mono { color: var(--good); }

.fv-signs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; align-items: center; justify-items: center; }
.jg-emblem { display: grid; place-items: center; border-radius: 24%; background: color-mix(in oklab, var(--accent) 12%, var(--bg-soft)); color: var(--accent); flex: none; }

.fv-exam { width: 100%; }
.fv-exam-row { display: flex; justify-content: space-between; margin-bottom: 8px; }
.good { color: var(--good); }
.fv-exam-num { font-size: 56px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.fv-exam-num span { font-size: 24px; color: var(--muted); }
.fv-exam-bar { margin: 14px 0 8px; }
.fv-exam-meta { font-size: 12px; }

.fv-mobile { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.fv-phone { width: 160px; height: 200px; background: var(--ink); border-radius: 22px 22px 6px 6px; padding: 12px; position: relative; box-shadow: var(--shadow-lg); }
.fv-phone-notch { width: 50px; height: 5px; background: #000; border-radius: 3px; margin: 0 auto 10px; }
.fv-phone-screen { background: var(--bg); border-radius: 8px; padding: 12px; height: calc(100% - 18px); display: flex; flex-direction: column; gap: 8px; }
.fv-phone-title { font-size: 13px; font-weight: 600; }
.fv-phone-row { display: flex; align-items: center; gap: 8px; font-size: 11px; padding: 4px 0; }
.fv-phone-row span:nth-child(2) { flex: 1; }

.fv-ready { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.fv-ready-top { display: flex; justify-content: space-between; align-items: baseline; }
.fv-ready-track { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.fv-ready-track span { height: 10px; border-radius: 5px; background: var(--line-strong); }
.fv-ready-track span.on { background: var(--good); }
.fv-ready-scale { display: flex; justify-content: space-between; }
.fv-ready-stat { font-size: 13px; color: var(--ink-2); line-height: 1.5; border-top: 1px solid var(--line); padding-top: 10px; }
.fv-ready-stat strong { color: var(--ink); font-weight: 700; }
.fv-foot { border-top: 1px solid var(--line); padding-top: 8px; margin-top: 2px; }
.fv-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.fv-chips span { font-family: var(--font-mono); font-size: 9px; letter-spacing: .04em; padding: 3px 6px; border-radius: 6px; background: var(--bg-soft); color: var(--muted); }
.fv-updated { width: 100%; display: flex; flex-direction: column; gap: 14px; }
.fv-updated .fv-signs { grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fv-updated-stamp { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--line); padding-top: 10px; }
.fv-updated-meta { line-height: 1.5; }

.fv-guarantee { display: flex; align-items: center; gap: 18px; }
.fv-stamp { width: 90px; height: 90px; border-radius: 50%; border: 3px dashed var(--accent); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--accent); font-size: 11px; line-height: 1.1; transform: rotate(-8deg); flex-shrink: 0; }
.fv-stamp .mono { font-weight: 700; letter-spacing: 0.05em; }
.fv-big { font-size: 48px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }

.mono { font-family: var(--font-mono); }
.small { font-size: 12px; }
.accent { color: var(--accent); }

/* Stats */
.stats { background: var(--ink); color: var(--bg); padding: 72px 0; }
[data-theme="dark"] .stats { background: var(--accent-deep); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; } }
.stat-num { font-size: clamp(36px, 4vw, 56px); font-weight: 700; letter-spacing: -0.03em; line-height: 1; margin-bottom: 8px; color: var(--bg); }
.stat-label { font-size: 16px; font-weight: 500; margin-bottom: 4px; color: var(--bg); }
.stat-note { font-size: 13px; color: rgba(255,255,255,0.55); }

/* Testimonials */
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .t-grid { grid-template-columns: 1fr; } }
.t-card { padding: 28px; display: flex; flex-direction: column; gap: 16px; transition: transform .2s; }
.t-card:hover { transform: translateY(-2px); }
.t-card blockquote { margin: 0; font-size: 17px; line-height: 1.5; color: var(--ink); letter-spacing: -0.01em; }
.t-card figcaption { display: flex; align-items: center; gap: 12px; }
.t-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 600; font-size: 16px; }
.t-meta { display: flex; flex-direction: column; }

/* Pricing */
.pricing-head { margin-bottom: 32px; }
.plate-row { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 980px) { .pricing-grid { grid-template-columns: 1fr; } }
.plan { padding: 32px 28px; display: flex; flex-direction: column; gap: 18px; position: relative; transition: transform .2s, box-shadow .2s, border-color .2s; cursor: pointer; }
.plan:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.plan--rec { border-color: var(--accent); border-width: 2px; box-shadow: 0 24px 48px -12px color-mix(in oklab, var(--accent) 25%, transparent); transform: translateY(-8px); }
@media (max-width: 980px) { .plan--rec { transform: none; } }
.plan-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; padding: 6px 14px; border-radius: 999px; font-family: var(--font-mono); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; }
.plan-head h3 { font-size: 22px; margin-bottom: 6px; }
.plan-head p { font-size: 14px; color: var(--muted); line-height: 1.5; }
.plan-price { display: flex; align-items: baseline; gap: 6px; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.plan-price-num { font-size: 56px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; }
.plan-price-cur { font-size: 18px; color: var(--muted); font-weight: 500; }
.plan-perday { margin-top: -8px; }
.plan-features { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }
.plan-foot { text-align: center; }

.pricing-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; padding: 32px; background: var(--bg-soft); border-radius: var(--radius-lg); border: 1px solid var(--line); }
@media (max-width: 760px) { .pricing-trust { grid-template-columns: 1fr; } }
.pt-item { display: flex; gap: 14px; align-items: flex-start; }
.pt-icon { font-size: 24px; flex-shrink: 0; }
.pt-item p { margin-top: 4px; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 0.85fr 1.4fr; gap: 56px; }
@media (max-width: 900px) { .faq-grid { grid-template-columns: 1fr; gap: 40px; } }
.faq-side h2 { margin: 14px 0 18px; }
.faq-side .lead { margin-bottom: 28px; }
.link { color: var(--accent); border-bottom: 1px solid color-mix(in oklab, var(--accent) 40%, transparent); }
.faq-side-card { padding: 20px; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; text-align: left; transition: border-color .15s; cursor: pointer; }
.faq-item:hover { border-color: var(--line-strong); }
.faq-item.open { border-color: var(--accent); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 16px; font-size: 16px; font-weight: 500; color: var(--ink); }
.faq-toggle { width: 28px; height: 28px; border-radius: 50%; background: var(--bg-soft); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--ink-2); flex-shrink: 0; }
.faq-item.open .faq-toggle { background: var(--accent); color: #fff; }
.faq-a { margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line); font-size: 15px; color: var(--ink-2); line-height: 1.6; }

/* Final CTA */
.final-cta { padding: 72px 0; }
.final-cta-card { background: var(--ink); color: var(--bg); border-radius: var(--radius-xl); padding: 72px 56px; position: relative; overflow: hidden; }
@media (max-width: 760px) { .final-cta-card { padding: 48px 28px; } }
.final-cta-bg { position: absolute; inset: 0; display: flex; flex-wrap: wrap; gap: 48px; padding: 32px; opacity: 0.08; pointer-events: none; align-content: space-around; justify-content: space-around; }
.final-cta-inner { position: relative; max-width: 640px; }
.final-cta-inner h2 { color: var(--bg); margin: 14px 0 18px; }
.final-cta-inner .lead { color: rgba(255,255,255,0.75); }

/* Footer */
.ft { padding: 64px 0 32px; border-top: 1px solid var(--line); background: var(--bg-soft); }
.ft-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .ft-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-col { display: flex; flex-direction: column; gap: 10px; }
.ft-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 8px; font-weight: 500; }
.ft-col a { font-size: 14px; color: var(--ink-2); }
.ft-col a:hover { color: var(--accent); }
.ft-foot { padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* Full App Store-style shots (bil v4/v5, jeger v2/v3) — keep whole frame, no crop */
.how-shot--store img { aspect-ratio: 1290 / 2796; object-fit: contain; border: none; }

/* Slik fungerer Teorihuset — alternativ B: nummererte steg, samme layout på alle skjermer */
.how--steps .hiw-steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; max-width: 720px; }
.how--steps .hiw-step { display: flex; align-items: center; gap: 20px; background: var(--bg-elev); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 16px 20px 16px 16px; }
.how--steps .hiw-shot { flex: 0 0 auto; width: 84px; border-radius: 12px; overflow: hidden; background: var(--bg-soft); }
.how--steps .hiw-shot img { display: block; width: 100%; aspect-ratio: 1290 / 2796; object-fit: contain; }
.how--steps .hiw-text { min-width: 0; }
.how--steps .hiw-n { display: inline-block; font-size: 12px; letter-spacing: .08em; color: var(--accent, var(--signal)); font-weight: 700; margin-bottom: 4px; }
.how--steps .hiw-text h3 { font-size: 19px; line-height: 1.25; margin: 0 0 6px; }
.how--steps .hiw-text p { font-size: 15px; line-height: 1.5; color: var(--ink-2, var(--muted)); margin: 0; text-wrap: pretty; }
@media (max-width: 520px) {
  .how--steps .hiw-step { gap: 14px; padding: 14px 16px 14px 14px; }
  .how--steps .hiw-shot { width: 72px; }
  .how--steps .hiw-text h3 { font-size: 17px; }
  .how--steps .hiw-text p { font-size: 14px; }
}

.plan-note { align-self: center; margin-left: 10px; font-size: 11px; letter-spacing: .03em; line-height: 1.2; color: var(--accent, var(--signal)); background: color-mix(in oklab, var(--accent) 10%, transparent); border-radius: 999px; padding: 4px 9px; white-space: nowrap; }

.pricing-proof { margin-top: 28px; display: flex; flex-direction: column; align-items: center; gap: 5px; text-align: center; }
.pricing-proof p { font-size: 15px; line-height: 1.5; color: var(--ink); margin: 0; max-width: 46ch; text-wrap: pretty; }
.pricing-proof span { font-size: 11px; letter-spacing: .04em; color: var(--muted); }
