:root {
    --teal: #1c606c;
    --teal-d: #12404a;
    --teal-dd: #0b2a31;
    --teal-m: #1e6e7d;
    --teal-l: #e8f5f7;
    --teal-ll: #f2fafb;
    --red: #cc2e22;
    --red-m: #d93728;
    --gold: #b8943a;
    --gold-l: #d4aa55;
    --gold-ll: #fdf6e3;
    --white: #fff;
    --off: #f5f8f9;
    --border: #dce6ea;
    --border-m: #c5d3d8;
    --txt: #0f1c20;
    --txt-m: #3a5260;
    --txt-s: #6a8490;
    --sh1: 0 1px 3px rgba(0,0,0,.06);
    --sh2: 0 4px 16px rgba(0,0,0,.09);
    --sh3: 0 10px 36px rgba(0,0,0,.11);
    --sh4: 0 20px 64px rgba(0,0,0,.13);
    --sh5: 0 32px 96px rgba(0,0,0,.16);
    --r: 10px;
    --rl: 16px;
    --rxl: 24px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--white);
    color: var(--txt);
    overflow-x: hidden
}

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

img {
    max-width: 100%;
    display: block
}

/* TOP BAR */
.topbar {
    background: var(--teal-dd);
    padding: 0
}

.topbar-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.tb-left, .tb-right {
    display: flex;
    align-items: center;
    gap: 0
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    height: 38px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255,255,255,.72);
    border-right: 1px solid rgba(255,255,255,.08);
    transition: color .2s,background .2s
}

    .tb-item:first-child {
        padding-left: 0
    }

    .tb-item:hover {
        color: var(--white)
    }

.tb-right .tb-item {
    border-right: none;
    border-left: 1px solid rgba(255,255,255,.08)
}

.tb-item.tb-gsa {
    color: var(--gold-l);
    font-weight: 800;
    letter-spacing: .01em
}

    .tb-item.tb-gsa:hover {
        background: rgba(184,148,58,.15);
        color: var(--gold-l)
    }

.tb-item svg {
    width: 13px;
    height: 13px;
    flex-shrink: 0
}

/* NAVIGATION */
nav {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

    nav .nav-inner {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 32px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
    }

    nav .nav-logo img {
        height: 54px;
        width: auto;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 8px;
        align-items: center;
        justify-content: flex-end;
        flex: 1;
    }

    nav .nav-item {
        position: relative;
    }

    nav .nav-link {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: var(--txt);
        padding: 18px 16px;
        border-radius: 6px;
        transition: all .2s;
        letter-spacing: .01em;
        display: block;
    }

        nav .nav-link:hover {
            color: var(--gold-l);
            background: rgba(184,148,58,0);
        }

        nav .nav-link.active {
            color: var(--gold-l);
        }

    /* Dropdown Menu */
    nav .dropdown {
        position: relative;
    }

    nav .dropdown-toggle::after {
        content: '';
        display: inline-block;
        width: 6px;
        height: 6px;
        border-left: 1px solid currentColor;
        border-bottom: 1px solid currentColor;
        /* Initial arrow direction */
        transform: rotate(-45deg);
        margin-left: 8px;
        vertical-align: middle;
        transition: transform 0.3s ease;
    }

    nav .dropdown:hover .dropdown-toggle::after {
        transform: rotate(-225deg);
    }

    nav .dropdown-menu {
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 12px;
        box-shadow: var(--sh4);
        min-width: 1000px;
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all .3s ease;
        z-index: 1000;
        padding: 32px;
        margin-top: 0px;
    }

    nav .dropdown:hover .dropdown-menu {
        display: grid;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    nav .dropdown-menu .row {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
        width: 100%;
    }

    nav .dropdown-menu h6 {
        font-family: 'Montserrat', sans-serif;
        font-size: 13px;
        font-weight: 900;
        color: var(--teal);
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 16px;
    }

    nav .dropdown-menu .dropdown-item {
        font-family: 'Montserrat', sans-serif;
        font-size: 14px;
        font-weight: 700;
        color: var(--txt);
        padding: 8px 0;
        display: block;
        transition: color .2s;
        margin-bottom: 8px;
    }

        nav .dropdown-menu .dropdown-item:hover {
            color: var(--gold-l);
        }

    nav .dropdown-menu p {
        font-size: 12px;
        color: var(--txt-s);
        line-height: 1.5;
        margin-bottom: 16px;
    }

    nav .designbox {
        border-right: 1px solid var(--border);
        padding-right: 24px;
    }

        nav .designbox h6 {
            font-size: 15px;
            margin-bottom: 12px;
        }

        nav .designbox p {
            font-size: 13px;
            margin-bottom: 20px;
        }

    nav .cta {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 13px;
        letter-spacing: .02em;
        padding: 10px 16px;
        border-radius: 6px;
        transition: all .2s;
        text-decoration: none;
    }

    nav .cta--outline {
        border: 2px solid var(--gold);
        color: var(--gold);
    }

        nav .cta--outline:hover {
            background: rgba(184,148,58,.1);
            color: var(--gold-l);
        }

    nav .arrow--right::after {
        content: 'â†’';
        margin-left: 4px;
    }

    /* Nav Actions */
    nav .nav-actions {
        display: flex;
        gap: 12px;
        align-items: center;
        margin-left: auto;
    }

    nav .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 800;
        font-size: 14px;
        letter-spacing: .01em;
        border-radius: var(--r);
        padding: 12px 28px;
        cursor: pointer;
        border: none;
        transition: all .2s ease;
        white-space: nowrap;
        line-height: 1;
    }

    nav .btn-gold {
        background: linear-gradient(135deg, #d6af4f, #dbb554);
        color: var(--white);
    }

        nav .btn-gold:hover {
            transform: translateY(-2px);
        }

    nav .btn-lg {
        padding: 18px 32px;
        font-size: 15px;
    }

    /* Mobile Nav Toggle */
    nav .nav-toggle {
        display: none;
        flex-direction: column;
        gap: 6px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
    }

        nav .nav-toggle span {
            width: 24px;
            height: 2.5px;
            background: var(--txt);
            border-radius: 2px;
            transition: all .3s;
        }

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.5);
    z-index: 99;
    opacity: 0;
    transition: opacity .3s;
}

    .mobile-nav.active {
        display: flex;
        opacity: 1;
    }

.mobile-nav-panel {
    background: var(--white);
    width: 100%;
    max-width: 320px;
    height: 100vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav-logo img {
    height: 32px;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--txt);
}

.mobile-nav-links {
    list-style: none;
    padding: 16px 0;
    flex: 1;
}

    .mobile-nav-links li {
        border-bottom: 1px solid var(--border);
    }

    .mobile-nav-links a {
        display: block;
        padding: 16px 20px;
        font-weight: 700;
        color: var(--txt);
        transition: all .2s;
    }

        .mobile-nav-links a:hover {
            background: var(--off);
            color: var(--gold-l);
        }

.mobile-nav-actions {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid var(--border);
}

/* Responsive */
@media(max-width: 1080px) {
    nav .dropdown-menu {
        min-width: 800px;
    }

        nav .dropdown-menu .row {
            grid-template-columns: repeat(3, 1fr);
        }
}

@media(max-width: 768px) {
    .topbar-inner {
        flex-direction: column;
        gap: 12px;
        font-size: 12px;
    }

    .tb-left {
        flex-direction: column;
        gap: 8px;
    }

    .tb-right {
        display: none;
    }

    nav .nav-toggle {
        display: flex;
    }

    nav ul {
        display: none;
    }

    nav .nav-inner {
        gap: 16px;
    }

    nav .dropdown-menu {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        min-width: 90vw;
        max-height: 80vh;
        overflow-y: auto;
        display: none;
    }

        nav .dropdown-menu .row {
            grid-template-columns: 1fr;
        }

    nav .designbox {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding-right: 0;
        padding-bottom: 24px;
        margin-bottom: 24px;
    }
}

.et_loginform_box .valsummary ul {
    list-style: disc;
    width: 100%;
    margin-bottom: 20px;
}

    .et_loginform_box .valsummary ul li {
        font-size: 12px;
        font-weight: 500;
        line-height: 1.5;
        color: #ff0000;
    }
/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .01em;
    border-radius: var(--r);
    padding: 11px 24px;
    cursor: pointer;
    border: none;
    transition: all .2s ease;
    white-space: nowrap;
    line-height: 1
}

.btn-teal {
    background: var(--teal);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(28,96,108,.28)
}

    .btn-teal:hover {
        background: var(--teal-m);
        transform: translateY(-2px);
        box-shadow: 0 7px 22px rgba(28,96,108,.36)
    }

.btn-red {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(204,46,34,.28)
}

    .btn-red:hover {
        background: var(--red-m);
        transform: translateY(-2px);
        box-shadow: 0 7px 22px rgba(204,46,34,.36)
    }

.btn-gold {
    background: linear-gradient(135deg,#d6af4f,#dbb554);
    color: var(--white);
}

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

.btn-outline {
    border: 2px solid var(--white);
    color: var(--white);
    background: transparent
}

    .btn-outline:hover {
        background: var(--teal);
        color: var(--white);
        transform: translateY(-2px)
    }

.btn-ghost-w {
    border: 2px solid rgba(255,255,255,.35);
    color: var(--white);
    background: rgba(255,255,255,.1)
}

    .btn-ghost-w:hover {
        background: rgba(255,255,255,.2);
        border-color: rgba(255,255,255,.6);
        transform: translateY(-2px)
    }

.btn-sm {
    padding: 9px 18px;
    font-size: 13px
}

.btn-lg {
    padding: 14px 32px;
    font-size: 15px;
    border-radius: 12px
}

.btn-xl {
    padding: 17px 40px;
    font-size: 16px;
    border-radius: 14px
}

/* HERO */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 86vh;
    display: flex;
    align-items: center;
    background: linear-gradient(148deg,var(--teal-dd) 0%,var(--teal) 55%,var(--teal-d) 100%)
}

.hero-bg-dots {
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: radial-gradient(circle,#fff 1px,transparent 1px);
    background-size: 28px 28px
}

.hero-bg-glow {
    position: absolute;
    top: -160px;
    right: -160px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(184,148,58,.18) 0%,transparent 68%)
}

.hero-bg-glow2 {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 68%)
}

.hero-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 32px;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    width: 100%
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,148,58,.18);
    border: 1px solid rgba(184,148,58,.4);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 22px
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold-l);
    animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.85)
    }
}

.eyebrow-text {
    font-family: 'Montserrat',sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-l)
}

.hero-title {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(44px, 5.2vw, 68px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 18px
}

    .hero-title span {
        color: var(--gold-l)
    }

.hero-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
    max-width: 820px;
    margin-bottom: 36px;
    font-weight: 400
}

    .hero-subtitle strong {
        color: rgba(255,255,255,.92);
        font-weight: 700
    }

.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.hero-proof {
    display: flex;
    gap: 36px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.14)
}

.proof-num {
    font-family: 'Montserrat',sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--gold-l);
    line-height: 1;
    letter-spacing: -.02em
}

.proof-sub {
    font-size: 12px;
    color: rgba(255,255,255,.55);
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    margin-top: 4px
}

.hero-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

    .hero-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(18, 61, 68, 0.95) 0%, rgba(29, 95, 106, 0.8) 100%);
}
/* LOGIN CARD */
.login-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--sh5);
    overflow: hidden;
    animation: slideIn .7s cubic-bezier(.22,1,.36,1) both
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

.lc-header {
    background: linear-gradient(135deg,var(--teal-dd) 0%,var(--teal) 100%);
    padding: 24px 28px 20px
}

.lc-header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4px
}

.lc-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em
}

.lc-secure {
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(255,255,255,.6);
    text-transform: uppercase;
    letter-spacing: .06em
}

    .lc-secure svg {
        width: 12px;
        height: 12px
    }

.lc-subtitle {
    font-size: 12.5px;
    color: rgba(255,255,255,.65);
    font-weight: 400;
    margin-top: 7px;
}

.lc-body {
    padding: 22px 28px 26px
}

.field {
    margin-bottom: 25px;
    position: relative;
}

.field-label {
    display: block;
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--txt-s);
    margin-bottom: 5px
}

.field-wrap {
    position: relative
}

    .field-wrap .fi {
        width: 100%;
        padding: 14px 12px 14px 38px;
        border: 1.5px solid var(--border);
        border-radius: 9px;
        font-family: 'Montserrat Sans',sans-serif;
        font-size: 14px;
        color: var(--txt);
        background: var(--off);
        transition: border-color .18s,box-shadow .18s,background .18s;
        outline: none
    }

        .field-wrap .fi:focus {
            border-color: var(--teal);
            background: var(--white);
            box-shadow: 0 0 0 3px rgba(28,96,108,.12)
        }

        .field-wrap .fi::placeholder {
            color: #b8c8ce
        }

.field-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--border-m);
    pointer-events: none
}

    .field-icon svg {
        width: 15px;
        height: 15px;
        display: block
    }

.forgot-link {
    display: inline-flex;
    justify-content: flex-end;
    margin: 0px;
    position: absolute;
    top: 0px;
    right: 0px;
}

    .forgot-link a {
        font-family: 'Montserrat',sans-serif;
        font-size: 12px;
        font-weight: 700;
        color: var(--gold)
    }

        .forgot-link a:hover {
            text-decoration: underline
        }

.btn-signin {
    width: 100%;
    padding: 18px;
    font-family: 'Montserrat',sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: .02em;
    background: linear-gradient(135deg,var(--teal-dd),var(--teal));
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(28,96,108,.32);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px
}

    .btn-signin:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(28,96,108,.4)
    }

.lc-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 16px 0;
    font-family: 'Montserrat',sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--txt-s);
    letter-spacing: .04em
}

    .lc-separator::before, .lc-separator::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border)
    }

.lc-reg-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px
}

.lc-reg-btn {
    padding: 10px;
    border-radius: 9px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .01em;
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.lrb-agent {
    border: 2px solid var(--teal);
    color: var(--teal);
    background: transparent
}

    .lrb-agent:hover {
        background: var(--teal);
        color: var(--white)
    }

.lrb-gsa {
    background: linear-gradient(135deg,#d6af4f,#dbb554);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px rgba(184,148,58,.3)
}

    .lrb-gsa:hover {
        transform: translateY(-2px);
        box-shadow: 0 7px 20px rgba(184,148,58,.4)
    }

.lc-legal {
    text-align: center;
    font-size: 11px;
    color: var(--txt-s);
    margin-top: 13px;
    line-height: 1.6
}

    .lc-legal a {
        color: var(--teal);
        font-weight: 600
    }

/* TICKER */
.ticker {
    background: var(--red);
    padding: 0;
    overflow: hidden;
    white-space: nowrap
}

.ticker-track {
    display: inline-flex;
    animation: tick 42s linear infinite
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 32px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: rgba(255,255,255,.95);
    letter-spacing: .02em;
    border-right: 1px solid rgba(255,255,255,.2)
}

.ticker-icon {
    opacity: .8
}

@keyframes tick {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* TRUST BAR */
.trust {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 32px 0
}

.trust-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 32px
}

.trust-label {
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--txt-s);
    white-space: nowrap;
    flex-shrink: 0
}

.trust-line {
    width: 1px;
    height: 28px;
    background: var(--border);
    flex-shrink: 0
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap
}

.trust-logo {
    font-family: 'Montserrat',sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--border-m);
    letter-spacing: -.01em;
    transition: color .2s;
    cursor: default
}

    .trust-logo:hover {
        color: var(--teal)
    }

    .trust-logo > img {
        display: block;
        width: 90px;
        height: auto;
    }

/* WHY VASIQA â€“ BENEFIT BANNER */
.benefit-bar {
    background: var(--teal-l);
    border-bottom: 1px solid rgba(28,96,108,.12)
}

.benefit-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.benefit-item {
    padding: 22px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    border-right: 1px solid rgba(28,96,108,.12)
}

    .benefit-item:last-child {
        border-right: none
    }

.bi-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    flex-shrink: 0;
    box-shadow: var(--sh1)
}

    .bi-icon svg {
        width: 20px;
        height: 20px
    }

.bi-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 13.5px;
    font-weight: 800;
    color: var(--teal-d);
    line-height: 1.3;
    margin-bottom: 2px
}

.bi-sub {
    font-size: 12px;
    color: var(--txt-s);
    font-weight: 500
}

/* WHITE LABEL SOLUTIONS */
.whitelabel-sec {
    background: var(--white);
    overflow: hidden;
}

.whitelabel-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.wl-content .sec-hdr {
    text-align: left;
    margin-bottom: 32px;
}

.wl-features {
    list-style: none;
    margin-bottom: 36px;
}

    .wl-features li {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 15px;
        color: var(--txt-m);
        font-weight: 600;
    }

.wl-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal-l);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

.wl-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
}

.wl-main-laptop {
    width: 100%;
    max-width: 574px;
    z-index: 0;
    filter: drop-shadow(var(--sh4));
    border-radius: 20px;
}

.wl-circle-anim {
    position: absolute;
    width: 340px;
    height: 340px;
    border: 2px dashed var(--teal);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
    z-index: 1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wl-node {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 10px;
    box-shadow: var(--sh2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3;
    border: 1.5px solid var(--border);
    transition: all 0.3s ease;
}

    .wl-node:hover {
        transform: translateY(-5px);
        border-color: var(--teal);
        box-shadow: var(--sh3);
    }

.wl-node-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--teal-l);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .wl-node-icon svg {
        width: 18px;
        height: 18px;
    }

.wl-node-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--txt);
    white-space: nowrap;
}

.node-1 {
    top: 10%;
    left: 0;
}

.node-2 {
    top: 0;
    right: 10%;
}

.node-3 {
    bottom: 20%;
    left: -5%;
}

.node-4 {
    bottom: 5%;
    right: 0;
}

/* API HUB CONNECT */
.api-sec {
    background: var(--teal-l);
    position: relative;
}

.api-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.api-visual {
    background: var(--white) url('api_hub_bg.png') center center / cover no-repeat;
    border-radius: var(--rxl);
    padding: 40px;
    box-shadow: var(--sh3);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
    border: 1px solid rgba(28,96,108,.1);
}

.api-center {
    width: 100px;
    height: 100px;
    background: var(--teal);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(28,96,108,0.3);
}

    .api-center svg {
        width: 40px;
        height: 40px;
        margin-bottom: 5px;
    }

    .api-center span {
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.api-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), transparent);
    transform-origin: left center;
    z-index: 2;
    opacity: 0.3;
}

.api-card {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: var(--sh2);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

    .api-card:hover {
        border-color: var(--teal);
        transform: scale(1.05);
    }

.api-card-icon {
    color: var(--teal);
}

.api-card-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--txt);
}

.ac-1 {
    top: 15%;
    left: 15%;
}

.ac-2 {
    top: 15%;
    right: 15%;
}

.ac-3 {
    bottom: 15%;
    left: 15%;
}

.ac-4 {
    bottom: 15%;
    right: 15%;
}

@media (max-width: 992px) {
    .whitelabel-inner, .api-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .wl-visual, .api-visual {
        order: -1;
        min-height: 300px;
    }
}

/* WHO WE SERVE */
.serve-sec {
    background: var(--white)
}

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

.serve-card {
    border: 2px solid var(--border);
    border-radius: var(--rl);
    padding: 28px 22px;
    transition: all .25s;
    cursor: default;
    background: var(--white);
    position: relative;
    overflow: hidden
}

    .serve-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: var(--teal);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s;
        border-radius: var(--rl) var(--rl) 0 0
    }

    .serve-card:hover {
        border-color: var(--teal);
        transform: translateY(-4px);
        box-shadow: var(--sh3)
    }

        .serve-card:hover::before {
            transform: scaleX(1)
        }

.sc-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--teal-l);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 16px;
    transition: all .25s
}

.serve-card:hover .sc-icon {
    background: var(--teal);
    color: var(--white)
}

.sc-icon svg {
    width: 26px;
    height: 26px
}

.sc-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.sc-desc {
    font-size: 14px;
    color: var(--txt-s);
    line-height: 1.65;
    margin-bottom: 14px
}

.sc-benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: .02em;
    text-transform: uppercase
}

    .sc-benefit svg {
        width: 14px;
        height: 14px
    }

/* AGENT BENEFITS (KEY SECTION) */
.agent-sec {
    background: var(--teal-dd);
    position: relative;
    overflow: hidden
}

    .agent-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px);
        background-size: 24px 24px
    }

    .agent-sec::after {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(184,148,58,.12) 0%,transparent 65%)
    }

.agent-inner {
    position: relative;
    z-index: 1
}

.agent-sec .sec-eyebrow {
    background: rgba(184,148,58,.18);
    border-color: rgba(184,148,58,.35);
    color: var(--gold-l)
}

.agent-sec .sec-title {
    color: var(--white)
}

.agent-sec .sec-sub {
    color: rgba(255,255,255,.65)
}

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

.agent-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--rl);
    padding: 28px 24px;
    transition: all .25s;
    position: relative;
    overflow: hidden
}

    .agent-card:hover {
        background: rgba(255,255,255,.12);
        border-color: rgba(184,148,58,.45);
        transform: translateY(-4px)
    }

.ac-num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Montserrat',sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: rgba(255,255,255,.05);
    line-height: 1
}

.ac-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(184,148,58,.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-l);
    margin-bottom: 16px
}

    .ac-icon svg {
        width: 24px;
        height: 24px
    }

.ac-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.ac-desc {
    font-size: 14px;
    color: rgba(255,255,255,.65);
    line-height: 1.7
}

.ac-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 14px;
    background: rgba(184,148,58,.2);
    border: 1px solid rgba(184,148,58,.35);
    border-radius: 100px;
    padding: 4px 12px;
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 800;
    color: var(--gold-l);
    letter-spacing: .04em;
    text-transform: uppercase
}

/* FEATURES */
.feat-sec {
    background: var(--off)
}

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

.feat-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--rl);
    padding: 28px 24px;
    transition: all .25s;
    position: relative;
    overflow: hidden
}

    .feat-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh3);
        border-color: var(--teal)
    }

.fc-stripe {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,var(--teal),var(--teal-m));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s
}

.feat-card:hover .fc-stripe {
    transform: scaleX(1)
}

.fc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--teal-l);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    margin-bottom: 16px
}

    .fc-icon svg {
        width: 22px;
        height: 22px
    }

.fc-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 16.5px;
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.fc-desc {
    font-size: 14px;
    color: var(--txt-s);
    line-height: 1.68
}

/* COMMISSION CALCULATOR */
.calc-sec {
    background: var(--white)
}

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

.calc-content .sec-hdr {
    text-align: left;
    margin-bottom: 28px
}

.calc-points {
    list-style: none;
    margin-bottom: 32px
}

    .calc-points li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 14px;
        font-size: 15px;
        color: var(--txt-m);
        line-height: 1.6
    }

.cp-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--teal-l);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px
}

.calc-box {
    background: linear-gradient(155deg,var(--teal-dd) 0%,var(--teal) 100%);
    border-radius: var(--rxl);
    padding: 36px;
    color: var(--white);
    position: relative;
    overflow: hidden
}

    .calc-box::before {
        content: '';
        position: absolute;
        top: -60px;
        right: -60px;
        width: 240px;
        height: 240px;
        border-radius: 50%;
        background: rgba(255,255,255,.06)
    }

.calc-box-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.01em;
    margin-bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative
}

    .calc-box-title svg {
        width: 20px;
        height: 20px;
        color: var(--gold-l)
    }

.calc-row {
    margin-bottom: 18px;
    position: relative
}

    .calc-row label {
        font-family: 'Montserrat',sans-serif;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: rgba(255,255,255,.65);
        display: block;
        margin-bottom: 7px
    }

.calc-slider {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: rgba(255,255,255,.2);
    outline: none
}

    .calc-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        background: var(--gold-l);
        cursor: pointer;
        border: 3px solid var(--white);
        box-shadow: 0 2px 8px rgba(0,0,0,.3)
    }

.calc-val {
    font-family: 'Montserrat',sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: var(--gold-l);
    float: right;
    margin-top: -22px
}

.calc-result {
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 14px;
    padding: 20px;
    margin-top: 20px;
    text-align: center
}

.calc-result-label {
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255,255,255,.65);
    margin-bottom: 6px
}

.calc-result-num {
    font-family: 'Montserrat',sans-serif;
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--gold-l);
    line-height: 1
}

.calc-result-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    margin-top: 5px
}

/* HOW IT WORKS */
.hiw-sec {
    background: var(--off)
}

.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    position: relative;
    margin-top: 50px
}

.hiw-connector {
    position: absolute;
    top: 38px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: linear-gradient(90deg,var(--teal-l) 0%,var(--teal) 50%,var(--red) 100%);
    z-index: 0
}

.hiw-step {
    text-align: center;
    padding: 0 18px;
    position: relative;
    z-index: 1
}

.hiw-num {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--teal);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat',sans-serif;
    font-size: 26px;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 5px solid var(--off);
    box-shadow: 0 6px 22px rgba(28,96,108,.3);
    letter-spacing: -.02em
}

.hiw-step:last-child .hiw-num {
    background: var(--red);
    box-shadow: 0 6px 22px rgba(204,46,34,.3)
}

.hiw-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--txt);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.hiw-desc {
    font-size: 13.5px;
    color: var(--txt-s);
    line-height: 1.65
}

.hiw-step-badge {
    display: inline-block;
    margin-top: 10px;
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 800;
    background: var(--teal-l);
    color: var(--teal);
    padding: 3px 10px;
    border-radius: 100px;
    letter-spacing: .04em
}

.hiw-step:last-child .hiw-step-badge {
    background: #fdecea;
    color: var(--red)
}

/* DESTINATIONS */
.dest-sec {
    background: var(--white)
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(5,1fr);
    column-gap: 14px
}

.dest-card {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--sh1)
}

    .dest-card:first-child {
        grid-row: span 2
    }

.dest-img {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease
}

.dest-card:hover .dest-img {
    transform: scale(1.07)
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,rgba(9,22,26,.88) 0%,rgba(9,22,26,.1) 55%)
}

.dest-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px
}

.dest-badge {
    display: inline-block;
    font-family: 'Montserrat',sans-serif;
    font-size: 10px;
    font-weight: 800;
    background: var(--gold-l);
    color: #2a1a00;
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: .04em;
    margin-bottom: 5px;
    text-transform: uppercase
}

.dest-city {
    font-family: 'Montserrat',sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -.01em;
    line-height: 1.2
}

.dest-count {
    font-size: 12px;
    color: rgba(255,255,255,.72);
    margin-top: 2px;
    font-weight: 600
}

.dest-view-all {
    text-align: center;
    margin-top: 28px
}

/* GSA SECTION */
.gsa-sec {
    background: var(--off);
    position: relative;
    overflow: hidden
}

.gsa-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.gsa-media {
    position: relative;
    border-radius: var(--rxl);
    overflow: hidden
}

    .gsa-media img {
        width: 100%;
        height: 440px;
        object-fit: cover;
        display: block;
        border-radius: var(--rxl)
    }

.gsa-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(12,40,46,.7) 0%,transparent 60%);
    border-radius: var(--rxl)
}

.gsa-float-stat {
    position: absolute;
    bottom: 28px;
    right: 28px;
    background: var(--white);
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: var(--sh3);
    text-align: center
}

.gfs-num {
    font-family: 'Montserrat',sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: var(--teal);
    letter-spacing: -.02em;
    line-height: 1
}

.gfs-lbl {
    font-size: 11.5px;
    color: var(--txt-s);
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.4
}

.gsa-float-stat2 {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--teal-dd);
    border-radius: 12px;
    padding: 14px 18px
}

.gfs2-num {
    font-family: 'Montserrat',sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--gold-l);
    letter-spacing: -.02em;
    line-height: 1
}

.gfs2-lbl {
    font-size: 11px;
    color: rgba(255,255,255,.65);
    font-weight: 600;
    margin-top: 3px
}

.gsa-content .sec-hdr {
    text-align: left;
    margin-bottom: 22px
}

.gsa-perks {
    list-style: none;
    margin-bottom: 28px
}

    .gsa-perks li {
        display: flex;
        align-items: flex-start;
        gap: 11px;
        margin-bottom: 12px;
        font-size: 14.5px;
        color: var(--txt-m);
        line-height: 1.6
    }

.gp-icon {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--teal-l);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px
}

.gsa-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* TESTIMONIALS */
.testi-sec {
    background: var(--white)
}

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

.testi-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: var(--rl);
    padding: 28px;
    transition: all .22s;
    position: relative
}

    .testi-card:hover {
        border-color: var(--teal);
        background: var(--white);
        box-shadow: var(--sh2)
    }

.testi-quote {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 48px;
    color: var(--teal-l);
    font-family: 'Montserrat',sans-serif;
    font-weight: 800;
    line-height: 1
}

.tc-stars {
    color: var(--gold);
    font-size: 15px;
    letter-spacing: 3px;
    margin-bottom: 12px
}

.tc-text {
    font-size: 14.5px;
    color: var(--txt-m);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic
}

.tc-author {
    display: flex;
    align-items: center;
    gap: 12px
}

.tc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--teal-d),var(--teal));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0
}

.tc-name {
    font-family: 'Montserrat',sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--txt);
    letter-spacing: -.01em
}

.tc-role {
    font-size: 12px;
    color: var(--txt-s);
    margin-top: 2px;
    font-weight: 500
}

/* CTA STRIP */
.cta-sec {
    background: linear-gradient(148deg,var(--teal-dd) 0%,var(--teal) 55%,var(--teal-d) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

    .cta-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px);
        background-size: 22px 22px
    }

    .cta-sec::after {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 350px;
        background: radial-gradient(ellipse,rgba(184,148,58,.2) 0%,transparent 70%)
    }

.cta-content {
    position: relative;
    z-index: 1
}

.cta-sec .sec-title {
    color: var(--white);
    margin-bottom: 12px
}

.cta-sec p {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.cta-logos {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px
}

.cta-logo-badge {
    border-radius: 8px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, .7);
    margin-top: 0px;
}

/* FOOTER */
footer {
    background: #09191f;
    color: rgba(255,255,255,.52)
}

.footer-top {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 32px 48px;
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 48px;
    border-bottom: 1px solid rgba(255,255,255,.07)
}

.footer-brand {
}

.footer-logo img {
    height: 36px;
    width: auto;
    filter: brightness(0) invert(1) opacity(.82);
    margin-bottom: 16px
}

.footer-brand-desc {
    font-size: 13.5px;
    line-height: 1.75;
    max-width: 270px;
    margin-bottom: 22px
}

.footer-socials {
    display: flex;
    gap: 8px
}

.fs-btn {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255,255,255,.07);
    color: rgba(255,255,255,.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat',sans-serif;
    font-size: 13px;
    font-weight: 800;
    transition: all .2s;
    cursor: pointer
}

    .fs-btn:hover {
        background: var(--teal);
        color: var(--white)
    }

.footer-col h5 {
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.8);
    margin-bottom: 18px
}

.footer-col ul {
    list-style: none
}

.footer-col li {
    margin-bottom: 9px
}

.footer-col a {
    font-size: 13.5px;
    color: rgba(255,255,255,.5);
    transition: color .2s;
    font-weight: 500
}

    .footer-col a:hover {
        color: var(--gold-l)
    }

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12.5px;
    font-weight: 500
}

.footer-bottom-links {
    display: flex;
    gap: 22px
}

.footer-bottom a {
    color: rgba(255,255,255,.45);
    transition: color .2s
}

    .footer-bottom a:hover {
        color: var(--gold-l)
    }

/* MODALS */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(8,18,22,.65);
    backdrop-filter: blur(6px);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s
}

    .overlay.show {
        opacity: 1;
        pointer-events: all
    }

.modal {
    background: var(--white);
    border-radius: var(--rxl);
    width: 100%;
    max-width: 480px;
    margin: 20px;
    position: relative;
    transform: scale(.94) translateY(10px);
    transition: transform .28s cubic-bezier(.22,1,.36,1);
    box-shadow: var(--sh5);
    overflow: hidden
}

.overlay.show .modal {
    transform: scale(1) translateY(0)
}

.modal-hd {
    background: linear-gradient(135deg,var(--teal-dd),var(--teal));
    padding: 26px 28px 22px
}

    .modal-hd h3 {
        font-family: 'Montserrat',sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: var(--white);
        letter-spacing: -.01em;
        margin-bottom: 3px
    }

    .modal-hd p {
        font-size: 13px;
        color: rgba(255,255,255,.65)
    }

.modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: rgba(255,255,255,.15);
    border: none;
    color: var(--white);
    font-size: 18px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .18s;
    font-family: 'Montserrat',sans-serif;
    font-weight: 900
}

    .modal-close:hover {
        background: rgba(255,255,255,.3)
    }

.modal-body {
    padding: 24px 28px 28px
}

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

.modal-body .field {
    margin-bottom: 13px
}

.modal-body .field-wrap .fi {
    background: var(--off);
    padding-left: 12px
}

.modal-body textarea {
    width: 100%;
    padding: 11px 12px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: 'Montserrat Sans',sans-serif;
    font-size: 14px;
    color: var(--txt);
    background: var(--off);
    resize: vertical;
    outline: none;
    transition: border-color .18s
}

    .modal-body textarea:focus {
        border-color: var(--teal);
        box-shadow: 0 0 0 3px rgba(28,96,108,.1)
    }

.modal-submit {
    width: 100%;
    margin-top: 6px
}

.modal-note {
    text-align: center;
    font-size: 11.5px;
    color: var(--txt-s);
    margin-top: 12px
}

    .modal-note a {
        color: var(--teal);
        font-weight: 700
    }

/* ANIMATIONS & SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease,transform .6s ease
}

    .reveal.up {
        opacity: 1;
        transform: translateY(0)
    }

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

.reveal-d4 {
    transition-delay: .4s
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

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

.hero-content > * {
    animation: heroFadeUp .75s ease both
}

    .hero-content > *:nth-child(1) {
        animation-delay: .1s
    }

    .hero-content > *:nth-child(2) {
        animation-delay: .2s
    }

    .hero-content > *:nth-child(3) {
        animation-delay: .3s
    }

    .hero-content > *:nth-child(4) {
        animation-delay: .4s
    }

    .hero-content > *:nth-child(5) {
        animation-delay: .5s
    }


/* RESPONSIVE */
@media(max-width:1080px) {
    .hero-inner {
        grid-template-columns: 1fr
    }

    .login-card {
        max-width: 480px
    }

    .calc-inner, .gsa-inner {
        grid-template-columns: 1fr
    }

    .serve-grid, .agent-grid, .testi-grid {
        grid-template-columns: repeat(2,1fr)
    }

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

    .dest-grid {
        grid-template-columns: repeat(3,1fr)
    }

    .dest-card:first-child {
        grid-row: span 1
    }

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

    .hiw-grid {
        grid-template-columns: repeat(2,1fr);
        gap: 32px
    }

    .hiw-connector {
        display: none
    }

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

    .benefit-item {
        border-bottom: 1px solid rgba(28,96,108,.12)
    }

        .benefit-item:nth-child(2) {
            border-right: none
        }

        .benefit-item:last-child {
            border-bottom: none
        }

        .benefit-item:nth-child(3) {
            border-bottom: none
        }
}

@media(max-width:768px) {
    /* Topbar */
    .topbar-inner {
        padding: 0 16px;
        flex-direction: column;
        height: auto;
        gap: 0
    }

    .tb-left {
        display: none
    }

    .tb-right {
        width: 100%;
        justify-content: center
    }

        .tb-right .tb-item {
            border-left: none;
            padding: 8px 12px;
            font-size: 11.5px;
            height: auto
        }

    /* Hero */
    .hero {
        min-height: auto
    }

    .hero-inner {
        padding: 48px 16px 52px;
        gap: 36px
    }

    .hero-title {
        font-size: clamp(34px,8.5vw,52px)
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 28px
    }

    .hero-cta-group {
        gap: 10px
    }

        .hero-cta-group .btn-xl {
            padding: 14px 22px;
            font-size: 14px
        }

    .hero-proof {
        gap: 20px;
        flex-wrap: wrap
    }

    .proof-num {
        font-size: 22px
    }

    .login-card {
        max-width: 100%
    }

    /* Grids */
    .serve-grid, .agent-grid, .feat-grid, .testi-grid {
        grid-template-columns: 1fr
    }

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

    .dest-card:first-child {
        grid-row: span 1
    }

    .hiw-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px
    }

    /* Benefit bar */
    .benefit-inner {
        grid-template-columns: 1fr 1fr
    }

    .benefit-item {
        border-bottom: 1px solid rgba(28,96,108,.12)
    }

        .benefit-item:nth-child(2) {
            border-right: none
        }

        .benefit-item:last-child, .benefit-item:nth-child(3) {
            border-bottom: none
        }

    /* Trust */
    .trust-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
        padding: 0 16px
    }

    .trust-line {
        display: none
    }

    .trust-logos {
        gap: 20px;
        justify-content: center
    }

    .trust-logo > img {
        width: 70px
    }

    /* White label & API */
    .whitelabel-inner, .api-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .wl-visual, .api-visual {
        order: -1;
        min-height: 240px
    }

    .wl-content .sec-hdr {
        text-align: center
    }

    .node-1, .node-2, .node-3, .node-4 {
        font-size: 11px
    }

    /* Calc */
    .calc-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .calc-content .sec-hdr {
        text-align: center
    }

    .calc-box {
        padding: 24px 18px
    }

    .calc-result-num {
        font-size: 30px
    }

    /* GSA */
    .gsa-inner {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .gsa-content .sec-hdr {
        text-align: center
    }

    .gsa-media img {
        height: 260px
    }

    .gsa-float-stat {
        bottom: 16px;
        right: 16px;
        padding: 12px 16px
    }

    .gfs-num {
        font-size: 22px
    }

    .gsa-float-stat2 {
        top: 14px;
        left: 14px;
        padding: 10px 14px
    }

    .gfs2-num {
        font-size: 16px
    }

    .gsa-actions {
        justify-content: center
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 16px 32px
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding: 16px
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px
    }

    /* CTA */
    .cta-sec {
        padding: 56px 0
    }

    .cta-btns {
        flex-direction: column;
        align-items: center
    }

    .cta-sec p {
        font-size: 15px;
        padding: 0 16px
    }

    /* Modals */
    .modal {
        margin: 12px
    }

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

@media(max-width:480px) {
    .dest-grid {
        grid-template-columns: 1fr
    }

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

    .benefit-inner {
        grid-template-columns: 1fr
    }

    .benefit-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(28,96,108,.12) !important
    }

        .benefit-item:last-child {
            border-bottom: none !important
        }

    .hero-proof {
        gap: 16px
    }

    .proof-num {
        font-size: 20px
    }

    .lc-reg-btns {
        grid-template-columns: 1fr
    }

    .hero-cta-group {
        flex-direction: column
    }

        .hero-cta-group .btn-xl {
            width: 100%;
            justify-content: center
        }

    .footer-bottom-links {
        flex-direction: column;
        align-items: center;
        gap: 8px
    }

    .trust-logos {
        gap: 14px
    }

    .mhide {
        display: none;
    }
}

/* SECTION COMMONS */
/*.sec{padding:88px 0}
.sec-inner{max-width:1280px;margin:0 auto;padding:0 32px}
.sec-hdr{text-align:center;max-width:660px;margin:0 auto 54px}*/
.sec-eyebrow {
    display: inline-block;
    font-family: 'Montserrat',sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-l);
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 12px;
    border: 1px solid rgba(28,96,108,.15)
}

.sec-title {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(26px,3.2vw,42px);
    font-weight: 800;
    color: var(--txt);
    line-height: 1.18;
    letter-spacing: -.02em;
    margin-bottom: 14px
}

    .sec-title span {
        color: var(--teal)
    }

.sec-sub {
    font-size: 16px;
    color: var(--txt-s);
    line-height: 1.72;
    font-weight: 400
}


/* SECTION COMMONS */
.sec {
    padding: 88px 0
}

.sec-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px
}

.sec-hdr {
    margin-bottom: 56px;
    text-align: center
}

.sec-title {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(36px,5.5vw,56px);
    font-weight: 800;
    color: var(--txt);
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-bottom: 18px
}

    .sec-title span {
        color: var(--gold-l)
    }

.sec-subtitle {
    font-size: 16px;
    color: var(--txt-m);
    line-height: 1.75;
    max-width: 720px;
    margin: 0 auto
}

@media(max-width:768px) {
    .sec {
        padding: 56px 0
    }

    .sec-inner {
        padding: 0 16px
    }

    .sec-hdr {
        margin-bottom: 36px
    }
}


/*ABOUT US PAGE CSS START HERE */
/* HERO SECTION - ENHANCED */
.hero-about {
    position: relative;
    overflow: hidden;
    min-height: 75vh;
    display: flex;
    align-items: center;
    background: linear-gradient(148deg,var(--teal-dd) 0%,var(--teal) 55%,var(--teal-d) 100%)
}

    .hero-about::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .06;
        background-image: radial-gradient(circle,#fff 1px,transparent 1px);
        background-size: 28px 28px
    }

    .hero-about::after {
        content: '';
        position: absolute;
        top: -160px;
        right: -160px;
        width: 620px;
        height: 620px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(184,148,58,.18) 0%,transparent 68%)
    }

.hero-about-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%
}

.hero-about-content {
    animation: slideInLeft .8s cubic-bezier(.22,1,.36,1) both
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px)
    }

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

.hero-about-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,148,58,.18);
    border: 1px solid rgba(184,148,58,.4);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 24px
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-l);
    animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.85)
    }
}

.eyebrow-text {
    font-family: 'Montserrat',sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-l)
}

.hero-about-title {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(44px,5.5vw,72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: 22px
}

    .hero-about-title span {
        color: var(--gold-l)
    }

.hero-about-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    max-width: 580px;
    margin-bottom: 40px;
    font-weight: 400
}

    .hero-about-subtitle strong {
        color: rgba(255,255,255,.95);
        font-weight: 700
    }

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

.hero-visual {
    position: relative;
    animation: slideInRight .8s cubic-bezier(.22,1,.36,1) both;
    animation-delay: .2s
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px)
    }

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

.hero-visual-main {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sh5);
    height: 420px
}

    .hero-visual-main img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.hero-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,rgba(28,96,108,.3) 0%,rgba(11,42,49,.5) 100%)
}

/* STATS SECTION - PREMIUM */
.stats-sec {
    background: linear-gradient(135deg,var(--teal-l),var(--teal-ll));
    position: relative;
    overflow: hidden
}

    .stats-sec::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .04;
        background-image: radial-gradient(circle,var(--teal) 1px,transparent 1px);
        background-size: 28px 28px
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 32px;
    margin-top: 48px
}

.stat-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: var(--sh1)
}

    .stat-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--sh3);
        border-color: var(--gold-l)
    }

.stat-num {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(32px,5vw,48px);
    font-weight: 800;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -.02em
}

.stat-label {
    font-family: 'Montserrat',sans-serif;
    font-size: 14px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 6px;
    letter-spacing: .01em
}

.stat-sub {
    font-size: 12px;
    color: var(--txt-s);
    font-weight: 500
}

/* STORY SECTION */
.story-sec {
    background: var(--off)
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 48px
}

.story-content h3 {
    font-family: 'Montserrat',sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--teal);
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -.01em
}

.story-content p {
    font-size: 15.5px;
    color: var(--txt-m);
    line-height: 1.85;
    margin-bottom: 20px
}

    .story-content p strong {
        color: var(--txt);
        font-weight: 700
    }

.story-highlight {
    background: var(--teal-l);
    border-left: 5px solid var(--gold-l);
    padding: 28px;
    border-radius: 12px;
    margin: 28px 0
}

    .story-highlight p {
        margin: 0;
        font-size: 15px;
        color: var(--teal-d);
        font-weight: 600;
        line-height: 1.7
    }

.story-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sh4);
    height: auto;
    background: url(https://images.unsplash.com/photo-1714572878219-d0d72a11e998?auto=format&fit=crop&w=800&q=80) center center / cover no-repeat, linear-gradient(135deg,var(--teal-l),var(--teal-ll));
}

    .story-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 70%,rgba(184,148,58,.2) 0%,transparent 70%)
    }

/* MISSION & VALUES */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
    margin-top: 48px
}

.mission-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: var(--sh1)
}

    .mission-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--sh3);
        border-color: var(--gold-l)
    }

.mission-icon {
    width: 68px;
    height: 68px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--teal-l),var(--teal-ll));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(28,96,108,.15)
}

.mission-card h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 12px;
    letter-spacing: -.01em
}

.mission-card p {
    font-size: 14.5px;
    color: var(--txt-m);
    line-height: 1.75
}

/* SERVICES SECTION - ENHANCED */
.services-sec {
    background: var(--off)
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 48px
}

.service-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--sh2);
    transition: all .3s cubic-bezier(.25,1,.5,1);
    border: 1px solid var(--border);
    height: 100%
}

    .service-card:hover {
        transform: translateY(-12px);
        box-shadow: var(--sh4);
        border-color: var(--gold-l)
    }

.service-card-visual {
    height: 200px;
    background: linear-gradient(135deg,var(--teal-l),var(--teal-ll));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    position: relative;
    overflow: hidden
}

    .service-card-visual::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 70%,rgba(184,148,58,.15) 0%,transparent 70%)
    }

.service-card-content {
    padding: 28px
}

.service-card h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 10px;
    letter-spacing: -.01em
}

.service-card p {
    font-size: 13.5px;
    color: var(--txt-m);
    line-height: 1.7;
    margin-bottom: 18px
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12.5px;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: .02em;
    transition: gap .2s
}

    .service-card-link:hover {
        gap: 10px
    }

/* GLOBAL PRESENCE */
.presence-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 48px
}

.presence-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: var(--sh1)
}

    .presence-item:hover {
        border-color: var(--gold-l);
        box-shadow: var(--sh3)
    }

.presence-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--teal-l),var(--teal-ll));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px
}

.presence-num {
    font-family: 'Montserrat',sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 6px;
    letter-spacing: -.01em
}

.presence-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--txt-m);
    letter-spacing: .02em;
    text-transform: uppercase
}

/* TECHNOLOGY SECTION */
.tech-sec {
    background: linear-gradient(135deg,var(--teal-dd),var(--teal))
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px
}

.tech-visual {
    position: relative;
    height: 400px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

    .tech-visual::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle,rgba(184,148,58,.15) 0%,transparent 70%)
    }

.tech-visual-icon {
    position: relative;
    z-index: 1;
    font-size: 100px;
    opacity: .7
}

.tech-content h3 {
    font-family: 'Montserrat',sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -.01em
}

.tech-content p {
    font-size: 15px;
    color: rgba(255,255,255,.85);
    line-height: 1.85;
    margin-bottom: 20px
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 28px
}

.tech-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(255,255,255,.9);
    font-weight: 600
}

    .tech-feature::before {
        content: 'âœ“';
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--gold-l);
        color: var(--teal-d);
        font-weight: 800;
        flex-shrink: 0;
        font-size: 14px
    }

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 32px;
    margin-top: 48px
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    box-shadow: var(--sh1);
    transition: all .3s ease
}

    .testimonial-card:hover {
        box-shadow: var(--sh3);
        border-color: var(--gold-l)
    }

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--gold-l)
}

.testimonial-text {
    font-size: 14.5px;
    color: var(--txt-m);
    line-height: 1.8;
    margin-bottom: 22px;
    font-style: italic
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid var(--border)
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--teal-l),var(--teal-ll));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-weight: 800;
    flex-shrink: 0;
    font-size: 14px
}

.testimonial-info h5 {
    font-family: 'Montserrat',sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: var(--txt);
    letter-spacing: -.01em;
    margin-bottom: 2px
}

.testimonial-info p {
    font-size: 12px;
    color: var(--txt-s)
}

/* FAQ SECTION */
.faq-sec {
    background: var(--off)
}

.accordion-group {
    margin-top: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto
}

.accordion-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .3s ease
}

    .accordion-item:hover {
        border-color: var(--gold-l);
        box-shadow: var(--sh2)
    }

.accordion-trigger {
    padding: 24px;
    font-family: 'Montserrat',sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    color: var(--txt);
    transition: color .2s
}

    .accordion-trigger:hover {
        color: var(--teal)
    }

.accordion-icon {
    font-size: 14px;
    color: var(--txt-m);
    transition: transform .3s ease
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg)
}

.accordion-body {
    padding: 0 24px 24px;
    display: none;
    font-size: 14px;
    color: var(--txt-m);
    line-height: 1.75
}

.accordion-item.active .accordion-body {
    display: block
}

/* CTA SECTION */
.cta-about {
    background: linear-gradient(148deg,var(--teal-dd) 0%,var(--teal) 55%,var(--teal-d) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

    .cta-about::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px);
        background-size: 22px 22px
    }

    .cta-about::after {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 350px;
        background: radial-gradient(ellipse,rgba(184,148,58,.2) 0%,transparent 70%)
    }

.cta-about-content {
    position: relative;
    z-index: 1
}

.cta-about h2 {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(36px,5vw,52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px
}

.cta-about p {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* ANIMATIONS & SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1)
}

    .reveal.up {
        opacity: 1;
        transform: translateY(0)
    }

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

.reveal-d4 {
    transition-delay: .4s
}

/* RESPONSIVE */
@media(max-width:1080px) {
    .hero-about-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .story-grid, .tech-grid {
        grid-template-columns: 1fr
    }

    .mission-grid, .services-grid, .presence-grid, .testimonials-grid {
        grid-template-columns: repeat(2,1fr)
    }

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

@media(max-width:768px) {
    .hero-about-inner {
        padding: 48px 16px 52px
    }

    .hero-about-title {
        font-size: clamp(34px,8.5vw,52px)
    }

    .hero-about-subtitle {
        font-size: 15px
    }

    .hero-cta-group {
        flex-direction: column
    }

        .hero-cta-group .btn {
            width: 100%
        }

    .story-grid, .tech-grid {
        gap: 36px
    }

    .mission-grid, .services-grid, .presence-grid, .testimonials-grid {
        grid-template-columns: 1fr
    }

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

    .story-visual, .tech-visual {
        height: 280px
    }

    .mission-card, .stat-card, .presence-item, .testimonial-card {
        padding: 24px
    }

    .cta-about {
        padding: 56px 0
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px
        }
}

/*CONTACT US PAGE CSS START HERE */
/* HERO SECTION */
.hero-contact {
    position: relative;
    overflow: hidden;
    min-height: 65vh;
    display: flex;
    align-items: center;
    background: linear-gradient(148deg,var(--teal-dd) 0%,var(--teal) 55%,var(--teal-d) 100%)
}

    .hero-contact::before {
        content: '';
        position: absolute;
        inset: 0;
        opacity: .06;
        background-image: radial-gradient(circle,#fff 1px,transparent 1px);
        background-size: 28px 28px
    }

    .hero-contact::after {
        content: '';
        position: absolute;
        top: -160px;
        right: -160px;
        width: 620px;
        height: 620px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(184,148,58,.18) 0%,transparent 68%)
    }

.hero-contact-inner {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    margin: 0 auto;
    padding: 72px 32px;
    text-align: center;
    width: 100%
}

.hero-contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(184,148,58,.18);
    border: 1px solid rgba(184,148,58,.4);
    border-radius: 100px;
    padding: 8px 18px;
    margin-bottom: 24px;
    justify-content: center
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-l);
    animation: pulse 1.8s ease-in-out infinite
}

@keyframes pulse {
    0%,100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.85)
    }
}

.eyebrow-text {
    font-family: 'Montserrat',sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold-l)
}

.hero-contact-title {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(44px,5.5vw,72px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -.025em;
    margin-bottom: 22px
}

    .hero-contact-title span {
        color: var(--gold-l)
    }

.hero-contact-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,.78);
    line-height: 1.8;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 400
}

/* CONTACT FORM SECTION */
.contact-form-sec {
    background: var(--off)
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 48px;
    align-items: start
}

.form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--sh2);
    border: 1px solid var(--border)
}

.form-title {
    font-family: 'Montserrat',sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.form-subtitle {
    font-size: 14px;
    color: var(--txt-m);
    margin-bottom: 32px
}

.form-group {
    margin-bottom: 24px
}

.form-label {
    display: block;
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--txt-m);
    margin-bottom: 8px
}

.form-input, .form-textarea, .form-select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: 'Montserrat',sans-serif;
    font-size: 14px;
    color: var(--txt);
    background: var(--off);
    transition: all .2s ease;
    outline: none
}

    .form-input:focus, .form-textarea:focus, .form-select:focus {
        border-color: var(--teal);
        background: var(--white);
        box-shadow: 0 0 0 3px rgba(28,96,108,.12)
    }

.form-textarea {
    resize: vertical;
    min-height: 120px
}

.form-input::placeholder {
    color: #b8c8ce
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px
}

.submit-btn {
    width: 100%;
    padding: 15px;
    font-family: 'Montserrat',sans-serif;
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: .02em;
    background: linear-gradient(135deg,var(--teal-dd),var(--teal));
    color: var(--white);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(28,96,108,.32);
    transition: all .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px
}

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(28,96,108,.4)
    }

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 28px
}

.info-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 32px 29px 32px;
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
    transition: all .3s ease
}

    .info-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--sh3);
        border-color: var(--gold-l)
    }

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(135deg,var(--teal-l),var(--teal-ll));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 24px;
    margin-bottom: 16px
}

.info-card h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.info-card p {
    font-size: 14px;
    color: var(--txt-m);
    line-height: 1.7;
    margin-bottom: 12px
}

.info-card a {
    color: var(--gold);
    font-weight: 700;
    transition: color .2s
}

    .info-card a:hover {
        color: var(--gold-l)
    }

/* OFFICE LOCATIONS */
.offices-sec {
    background: var(--white)
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 28px;
    margin-top: 48px
}

.office-card {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all .3s ease
}

    .office-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh3);
        border-color: var(--gold-l)
    }

.office-flag {
    font-size: 48px;
    margin-bottom: 16px
}

.office-card h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.office-card .region {
    font-size: 12px;
    color: var(--txt-s);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px
}

.office-card p {
    font-size: 13px;
    color: var(--txt-m);
    line-height: 1.75;
    margin-bottom: 12px
}

.office-card .phone {
    font-family: 'Montserrat',sans-serif;
    font-weight: 700;
    color: var(--teal);
    margin-bottom: 8px
}

.office-card .email {
    font-size: 12px;
    color: var(--gold)
}

/* SUPPORT CHANNELS */
.channels-sec {
    background: var(--off)
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 24px;
    margin-top: 48px
}

.channel-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
    text-align: center;
    transition: all .3s ease;
    box-shadow: var(--sh1)
}

    .channel-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--sh3);
        border-color: var(--gold-l)
    }

.channel-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg,var(--teal-l),var(--teal-ll));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 32px;
    color: var(--teal)
}

.channel-card h4 {
    font-family: 'Montserrat',sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: var(--teal);
    margin-bottom: 8px;
    letter-spacing: -.01em
}

.channel-card p {
    font-size: 13px;
    color: var(--txt-m);
    line-height: 1.7;
    margin-bottom: 16px
}

.channel-card a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Montserrat',sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--gold);
    transition: gap .2s
}

    .channel-card a:hover {
        gap: 10px
    }

/* FAQ SECTION */
.faq-sec {
    background: var(--white)
}

.accordion-group {
    margin-top: 48px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto
}

.accordion-item {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all .3s ease
}

    .accordion-item:hover {
        border-color: var(--gold-l);
        box-shadow: var(--sh2)
    }

.accordion-trigger {
    padding: 24px;
    font-family: 'Montserrat',sans-serif;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    color: var(--txt);
    transition: color .2s
}

    .accordion-trigger:hover {
        color: var(--teal)
    }

.accordion-icon {
    font-size: 14px;
    color: var(--txt-m);
    transition: transform .3s ease
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg)
}

.accordion-body {
    padding: 0 24px 24px;
    display: none;
    font-size: 14px;
    color: var(--txt-m);
    line-height: 1.75
}

.accordion-item.active .accordion-body {
    display: block
}

/* RESPONSE MESSAGE */
.form-response {
    display: none;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center
}

    .form-response.success {
        background: rgba(2,134,36,.1);
        color: #018624;
        border: 1px solid rgba(2,134,36,.3)
    }

    .form-response.error {
        background: rgba(204,46,34,.1);
        color: var(--red);
        border: 1px solid rgba(204,46,34,.3)
    }

/* CTA SECTION */
.cta-contact {
    background: linear-gradient(148deg,var(--teal-dd) 0%,var(--teal) 55%,var(--teal-d) 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

    .cta-contact::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(circle,rgba(255,255,255,.04) 1px,transparent 1px);
        background-size: 22px 22px
    }

    .cta-contact::after {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 700px;
        height: 350px;
        background: radial-gradient(ellipse,rgba(184,148,58,.2) 0%,transparent 70%)
    }

.cta-contact-content {
    position: relative;
    z-index: 1
}

.cta-contact h2 {
    font-family: 'Montserrat',sans-serif;
    font-size: clamp(36px,5vw,52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 16px
}

.cta-contact p {
    font-size: 17px;
    color: rgba(255,255,255,.75);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7
}

.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap
}

/* ANIMATIONS & SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.16,1,.3,1),transform .6s cubic-bezier(.16,1,.3,1)
}

    .reveal.up {
        opacity: 1;
        transform: translateY(0)
    }

.reveal-d1 {
    transition-delay: .1s
}

.reveal-d2 {
    transition-delay: .2s
}

.reveal-d3 {
    transition-delay: .3s
}

.reveal-d4 {
    transition-delay: .4s
}

/* RESPONSIVE */
@media(max-width:1080px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

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

@media(max-width:768px) {
    .hero-contact-inner {
        padding: 48px 16px 52px
    }

    .hero-contact-title {
        font-size: clamp(34px,8.5vw,52px)
    }

    .hero-contact-subtitle {
        font-size: 15px
    }

    .contact-grid {
        gap: 36px
    }

    .form-row {
        grid-template-columns: 1fr
    }

    .offices-grid, .channels-grid {
        grid-template-columns: 1fr
    }

    .form-container, .info-card {
        padding: 24px
    }

    .cta-contact {
        padding: 56px 0
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center
    }

        .cta-buttons .btn {
            width: 100%;
            max-width: 300px
        }
}

/* ATTRACTION PAGE */
.hero-attractions {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(18, 61, 68, 0.85), rgba(18, 61, 68, 0.95)), url('https://images.unsplash.com/photo-1533105079780-92b9be482077?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-attractions-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--teal-l);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.attraction-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.attraction-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
}

    .attraction-item p {
        font-size: 14px;
        color: var(--txt-m);
        font-weight: 500;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .attraction-list {
        grid-template-columns: 1fr;
    }
}

/* Page GSA */
.hero-gsa-page {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(18, 61, 68, 0.85), rgba(18, 61, 68, 0.95)), url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-gsa-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.gsa-perk-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.gsa-perk-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

    .gsa-perk-item:hover {
        border-color: var(--gold-l);
        transform: translateY(-3px);
        box-shadow: var(--sh2);
    }

    .gsa-perk-item p {
        font-size: 14.5px;
        color: var(--txt-m);
        font-weight: 500;
        line-height: 1.6;
    }

.feature-icon-box {
    width: 54px;
    height: 54px;
    background: var(--teal-l);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Requirements Section Styles */
.req-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--sh1);
    height: 100%;
}

    .req-card h3 {
        font-family: 'Montserrat', sans-serif;
        font-size: 22px;
        font-weight: 800;
        color: var(--teal);
        margin-bottom: 24px;
        letter-spacing: -0.01em;
    }

.req-list {
    list-style: none;
}

    .req-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 16px;
        font-size: 14.5px;
        color: var(--txt-m);
        line-height: 1.6;
    }

.req-check {
    color: var(--gold);
    font-weight: bold;
    font-size: 16px;
    margin-top: 2px;
}

@media (max-width: 768px) {
    .gsa-perk-list {
        grid-template-columns: 1fr;
    }
}

/* Page cruise */
.hero-cruises {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(18, 61, 68, 0.8), rgba(18, 61, 68, 0.9)), url('https://images.unsplash.com/photo-1548574505-5e239809ee19?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-cruises-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--teal-l);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.mission-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.mission-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
}

    .mission-item i {
        color: var(--teal);
        margin-top: 4px;
    }

    .mission-item p {
        font-size: 14px;
        color: var(--txt-m);
        font-weight: 500;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .mission-list {
        grid-template-columns: 1fr;
    }
}

/* Page DMC */
.hero-dmc {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(18, 61, 68, 0.85), rgba(18, 61, 68, 0.95)), url('https://images.unsplash.com/photo-1539635278303-d4002c07eae3?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-dmc-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--teal-l);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.dmc-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.dmc-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
}

    .dmc-item p {
        font-size: 14px;
        color: var(--txt-m);
        font-weight: 500;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .dmc-list {
        grid-template-columns: 1fr;
    }
}

/* Page Hotel */
.hero-hotels {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(18, 61, 68, 0.85), rgba(18, 61, 68, 0.95)), url('https://images.unsplash.com/photo-1566073771259-6a8506099945?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-hotels-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--teal-l);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
}

    .offer-item i {
        color: var(--teal);
        margin-top: 4px;
    }

    .offer-item p {
        font-size: 14px;
        color: var(--txt-m);
        font-weight: 500;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .offer-list {
        grid-template-columns: 1fr;
    }
}

/* Page Package */
.hero-packages {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(18, 61, 68, 0.85), rgba(18, 61, 68, 0.95)), url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-packages-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--teal-l);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.offer-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.offer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
}

    .offer-item i {
        color: var(--teal);
        margin-top: 4px;
    }

    .offer-item p {
        font-size: 14px;
        color: var(--txt-m);
        font-weight: 500;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .offer-list {
        grid-template-columns: 1fr;
    }
}

/* Page Transfer */
.hero-transfers {
    position: relative;
    padding: 120px 0 100px;
    background: linear-gradient(rgba(18, 61, 68, 0.85), rgba(18, 61, 68, 0.95)), url('https://images.unsplash.com/photo-1549399542-7e3f8b79c341?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.hero-transfers-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    background: var(--teal-l);
    color: var(--teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
}

.transfer-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.transfer-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--r);
    box-shadow: var(--sh1);
    border: 1px solid var(--border);
}

    .transfer-item p {
        font-size: 14px;
        color: var(--txt-m);
        font-weight: 500;
        line-height: 1.5;
    }

@media (max-width: 768px) {
    .transfer-list {
        grid-template-columns: 1fr;
    }
}
