:root {
    --accent: #a80718;
    --accent-dark: #82000f;
    --ink: #111318;
    --muted: #616872;
    --soft: #f5f6f7;
    --white: #fff;
    --line: #e3e5e8;
    --dark: #12161d;
    --shadow: 0 24px 70px rgba(17, 19, 24, .13)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--ink);
    background: var(--white);
    line-height: 1.65
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover
}

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

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

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, .22)
}

.compact-header {
    position: relative;
    background: #111318
}

.nav-wrap {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: -.02em
}
.brand img{
    width: 230px;
    height: auto;
    filter: brightness(0) invert(1);
}
.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 14px;
    font-weight: 650
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    font-weight: 800;
    transition: .25s ease
}

.nav-cta {
    padding: 12px 18px;
    background: #fff;
    color: var(--ink);
    border-radius: 10px
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, .5);
    color: inherit;
    padding: 9px 12px
}

.eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 12px;
    font-weight: 850;
    color: var(--accent)
}

.eyebrow.light {
    color: #fff
}

.btn {
    min-height: 54px;
    padding: 0 26px;
    border-radius: 10px
}

.btn-primary {
    background: var(--accent);
    color: #fff;
    font-size: 14px;
}

.btn-primary:hover {
    background: var(--accent-dark)
}

.btn-light {
    background: #fff;
    color: var(--ink);
    font-size: 12px;
}

.btn:hover,
.nav-cta:hover {
    transform: translateY(-2px)
}

.section {
    padding: 60px 0
}

.section-head {
    max-width: 780px;
    margin: 0 auto 48px;
    text-align: center
}

.section-head.left {
    text-align: left;
    margin-left: 0
}

.section-head h2,
.support-copy h2,
.faq-intro h2,
.final-cta h2 {
    font-size: clamp(20px, 3vw, 34px);
    line-height: 1.08;
    letter-spacing: -.045em;
    margin: 14px 0 20px
}

.section-head p,
.support-copy>p,
.faq-intro>p {
    color: var(--muted);
    font-size: 18px
}

.hero-new {
    position: relative;
    padding: 140px 0 92px;
    background: linear-gradient(115deg, rgb(11 13 17 / 45%), rgba(20, 24, 30, .90)), url('https://images.unsplash.com/photo-1604212399401-5fd807a65e18?q=80&w=2070&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
    color: #fff;
    overflow: hidden
}

.hero-new:after {
    content: "";
    position: absolute;
    right: -220px;
    top: -240px;
    width: 680px;
    height: 680px;
    border-radius: 50%;
    background: rgba(168, 7, 24, .2)
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2.05fr .95fr;
    gap: 62px;
    align-items: center
}

.hero-copy h1 {
    font-size: clamp(48px, 3vw, 52px);
    line-height: 1.02;
    letter-spacing: -.055em;
    margin: 18px 0 24px
}

.hero-copy>p {
    font-size: 19px;
    max-width: 720px;
    color: rgba(255, 255, 255, .82)
}

.hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
    list-style: none;
    padding: 0;
    margin: 28px 0
}

.hero-points li {
    position: relative;
    padding-left: 27px;
    font-weight: 650
}

.hero-points li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ff6878;
    font-weight: 900
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-side {
    position: relative
}

.hero-image-card {
    height: 430px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .3);
    position: relative
}

.route-badge {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    padding: 18px 20px;
    border-radius: 14px;
    backdrop-filter: blur(12px)
}

.route-badge strong {
    font-size: 24px
}

.route-badge strong:last-child {
    text-align: right
}

.route-badge span {
    color: var(--muted);
    font-weight: 800
}

.lead-card {
    margin: -45px 28px 0;
    position: relative;
    z-index: 3;
    background: #fff;
    color: var(--ink);
    padding: 28px;
    border-radius: 18px;
    box-shadow: var(--shadow)
}

.mini-label {
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .14em
}

.lead-card h2 {
    font-size: 28px;
    line-height: 1.2;
    margin: 8px 0 18px
}

.journey-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.journey-form input,
.journey-form select {
    width: 100%;
    min-height: 48px;
    border: 1px solid var(--line);
    border-radius: 9px;
    padding: 11px 13px;
    font: inherit
}

.form-submit {
    grid-column: 1/-1
}

.trust-band {
    background: var(--accent);
    color: #fff
}

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

.trust-grid>div {
    padding: 28px;
    border-right: 1px solid rgba(255, 255, 255, .24)
}

.trust-grid strong,
.trust-grid span {
    display: block
}

.trust-grid strong {
    font-size: 20px
}

.trust-grid span {
    font-size: 13px;
    color: rgba(255, 255, 255, .75)
}

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

.journey-card {
    padding: 30px;
    border: 1px solid var(--line);
    background: #fff;
    min-height: 100%;
    display: flex;
    flex-direction: column
}

.journey-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    transition: .25s
}

.journey-card.featured-card {
    background: var(--dark);
    color: #fff
}

.journey-card.featured-card h3 {
    color: #fff
}

.journey-card.featured-card p,
.journey-card.featured-card li {
    color: rgba(255, 255, 255, .68)
}

.card-number {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--accent);
    color: #fff;
    font-weight: 850
}

.journey-card h3 {
    font-size: 18px;
    margin: 20px 0 8px
}

.journey-card p {
    color: var(--muted)
}

.journey-card ul {
    padding-left: 18px;
    color: var(--muted);
    margin: 12px 0 25px
}

.card-cta {
    margin-top: auto;
    color: var(--accent);
    font-weight: 850;
    font-size: 14px;

}

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

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.support-image {
    height: 680px;
    position: relative
}

.support-image img {
    border-radius: 18px
}

.image-note {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    background: #fff;
    padding: 20px;
    border-left: 5px solid var(--accent);
    box-shadow: var(--shadow)
}

.image-note strong,
.image-note span {
    display: block
}

.image-note span {
    color: var(--muted);
    font-size: 13px
}

.support-box-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.support-box-grid article {
    background: #fff;
    border: 1px solid var(--line);
    padding: 22px
}

.support-box-grid h3 {
    margin: 0 0 6px
}

.support-box-grid p {
    color: var(--muted);
    font-size: 14px
}

.support-box-grid a {
    color: var(--accent);
    font-weight: 850
}

.route-showcase {
    background: #fff
}

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

.route-card {
    border: 1px solid var(--line);
    background: #fff;
    overflow: hidden
}

.route-card>img {
    height: 240px
}

.route-card-body {
    padding: 24px
}

.route-card-body>span {
    color: var(--accent);
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .13em
}

.route-card-body h3 {
    font-size: 18px;
    margin: 8px 0
}

.route-card-body p {
    color: var(--muted)
}

.route-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 18px 0
}

.route-tags b {
    background: var(--soft);
    padding: 7px 10px;
    font-size: 12px
}

.route-card .btn {
    width: 100%
}

.process-section {
    background: var(--dark);
    color: #fff
}

.process-section .section-head h2 {
    color: #fff
}

.process-section .section-head p {
    color: rgba(255, 255, 255, .65)
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(255, 255, 255, .15)
}

.process-grid article {
    background: var(--dark);
    padding: 34px
}

.process-grid span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    background: var(--accent);
    font-weight: 850
}

.process-grid h3 {
    font-size: 21px
}

.process-grid p {
    color: rgba(255, 255, 255, .62)
}

.faq-grid {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    gap: 70px
}

.faq-call-box {
    margin-top: 28px;
    background: var(--soft);
    padding: 24px
}

.faq-call-box strong {
    font-size: 20px
}

.faq-call-box p {
    color: var(--muted)
}

.faq-list details {
    border-top: 1px solid var(--line);
    padding: 22px 0
}

.faq-list summary {
    font-size: 16px;
    font-weight: 800;
    cursor: pointer
}

.faq-list p {
    color: var(--muted);
    font-size: 15px
}

.final-cta {
    background: var(--accent);
    color: #fff;
    padding: 76px 0
}

.final-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px
}

.final-cta h2 {
    color: #fff;
    margin-bottom: 10px
}

.final-cta p {
    color: rgba(255, 255, 255, .78)
}

.site-footer {
    background: #111318;
    color: #fff;
    padding: 70px 0 0
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr .8fr;
    gap: 50px
}

.footer-grid h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .12em
}

.footer-grid a,
.footer-grid p {
    display: block;
    color: rgba(255, 255, 255, .68);
    margin: 9px 0
}

.footer-brand {
    color: #fff !important;
    margin-bottom: 16px !important
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 54px;
    padding: 22px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255, 255, 255, .55);
    font-size: 13px
}

.floating-call {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: var(--accent);
    color: #fff;
    padding: 14px 20px;
    border-radius: 999px;
    font-weight: 850;
    box-shadow: var(--shadow)
}

.support-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.support-modal.show {
    display: flex
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 16, .76);
    backdrop-filter: blur(7px)
}

.modal-card {
    position: relative;
    z-index: 2;
    width: min(100%, 520px);
    background: #fff;
    padding: 38px 32px 30px;
    text-align: center;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .35)
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    font-size: 24px
}

.modal-icon {
    width: 70px;
    height: 70px;
    display: grid;
    place-items: center;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #fff1f3;
    color: var(--accent);
    font-size: 28px
}

.modal-card h2 {
    font-size: 30px;
    margin: 10px 0
}

.modal-card>p {
    color: var(--muted)
}

.modal-summary {
    margin: 18px 0;
    padding: 15px;
    background: var(--soft);
    text-align: left
}

.modal-card .btn {
    width: 100%
}

.modal-secondary {
    margin-top: 12px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 750
}

.legal-shell {
    padding: 80px 0;
    background: var(--soft)
}

.legal-card {
    background: #fff;
    padding: 64px;
    box-shadow: var(--shadow)
}

.legal-card h1 {
    font-size: 36px;
    letter-spacing: -.05em;
    margin: 10px 0
}

.legal-card section {
    padding: 10px 0;
    border-top: 1px solid var(--line)
}

.legal-card h2 {
    font-size: 18px;
    margin: 0;
}

.legal-card p {
    color: var(--muted)
}

.text-link {
    font-weight: 750;
    color:#a80718
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: .7s ease
}

.revealed {
    opacity: 1;
    transform: none
}

@media(max-width:1000px) {

    .hero-grid,
    .support-grid,
    .faq-grid {
        grid-template-columns: 1fr
    }

    .hero-side {
        max-width: 760px
    }

    .journey-card-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr
    }

    .route-card-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:800px) {
    .container {
        width: min(100% - 28px, 1180px)
    }

    .site-header {
        position: absolute
    }

    .nav-wrap {
        min-height: 72px
    }

    .menu-toggle {
        display: block
    }

    .nav-links {
        position: absolute;
        top: 72px;
        left: 14px;
        right: 14px;
        background: #fff;
        color: var(--ink);
        padding: 22px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        box-shadow: var(--shadow)
    }

    .nav-links.open {
        display: flex
    }

    .hero-new {
        padding-top: 120px
    }

    .hero-copy h1 {
        font-size: 48px
    }

    .hero-points,
    .journey-form,
    .trust-grid,
    .journey-card-grid,
    .support-box-grid,
    .route-card-grid,
    .process-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .form-submit {
        grid-column: auto
    }

    .trust-grid>div {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .24)
    }

    .support-image {
        height: 460px
    }

    .final-inner {
        align-items: flex-start;
        flex-direction: column
    }

    .footer-bottom {
        flex-direction: column
    }

    .legal-card {
        padding: 34px 24px
    }

    .legal-card h1 {
        font-size: 28px
    }

    .floating-call {
        width: 58px;
        height: 58px;
        padding: 0;
        display: grid;
        place-items: center;
        border-radius: 50%
    }

    .floating-call span {
        display: none
    }
}

@media(max-width:600px) {
    .hero-copy h1 {
        font-size: 40px
    }

    .hero-actions {
        flex-direction: column
    }

    .hero-actions .btn {
        width: 100%
    }

    .hero-image-card {
        height: 340px
    }

    .lead-card {
        margin: -25px 12px 0
    }

    .section {
        padding: 76px 0
    }

    .route-badge strong {
        font-size: 20px
    }
}