:root {
    --primary: #f05d69;
    --primary-dark: #d94a56;
    --text: #292562;
    --muted: #6c6979;
    --bg: #ffffff;
    --bg-soft: #f9f9fb;
    --lavender: #ffe9eb;
    --border: #e5e5ea;
    --danger: #cd3d64;
    --success: #198754;
}
* { box-sizing: border-box; }
html, body { max-width: 100%; overflow-x: hidden; overflow-x: clip; }
body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
}
a { color: var(--primary); }
.container { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 480px; }

/* ── Navigație ── */
.topnav { border-bottom: 1px solid var(--border); background: rgba(255,255,255,.92); position: sticky; top: 0; backdrop-filter: blur(8px); z-index: 10; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 18px; color: var(--text); text-decoration: none; }
.brand-mark { width: 26px; height: 26px; border-radius: 7px; background: linear-gradient(135deg, #f05d69, #292562); display: inline-block; }
.nav-links { display: flex; gap: 10px; align-items: center; }

/* ── Butoane ── */
.btn { display: inline-block; padding: 9px 18px; border-radius: 8px; font-size: 15px; font-weight: 600; text-decoration: none; border: 0; cursor: pointer; transition: all .15s; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-ghost { background: transparent; color: var(--text); }
.btn-ghost:hover { background: var(--bg-soft); }
.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-block { display: block; width: 100%; text-align: center; }
.btn .btn-short { display: none; }

/* ── Hero ── */
.hero { padding: 96px 0 80px; text-align: center; background: radial-gradient(80% 90% at 50% 0%, var(--lavender) 0%, #fff 70%); }
.hero h1 { font-size: 48px; line-height: 1.12; margin: 0 auto 20px; max-width: 720px; letter-spacing: -1px; }
.hero p.lead { font-size: 19px; color: var(--muted); max-width: 560px; margin: 0 auto 32px; line-height: 1.6; }
.hero .trial-note { margin-top: 14px; font-size: 14px; color: var(--muted); }

/* ── Features ── */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; padding: 56px 0 88px; }
.feature { background: var(--bg-soft); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.feature .ico { width: 40px; height: 40px; border-radius: 10px; background: var(--lavender); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 16px; }
.feature h3 { margin: 0 0 8px; font-size: 17px; }
.feature p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.6; }
@media (max-width: 760px) {
    .hero { padding: 56px 0 48px; }
    .hero h1 { font-size: 31px; letter-spacing: -.5px; }
    .hero p.lead { font-size: 16px; }
    .features { grid-template-columns: 1fr; gap: 14px; padding: 36px 0 56px; }
}
@media (max-width: 640px) {
    .container { padding: 0 16px; }
    .nav-inner { height: 56px; gap: 8px; }
    .brand { font-size: 16px; flex: none; }
    .brand .brand-text { display: none; }
    .nav-links { gap: 6px; flex: 1; justify-content: flex-end; min-width: 0; }
    .btn { padding: 8px 12px; font-size: 13.5px; white-space: nowrap; }
    .btn .btn-full { display: none; }
    .btn .btn-short { display: inline; }
    .btn-lg { padding: 12px 22px; font-size: 15px; }
    .auth-wrap { padding: 24px 12px; }
    .auth-card { padding: 24px 18px; }
    /* 16px ca iOS să nu facă zoom la focus */
    .field input[type=text], .field input[type=email], .field input[type=password] { font-size: 16px; }
    .subdomain-suffix { font-size: 13px; padding: 12px 8px; }
}

/* ── Card autentificare ── */
.auth-wrap { min-height: calc(100vh - 64px); display: flex; align-items: flex-start; justify-content: center; background: var(--bg-soft); padding: 56px 16px; }
.auth-card { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 36px; width: 100%; max-width: 440px; box-shadow: 0 4px 16px rgba(26,31,54,.05); }
.auth-card h1 { font-size: 22px; margin: 0 0 22px; }
.auth-card .aux { margin-top: 18px; font-size: 14px; color: var(--muted); text-align: center; }

/* ── Formulare ── */
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.field input[type=text], .field input[type=email], .field input[type=password] {
    width: 100%; padding: 10px 12px; border: 1px solid var(--border); border-radius: 8px;
    font-size: 15px; transition: border .15s, box-shadow .15s;
}
.field input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(240,93,105,.16); }
.field .hint { font-size: 13px; color: var(--muted); margin-top: 5px; }
.field .err { font-size: 13px; color: var(--danger); margin-top: 5px; }
.subdomain-row { display: flex; align-items: center; }
.subdomain-row input { border-top-right-radius: 0 !important; border-bottom-right-radius: 0 !important; }
.subdomain-suffix { padding: 10px 12px; border: 1px solid var(--border); border-left: 0; border-radius: 0 8px 8px 0; background: var(--bg-soft); color: var(--muted); font-size: 15px; white-space: nowrap; }
.sub-status { font-size: 13px; margin-top: 5px; }
.sub-status.ok { color: var(--success); }
.sub-status.bad { color: var(--danger); }

/* ── Alerte ── */
.alert { padding: 12px 14px; border-radius: 8px; font-size: 14px; margin-bottom: 18px; }
.alert-success { background: #e6f4ef; color: var(--success); }
.alert-danger { background: #fbe9ef; color: var(--danger); }
.alert-info { background: var(--lavender); color: var(--primary-dark); }

/* ── Footer ── */
.footer { border-top: 1px solid var(--border); padding: 26px 0; color: var(--muted); font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════════════════
   LANDING (homepage platformă) — design dedicat, sufix .hp-
   ═══════════════════════════════════════════════════════════════════════════ */
@font-face {
    font-family: 'Bricolage';
    src: url('/assets/fonts/BricolageGrotesque.woff2') format('woff2');
    font-weight: 200 800; font-display: swap;
}
@font-face {
    font-family: 'Inter';
    src: url('/assets/fonts/InterVariable.woff2') format('woff2');
    font-weight: 100 900; font-display: swap;
}
body.is-home {
    --display: 'Bricolage', 'Inter', -apple-system, sans-serif;
    /* Paletă ottoweb.ro: coral + indigo */
    --primary: #f05d69;
    --primary-dark: #d94a56;
    --primary-soft: #ffe7e9;
    --ink: #292562;
    --hp-line: #e5e5ea;
    --hp-soft: #f9f9fb;
    --hp-mut: #6c6979;
    --hp-grad: linear-gradient(135deg, #f05d69 0%, #292562 100%);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink);
}
.is-home a:focus-visible,
.is-home button:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 8px; }
.is-home .brand-mark { background: linear-gradient(135deg, #f05d69 0%, #292562 100%); }

/* nav cu ancore, doar pe homepage */
.nav-center { display: flex; gap: 26px; align-items: center; }
.nav-center a { color: #4a4660; text-decoration: none; font-size: 14.5px; font-weight: 500; transition: color .15s; }
.nav-center a:hover { color: var(--primary); }

/* reveal la scroll */
.is-home [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.is-home [data-reveal].hp-in { opacity: 1; transform: none; }

/* tipografie */
.hp-eyebrow { display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--primary); }
.hp-eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--primary); }
.hp-h1 { font-family: var(--display); font-size: clamp(40px, 6vw, 60px); line-height: 1.03; letter-spacing: -.025em; font-weight: 700; color: var(--ink); margin: 18px 0 0; }
.hp-h2 { font-family: var(--display); font-size: clamp(28px, 4vw, 40px); line-height: 1.08; letter-spacing: -.022em; font-weight: 700; color: var(--ink); margin: 12px 0 0; }
.hp-lead { font-size: 19px; line-height: 1.6; color: var(--hp-mut); margin: 20px 0 0; max-width: 32em; }
.hp-lead-sm { font-size: 17px; }

/* checkmark refolosit */
.hp-check { width: 19px; height: 19px; border-radius: 50%; background: var(--primary-soft); position: relative; flex: none; display: inline-block; }
.hp-check::after { content: ""; position: absolute; left: 6.5px; top: 3.5px; width: 4px; height: 8px; border: 2px solid var(--primary); border-top: 0; border-left: 0; transform: rotate(45deg); }

/* 1. HERO */
.hp-hero { position: relative; overflow: hidden; padding-bottom: 30px; background: linear-gradient(180deg, #fdf6f6 0%, #fff 68%); }
.hp-hero-glow { position: absolute; top: -260px; right: -180px; width: 760px; height: 760px; border-radius: 50%;
    background: radial-gradient(circle, rgba(240,93,105,.26), rgba(41,37,98,.10) 45%, rgba(240,93,105,0) 66%); filter: blur(8px); pointer-events: none; }
.hp-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: 56px; align-items: center; padding: 76px 0 64px; }
.hp-hero-copy, .hp-shot-wrap { min-width: 0; }
.hp-claim { margin-top: 30px; max-width: 520px; }
.hp-claim-label { display: block; font-size: 14px; color: var(--hp-mut); margin-bottom: 9px; }
.hp-claim-row { display: flex; gap: 10px; }
.hp-claim-field { flex: 1; display: flex; align-items: center; background: #fff; border: 1px solid var(--hp-line); border-radius: 12px; padding-right: 12px; transition: border-color .15s, box-shadow .15s; min-width: 0; }
.hp-claim-field:focus-within { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(240,93,105,.16); }
.hp-claim-field input { flex: 1; min-width: 0; border: 0; background: transparent; padding: 13px 14px; font-size: 16px; color: var(--ink); font-family: inherit; }
.hp-claim-field input:focus { outline: none; }
.hp-claim-suffix { color: var(--hp-mut); font-size: 15px; white-space: nowrap; flex: none; }
.hp-trial { display: flex; align-items: center; gap: 9px; margin-top: 16px; font-size: 14px; color: var(--hp-mut); }

/* mockup storefront — signature */
.hp-shot-wrap { position: relative; }
.hp-shot { background: #fff; border: 1px solid var(--hp-line); border-radius: 16px; overflow: hidden;
    box-shadow: 0 40px 70px -32px rgba(34,26,84,.45), 0 8px 24px -12px rgba(34,26,84,.18); }
.hp-shot-bar { display: flex; align-items: center; gap: 7px; height: 40px; padding: 0 14px; background: #f7f6fb; border-bottom: 1px solid var(--hp-line); }
.hp-dot { width: 9px; height: 9px; border-radius: 50%; background: #d8d4e6; flex: none; }
.hp-dot:nth-child(1) { background: #ff8d7b; } .hp-dot:nth-child(2) { background: #ffd479; } .hp-dot:nth-child(3) { background: #7ed3a6; }
.hp-addr { margin-left: 10px; flex: 1; min-width: 0; text-align: center; font-family: ui-monospace, 'SFMono-Regular', Menlo, monospace; font-size: 12px; color: var(--hp-mut);
    background: #fff; border: 1px solid var(--hp-line); border-radius: 7px; padding: 4px 12px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.hp-addr-sub { color: var(--primary); font-weight: 600; }
.hp-shot-body { padding: 16px; }
.hp-shot-nav { display: flex; align-items: center; gap: 15px; padding-bottom: 13px; border-bottom: 1px solid var(--hp-line); font-size: 12px; color: var(--hp-mut); overflow: hidden; white-space: nowrap; }
.hp-shot-brand, .hp-shot-nav > span { min-width: 0; }
.hp-shot-brand { font-family: var(--display); font-size: 15px; color: var(--ink); margin-right: 4px; }
.hp-shot-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; background: #e7f6ee; color: var(--success); font-weight: 600; font-size: 11px; padding: 3px 9px 3px 8px; border-radius: 20px; }
.hp-shot-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.hp-shot-hero { height: 70px; border-radius: 11px; margin: 14px 0; background: linear-gradient(120deg, #ffe1e4, #f5d4dc 45%, #d9d6ef); position: relative; overflow: hidden; }
.hp-shot-hero::after { content: ""; position: absolute; left: 16px; top: 22px; width: 46%; height: 9px; border-radius: 5px; background: rgba(240,93,105,.38); box-shadow: 0 16px 0 -1px rgba(41,37,98,.18); }
.hp-shot-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hp-tile svg { width: 100%; height: auto; display: block; border-radius: 8px; }
.hp-tile-row { display: flex; align-items: center; justify-content: space-between; margin-top: 7px; }
.hp-tile-bar { width: 42px; height: 6px; border-radius: 4px; background: #ece9f6; }
.hp-tile-row b { font-size: 12px; color: var(--ink); font-weight: 600; }
@media (prefers-reduced-motion: no-preference) {
    .hp-shot { animation: hpFloat 7s ease-in-out infinite; }
    @keyframes hpFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
}

/* 2. proof */
.hp-proof { position: relative; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 26px; padding: 6px 0 8px; }
.hp-proof-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: #9b96b0; }
.hp-proof-logos { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; margin: 0; padding: 0; }
.hp-proof-logos li { font-family: var(--display); font-weight: 600; font-size: 17px; color: #a09ab8; }

/* 3. stats */
.hp-stats { border-top: 1px solid var(--hp-line); margin-top: 38px; }
.hp-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 46px 0; }
.hp-stat-num { font-family: var(--display); font-size: clamp(26px, 3.4vw, 34px); font-weight: 700; letter-spacing: -.015em; color: var(--primary); }
.hp-stat-label { font-size: 14.5px; color: var(--hp-mut); margin-top: 5px; line-height: 1.45; }

/* sections */
.hp-section { padding: 96px 0; }
.hp-soft { background: var(--hp-soft); }
.hp-head { max-width: 660px; margin: 0 0 46px; }
.hp-head-sub { color: var(--hp-mut); font-size: 17px; margin-top: 14px; line-height: 1.6; }

/* 4. features */
.hp-features { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.hp-card { grid-column: span 2; background: #fff; border: 1px solid var(--hp-line); border-radius: 16px; padding: 26px 26px 28px; transition: transform .25s, box-shadow .25s, border-color .25s; }
.hp-card-wide { grid-column: span 4; }
.hp-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -26px rgba(41,37,98,.4); border-color: #f3d3d7; }
.hp-ico { width: 46px; height: 46px; border-radius: 13px; background: var(--primary-soft); color: var(--primary); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.hp-ico svg { width: 23px; height: 23px; }
.hp-card h3 { font-size: 18px; font-weight: 650; color: var(--ink); margin: 0 0 7px; }
.hp-card p { font-size: 15.5px; line-height: 1.6; color: var(--hp-mut); margin: 0; }

/* 5. steps */
.hp-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.hp-step { position: relative; }
.hp-step-n { width: 46px; height: 46px; border-radius: 50%; background: #fff; border: 1px solid var(--hp-line); color: var(--primary); font-family: var(--display); font-weight: 700; font-size: 19px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; box-shadow: 0 6px 16px -7px rgba(240,93,105,.6); }
.hp-step:not(:last-child)::after { content: ""; position: absolute; top: 23px; left: 46px; right: -26px; height: 2px; background: linear-gradient(90deg, #f0d2d6, transparent); }
.hp-step h3 { font-size: 18px; font-weight: 650; color: var(--ink); margin: 0 0 7px; }
.hp-step p { font-size: 15.5px; line-height: 1.6; color: var(--hp-mut); margin: 0; max-width: 30ch; }

/* 6. split / plăți */
.hp-split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.hp-checklist { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 13px; }
.hp-checklist li { display: flex; align-items: center; gap: 12px; font-size: 16px; color: var(--ink); }
.hp-checkout { background: #fff; border: 1px solid var(--hp-line); border-radius: 18px; padding: 22px; max-width: 380px; margin-left: auto;
    box-shadow: 0 34px 64px -30px rgba(34,26,84,.42); }
.hp-co-line { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px dashed var(--hp-line); }
.hp-co-thumb { width: 42px; height: 42px; border-radius: 10px; flex: none; background: linear-gradient(135deg, #f05d69, #f58a93); }
.hp-co-thumb-b { background: linear-gradient(135deg, #292562, #3a3580); }
.hp-co-name { height: 9px; border-radius: 5px; background: #ece9f6; flex: 1; max-width: 130px; }
.hp-co-name-s { max-width: 84px; }
.hp-co-line b { margin-left: auto; font-size: 14px; color: var(--ink); }
.hp-co-pays { display: grid; gap: 9px; margin: 16px 0; }
.hp-co-pay { display: flex; align-items: center; gap: 11px; border: 1px solid var(--hp-line); border-radius: 11px; padding: 11px 13px; font-size: 14px; color: var(--hp-mut); }
.hp-co-pay-on { border-color: var(--primary); background: var(--primary-soft); color: var(--ink); font-weight: 600; }
.hp-radio { width: 16px; height: 16px; border-radius: 50%; border: 2px solid #cfc9e6; flex: none; }
.hp-co-pay-on .hp-radio { border-color: var(--primary); background: var(--primary); box-shadow: inset 0 0 0 3px #fff; }
.hp-co-total { display: flex; justify-content: space-between; align-items: center; padding-top: 13px; border-top: 1px solid var(--hp-line); font-size: 15px; color: var(--hp-mut); }
.hp-co-total b { font-family: var(--display); font-size: 19px; color: var(--ink); }
.hp-co-btn { margin-top: 15px; background: var(--primary); color: #fff; text-align: center; padding: 12px; border-radius: 11px; font-weight: 600; font-size: 15px; }

/* 7. pricing */
.hp-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.hp-plan { position: relative; background: #fff; border: 1px solid var(--hp-line); border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; }
.hp-plan-pop { border-color: var(--primary); box-shadow: 0 30px 56px -26px rgba(240,93,105,.55); }
.hp-plan-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 12px; font-weight: 700; letter-spacing: .03em; padding: 5px 15px; border-radius: 20px; white-space: nowrap; }
.hp-plan-name { font-family: var(--display); font-size: 20px; font-weight: 700; color: var(--ink); margin: 0; }
.hp-plan-price { display: flex; align-items: baseline; gap: 7px; margin: 16px 0 4px; }
.hp-plan-amt { font-family: var(--display); font-size: 46px; line-height: 1; font-weight: 700; letter-spacing: -.025em; color: var(--ink); }
.hp-plan-cur { display: flex; flex-direction: column; color: var(--hp-mut); font-size: 15px; }
.hp-plan-cur i { font-style: normal; font-size: 13px; }
.hp-plan-feats { list-style: none; margin: 20px 0 26px; padding: 0; display: grid; gap: 12px; }
.hp-plan-feats li { display: flex; align-items: center; gap: 11px; font-size: 14.5px; color: #4a4660; }
.hp-plan .btn { margin-top: auto; }
.btn-outline { background: #fff; border: 1px solid var(--hp-line); color: var(--ink); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* 8. final CTA */
.hp-final { position: relative; overflow: hidden; text-align: center; padding: 88px 0;
    background: linear-gradient(135deg, #f05d69 0%, #d94a56 38%, #292562 100%); color: #fff; }
.hp-final::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 120% at 50% -10%, rgba(255,255,255,.28), transparent 60%); pointer-events: none; }
.hp-final-inner { position: relative; }
.hp-final .hp-h2 { color: #fff; }
.hp-final p { color: rgba(255,255,255,.86); font-size: 17px; margin: 14px 0 28px; }
.btn-on-dark { background: #fff; color: var(--primary); }
.btn-on-dark:hover { background: #fff0f1; }

/* footer (dark indigo) */
.hp-footer { background: #211e52; color: #b9b6d0; padding: 58px 0 28px; }
.hp-footer .brand { color: #fff; }
.hp-foot-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 36px; }
.hp-foot-brand p { margin: 16px 0 0; font-size: 14.5px; line-height: 1.65; color: #8d88a6; max-width: 36ch; }
.hp-foot-col h4 { font-size: 13px; text-transform: uppercase; letter-spacing: .08em; color: #fff; margin: 4px 0 14px; }
.hp-foot-col a { display: block; color: #b9b4cf; text-decoration: none; font-size: 14.5px; padding: 5px 0; transition: color .15s; }
.hp-foot-col a:hover { color: #fff; }
.hp-foot-base { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-size: 13.5px; color: #7a7593; }

/* responsive */
@media (max-width: 980px) {
    .hp-hero-grid { grid-template-columns: minmax(0, 1fr); gap: 40px; padding: 56px 0 48px; }
    .hp-shot-wrap { max-width: 480px; }
    .hp-features { grid-template-columns: repeat(2, 1fr); }
    .hp-card, .hp-card-wide { grid-column: span 1; }
    .hp-split { grid-template-columns: 1fr; gap: 36px; }
    .hp-checkout { margin: 0 auto; }
}
@media (max-width: 860px) {
    .nav-center { display: none; }
}
@media (max-width: 720px) {
    .hp-section { padding: 64px 0; }
    .hp-final { padding: 64px 0; }
    .hp-head { margin-bottom: 32px; }
    .hp-features { grid-template-columns: 1fr; }
    .hp-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; padding: 38px 0; }
    .hp-steps { grid-template-columns: 1fr; gap: 22px; }
    .hp-step:not(:last-child)::after { display: none; }
    .hp-pricing { grid-template-columns: 1fr; gap: 26px; }
    .hp-plan-pop { box-shadow: 0 22px 44px -24px rgba(240,93,105,.45); }
    .hp-h1 { font-size: clamp(30px, 8.4vw, 40px); letter-spacing: -.02em; }
    .hp-claim-row { flex-direction: column; }
    .hp-claim-row .btn { width: 100%; text-align: center; }
    .hp-claim-suffix { font-size: 13.5px; }
    .hp-foot-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .hp-foot-brand { grid-column: 1 / -1; }
    .hp-lead { font-size: 17px; }
}
