:root {
    --navy: #0f2e4d;
    --navy-2: #15436f;
    --navy-dk: #0c2641;
    --gold: #e0a41f;
    --gold-dk: #c8901a;
    --cream: #fbf1d8;
    --teal: #1e8e84;
    --teal-soft: #e3f2f0;
    --ink: #1f2a36;
    --muted: #5b6b7a;
    --line: #e5ebf1;
    --bg: #f5f8fb;
    --white: #fff;
    --green: #1e8e5a;
    --red: #c0392b;
    --shadow: 0 18px 50px rgba(15, 46, 77, 0.16);
    --radius: 14px;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, Helvetica, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
a {
    color: inherit;
    text-decoration: none;
}
.wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 22px;
}
h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.18;
    letter-spacing: -0.4px;
}
.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold-dk);
    background: var(--cream);
    padding: 6px 13px;
    border-radius: 30px;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    border: none;
    background: var(--gold);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 16px;
    padding: 15px 26px;
    border-radius: 11px;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
    box-shadow: 0 10px 24px rgba(224, 164, 31, 0.32);
    font-family: inherit;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(224, 164, 31, 0.42);
    background: #ecb02c;
}
.btn-ghost {
    background: transparent;
    color: #fff;
    box-shadow: none;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: none;
}

/* ---------- Sticky header ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(12, 38, 65, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 11px;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}
.logo-img-footer {
    height: 40px;
}
.nav .btn {
    padding: 10px 18px;
    font-size: 14px;
}
.nav-phone {
    color: #cfe0ef;
    font-size: 14px;
    font-weight: 600;
    margin-right: 6px;
    text-decoration: none;
}
.nav-phone:hover {
    color: #fff;
}

/* ---------- Hero ---------- */
.hero {
    background: radial-gradient(900px 480px at 88% -10%, rgba(224, 164, 31, 0.2), transparent 60%),
        radial-gradient(700px 500px at 0% 110%, rgba(30, 142, 132, 0.16), transparent 60%),
        linear-gradient(155deg, var(--navy-dk) 0%, var(--navy) 55%, var(--navy-2) 100%);
    color: #fff;
    padding: 54px 0 64px;
    position: relative;
    overflow: hidden;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 46px;
    align-items: center;
}
.hero h1 {
    color: #fff;
    font-size: 43px;
    font-weight: 800;
}
.hero h1 .hl {
    color: var(--gold);
}
.hero .sub {
    font-size: 18px;
    color: #cfe0ef;
    margin: 18px 0 22px;
    max-width: 560px;
}
.hero-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 24px;
}
.hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-size: 15.5px;
    color: #eaf2fa;
}
.hb-tick {
    flex: 0 0 auto;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    background: var(--gold);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 13px;
    margin-top: 2px;
}
.trust-line {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    font-size: 12.5px;
    color: #9fb6cc;
}
.trust-line span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.trust-line .dot {
    color: var(--gold);
}

/* hero right: form + book */
.hero-right {
    display: flex;
    flex-direction: column;
}
.book {
    position: relative;
    width: 200px;
    height: 266px;
    border-radius: 6px 10px 10px 6px;
    background: radial-gradient(420px 220px at 75% 0%, rgba(224, 164, 31, 0.3), transparent 60%), linear-gradient(150deg, #0c2641, #15436f);
    box-shadow: 0 26px 50px rgba(0, 0, 0, 0.45), inset 14px 0 22px rgba(0, 0, 0, 0.28);
    padding: 20px 18px 16px;
    flex: 0 0 auto;
    margin-top: 28px;
    border-left: 6px solid rgba(0, 0, 0, 0.35);
}
.book .b-logo {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: block;
    object-fit: contain;
}
.book .b-badge {
    margin-top: 20px;
    font-size: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #afc6dd;
}
.book .b-title {
    color: #fff;
    font-size: 21px;
    font-weight: 800;
    line-height: 1.12;
    margin-top: 7px;
}
.book .b-title .g {
    color: var(--gold);
}
.book .b-rule {
    width: 38px;
    height: 3px;
    background: var(--gold);
    margin: 13px 0;
}
.book .b-foot {
    position: absolute;
    bottom: 15px;
    left: 18px;
    font-size: 9px;
    color: #cfe0ef;
    letter-spacing: 0.08em;
}
.book-tag {
    position: absolute;
    top: -14px;
    right: -16px;
    background: var(--gold);
    color: #1a1a1a;
    font-weight: 800;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 30px;
    transform: rotate(6deg);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}

.form-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 22px 20px;
    box-shadow: var(--shadow);
    color: var(--ink);
}
.form-card h3 {
    font-size: 21px;
    text-align: center;
}
.form-card .fc-sub {
    font-size: 13px;
    color: var(--muted);
    text-align: center;
    margin: 6px 0 16px;
}
.field {
    margin-bottom: 13px;
}
.field label {
    display: block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}
.field input,
.field textarea {
    width: 100%;
    padding: 13px 14px;
    font-size: 15px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    transition: border 0.15s, box-shadow 0.15s;
    color: var(--ink);
}
.field textarea {
    min-height: 84px;
    resize: vertical;
    line-height: 1.5;
}
.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(224, 164, 31, 0.18);
}
.field input.err {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.12);
}
.err-msg {
    display: none;
    color: var(--red);
    font-size: 11.5px;
    margin-top: 4px;
}
.field.show-err .err-msg {
    display: block;
}
.field-radio {
    border: none;
    padding: 0;
}
.field-radio .field-q {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}
.field-radio label.rl-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1.5px solid var(--line);
    border-radius: 10px;
    cursor: pointer;
    font-size: 14.5px;
    color: var(--ink);
    transition: border 0.15s, background 0.15s;
    margin-bottom: 6px;
}
.field-radio input[type="radio"] {
    width: 16px;
    height: 16px;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
    accent-color: var(--gold);
    flex: 0 0 auto;
}
.field-radio input[type="radio"]:checked + span {
    font-weight: 700;
    color: var(--navy);
}
.field-radio label.rl-wrap:has(input:checked) {
    border-color: var(--gold);
    background: rgba(224, 164, 31, 0.07);
}
.field-radio.show-err .err-msg {
    display: block;
}
.conditional-qs[hidden] {
    display: none;
}
.q1-no-msg {
    background: rgba(224, 164, 31, 0.1);
    border: 1px solid rgba(224, 164, 31, 0.35);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.5;
}
.lead-form .btn {
    width: 100%;
    justify-content: center;
    font-size: 16.5px;
    margin-top: 4px;
}
.form-privacy {
    display: flex;
    gap: 7px;
    align-items: flex-start;
    font-size: 11px;
    color: var(--muted);
    margin-top: 12px;
    justify-content: center;
    text-align: center;
}
.form-success {
    display: none;
    text-align: center;
    padding: 14px 6px;
}
.form-success .tick {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 12px;
}
.form-success h3 {
    font-size: 20px;
}
.form-success p {
    font-size: 13.5px;
    color: var(--muted);
    margin: 8px 0 14px;
}

/* ---------- Multi-step wizard ---------- */
.wiz-head {
    text-align: center;
    margin-bottom: 14px;
}
.wiz-head h3 {
    font-size: 21px;
}
.wiz-head .fc-sub {
    margin: 6px 0 0;
}
.wiz-progress {
    margin: 0 0 18px;
}
.wiz-progress .track {
    height: 6px;
    border-radius: 6px;
    background: var(--line);
    overflow: hidden;
}
.wiz-progress .fill {
    height: 100%;
    background: var(--gold);
    border-radius: 6px;
    transition: width 0.3s ease;
}
.wiz-progress .count {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 7px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--muted);
    letter-spacing: 0.02em;
}
.wiz-progress .count .pct {
    color: var(--gold-dk);
}
.wiz-step-title {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 12px;
}
/* scrollable step body — keeps the card short even when a step is long */
.wiz-body {
    max-height: 400px;
    overflow-x: hidden;
    overflow-y: auto;
    /* room so content doesn't sit under the scrollbar */
    padding-right: 6px;
    margin-right: -6px;
    /* Firefox thin themed scrollbar */
    scrollbar-width: thin;
    scrollbar-color: var(--gold) transparent;
}
/* WebKit (Chrome/Safari/Edge) thin themed scrollbar */
.wiz-body::-webkit-scrollbar {
    width: 6px;
}
.wiz-body::-webkit-scrollbar-track {
    background: transparent;
}
.wiz-body::-webkit-scrollbar-thumb {
    background: var(--line);
    border-radius: 6px;
}
.wiz-body:hover::-webkit-scrollbar-thumb {
    background: var(--gold);
}
.wiz-nav {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}
.wiz-nav .btn {
    margin-top: 0;
}
.btn-back {
    background: #fff;
    color: var(--navy);
    border: 1.5px solid var(--line);
    box-shadow: none;
    flex: 0 0 auto;
    padding: 15px 20px;
}
.btn-back:hover {
    background: var(--bg);
    transform: none;
    box-shadow: none;
}
.wiz-nav .btn-next {
    flex: 1 1 auto;
}
/* fade/slide between steps */
.wiz-fade-enter-active,
.wiz-fade-leave-active {
    transition: opacity 0.22s ease, transform 0.22s ease;
}
.wiz-fade-enter-from {
    opacity: 0;
    transform: translateX(14px);
}
.wiz-fade-leave-to {
    opacity: 0;
    transform: translateX(-14px);
}

/* ---------- Trust strip ---------- */
.strip {
    background: var(--navy-dk);
    color: #fff;
    padding: 20px 0;
}
.strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}
.strip .n {
    font-size: 27px;
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
}
.strip .l {
    font-size: 12.5px;
    color: #bfd2e6;
    margin-top: 5px;
}

/* ---------- Section base ---------- */
section.block {
    padding: 66px 0;
}
.sec-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}
.sec-head h2 {
    font-size: 33px;
    font-weight: 800;
}
.sec-head p {
    font-size: 16px;
    color: var(--muted);
    margin-top: 12px;
}
.bg-soft {
    background: var(--bg);
}

/* pain cards */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.pain-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 6px 18px rgba(15, 46, 77, 0.05);
}
.pain-ic {
    width: 46px;
    height: 46px;
    border-radius: 11px;
    background: var(--red);
    opacity: 0.92;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}
.pain-card h3 {
    font-size: 17px;
}
.pain-card p {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 7px;
}

/* what's inside */
.inside-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 26px;
}
.inside-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px 18px;
}
.ii-tick {
    flex: 0 0 auto;
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: var(--cream);
    color: var(--gold-dk);
    display: flex;
    align-items: center;
    justify-content: center;
}
.inside-item h3 {
    font-size: 15px;
}
.inside-item p {
    font-size: 12.8px;
    color: var(--muted);
    margin-top: 3px;
}

/* who it's for */
.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.who-card {
    text-align: center;
    padding: 22px 16px;
    border-radius: var(--radius);
    background: #fff;
    border: 1px solid var(--line);
}
.who-ic {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}
.who-card h3 {
    font-size: 15px;
}
.who-card p {
    font-size: 12.5px;
    color: var(--muted);
    margin-top: 5px;
}

/* authority */
.authority {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.auth-points {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.auth-point {
    display: flex;
    gap: 13px;
    align-items: flex-start;
}
.ap-ic {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: var(--navy);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-point h3 {
    font-size: 15.5px;
}
.auth-point p {
    font-size: 13px;
    color: var(--muted);
    margin-top: 3px;
}
.auth-card {
    background: linear-gradient(155deg, var(--navy), var(--navy-2));
    color: #fff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: var(--shadow);
}
.auth-card .marn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 6px 13px;
    border-radius: 8px;
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.auth-card h3 {
    color: #fff;
    font-size: 21px;
}
.auth-card p {
    color: #cfe0ef;
    font-size: 14px;
    margin-top: 10px;
}

/* testimonials */
.tst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tst {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: 0 6px 18px rgba(15, 46, 77, 0.05);
}
.tst .stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 2px;
}
.tst p {
    font-size: 13.5px;
    color: var(--ink);
    margin: 10px 0 14px;
    font-style: italic;
}
.tst .who {
    display: flex;
    align-items: center;
    gap: 11px;
}
.tst .av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}
.tst .who b {
    font-size: 13px;
    color: var(--navy);
    display: block;
}
.tst .who span {
    font-size: 11.5px;
    color: var(--muted);
}

/* final CTA */
.final {
    background: radial-gradient(700px 400px at 85% -20%, rgba(224, 164, 31, 0.22), transparent 60%),
        linear-gradient(155deg, var(--navy-dk), var(--navy-2));
    color: #fff;
    padding: 62px 0;
}
.final-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 42px;
    align-items: center;
}
.final h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 800;
}
.final p {
    color: #cfe0ef;
    font-size: 16px;
    margin-top: 14px;
}
.final .mini-bul {
    list-style: none;
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.final .mini-bul li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    color: #eaf2fa;
}
.final .mini-bul .t {
    color: var(--gold);
    font-weight: 900;
}

/* FAQ */
.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
}
.faq summary {
    cursor: pointer;
    padding: 17px 20px;
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq summary::-webkit-details-marker {
    display: none;
}
.faq summary::after {
    content: "+";
    color: var(--gold-dk);
    font-size: 22px;
    font-weight: 700;
}
.faq[open] summary::after {
    content: "\2013";
}
.faq .a {
    padding: 0 20px 18px;
    font-size: 13.8px;
    color: var(--muted);
}

/* footer */
footer {
    background: var(--navy-dk);
    color: #fff;
    padding: 42px 0 26px;
}
.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
footer .nm {
    font-weight: 800;
    font-size: 18px;
    color: #fff;
}
footer p,
footer a {
    font-size: 13px;
    color: #afc6dd;
    margin-top: 8px;
    display: block;
}
footer h4 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold);
    margin-bottom: 6px;
}
.foot-contact a,
.foot-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.foot-ic {
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    margin-top: 2px;
    stroke: currentColor;
    fill: none;
}
.foot-dis {
    font-size: 11px;
    color: #7e93a8;
    margin-top: 20px;
    line-height: 1.6;
}
.ph {
    background: rgba(224, 164, 31, 0.18);
    border-radius: 4px;
    padding: 0 5px;
    color: #fff;
}

.wiz-nav .btn-next {
    text-align: center;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.book-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-bottom: 25px;
}
/* responsive */
@media (max-width: 920px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }
    .hero h1 {
        font-size: 35px;
    }
    .hero .sub {
        font-size: 16.5px;
    }
    .authority,
    .final-grid {
        grid-template-columns: 1fr;
    }
    .strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px 12px;
    }
    .pain-grid,
    .who-grid,
    .tst-grid {
        grid-template-columns: 1fr 1fr;
    }
    .inside-grid {
        grid-template-columns: 1fr;
    }
    .sec-head h2 {
        font-size: 27px;
    }
    .nav-phone {
        display: none;
    }
}
@media (max-width: 760px) {
    .foot-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
@media (max-width: 560px) {
    .pain-grid,
    .who-grid,
    .tst-grid {
        grid-template-columns: 1fr;
    }
    .strip-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 30px;
    }
    section.block {
        padding: 48px 0;
    }
    .nav .btn {
        display: none;
    }
    .book-grid {
        grid-template-columns: 1fr;
    }
}
