:root {
    --blue: #1c4497;
    --blue-dark: #2c267f;
    --teal: #08b7b9;
    --green: #00aa55;
    --ink: #15203a;
    --muted: #6f788b;
    --soft: #f5f7fb;
    --white: #fff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    zoom: 1.1;
}

body {
    margin: 0;
    color: var(--ink);
    background: #fff;
    font-family: "Montserrat", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(calc(100% - 40px), 1020px);
    margin-inline: auto;
}

.narrow-container {
    max-width: 900px;
}


/* =========================
    Header
========================= */

.site-header {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand img {
    width: clamp(155px, 19vw, 205px);
}


/* =========================
    Buttons
========================= */

.button {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--green);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: transform 0.2s ease; 
}

.button:hover,
.button:focus-visible {
    filter: brightness(0.92);
    transform: scale(1.03); 
}

.button:focus-visible,
.faq-item button:focus-visible {
    outline: 3px solid #74dfbd;
    outline-offset: 3px;
}

.button-small {
    min-height: 38px;
    padding-inline: 24px;
    font-size: 10px;
}


/* =========================
    Hero
========================= */

.hero {
    min-height: 575px;
    overflow: hidden;
    padding-top: 96px;
}

.hero-inner {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    min-height: 479px;
}

.hero-content {
    z-index: 2;
    padding: 20px 0 36px;
}

.hero h1 {
    margin: 0 0 20px;
    color: var(--blue-dark);
    font-size: clamp(57px, 6.2vw, 76px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.84;
    text-transform: uppercase;
}

.hero h1 span {
    color: var(--teal);
}

.hero-visual {
    align-self: end;
    min-width: 0;
}

.hero-visual img {
    width: min(100%, 590px);
    margin: 0 auto -110px;
}


/* =========================
    Check List
========================= */

.check-list {
    display: grid;
    gap: 11px;
    margin: 0 0 25px;
    padding: 0;
    font-size: 11px;
    font-weight: 600;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 9px;
}

.check-list li::before {
    content: "✓";
    display: inline-grid;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    place-items: center;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}


/* =========================
    Quick Offer
========================= */

.quick-offer {
    padding: 18px 0 20px;
    background: var(--blue);
    color: #fff;
    text-align: center;
}

.quick-offer h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.quick-offer-card {
    display: flex;
    width: min(100%, 500px);
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: auto;
    padding: 8px 18px;
    border-radius: 15px;
    background: #f8fafc;
    color: var(--blue);
}

.quick-offer-card p {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.2;
    text-align: left;
}

.quick-offer-card strong {
    font-size: 30px;
    white-space: nowrap;
}

.quick-offer-card .button {
    padding-inline: 16px;
    font-size: 8px;
}

.quick-offer small {
    display: block;
    margin-top: 8px;
    margin-bottom: 6px;
    font-size: 9px;
    opacity: 0.72;
}


/* =========================
    How It Works
========================= */

.how-it-works {
    padding: 60px 0;
}

.section-title {
    margin: 0 0 34px;
    color: var(--blue);
    font-size: clamp(22px, 3vw, 27px);
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.steps li {
    position: relative;
    min-height: 136px;
    padding: 20px;
    border-radius: 12px;
    background: var(--soft);
    transition: transform 0.3s ease;
}

.steps li:hover {
    transform: translateY(-3px);
}

.steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 61px;
    left: 100%;
    width: 24px;
    border-top: 1px solid #6576c8;
}

.step-number {
    display: block;
    margin-bottom: 12px;
    color: #8391d5;
    font-size: 24px;
    opacity: 0.72;
    font-weight: 700;
}

.steps h3,
.benefit-grid h3 {
    margin: 0 0 8px;
    color: #191d33;
    font-size: 12px;
}

.steps p,
.benefit-grid p {
    margin: 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.65;
}


/* =========================
    Benefits
========================= */

.benefits {
    padding: 38px 0 48px;
    background: var(--blue);
}

.benefits h2 {
    margin: 0 0 32px;
    color: #fff;
    font-size: clamp(24px, 3vw, 30px);
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.benefit-grid article {
    min-height: 142px;
    padding: 22px;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.3s ease;
}

.benefit-grid article:hover {
    transform: translateY(-3px);
}

.benefit-grid article > span {
    display: block;
    margin-bottom: 16px;
    font-size: 20px;
}

.benefit-grid h3 {
    color: var(--blue-dark);
}

.benefit-grid img {
    width: 28px;
    height: 28px;
}


/* =========================
    Consult
========================= */

.consult {
    padding: 36px 0;
    background: #f3f6fc;
}

.consult .section-title {
    margin-bottom: 18px;
}

.consult-card {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr;
    width: min(100%, 600px);
    align-items: center;
    gap: 25px;
    margin: auto;
    padding: 21px 36px;
    border-radius: 15px;
    background: var(--blue);
    color: #fff;
}

.consult-card h3 {
    margin: 0 0 12px;
    font-size: 22px;
    text-transform: uppercase;
}

.check-list-light {
    margin: 0;
    font-size: 9px;
}

.check-list-light li::before {
    width: 14px;
    height: 14px;
    flex-basis: 14px;
    font-size: 8px;
}

.consult-action {
    display: grid;
    gap: 8px;
    text-align: center;
}

.consult-action strong {
    font-size: 32px;
    white-space: nowrap;
}

.consult-action .button {
    min-height: 42px;
    font-size: 14px;
}


/* =========================
    FAQ
========================= */

.faq {
    padding: 42px 0 68px;
    background: #f4f7fd;
}

.faq-container {
    max-width: 560px;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--teal);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.faq h2 {
    margin: 0 0 28px;
    color: var(--blue-dark);
    font-size: 26px;
    text-align: center;
}

.accordion {
    padding: 8px 22px;
    border: 1px solid #e0e4eb;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 2px 2px rgb(18 33 72 / 6%);
}

.faq-item + .faq-item {
    border-top: 1px solid #edf0f4;
}

.faq-item button {
    display: flex;
    width: 100%;
    min-height: 49px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font: 600 10px "Montserrat", Arial, sans-serif;
    text-align: left;
    cursor: pointer;
}

.plus {
    display: grid;
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    place-items: center;
    border-radius: 50%;
    background: #f2f4f7;
    color: #818a9e;
    transition: transform 0.2s ease;
}

.faq-item button[aria-expanded="true"] .plus {
    transform: rotate(45deg);
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height 0.35s ease, opacity 0.25s ease;
}

.faq-item button[aria-expanded="true"] + .faq-answer {
    opacity: 1;
}

.faq-answer p {
    margin: -3px 30px 15px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.6;
}


/* =========================
    Footer
========================= */

.site-footer {
    padding: 36px 0 38px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: start;
}

.footer-top img {
    width: 190px;
}

.footer-top p {
    margin: 5px 0 56px;
    font-size: 9px;
    line-height: 1.55;
    text-align: center;
}

.site-footer nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 34px;
}

.site-footer nav p {
    font-size: 11px;
    text-decoration: none;
}

/* =========================
    Responsive - Mobile
========================= */

@media (max-width: 760px) {
    .container {
        width: min(calc(100% - 32px), 620px);
    }

    .site-header {
        position: relative;
        padding: 14px 0;
    }

    .brand img {
        width: 155px;
    }

    .header-inner .button {
        min-height: 34px;
        padding-inline: 14px;
        font-size: 8px;
    }

    /* Hero */

    .hero {
        min-height: 0;
        padding-top: 8px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-content {
        padding: 28px 4px 12px;
    }

    .hero h1 {
        font-size: clamp(58px, 19vw, 84px);
    }

    .hero .check-list {
        font-size: 10px;
    }

    .hero-visual img {
        width: min(115%, 540px);
        max-width: none;
        margin: -48px -8% -60px auto;
    }

    .hero-button {
        display: none;
    }

    /* Quick Offer */

    .quick-offer {
        padding: 20px 0;
    }

    .quick-offer h2 {
        font-size: 19px;
    }

    .quick-offer-card {
        flex-wrap: wrap;
        gap: 8px 18px;
        padding: 14px 16px;
    }

    .quick-offer-card p {
        flex: 1 1 42%;
        font-size: 13px;
        text-align: center;
    }

    .quick-offer-card strong {
        flex: 1 1 42%;
        font-size: 27px;
    }

    .quick-offer-card .button {
        width: 100%;
    }

    .quick-offer small {
        margin-bottom: 2px;
    }

    /* How It Works */

    .how-it-works {
        padding: 48px 0;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .steps li {
        min-height: 0;
        padding: 18px 20px;
    }

    .steps li:not(:last-child)::after {
        top: 100%;
        left: 36px;
        width: 1px;
        height: 12px;
        border-top: 0;
        border-left: 1px solid #6576c8;
    }

    .step-number {
        margin-bottom: 6px;
    }

    .benefit-grid img {
        width: 16px;
        height: 16px;
    }

    .steps h3,
    .benefit-grid h3 {
        font-size: 12px;
    }

    .steps p,
    .benefit-grid p {
        font-size: 10px;
    }

    /* Benefits */

    .benefits {
        padding: 44px 0;
    }

    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .benefit-grid article {
        min-height: 0;
        padding: 20px;
    }

    .benefit-grid article > span {
        margin-bottom: 10px;
    }

    /* Consult */

    .consult-card {
        grid-template-columns: 1fr;
        padding: 26px 24px;
    }

    .consult-card h3 {
        font-size: 20px;
    }

    .check-list-light {
        font-size: 10px;
    }

    .consult-action strong {
        font-size: 36px;
    }

    /* FAQ */

    .faq {
        padding: 16px 0 52px 0;
    }

    .accordion {
        padding-inline: 17px;
    }

    .faq-item button {
        min-height: 56px;
        font-size: 10px;
    }

    /* Footer */

    .site-footer {
        padding-top: 34px;
    }

    .footer-top {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-top img {
        width: 180px;
    }

    .footer-top p {
        margin: 28px 0 34px;
    }

    .site-footer nav {
        flex-direction: column;
        align-items: center;
        gap: 0px;
    }
}


/* =========================
    Reduced Motion
========================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
