:root {
    --navy: #111b27;
    --navy-soft: #1b2735;

    --blue: #3478f6;
    --blue-dark: #2365e8;
    --blue-soft: #edf4ff;

    --white: #ffffff;

    --background: #ffffff;
    --background-soft: #f6f8fb;

    --text: #111b27;
    --text-soft: #606c79;
    --text-light: #8a95a1;

    --border: #e4e9ef;
    --border-dark: #d5dce5;

    --radius-small: 12px;
    --radius: 18px;
    --radius-large: 28px;

    --shadow:
        0 24px 70px rgba(19, 35, 55, 0.08),
        0 3px 15px rgba(19, 35, 55, 0.04);

    --max-width: 1180px;
}


/* RESET */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    margin: 0;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--background);

    line-height: 1.5;

    -webkit-font-smoothing: antialiased;
}


a {
    color: inherit;
    text-decoration: none;
}


button,
input,
textarea,
select {
    font: inherit;
}


img {
    max-width: 100%;
}


.container {
    width: min(var(--max-width), calc(100% - 48px));
    margin: 0 auto;
}


/* HEADER */

.site-header {
    position: sticky;
    top: 0;

    z-index: 1000;

    background: rgba(255, 255, 255, 0.9);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(228, 233, 239, 0.8);
}


.header-inner {
    height: 76px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 34px;
}


.logo {
    flex-shrink: 0;

    font-size: 23px;
    font-weight: 800;

    letter-spacing: -1px;
}


.logo span {
    color: var(--blue);
}


.desktop-nav {
    display: flex;
    align-items: center;

    gap: 31px;

    margin-left: auto;
}


.desktop-nav a {
    position: relative;

    color: #52606f;

    font-size: 14px;
    font-weight: 550;

    transition: color 0.2s ease;
}


.desktop-nav a:hover {
    color: var(--text);
}


.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 11px;

    min-height: 52px;

    padding: 0 25px;

    border-radius: var(--radius-small);

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.18s ease,
        box-shadow 0.18s ease,
        background 0.18s ease,
        border-color 0.18s ease;
}


.button:hover {
    transform: translateY(-2px);
}


.button-header {
    min-height: 44px;

    margin-left: 5px;

    padding: 0 19px;

    color: white;
    background: var(--navy);
}


.button-header:hover {
    background: var(--navy-soft);
}


.menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: 0;
    background: transparent;

    cursor: pointer;

    padding: 9px;
}


.menu-button span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px auto;

    background: var(--navy);

    border-radius: 2px;
}


.mobile-nav {
    display: none;
}


/* HERO */

.hero {
    position: relative;

    overflow: hidden;

    padding: 105px 0 115px;
}


.hero-inner {
    position: relative;
    z-index: 2;

    display: grid;

    grid-template-columns:
        minmax(0, 1.08fr)
        minmax(380px, 0.92fr);

    align-items: center;

    gap: 95px;
}


.hero-content {
    max-width: 680px;
}


.eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 26px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1.8px;
}


.eyebrow span {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--blue);

    box-shadow:
        0 0 0 5px var(--blue-soft);
}


.hero h1 {
    margin: 0;

    max-width: 750px;

    font-size: clamp(56px, 5.4vw, 78px);

    line-height: 0.99;

    letter-spacing: -4px;

    font-weight: 780;
}


.hero h1 span {
    display: block;

    margin-top: 7px;

    color: var(--blue);
}


.hero-description {
    max-width: 650px;

    margin: 30px 0 0;

    color: var(--text-soft);

    font-size: 18px;
    line-height: 1.7;
}


.hero-actions {
    display: flex;

    gap: 12px;

    margin-top: 34px;
}


.button-primary {
    color: white;
    background: var(--navy);
}


.button-primary:hover {
    background: var(--navy-soft);

    box-shadow:
        0 14px 35px rgba(17, 27, 39, 0.16);
}


.button-secondary {
    color: var(--navy);

    background: white;

    border: 1px solid var(--border-dark);
}


.button-secondary:hover {
    border-color: #bdc7d3;

    box-shadow:
        0 12px 30px rgba(17, 27, 39, 0.06);
}


.arrow {
    font-size: 19px;
}


.hero-points {
    display: flex;

    flex-wrap: wrap;

    gap: 10px 20px;

    margin-top: 25px;

    color: var(--text-light);

    font-size: 12px;
    font-weight: 550;
}


.hero-points span {
    position: relative;

    padding-left: 14px;
}


.hero-points span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 7px;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: var(--blue);
}


/* HERO PANEL */

.hero-panel {
    position: relative;

    padding: 34px;

    background:
        linear-gradient(
            150deg,
            #ffffff 0%,
            #f8faff 100%
        );

    border: 1px solid var(--border);

    border-radius: var(--radius-large);

    box-shadow: var(--shadow);
}


.hero-panel::before {
    content: "";

    position: absolute;

    z-index: -1;

    width: 85%;
    height: 85%;

    left: 8%;
    top: 12%;

    background: rgba(52, 120, 246, 0.15);

    filter: blur(70px);

    border-radius: 50%;
}


.panel-badge {
    display: inline-flex;

    padding: 7px 10px;

    border-radius: 8px;

    background: var(--blue-soft);

    color: var(--blue);

    font-size: 9px;
    font-weight: 850;

    letter-spacing: 1.3px;
}


.hero-panel h2 {
    margin: 20px 0 12px;

    font-size: 31px;

    line-height: 1.15;

    letter-spacing: -1.4px;
}


.hero-panel > p {
    margin: 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.7;
}


.principle-list {
    margin-top: 29px;

    border-top: 1px solid var(--border);
}


.principle {
    display: grid;

    grid-template-columns: 38px 1fr;

    gap: 15px;

    padding: 20px 0;

    border-bottom: 1px solid var(--border);
}


.principle:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


.principle-number {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border-radius: 10px;

    color: var(--blue);

    background: var(--blue-soft);

    font-size: 10px;
    font-weight: 800;
}


.principle strong {
    font-size: 13px;
}


.principle p {
    margin: 4px 0 0;

    color: var(--text-light);

    font-size: 11px;
    line-height: 1.5;
}


/* HERO DECORATION */

.hero-decoration {
    position: absolute;

    pointer-events: none;

    border-radius: 50%;
}


.hero-decoration-one {
    width: 650px;
    height: 650px;

    top: -360px;
    right: -260px;

    background:
        radial-gradient(
            circle,
            rgba(52, 120, 246, 0.1),
            transparent 70%
        );
}


.hero-decoration-two {
    width: 500px;
    height: 500px;

    left: -300px;
    bottom: -350px;

    background:
        radial-gradient(
            circle,
            rgba(71, 185, 152, 0.06),
            transparent 70%
        );
}


/* TRUST STRIP */

.trust-strip {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);

    background: #fafbfd;
}


.trust-strip-inner {
    min-height: 68px;

    display: flex;

    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;

    color: #707c88;

    font-size: 12px;
    font-weight: 600;
}


.dot {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: #b3bdc8;
}


/* GENERAL SECTIONS */

.section {
    padding: 120px 0;
}


.section-soft {
    background: var(--background-soft);
}


.section-label {
    margin: 0 0 18px;

    color: var(--blue);

    font-size: 11px;
    font-weight: 850;

    letter-spacing: 1.7px;
}


.section-heading {
    display: grid;

    grid-template-columns: 1.3fr 0.7fr;

    align-items: end;

    gap: 70px;

    margin-bottom: 60px;
}


.section-heading h2,
.center-heading h2,
.why-heading h2,
.faq-heading h2 {
    margin: 0;

    font-size: clamp(38px, 4vw, 55px);

    line-height: 1.08;

    letter-spacing: -2.4px;
}


.section-intro {
    margin: 0 0 5px;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.7;
}


/* SERVICES */

.services-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 22px;
}


.service-card {
    min-height: 500px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 38px;

    border: 1px solid var(--border);

    border-radius: var(--radius-large);

    background: white;
}


.service-card-dark {
    color: white;

    background: var(--navy);

    border-color: var(--navy);
}


.service-number {
    display: block;

    margin-bottom: 45px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 850;
}


.service-card-dark .service-number {
    color: #7da8ff;
}


.service-card h3 {
    margin: 0;

    font-size: 31px;

    letter-spacing: -1.2px;
}


.service-card p {
    max-width: 480px;

    margin: 15px 0 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.7;
}


.service-card-dark p {
    color: #b9c4cf;
}


.service-card ul {
    margin: 28px 0 0;

    padding: 0;

    list-style: none;
}


.service-card li {
    position: relative;

    padding: 10px 0 10px 24px;

    color: #566473;

    border-bottom: 1px solid var(--border);

    font-size: 13px;
}


.service-card-dark li {
    color: #d2dae2;

    border-color: rgba(255, 255, 255, 0.1);
}


.service-card li::before {
    content: "✓";

    position: absolute;

    left: 0;

    color: var(--blue);

    font-weight: 800;
}


.service-card > a {
    display: flex;

    align-items: center;
    justify-content: space-between;

    margin-top: 35px;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    font-size: 14px;
    font-weight: 750;
}


.service-card-dark > a {
    border-color: rgba(255, 255, 255, 0.12);
}


/* HOW IT WORKS */

.center-heading {
    max-width: 720px;

    margin: 0 auto 65px;

    text-align: center;
}


.steps-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;
}


.step {
    padding: 30px;

    background: white;

    border: 1px solid var(--border);

    border-radius: var(--radius);
}


.step-top span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 850;
}


.step h3 {
    margin: 55px 0 12px;

    font-size: 20px;

    letter-spacing: -0.6px;
}


.step p {
    margin: 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.7;
}


/* WHY */

.why-grid {
    display: grid;

    grid-template-columns: 0.82fr 1.18fr;

    gap: 100px;
}


.why-heading {
    position: sticky;
    top: 120px;

    align-self: start;
}


.why-heading > p:not(.section-label) {
    margin: 25px 0 0;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.7;
}


.why-items {
    border-top: 1px solid var(--border);
}


.why-item {
    display: grid;

    grid-template-columns: 60px 1fr;

    gap: 20px;

    padding: 31px 0;

    border-bottom: 1px solid var(--border);
}


.why-item > span {
    color: var(--blue);

    font-size: 11px;
    font-weight: 850;
}


.why-item h3 {
    margin: 0;

    font-size: 19px;

    letter-spacing: -0.5px;
}


.why-item p {
    margin: 8px 0 0;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.7;
}


/* STATEMENT */

.statement-section {
    padding: 120px 0;

    color: white;

    background: var(--navy);
}


.statement-inner {
    max-width: 970px;
}


.statement-inner p {
    margin: 0 0 20px;

    color: #aeb9c5;

    font-size: 16px;
}


.statement-inner p strong {
    color: white;
}


.statement-inner h2 {
    margin: 0;

    font-size: clamp(44px, 5.5vw, 72px);

    line-height: 1.05;

    letter-spacing: -3.5px;
}


/* FAQ */

.faq-layout {
    display: grid;

    grid-template-columns: 0.7fr 1.3fr;

    gap: 100px;
}


.faq-heading p:not(.section-label) {
    margin: 20px 0;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.7;
}


.faq-heading > a {
    color: var(--blue);

    font-size: 13px;
    font-weight: 750;
}


.faq-list {
    border-top: 1px solid var(--border);
}


.faq-list details {
    border-bottom: 1px solid var(--border);
}


.faq-list summary {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 0;

    cursor: pointer;

    list-style: none;

    font-size: 15px;
    font-weight: 650;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary span {
    color: var(--blue);

    font-size: 21px;

    transition: transform 0.2s ease;
}


.faq-list details[open] summary span {
    transform: rotate(45deg);
}


.faq-list details p {
    max-width: 650px;

    margin: -5px 0 25px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.75;
}


/* FINAL CTA */

.final-cta {
    padding: 110px 0;

    color: white;

    background:
        linear-gradient(
            135deg,
            #2768ea,
            #3c80ff
        );
}


.final-cta-inner {
    max-width: 760px;

    text-align: center;
}


.section-label-light {
    color: rgba(255, 255, 255, 0.7);
}


.final-cta h2 {
    margin: 0;

    font-size: clamp(44px, 5vw, 66px);

    letter-spacing: -3px;

    line-height: 1.05;
}


.final-cta p:not(.section-label) {
    max-width: 600px;

    margin: 20px auto 30px;

    color: rgba(255, 255, 255, 0.8);

    font-size: 15px;
    line-height: 1.7;
}


.button-light {
    color: var(--navy);

    background: white;
}


/* FOOTER */

.footer {
    padding: 70px 0 24px;

    color: white;

    background: #0b131d;
}


.footer-main {
    display: grid;

    grid-template-columns: 2fr 1fr 1fr 1fr;

    gap: 55px;

    padding-bottom: 60px;
}


.footer-brand p {
    max-width: 310px;

    margin: 18px 0 0;

    color: #8794a2;

    font-size: 12px;
    line-height: 1.7;
}


.footer-column {
    display: flex;

    flex-direction: column;

    gap: 10px;
}


.footer-column strong {
    margin-bottom: 6px;

    color: white;

    font-size: 11px;

    letter-spacing: 0.8px;
}


.footer-column a {
    color: #8794a2;

    font-size: 12px;
}


.footer-column a:hover {
    color: white;
}


.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 30px;

    padding-top: 23px;

    color: #697685;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    font-size: 10px;
}


/* TABLET */

@media (max-width: 980px) {

    .desktop-nav {
        display: none;
    }


    .button-header {
        margin-left: auto;
    }


    .hero-inner {
        grid-template-columns: 1fr;

        gap: 65px;
    }


    .hero-content {
        max-width: 760px;
    }


    .hero-panel {
        max-width: 620px;
    }


    .section-heading {
        grid-template-columns: 1fr;

        gap: 25px;
    }


    .why-grid,
    .faq-layout {
        grid-template-columns: 1fr;

        gap: 55px;
    }


    .why-heading {
        position: static;
    }


    .footer-main {
        grid-template-columns: 2fr 1fr 1fr;
    }


    .footer-column:last-child {
        grid-column: 2;
    }

}


/* MOBILE */

@media (max-width: 720px) {

    .container {
        width: min(100% - 30px, var(--max-width));
    }


    .header-inner {
        height: 68px;
    }


    .logo {
        font-size: 20px;
    }


    .button-header {
        display: none;
    }


    .menu-button {
        display: block;

        margin-left: auto;
    }


    .mobile-nav {
        display: none;

        padding: 10px 15px 18px;

        background: white;

        border-bottom: 1px solid var(--border);
    }


    .mobile-nav.open {
        display: flex;

        flex-direction: column;
    }


    .mobile-nav a {
        padding: 13px 5px;

        color: #51606f;

        border-bottom: 1px solid var(--border);

        font-size: 14px;
    }


    .mobile-nav-cta {
        margin-top: 8px;

        color: white !important;

        background: var(--navy);

        border: 0 !important;

        border-radius: 10px;

        text-align: center;
    }


    .hero {
        padding: 65px 0 75px;
    }


    .hero-inner {
        gap: 55px;
    }


    .hero h1 {
        font-size: clamp(46px, 13vw, 61px);

        letter-spacing: -2.7px;
    }


    .hero-description {
        font-size: 16px;
    }


    .hero-actions {
        flex-direction: column;
    }


    .hero-actions .button {
        width: 100%;
    }


    .hero-points {
        flex-direction: column;

        gap: 8px;
    }


    .hero-panel {
        padding: 25px;
    }


    .hero-panel h2 {
        font-size: 27px;
    }


    .trust-strip-inner {
        padding: 18px 0;

        gap: 10px 13px;
    }


    .section {
        padding: 85px 0;
    }


    .section-heading {
        margin-bottom: 40px;
    }


    .section-heading h2,
    .center-heading h2,
    .why-heading h2,
    .faq-heading h2 {
        font-size: 38px;

        letter-spacing: -1.7px;
    }


    .services-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }


    .service-card {
        min-height: auto;

        padding: 28px;
    }


    .service-number {
        margin-bottom: 35px;
    }


    .center-heading {
        margin-bottom: 45px;

        text-align: left;
    }


    .step h3 {
        margin-top: 40px;
    }


    .why-item {
        grid-template-columns: 40px 1fr;
    }


    .statement-section {
        padding: 85px 0;
    }


    .statement-inner h2 {
        font-size: 43px;

        letter-spacing: -2px;
    }


    .final-cta {
        padding: 85px 0;
    }


    .final-cta h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }


    .footer {
        padding-top: 55px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;

        gap: 40px 30px;
    }


    .footer-brand {
        grid-column: 1 / -1;
    }


    .footer-column:last-child {
        grid-column: auto;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 8px;
    }

}






/* =========================================================
   TYPOGRAPHY REFINEMENT
   ========================================================= */

body {
    font-size: 16px;
}

.desktop-nav a {
    font-size: 15px;
}

.button {
    font-size: 15px;
}

.hero-description {
    font-size: 19px;
    line-height: 1.72;
}

.hero-points {
    font-size: 13px;
}

.hero-panel > p {
    font-size: 15px;
}

.principle strong {
    font-size: 14px;
}

.principle p {
    font-size: 13px;
}

.trust-strip-inner {
    font-size: 13px;
}

.section-intro {
    font-size: 17px;
    line-height: 1.75;
}

.service-card p {
    font-size: 16px;
}

.service-card li {
    font-size: 15px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.service-card > a {
    font-size: 15px;
}

.step h3 {
    font-size: 22px;
}

.step p {
    font-size: 15px;
}

.why-heading > p:not(.section-label) {
    font-size: 17px;
}

.why-item h3 {
    font-size: 21px;
}

.why-item p {
    font-size: 15px;
}

.faq-heading p:not(.section-label) {
    font-size: 16px;
}

.faq-list summary {
    font-size: 17px;
}

.faq-list details p {
    font-size: 15px;
}

.final-cta p:not(.section-label) {
    font-size: 17px;
}

.footer-brand p,
.footer-column a {
    font-size: 13px;
}

.footer-bottom {
    font-size: 12px;
}

@media (max-width: 720px) {

    .hero-description {
        font-size: 17px;
    }

    .service-card p,
    .service-card li,
    .step p,
    .why-item p,
    .faq-list details p {
        font-size: 15px;
    }
}









/* =========================================================
   INTERNAL PAGES
   ========================================================= */

.page-hero {
    padding: 105px 0 80px;
    background: var(--background-soft);
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    max-width: 850px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(52px, 5.5vw, 76px);
    line-height: 1.02;
    letter-spacing: -3.5px;
}

.page-hero-inner > p:not(.section-label) {
    max-width: 680px;
    margin: 24px 0 0;
    color: var(--text-soft);
    font-size: 19px;
    line-height: 1.7;
}


/* FORM PAGE */

.form-section {
    padding: 90px 0 120px;
}

.form-layout {
    display: grid;
    grid-template-columns: 0.55fr 1.45fr;
    gap: 80px;
    align-items: start;
}

.form-sidebar {
    position: sticky;
    top: 115px;
}

.form-sidebar h2 {
    margin: 0;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.form-sidebar > p:not(.section-label) {
    margin: 18px 0 0;
    color: var(--text-soft);
    font-size: 15px;
    line-height: 1.7;
}

.form-side-points {
    margin-top: 35px;
    border-top: 1px solid var(--border);
}

.form-side-points > div {
    display: grid;
    grid-template-columns: 35px 1fr;
    gap: 13px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.form-side-points span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.form-side-points p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}


.form-card {
    padding: 42px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.form-block {
    padding: 0 0 42px;
    margin-bottom: 42px;
    border-bottom: 1px solid var(--border);
}

.form-block-heading {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.form-block-heading > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    color: var(--blue);
    background: var(--blue-soft);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 850;
}

.form-block-heading h2 {
    margin: 0;
    font-size: 23px;
    letter-spacing: -0.7px;
}

.form-block-heading p {
    margin: 4px 0 0;
    color: var(--text-light);
    font-size: 13px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.form-field {
    margin-top: 24px;
}

.form-grid .form-field {
    margin-top: 0;
}

.form-field label {
    display: block;
    margin-bottom: 9px;
    color: #344150;
    font-size: 13px;
    font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid var(--border-dark);
    border-radius: 11px;
    background: white;
    color: var(--text);
    outline: none;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.form-field input,
.form-field select {
    height: 52px;
    padding: 0 15px;
}

.form-field textarea {
    padding: 15px;
    resize: vertical;
    line-height: 1.6;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px var(--blue-soft);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a0a9b3;
}


.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.choice-card {
    margin: 0 !important;
    cursor: pointer;
}

.choice-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.choice-card > span {
    display: block;
    min-height: 105px;
    padding: 18px;
    border: 1px solid var(--border-dark);
    border-radius: 12px;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.choice-card strong,
.choice-card small {
    display: block;
}

.choice-card strong {
    color: var(--text);
    font-size: 15px;
}

.choice-card small {
    margin-top: 7px;
    color: var(--text-soft);
    font-size: 12px;
    line-height: 1.55;
}

.choice-card input:checked + span {
    border-color: var(--blue);
    background: var(--blue-soft);
    box-shadow: 0 0 0 1px var(--blue);
}


.interest-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.interest-grid label {
    margin: 0;
    cursor: pointer;
}

.interest-grid input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.interest-grid span {
    display: block;
    padding: 13px 14px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-soft);
    background: white;
    font-size: 13px;
    font-weight: 600;
}

.interest-grid input:checked + span {
    color: var(--blue-dark);
    border-color: var(--blue);
    background: var(--blue-soft);
}


.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}

.form-submit strong {
    font-size: 15px;
}

.form-submit p {
    max-width: 480px;
    margin: 5px 0 0;
    color: var(--text-light);
    font-size: 12px;
    line-height: 1.6;
}

.form-submit button {
    border: 0;
    cursor: pointer;
    white-space: nowrap;
}

.form-message {
    display: none;
    margin-top: 25px;
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 14px;
}


@media (max-width: 900px) {

    .form-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .form-sidebar {
        position: static;
        max-width: 650px;
    }
}


@media (max-width: 720px) {

    .page-hero {
        padding: 70px 0 55px;
    }

    .page-hero h1 {
        font-size: 46px;
        letter-spacing: -2.2px;
    }

    .page-hero-inner > p:not(.section-label) {
        font-size: 17px;
    }

    .form-section {
        padding: 55px 0 85px;
    }

    .form-card {
        padding: 24px 20px;
    }

    .form-grid,
    .choice-grid,
    .interest-grid {
        grid-template-columns: 1fr;
    }

    .form-submit {
        align-items: stretch;
        flex-direction: column;
    }

    .form-submit button {
        width: 100%;
    }
}





/* =========================================================
   TRIP PLANNER
   ========================================================= */

.planner-page {
    background: #f7f9fc;
}

.planner-main {
    min-height: 100vh;
}

.planner-container {
    width: min(900px, calc(100% - 40px));
    margin: 0 auto;
}


/* INTRO */

.planner-intro {
    padding: 76px 0 44px;
    text-align: center;
}

.planner-intro h1 {
    margin: 0;

    font-size: clamp(44px, 5vw, 62px);
    line-height: 1.03;

    letter-spacing: -3px;
}

.planner-intro > .planner-container > p:last-child {
    max-width: 610px;

    margin: 18px auto 0;

    color: var(--text-soft);

    font-size: 17px;
    line-height: 1.7;
}


/* SHELL */

.planner-shell {
    padding: 15px 0 110px;
}


/* PROGRESS */

.planner-progress {
    max-width: 720px;

    margin: 0 auto 34px;

    display: flex;
    align-items: flex-start;
}

.progress-item {
    width: 70px;

    flex-shrink: 0;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 7px;

    color: #98a3af;
}

.progress-item span {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #d9e0e8;

    border-radius: 50%;

    background: white;

    font-size: 12px;
    font-weight: 800;

    transition: all .25s ease;
}

.progress-item small {
    font-size: 11px;
    font-weight: 650;
}

.progress-item.active {
    color: var(--blue);
}

.progress-item.active span {
    color: white;
    border-color: var(--blue);
    background: var(--blue);

    box-shadow:
        0 0 0 5px rgba(52, 120, 246, .10);
}

.progress-item.complete span {
    color: white;
    border-color: var(--blue);
    background: var(--blue);
}

.progress-line {
    flex: 1;

    height: 1px;

    margin-top: 17px;

    background: #dce2e9;
}


/* CARD */

.planner-card {
    position: relative;

    min-height: 560px;

    padding: 52px;

    background: white;

    border: 1px solid #e2e7ee;

    border-radius: 26px;

    box-shadow:
        0 30px 80px rgba(24, 40, 65, .08),
        0 5px 20px rgba(24, 40, 65, .04);
}


/* STEPS */

.planner-step {
    display: none;

    animation: plannerFade .28s ease;
}

.planner-step.active {
    display: block;
}

@keyframes plannerFade {

    from {
        opacity: 0;
        transform: translateX(12px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}

.step-heading {
    max-width: 650px;

    margin-bottom: 38px;
}

.step-kicker {
    display: block;

    margin-bottom: 12px;

    color: var(--blue);

    font-size: 10px;
    font-weight: 850;

    letter-spacing: 1.5px;
}

.step-heading h2 {
    margin: 0;

    font-size: 32px;
    line-height: 1.15;

    letter-spacing: -1.4px;
}

.step-heading p {
    margin: 10px 0 0;

    color: var(--text-soft);

    font-size: 15px;
    line-height: 1.65;
}


/* PLAN / REVIEW CHOICES */

.planner-choice-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 15px;

    margin-bottom: 34px;
}

.planner-choice {
    cursor: pointer;
}

.planner-choice input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.choice-content {
    position: relative;

    min-height: 205px;

    display: flex;
    flex-direction: column;

    padding: 24px;

    background: white;

    border: 1px solid #dfe5ec;

    border-radius: 17px;

    transition:
        border .2s ease,
        transform .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}

.planner-choice:hover .choice-content {
    transform: translateY(-3px);

    border-color: #bdc9d7;

    box-shadow:
        0 12px 35px rgba(30, 48, 75, .07);
}

.choice-icon {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 26px;

    border-radius: 11px;

    color: var(--blue);
    background: var(--blue-soft);

    font-size: 18px;
}

.choice-content strong {
    font-size: 17px;
}

.choice-content small {
    margin-top: 8px;

    color: var(--text-soft);

    font-size: 13px;
    line-height: 1.55;
}

.choice-select {
    margin-top: auto;
    padding-top: 20px;

    color: var(--blue);

    font-size: 12px;
    font-weight: 750;
}

.planner-choice input:checked + .choice-content {
    border: 2px solid var(--blue);

    padding: 23px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f6f9ff
        );

    box-shadow:
        0 0 0 4px rgba(52, 120, 246, .08);
}


/* FIELDS */

.planner-fields {
    display: grid;

    gap: 20px;
}

.planner-fields.two-columns {
    grid-template-columns: repeat(2, 1fr);
}

.planner-field {
    margin-top: 25px;
}

.planner-fields .planner-field {
    margin-top: 0;
}

.planner-field > label {
    display: block;

    margin-bottom: 9px;

    color: #354352;

    font-size: 13px;
    font-weight: 700;
}

.planner-field > small {
    display: block;

    margin-top: 7px;

    color: #939eaa;

    font-size: 11px;
}

.planner-field input,
.planner-field textarea,
.planner-field select {
    width: 100%;

    border: 1px solid #d5dce5;

    border-radius: 11px;

    outline: none;

    background: white;
    color: var(--text);

    transition:
        border .18s ease,
        box-shadow .18s ease;
}

.planner-field input,
.planner-field select {
    height: 54px;

    padding: 0 15px;
}

.planner-field textarea {
    min-height: 125px;

    padding: 15px;

    resize: vertical;

    line-height: 1.6;
}

.planner-field input:focus,
.planner-field textarea:focus,
.planner-field select:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 4px rgba(52, 120, 246, .10);
}

.planner-field input::placeholder,
.planner-field textarea::placeholder {
    color: #a3adb7;
}


/* BUDGET */

.budget-input {
    display: grid;

    grid-template-columns: 75px 1fr;
}

.budget-input select {
    border-radius: 11px 0 0 11px;

    background: #f6f8fb;

    border-right: 0;
}

.budget-input input {
    border-radius: 0 11px 11px 0;
}


/* INTERESTS */

.interest-pills {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}

.interest-pills label {
    cursor: pointer;
}

.interest-pills input {
    position: absolute;

    opacity: 0;
}

.interest-pills span {
    display: block;

    padding: 12px 15px;

    border: 1px solid #dce3ea;

    border-radius: 100px;

    background: white;

    color: #52606f;

    font-size: 13px;
    font-weight: 600;

    transition: all .18s ease;
}

.interest-pills span:hover {
    border-color: #b8c4d1;
}

.interest-pills input:checked + span {
    color: #2365e8;

    border-color: #91b5ff;

    background: #edf4ff;

    box-shadow:
        0 0 0 2px rgba(52, 120, 246, .07);
}


/* PACE */

.pace-field {
    margin-top: 38px;
}

.pace-options {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 10px;
}

.pace-options label {
    cursor: pointer;
}

.pace-options input {
    position: absolute;

    opacity: 0;
}

.pace-options span {
    min-height: 95px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 15px;

    border: 1px solid #dce3ea;

    border-radius: 12px;

    transition: all .18s ease;
}

.pace-options strong {
    font-size: 14px;
}

.pace-options small {
    margin-top: 5px;

    color: var(--text-light);

    font-size: 11px;
}

.pace-options input:checked + span {
    border-color: var(--blue);
    background: var(--blue-soft);

    box-shadow:
        0 0 0 2px rgba(52, 120, 246, .08);
}


/* DIVIDER */

.contact-divider {
    position: relative;

    margin: 42px 0 30px;

    text-align: center;
}

.contact-divider::before {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    top: 50%;

    height: 1px;

    background: var(--border);
}

.contact-divider span {
    position: relative;

    padding: 0 15px;

    color: var(--text-light);
    background: white;

    font-size: 11px;
    font-weight: 700;
}


/* PRIVACY */

.privacy-check {
    display: flex;

    gap: 11px;

    margin-top: 26px;

    cursor: pointer;
}

.privacy-check input {
    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-top: 2px;

    accent-color: var(--blue);
}

.privacy-check span {
    color: var(--text-soft);

    font-size: 12px;
    line-height: 1.55;
}

.privacy-check a {
    color: var(--blue);
}


/* NAVIGATION */

.planner-navigation {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 42px;

    padding-top: 28px;

    border-top: 1px solid var(--border);
}

.planner-navigation-end {
    justify-content: flex-end;
}

.planner-next,
.planner-submit {
    min-height: 50px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    padding: 0 23px;

    border: 0;

    border-radius: 11px;

    cursor: pointer;

    color: white;
    background: var(--navy);

    font-size: 14px;
    font-weight: 750;

    transition:
        transform .18s ease,
        background .18s ease,
        box-shadow .18s ease;
}

.planner-next:hover,
.planner-submit:hover {
    transform: translateY(-2px);

    background: #1e2b39;

    box-shadow:
        0 12px 30px rgba(17, 27, 39, .16);
}

.planner-back {
    padding: 10px 0;

    border: 0;

    cursor: pointer;

    color: #6b7784;
    background: none;

    font-size: 13px;
    font-weight: 650;
}

.planner-back:hover {
    color: var(--text);
}

.planner-disclaimer {
    margin: 20px 0 0;

    color: #99a3ad;

    text-align: right;

    font-size: 10px;
}


/* SUCCESS */

.planner-success {
    display: none;

    max-width: 650px;

    margin: 0 auto;

    padding: 65px 20px;

    text-align: center;

    animation: plannerFade .3s ease;
}

.planner-success.visible {
    display: block;
}

.success-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 25px;

    border-radius: 50%;

    color: #25785d;
    background: #e7f7f0;

    font-size: 24px;
    font-weight: 800;
}

.planner-success h2 {
    margin: 0;

    font-size: 34px;
    line-height: 1.15;

    letter-spacing: -1.5px;
}

.planner-success p {
    max-width: 520px;

    margin: 16px auto 28px;

    color: var(--text-soft);

    font-size: 14px;
    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 720px) {

    .planner-container {
        width: min(100% - 26px, 900px);
    }

    .planner-intro {
        padding: 55px 0 30px;

        text-align: left;
    }

    .planner-intro h1 {
        font-size: 43px;

        letter-spacing: -2px;
    }

    .planner-intro > .planner-container > p:last-child {
        margin-left: 0;

        font-size: 16px;
    }

    .planner-progress {
        margin-bottom: 25px;
    }

    .progress-item {
        width: 52px;
    }

    .progress-item small {
        font-size: 9px;
    }

    .planner-card {
        min-height: 0;

        padding: 27px 20px;

        border-radius: 20px;
    }

    .step-heading h2 {
        font-size: 27px;
    }

    .planner-choice-grid,
    .planner-fields.two-columns,
    .pace-options {
        grid-template-columns: 1fr;
    }

    .choice-content {
        min-height: 175px;
    }

    .interest-pills {
        gap: 8px;
    }

    .interest-pills span {
        padding: 10px 12px;

        font-size: 12px;
    }

    .planner-navigation {
        margin-top: 32px;
    }

    .planner-next,
    .planner-submit {
        min-height: 48px;
    }

}
