
    /* ---- BUTTONS ---- */
    .btn {
        font-family: 'Unbounded', sans-serif;
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border-radius: var(--r-pill);
        text-decoration: none;
        border: none;
        cursor: pointer;
        letter-spacing: .04em;
        transition: background var(--t), transform var(--t), color var(--t), border-color var(--t)
    }

    .btn-orange {
        background: var(--orange);
        color: #fff;
        font-size: 11px;
        padding: 10px 22px
    }

    .btn-orange:hover {
        background: var(--orange-2);
        transform: translateY(-1px)
    }

    .btn-orange-lg {
        font-size: 14px;
        padding: 14px 32px;
        box-shadow: 0 8px 28px rgba(255, 107, 53, .28)
    }

    .btn-orange-lg:hover {
        background: var(--orange-2);
        transform: translateY(-2px)
    }

    .btn-orange-xl {
        font-size: 17px;
        padding: 18px 48px;
        box-shadow: 0 8px 32px rgba(255, 107, 53, .30)
    }

    .btn-orange-xl:hover {
        background: var(--orange-2);
        transform: translateY(-2px)
    }

    .btn-ghost {
        background: transparent;
        color: var(--sea);
        border: 1.5px solid var(--sea);
        font-size: 13px;
        padding: 13px 28px
    }

    .btn-ghost:hover {
        background: var(--sea);
        color: #fff
    }

    .btn-white {
        background: #fff;
        color: var(--orange);
        font-size: 12px;
        padding: 8px 20px;
        font-family: 'Unbounded', sans-serif;
        font-weight: 800;
        border-radius: var(--r-pill);
        text-decoration: none;
        transition: background var(--t);
        display: inline-block
    }

    .btn-white:hover {
        background: #fff8f0
    }

    /* ---- HERO ---- */
    .hero {
        background: linear-gradient(160deg, var(--sea-pale) 0%, var(--sand) 45%, #fff8f0 100%);
        padding: 72px 0 64px;
        position: relative;
        overflow: hidden
    }

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 600 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 300 Q150 250 300 280 Q450 310 600 260 L600 400 L0 400Z' fill='%231a6b8a' opacity='0.04'/%3E%3Cpath d='M0 350 Q200 300 400 330 Q500 345 600 310 L600 400 L0 400Z' fill='%231a6b8a' opacity='0.03'/%3E%3C/svg%3E");
        background-size: cover;
        background-position: bottom;
        pointer-events: none
    }

    .hero::after {
        content: '';
        position: absolute;
        right: -100px;
        top: -150px;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 154, 60, .12) 0%, transparent 65%);
        pointer-events: none
    }

    .hero__inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1
    }

    .hero__eyebrow {
        font-family: 'Unbounded', sans-serif;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: .18em;
        color: var(--sea);
        margin-bottom: 16px;
        display: block
    }

    .hero__title {
        font-family: 'Unbounded', sans-serif;
        font-size: clamp(2.4rem, 6vw, 4.5rem);
        font-weight: 900;
        line-height: 1.05;
        letter-spacing: -2px;
        color: var(--ink);
        margin-bottom: 20px
    }

    .hero__title span {
        color: var(--orange)
    }

    .hero__sub {
        color: var(--ink-2);
        font-size: 1.05rem;
        line-height: 1.75;
        max-width: 460px;
        margin-bottom: 32px
    }

    .hero__actions {
        display: flex;
        gap: 12px;
        flex-wrap: wrap;
        margin-bottom: 0
    }

    .hero__stats {
        display: flex;
        gap: 32px;
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid var(--sand-3);
        flex-wrap: wrap;
        align-items: flex-start
    }

    .hero__stat-num {
        font-family: 'Unbounded', sans-serif;
        font-size: 2rem;
        font-weight: 900;
        color: var(--ink);
        line-height: 1
    }

    .hero__stat-num--sea {
        color: var(--sea)
    }

    .hero__stat-label {
        font-size: 12px;
        color: var(--ink-3);
        margin-top: 4px
    }

    .hero__stat-div {
        width: 1px;
        background: var(--sand-3);
        align-self: stretch
    }

    /* ---- WAVE ---- */
    .wave {
        width: 100%;
        overflow: hidden;
        line-height: 0;
        margin-top: -1px
    }

    .wave svg {
        display: block;
        width: 100%
    }

    /* ---- ORANGE BANNER ---- */
    .o-banner {
        background: var(--orange);
        padding: 12px 0
    }

    .o-banner__inner {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 16px;
        flex-wrap: wrap
    }

    .o-banner__text {
        font-family: 'Unbounded', sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: #fff
    }

    /* ---- LAYOUT ---- */
    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px
    }

    .container--narrow {
        max-width: 720px
    }

    .container--mid {
        max-width: 900px
    }

    .section {
        padding: 64px 0
    }

    .section--alt {
        background: var(--sand-2);
        border-top: 1px solid var(--sand-3);
        border-bottom: 1px solid var(--sand-3)
    }

    .eyebrow {
        font-family: 'Unbounded', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .18em;
        color: var(--orange);
        margin-bottom: 8px;
        display: block
    }

    .eyebrow--sea {
        color: var(--sea)
    }

    .eyebrow--muted {
        color: var(--ink-3);
        letter-spacing: .12em
    }

    .section-title {
        font-family: 'Unbounded', sans-serif;
        font-size: clamp(1.5rem, 3vw, 2.2rem);
        font-weight: 900;
        letter-spacing: -.5px;
        color: var(--ink);
        margin-bottom: 8px
    }

    .section-title--white {
        color: #fff
    }

    .section-sub {
        font-size: 13px;
        color: var(--ink-3);
        margin-bottom: 36px
    }

    .cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 16px
    }

    .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 16px
    }

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

    /* ---- SOURCE CARDS ---- */
    .src-card {
        background: #fff;
        border: 1px solid var(--sand-3);
        border-radius: var(--r-lg);
        padding: 22px;
        transition: transform var(--t), border-color var(--t), box-shadow var(--t)
    }

    .src-card:hover {
        transform: translateY(-3px);
        border-color: var(--orange);
        box-shadow: 0 6px 24px rgba(255, 107, 53, .1)
    }

    .src-card__emoji {
        font-size: 2.2rem;
        margin-bottom: 14px
    }

    .src-card__title {
        font-family: 'Unbounded', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 6px
    }

    .src-card__desc {
        font-size: 12px;
        color: var(--ink-3);
        line-height: 1.6
    }

    .src-card__tags {
        font-size: 11px;
        font-weight: 600;
        color: var(--sea);
        margin-top: 10px
    }

    /* ---- STEP CARDS ---- */
    .step-card {
        background: #fff;
        border: 1px solid var(--sand-3);
        border-radius: var(--r-lg);
        padding: 28px 24px;
        text-align: center;
        transition: transform var(--t), border-color var(--t), box-shadow var(--t)
    }

    .step-card:hover {
        transform: translateY(-3px);
        border-color: var(--sea-light);
        box-shadow: 0 6px 24px rgba(26, 107, 138, .08)
    }

    .step-card__num {
        font-family: 'Unbounded', sans-serif;
        font-size: 3.5rem;
        font-weight: 900;
        color: var(--sand-3);
        line-height: 1;
        margin-bottom: 12px
    }

    .step-card__title {
        font-family: 'Unbounded', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 8px
    }

    .step-card__desc {
        font-size: 13px;
        color: var(--ink-3);
        line-height: 1.6
    }

    /* ---- DEST CARDS ---- */
    .dest-card {
        background: var(--orange);
        border-radius: var(--r-md);
        padding: 20px 16px;
        text-align: center;
        transition: background var(--t), transform var(--t)
    }

    .dest-card:hover {
        background: var(--sea-light);
        transform: translateY(-2px)
    }

    .dest-card__emoji {
        font-size: 2rem;
        margin-bottom: 10px
    }

    .dest-card__title {
        font-family: 'Unbounded', sans-serif;
        font-size: 13px;
        font-weight: 700;
        color: #fff
    }

    .dest-card__sub {
        font-size: 11px;
        color: rgba(255, 255, 255, .6);
        margin-top: 4px
    }

    /* ---- PARTNER ---- */
    .partner {
        background: #fff;
        border: 2px solid var(--sea);
        border-radius: var(--r-xl);
        padding: 28px 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px
    }

    .partner__eyebrow {
        font-family: 'Unbounded', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .12em;
        color: var(--orange);
        margin-bottom: 6px
    }

    .partner__title {
        font-family: 'Unbounded', sans-serif;
        font-size: 1.3rem;
        font-weight: 900;
        color: var(--ink);
        margin-bottom: 8px
    }

    .partner__desc {
        font-size: 13px;
        color: var(--ink-3);
        max-width: 400px;
        line-height: 1.6
    }

    .partner__link {
        border: 2px solid var(--orange);
        border-radius: var(--r-md);
        padding: 16px 24px;
        text-decoration: none;
        text-align: center;
        transition: all var(--t);
        flex-shrink: 0;
        display: block
    }

    .partner__link:hover {
        background: var(--orange)
    }

    .partner__link:hover .partner__url {
        color: #fff
    }

    .partner__url {
        font-family: 'Unbounded', sans-serif;
        font-size: 15px;
        font-weight: 900;
        color: var(--orange);
        display: block;
        transition: color var(--t)
    }

    .partner__sub {
        font-size: 11px;
        color: var(--ink-3);
        margin-top: 4px
    }

    /* ---- FAQ ---- */
    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 10px
    }

    .faq-item {
        background: #fff;
        border: 1px solid var(--sand-3);
        border-radius: var(--r-md);
        padding: 18px 20px;
        transition: border-color var(--t)
    }

    .faq-item[open] {
        border-color: var(--sea-light)
    }

    .faq-item summary {
        list-style: none;
        cursor: pointer;
        font-family: 'Unbounded', sans-serif;
        font-size: 13px;
        font-weight: 600;
        color: var(--ink);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px
    }

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

    .faq-plus {
        color: var(--sea);
        font-size: 20px;
        line-height: 1;
        transition: transform .2s;
        flex-shrink: 0
    }

    .faq-item[open] .faq-plus {
        transform: rotate(45deg)
    }

    .faq-body {
        font-size: 13px;
        color: var(--ink-2);
        line-height: 1.75;
        margin-top: 12px
    }

    .faq-body a {
        color: var(--orange);
        font-weight: 600;
        text-decoration: none
    }

    .faq-body a:hover {
        text-decoration: underline
    }

    /* ---- CTA SECTION ---- */
    .cta-sec {
        background: linear-gradient(135deg, var(--sea) 0%, #0d4a63 100%);
        padding: 80px 0;
        text-align: center
    }

    .cta-sec__eye {
        font-family: 'Unbounded', sans-serif;
        font-size: 10px;
        font-weight: 700;
        letter-spacing: .18em;
        color: rgba(255, 255, 255, .45);
        margin-bottom: 16px;
        display: block
    }

    .cta-sec__title {
        font-family: 'Unbounded', sans-serif;
        font-size: clamp(1.8rem, 4vw, 3rem);
        font-weight: 900;
        color: #fff;
        letter-spacing: -1px;
        margin-bottom: 16px
    }

    .cta-sec__sub {
        color: rgba(255, 255, 255, .6);
        font-size: 15px;
        margin-bottom: 32px;
        line-height: 1.6
    }

   

    /* ---- STICKY ---- */
    .sticky-cta {
        display: none;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 100
    }

    .sticky-cta__btn {
        font-family: 'Unbounded', sans-serif;
        font-weight: 800;
        display: flex;
        align-items: center;
        gap: 8px;
        background: rgba(255, 107, 53, .96);
        color: #fff;
        font-size: 13px;
        padding: 14px 28px;
        border-radius: var(--r-pill);
        text-decoration: none;
        box-shadow: 0 8px 32px rgba(255, 107, 53, .35);
        white-space: nowrap
    }


    /* ---- RESPONSIVE ---- */
    @media(max-width:768px) {

        .header__nav,
        .header__phone {
            display: none
        }

        .sticky-cta {
            display: flex
        }

        .footer__grid,
        .grid-3 {
            grid-template-columns: 1fr
        }

        .grid-4 {
            grid-template-columns: repeat(2, 1fr)
        }

        .partner {
            flex-direction: column
        }

        .o-banner__inner {
            flex-direction: column;
            text-align: center
        }

        .hero__stats {
            gap: 20px
        }
    }

    @media(max-width:480px) {
        .grid-4 {
            grid-template-columns: repeat(2, 1fr)
        }

        .hero__actions {
            flex-direction: column
        }

        .hero__actions .btn,
        .hero__actions .btn-ghost {
            width: 100%;
            justify-content: center
        }
    }

    /* SEO text links */
    .seo-links {
        margin-top: 32px;
        display: flex;
        gap: 24px;
        flex-wrap: wrap
    }

    .seo-link {
        font-family: 'Unbounded', sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: var(--sea);
        text-decoration: none;
        border-bottom: 2px solid var(--sea-pale);
        padding-bottom: 2px;
        transition: border-color var(--t)
    }

    .seo-link:hover {
        border-color: var(--sea)
    }