    /* =============================================
   FRAISCLIM — Design System v2
   ============================================= */

    :root {
        --bg: #060c1a;
        --bg-2: #0b1225;
        --bg-3: #0f1a35;
        --bg-card: rgba(12, 20, 45, 0.7);
        --bg-glass: rgba(255, 255, 255, 0.03);

        --text: #edf2ff;
        --text-2: #7a8ab5;
        --text-3: #455278;

        --blue: #3b82f6;
        --blue-2: #60a5fa;
        --cyan: #06b6d4;
        --indigo: #6366f1;
        --green: #22c55e;

        --grad: linear-gradient(135deg, #3b82f6, #06b6d4);
        --grad-2: linear-gradient(135deg, #6366f1, #3b82f6, #06b6d4);

        --border: rgba(255, 255, 255, 0.07);
        --border-blue: rgba(59, 130, 246, 0.25);

        --r-sm: 8px;
        --r-md: 14px;
        --r-lg: 20px;
        --r-xl: 28px;

        --shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
        --shadow-glow: 0 0 50px rgba(59, 130, 246, 0.12);

        --ease: cubic-bezier(0.4, 0, 0.2, 1);
        --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

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

    html {
        scroll-behavior: smooth;
        scroll-padding-top: 80px;
    }

    body {
        font-family: 'Inter', -apple-system, sans-serif;
        background: var(--bg);
        color: var(--text);
        line-height: 1.65;
        overflow-x: hidden;
        -webkit-font-smoothing: antialiased;
    }

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

    button {
        cursor: pointer;
        border: none;
        background: none;
        font-family: inherit;
        color: inherit;
    }

    img {
        max-width: 100%;
    }

    input,
    select,
    textarea {
        font-family: inherit;
        font-size: 1rem;
    }

    em {
        font-style: normal;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    /* =========== SCROLLBAR =========== */
    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--bg-2);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--bg-3);
        border-radius: 3px;
    }

    /* =========== SECTION COMMON =========== */
    .section-wrap {
        max-width: 1160px;
        margin: 0 auto;
        padding: 100px 24px;
    }

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

    .section-tag {
        display: inline-block;
        padding: 6px 16px;
        border: 1px solid var(--border-blue);
        border-radius: 100px;
        font-size: 0.78rem;
        font-weight: 700;
        color: var(--cyan);
        letter-spacing: .08em;
        text-transform: uppercase;
        margin-bottom: 16px;
        background: rgba(6, 182, 212, 0.06);
    }

    .section-head h2 {
        font-size: clamp(2rem, 5vw, 2.8rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -.02em;
        margin-bottom: 14px;
    }

    .section-head p {
        color: var(--text-2);
        font-size: 1.05rem;
    }

    /* =========== BUTTONS =========== */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        background: var(--grad);
        border-radius: var(--r-md);
        font-size: .95rem;
        font-weight: 700;
        color: #fff;
        box-shadow: 0 4px 20px rgba(59, 130, 246, .3);
        transition: transform .2s var(--ease), box-shadow .2s var(--ease);
    }

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 32px rgba(59, 130, 246, .4);
    }

    .btn-primary:active {
        transform: none;
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 14px 28px;
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        font-size: .95rem;
        font-weight: 600;
        color: var(--text-2);
        transition: border-color .2s, color .2s;
    }

    .btn-ghost:hover {
        border-color: var(--border-blue);
        color: var(--text);
    }

    /* =========== NAVBAR =========== */
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 900;
        padding: 18px 0;
        transition: padding .3s var(--ease), background .3s;
    }

    .navbar.scrolled {
        padding: 12px 0;
        background: rgba(6, 12, 26, .88);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border);
    }

    .nav-inner {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 24px;
        display: flex;
        align-items: center;
        gap: 40px;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 1.25rem;
        font-weight: 800;
        letter-spacing: -.01em;
        flex-shrink: 0;
    }

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

    .logo-snowflake {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        background: var(--grad);
        border-radius: 10px;
        font-size: 1.1rem;
        line-height: 1;
    }

    .nav-links {
        display: flex;
        list-style: none;
        gap: 28px;
        margin-left: 8px;
    }

    .nav-links a {
        font-size: .9rem;
        font-weight: 500;
        color: var(--text-2);
        transition: color .2s;
    }

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

    .btn-reserve-nav {
        margin-left: auto;
        padding: 10px 22px;
        background: var(--grad);
        border-radius: 100px;
        font-size: .85rem;
        font-weight: 700;
        color: #fff;
        white-space: nowrap;
        transition: transform .2s, box-shadow .2s;
        box-shadow: 0 4px 16px rgba(59, 130, 246, .25);
    }

    .btn-reserve-nav:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(59, 130, 246, .35);
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
        padding: 4px;
    }

    .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--text);
        border-radius: 2px;
        transition: transform .2s, opacity .2s;
    }

    .hamburger.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    /* =========== HERO =========== */
    .hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding: 120px 0 80px;
    }

    .hero-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(90px);
        pointer-events: none;
    }

    .orb-1 {
        width: 500px;
        height: 500px;
        top: -10%;
        right: -5%;
        background: radial-gradient(circle, rgba(59, 130, 246, .25), transparent 70%);
        animation: orbFloat 18s ease-in-out infinite;
    }

    .orb-2 {
        width: 380px;
        height: 380px;
        bottom: -15%;
        left: -5%;
        background: radial-gradient(circle, rgba(6, 182, 212, .18), transparent 70%);
        animation: orbFloat 22s ease-in-out infinite reverse;
    }

    .orb-3 {
        width: 280px;
        height: 280px;
        top: 45%;
        left: 40%;
        background: radial-gradient(circle, rgba(99, 102, 241, .15), transparent 70%);
        animation: orbFloat 26s ease-in-out infinite;
    }

    @keyframes orbFloat {

        0%,
        100% {
            transform: translate(0, 0);
        }

        33% {
            transform: translate(25px, -25px);
        }

        66% {
            transform: translate(-18px, 18px);
        }
    }

    .hero-inner {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 56px;
        align-items: center;
    }

    .hero-pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 16px;
        border: 1px solid rgba(59, 130, 246, .2);
        border-radius: 100px;
        font-size: .8rem;
        font-weight: 600;
        color: var(--blue-2);
        background: rgba(59, 130, 246, .08);
        margin-bottom: 24px;
        animation: fadeUp .8s both;
    }

    .pill-dot {
        width: 7px;
        height: 7px;
        background: var(--green);
        border-radius: 50%;
        animation: pulse 2s ease infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            box-shadow: 0 0 0 0 rgba(34, 197, 94, .5);
        }

        50% {
            box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
        }
    }

    .hero-text h1 {
        font-size: clamp(2.6rem, 6vw, 4.2rem);
        font-weight: 900;
        line-height: 1.08;
        letter-spacing: -.035em;
        margin-bottom: 20px;
        animation: fadeUp .8s .1s both;
    }

    .hero-sub {
        font-size: 1.1rem;
        color: var(--text-2);
        line-height: 1.75;
        max-width: 480px;
        margin-bottom: 32px;
        animation: fadeUp .8s .2s both;
    }

    .hero-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 36px;
        animation: fadeUp .8s .3s both;
    }

    .hero-trust {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        animation: fadeUp .8s .4s both;
    }

    .trust-item {
        font-size: .83rem;
        color: var(--text-3);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .trust-item span {
        color: var(--green);
        font-weight: 700;
    }

    /* Hero AC card */
    .hero-card-wrap {
        display: flex;
        justify-content: center;
        animation: fadeUp .8s .25s both;
    }

    .hero-ac-card {
        width: 300px;
        padding: 36px 28px 28px;
        background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        text-align: center;
        box-shadow: var(--shadow), var(--shadow-glow);
        position: relative;
        overflow: hidden;
    }

    .hero-ac-glow {
        position: absolute;
        top: -40%;
        left: -40%;
        width: 180%;
        height: 180%;
        background: radial-gradient(circle at 55% 35%, rgba(59, 130, 246, .08), transparent 60%);
        pointer-events: none;
    }

    .hero-ac-emoji {
        font-size: 3rem;
        margin-bottom: 16px;
        display: block;
    }

    .hero-ac-temp {
        display: flex;
        align-items: baseline;
        justify-content: center;
        gap: 4px;
        margin-bottom: 6px;
    }

    .temp-num {
        font-size: 3.5rem;
        font-weight: 900;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
    }

    .temp-unit {
        font-size: 1.4rem;
        color: var(--text-2);
        font-weight: 600;
    }

    .hero-ac-label {
        font-size: .8rem;
        color: var(--text-3);
        margin-bottom: 20px;
    }

    .hero-ac-tags {
        display: flex;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 24px;
    }

    .hero-ac-tags span {
        padding: 5px 12px;
        border: 1px solid var(--border-blue);
        border-radius: 100px;
        font-size: .72rem;
        font-weight: 600;
        color: var(--cyan);
        background: rgba(6, 182, 212, .06);
    }

    .hero-ac-bars {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 6px;
        height: 40px;
    }

    .bar {
        border-radius: 3px;
        background: var(--grad);
        opacity: .6;
        animation: barPulse 2s ease-in-out infinite;
    }

    .bar-1 {
        width: 8px;
        height: 16px;
        animation-delay: 0s;
    }

    .bar-2 {
        width: 8px;
        height: 28px;
        animation-delay: .2s;
    }

    .bar-3 {
        width: 8px;
        height: 40px;
        animation-delay: .4s;
    }

    .bar-4 {
        width: 8px;
        height: 28px;
        animation-delay: .6s;
    }

    .bar-5 {
        width: 8px;
        height: 16px;
        animation-delay: .8s;
    }

    @keyframes barPulse {

        0%,
        100% {
            opacity: .4;
            transform: scaleY(1);
        }

        50% {
            opacity: .9;
            transform: scaleY(1.1);
        }
    }

    .hero-scroll {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        color: var(--text-3);
        font-size: .72rem;
        font-weight: 500;
    }

    .scroll-line {
        width: 1px;
        height: 40px;
        background: linear-gradient(to bottom, transparent, var(--text-3));
        animation: scrollBounce 2s ease infinite;
    }

    @keyframes scrollBounce {

        0%,
        100% {
            transform: scaleY(1);
            opacity: .5;
        }

        50% {
            transform: scaleY(1.2);
            opacity: 1;
        }
    }

    /* =========== MODELS SECTION =========== */
    .models {
        background: var(--bg-2);
        position: relative;
    }

    .models::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent, var(--border-blue), transparent);
    }

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

    .model-card {
        padding: 36px 28px 32px;
        background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        display: flex;
        flex-direction: column;
        gap: 0;
        transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
        position: relative;
        overflow: hidden;
    }

    .model-card:hover {
        transform: translateY(-6px);
        border-color: var(--border-blue);
        box-shadow: var(--shadow), var(--shadow-glow);
    }

    .model-featured {
        border-color: var(--border-blue);
        background: linear-gradient(145deg, rgba(59, 130, 246, .08), var(--bg-2));
    }

    .model-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        padding: 5px 12px;
        background: rgba(59, 130, 246, .12);
        border: 1px solid var(--border-blue);
        border-radius: 100px;
        font-size: .72rem;
        font-weight: 700;
        color: var(--blue-2);
    }

    .badge-featured {
        background: var(--grad);
        border: none;
        color: #fff;
    }

    .model-icon {
        font-size: 2.4rem;
        margin-bottom: 16px;
        display: block;
    }

    .model-card h3 {
        font-size: 1.25rem;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .model-desc {
        font-size: .88rem;
        color: var(--text-2);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .model-specs {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 28px;
        flex: 1;
    }

    .model-specs li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: .88rem;
        color: var(--text-2);
    }

    .model-specs li span {
        font-size: 1rem;
    }

    .model-price {
        display: flex;
        align-items: baseline;
        gap: 4px;
        margin-bottom: 20px;
    }

    .price-num {
        font-size: 2rem;
        font-weight: 900;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .price-unit {
        font-size: .85rem;
        color: var(--text-3);
        font-weight: 500;
    }

    .btn-model {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 12px 20px;
        border: 1px solid var(--border-blue);
        border-radius: var(--r-md);
        font-size: .9rem;
        font-weight: 700;
        color: var(--blue-2);
        transition: background .2s, color .2s;
    }

    .btn-model:hover {
        background: rgba(59, 130, 246, .12);
    }

    .btn-model-featured {
        background: var(--grad);
        border: none;
        color: #fff;
        box-shadow: 0 4px 16px rgba(59, 130, 246, .3);
    }

    .btn-model-featured:hover {
        background: var(--grad);
        opacity: .92;
    }

    /* =========== HOW IT WORKS =========== */
    .how {
        background: var(--bg);
    }

    .how-steps {
        display: flex;
        align-items: center;
        gap: 0;
    }

    .how-step {
        flex: 1;
        padding: 36px 24px;
        background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        text-align: center;
        position: relative;
        transition: transform .3s var(--ease), border-color .3s;
    }

    .how-step:hover {
        transform: translateY(-4px);
        border-color: var(--border-blue);
    }

    .how-step-num {
        position: absolute;
        top: 12px;
        right: 16px;
        font-size: 2rem;
        font-weight: 900;
        line-height: 1;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: .25;
    }

    .how-step-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .how-step h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 8px;
    }

    .how-step p {
        font-size: .85rem;
        color: var(--text-2);
        line-height: 1.6;
    }

    .how-arrow {
        font-size: 1.5rem;
        color: var(--text-3);
        padding: 0 8px;
        flex-shrink: 0;
    }

    /* =========== PERKS =========== */
    .perks {
        background: var(--bg-2);
    }

    .perks .section-wrap {
        padding: 80px 24px;
    }

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

    .perk {
        display: flex;
        align-items: flex-start;
        gap: 18px;
        padding: 28px;
        background: linear-gradient(145deg, var(--bg-3), var(--bg-2));
        border: 1px solid var(--border);
        border-radius: var(--r-lg);
        transition: border-color .2s, transform .2s;
    }

    .perk:hover {
        border-color: var(--border-blue);
        transform: translateY(-2px);
    }

    .perk-icon {
        font-size: 1.6rem;
        flex-shrink: 0;
    }

    .perk h4 {
        font-size: .95rem;
        font-weight: 700;
        margin-bottom: 6px;
    }

    .perk p {
        font-size: .85rem;
        color: var(--text-2);
        line-height: 1.6;
    }

    /* =========== ZONE =========== */
    .zone {
        background: var(--bg);
    }

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

    .zone-map-visual {
        display: flex;
        justify-content: center;
    }

    .zone-rings {
        position: relative;
        width: 280px;
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .zone-ring {
        position: absolute;
        border-radius: 50%;
        border: 1px solid rgba(59, 130, 246, .12);
        animation: ringPulse 4s ease-in-out infinite;
    }

    .ring-1 {
        width: 100px;
        height: 100px;
        background: rgba(59, 130, 246, .07);
        border-color: rgba(59, 130, 246, .3);
        animation-delay: 0s;
    }

    .ring-2 {
        width: 180px;
        height: 180px;
        animation-delay: .6s;
    }

    .ring-3 {
        width: 270px;
        height: 270px;
        animation-delay: 1.2s;
    }

    @keyframes ringPulse {

        0%,
        100% {
            opacity: .6;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.03);
        }
    }

    .zone-pin {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        z-index: 2;
        animation: pinBounce 2.5s ease-in-out infinite;
    }

    .zone-pin span {
        font-size: 2rem;
    }

    .pin-label {
        font-size: .8rem;
        font-weight: 700;
        color: var(--text-2);
    }

    @keyframes pinBounce {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    .zone-cities h4 {
        font-size: 1.1rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .cities-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 16px;
    }

    .cities-list span {
        padding: 7px 14px;
        border: 1px solid var(--border);
        border-radius: 100px;
        font-size: .82rem;
        color: var(--text-2);
        transition: border-color .2s, color .2s;
    }

    .cities-list span:hover {
        border-color: var(--border-blue);
        color: var(--text);
    }

    .zone-note {
        font-size: .82rem;
        color: var(--text-3);
        font-style: italic;
        margin-bottom: 0;
    }

    /* =========== FOOTER =========== */
    .footer {
        background: var(--bg-2);
        border-top: 1px solid var(--border);
        padding: 64px 0 0;
    }

    .footer-inner {
        max-width: 1160px;
        margin: 0 auto;
        padding: 0 24px 48px;
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
    }

    .footer-brand p {
        margin-top: 16px;
        font-size: .88rem;
        color: var(--text-2);
        max-width: 300px;
        line-height: 1.7;
    }

    .footer-links h5 {
        font-size: .8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .08em;
        color: var(--text);
        margin-bottom: 14px;
    }

    .footer-links a {
        display: block;
        font-size: .88rem;
        color: var(--text-2);
        padding: 5px 0;
        transition: color .2s, padding-left .2s;
    }

    .footer-links a:hover {
        color: var(--blue-2);
        padding-left: 4px;
    }

    .footer-bottom {
        max-width: 1160px;
        margin: 0 auto;
        padding: 20px 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid var(--border);
        font-size: .8rem;
        color: var(--text-3);
    }

    /* =========== REVEAL ANIMATION =========== */
    .reveal {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s var(--ease), transform .7s var(--ease);
    }

    .reveal.visible {
        opacity: 1;
        transform: none;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: none;
        }
    }

    /* =============================================
   BOOKING WIZARD
   ============================================= */

    .booking-overlay {
        position: fixed;
        inset: 0;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        background: rgba(6, 12, 26, .9);
        backdrop-filter: blur(12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity .35s var(--ease);
    }

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

    .booking-modal {
        width: 100%;
        max-width: 800px;
        max-height: 92vh;
        background: linear-gradient(165deg, var(--bg-3) 0%, var(--bg-2) 100%);
        border: 1px solid var(--border);
        border-radius: var(--r-xl);
        box-shadow: 0 24px 80px rgba(0, 0, 0, .6), 0 0 60px rgba(59, 130, 246, .1);
        display: flex;
        flex-direction: column;
        overflow: hidden;
        transform: scale(.94) translateY(20px);
        transition: transform .4s var(--spring);
    }

    .booking-overlay.open .booking-modal {
        transform: none;
    }

    /* Booking Header */
    .booking-header {
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 20px 28px;
        border-bottom: 1px solid var(--border);
        flex-shrink: 0;
    }

    .booking-logo {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .95rem;
        font-weight: 800;
        color: var(--blue-2);
        flex-shrink: 0;
    }

    .booking-steps-indicator {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0;
    }

    .step-ind {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
        flex-shrink: 0;
    }

    .step-dot {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 2px solid var(--border);
        background: var(--bg-3);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        transition: border-color .3s, background .3s, transform .3s var(--spring);
        filter: grayscale(1) opacity(.5);
    }

    .step-ind.active .step-dot {
        border-color: var(--blue);
        background: rgba(59, 130, 246, .15);
        filter: none;
        transform: scale(1.1);
        box-shadow: 0 0 20px rgba(59, 130, 246, .25);
    }

    .step-ind.done .step-dot {
        border-color: var(--green);
        background: rgba(34, 197, 94, .12);
        filter: none;
    }

    .step-ind.done .step-dot::after {
        content: '✓';
        position: absolute;
        font-size: .9rem;
        color: var(--green);
    }

    .step-ind.done .step-dot span {
        display: none;
    }

    .step-ind-label {
        font-size: .68rem;
        font-weight: 600;
        color: var(--text-3);
        white-space: nowrap;
        transition: color .3s;
    }

    .step-ind.active .step-ind-label {
        color: var(--blue-2);
    }

    .step-ind.done .step-ind-label {
        color: var(--green);
    }

/* =========== NEW: AC IMAGES STYLING =========== */
.hero-ac-img {
    width: 240px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 30px rgba(59,130,246,0.2));
}

.model-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.model-img-box img {
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
    transition: transform 0.5s var(--ease);
}

.model-card:hover .model-img-box img {
    transform: scale(1.08) translateY(-10px);
}

.b-model-img {
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--r-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.b-model-img img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

/* =========== NEW: REVIEWS SECTION =========== */
.reviews { background: var(--bg); }

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

.review-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-stars {
    color: #fbbf24;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.6;
    font-style: italic;
    flex: 1;
}

.review-author {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
}

.review-author span {
    font-size: 0.8rem;
    color: var(--text-3);
}

/* =========== NEW: FAQ SECTION =========== */
.faq { background: var(--bg-2); }

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: border-color .3s, background .3s;
}

.faq-item:hover {
    border-color: var(--border-blue);
}

.faq-item.active {
    border-color: var(--blue);
    background: rgba(59, 130, 246, 0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: left;
    transition: color .3s;
}

.faq-item:hover .faq-question {
    color: var(--blue-2);
}

.faq-question svg {
    color: var(--blue-2);
    flex-shrink: 0;
    transition: transform .3s var(--ease);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease), padding .4s var(--ease);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 24px 24px;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-2);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .reviews-grid { grid-template-columns: 1fr; }
}

    .step-line {
        flex: 1;
        height: 1px;
        background: var(--border);
        min-width: 24px;
        max-width: 60px;
        margin-bottom: 22px;
        transition: background .3s;
    }

    .step-line.done {
        background: var(--green);
        opacity: .4;
    }

    .booking-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        color: var(--text-2);
        background: var(--bg-glass);
        border: 1px solid var(--border);
        transition: background .2s, color .2s;
        flex-shrink: 0;
    }

    .booking-close:hover {
        background: rgba(255, 255, 255, .07);
        color: var(--text);
    }

    /* Booking Body */
    .booking-body {
        flex: 1;
        overflow-y: auto;
        overscroll-behavior: contain;
        position: relative;
    }

    .booking-step {
        padding: 32px 36px;
        animation: fadeUp .35s both;
    }

    .booking-step.hidden {
        display: none;
    }

    .step-content {
        max-width: 680px;
        margin: 0 auto;
    }

    .step-content-center {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    .step-title-area {
        margin-bottom: 32px;
    }

    .step-title-area h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
        font-weight: 800;
        letter-spacing: -.02em;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .step-title-area p {
        color: var(--text-2);
        font-size: .95rem;
    }

    /* ---- Step 1: Models ---- */
    .b-models-grid {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }

    .b-model-card {
        display: flex;
        align-items: center;
        gap: 18px;
        padding: 20px 22px;
        border: 2px solid var(--border);
        border-radius: var(--r-lg);
        cursor: pointer;
        transition: border-color .25s, background .25s, transform .2s;
        position: relative;
        overflow: hidden;
    }

    .b-model-card:hover {
        border-color: var(--border-blue);
        background: rgba(59, 130, 246, .04);
        transform: translateY(-1px);
    }

    .b-model-card.selected {
        border-color: var(--blue);
        background: rgba(59, 130, 246, .08);
    }

    .b-popular-badge {
        position: absolute;
        top: 0;
        right: 0;
        padding: 5px 14px;
        background: var(--grad);
        font-size: .7rem;
        font-weight: 700;
        color: #fff;
        border-bottom-left-radius: var(--r-md);
    }

    .b-model-icon {
        font-size: 1.8rem;
        flex-shrink: 0;
    }

    .b-model-info {
        flex: 1;
    }

    .b-model-info h4 {
        font-size: 1rem;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .b-model-info p {
        font-size: .83rem;
        color: var(--text-2);
        margin-bottom: 4px;
    }

    .b-model-info ul {
        list-style: none;
    }

    .b-model-info ul li {
        font-size: .78rem;
        color: var(--text-3);
    }

    .b-model-price {
        flex-shrink: 0;
        text-align: right;
    }

    .b-model-price span {
        display: block;
        font-size: 1.3rem;
        font-weight: 900;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .b-model-price em {
        font-size: .75rem;
        color: var(--text-3);
        font-style: normal;
    }

    .b-model-check {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 2px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .9rem;
        color: transparent;
        flex-shrink: 0;
        transition: border-color .2s, background .2s, color .2s;
    }

    .b-model-card.selected .b-model-check {
        border-color: var(--blue);
        background: var(--blue);
        color: #fff;
    }

    /* ---- Step 2: Dates ---- */
    .date-picker-area {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    .options-area {
        display: flex;
        flex-direction: column;
        margin-top: 8px;
    }

    .checkbox-label {
        display: flex;
        align-items: flex-start;
        gap: 14px;
        padding: 16px 20px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        cursor: pointer;
        transition: border-color .2s, background .2s;
    }

    .checkbox-label:hover {
        border-color: var(--border-blue);
        background: rgba(59, 130, 246, .04);
    }

    .checkbox-label input {
        display: none;
    }

    .checkbox-custom {
        width: 22px;
        height: 22px;
        border: 2px solid var(--text-3);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        margin-top: 2px;
        transition: border-color .2s, background .2s;
    }

    .checkbox-label input:checked + .checkbox-custom {
        background: var(--blue);
        border-color: var(--blue);
    }

    .checkbox-label input:checked + .checkbox-custom::after {
        content: '✓';
        color: #fff;
        font-size: 14px;
        font-weight: bold;
    }

    .checkbox-text strong {
        display: block;
        font-size: .95rem;
        color: var(--text);
        margin-bottom: 4px;
    }

    .checkbox-text p {
        font-size: .82rem;
        color: var(--text-2);
        line-height: 1.4;
    }


    .date-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .date-field label {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: .82rem;
        font-weight: 700;
        color: var(--text-2);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .date-field input[type="date"] {
        padding: 14px 18px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        color: var(--text);
        outline: none;
        transition: border-color .2s;
        color-scheme: dark;
    }

    .date-field input[type="date"]:focus {
        border-color: var(--blue);
    }

    .duration-pickers {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .duration-picker-group {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .duration-picker-group label {
        font-size: .82rem;
        font-weight: 700;
        color: var(--text-2);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .big-stepper {
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, .03);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        overflow: hidden;
    }

    .big-step-btn {
        width: 52px;
        height: 58px;
        font-size: 1.4rem;
        font-weight: 600;
        color: var(--text-2);
        transition: background .15s, color .15s;
    }

    .big-step-btn:hover:not(:disabled) {
        background: rgba(59, 130, 246, .12);
        color: var(--blue-2);
    }

    .big-step-btn:disabled,
    .big-step-btn[data-disabled="true"] {
        opacity: .25;
        cursor: not-allowed;
    }

    .big-step-display {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
    }

    .big-step-display span {
        font-size: 1.6rem;
        font-weight: 900;
        color: var(--text);
    }

    .big-step-display em {
        font-size: .7rem;
        color: var(--text-3);
        font-style: normal;
    }

    .picker-note {
        font-size: .78rem;
        color: var(--text-3);
    }

    .date-summary-box {
        padding: 22px 24px;
        background: rgba(59, 130, 246, .05);
        border: 1px solid var(--border-blue);
        border-radius: var(--r-lg);
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .dsb-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dsb-row span:first-child {
        font-size: .88rem;
        color: var(--text-2);
    }

    .dsb-row span:last-child {
        font-size: .9rem;
        font-weight: 600;
        color: var(--text);
    }

    .dsb-divider {
        height: 1px;
        background: var(--border);
    }



    .dsb-total span:first-child {
        font-size: 1rem;
        font-weight: 700;
        color: var(--text);
    }

    .dsb-total span:last-child {
        font-size: 1.4rem;
        font-weight: 900;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .dsb-duration {
        font-size: .78rem;
        color: var(--text-3);
        text-align: center;
    }

    .dsb-dates span:first-child {
        font-size: .82rem;
        color: var(--text-3);
    }

    .dsb-dates span:last-child {
        font-size: .85rem;
        color: var(--text-2);
        font-weight: 600;
    }

    /* ---- Step 3: Info ---- */
    .info-form {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

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

    .form-field {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 16px;
    }

    .form-field label {
        font-size: .78rem;
        font-weight: 700;
        color: var(--text-2);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .form-field input,
    .form-field textarea {
        padding: 13px 16px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        color: var(--text);
        outline: none;
        transition: border-color .2s, box-shadow .2s;
    }

    .form-field input::placeholder,
    .form-field textarea::placeholder {
        color: var(--text-3);
    }

    .form-field input:focus,
    .form-field textarea:focus {
        border-color: var(--blue);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, .12);
    }

    .form-field.error input,
    .form-field.error textarea {
        border-color: #ef4444;
    }

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

    .field-error {
        font-size: .75rem;
        color: #ef4444;
        min-height: 16px;
    }

    /* ---- Step 4: Payment ---- */
    .payment-area {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .order-recap {
        padding: 22px 24px;
        background: rgba(59, 130, 246, .05);
        border: 1px solid var(--border-blue);
        border-radius: var(--r-lg);
    }

    .order-recap h4 {
        font-size: .88rem;
        font-weight: 700;
        color: var(--text-2);
        text-transform: uppercase;
        letter-spacing: .06em;
        margin-bottom: 14px;
    }

    .recap-rows {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 14px;
    }

    .recap-row {
        display: flex;
        justify-content: space-between;
        font-size: .88rem;
    }

    .recap-row span:first-child {
        color: var(--text-2);
    }

    .recap-row span:last-child {
        color: var(--text);
        font-weight: 600;
    }

    .recap-total {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .recap-total span:first-child {
        font-size: 1rem;
        font-weight: 700;
    }

    .recap-total span:last-child {
        font-size: 1.4rem;
        font-weight: 900;
        background: var(--grad);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .recap-caution {
        margin-top: 12px;
        padding: 10px 14px;
        background: rgba(34, 197, 94, .06);
        border: 1px solid rgba(34, 197, 94, .15);
        border-radius: var(--r-sm);
        font-size: .78rem;
        color: var(--text-2);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .stripe-form-area {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .stripe-field {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }

    .stripe-field label {
        font-size: .78rem;
        font-weight: 700;
        color: var(--text-2);
        text-transform: uppercase;
        letter-spacing: .06em;
    }

    .stripe-field input {
        padding: 13px 16px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        color: var(--text);
        outline: none;
        transition: border-color .2s;
    }

    .stripe-field input:focus {
        border-color: var(--blue);
    }

    .stripe-field input::placeholder {
        color: var(--text-3);
    }

    .stripe-element-wrap {
        padding: 14px 16px;
        background: rgba(255, 255, 255, .03);
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        transition: border-color .2s;
        min-height: 46px;
    }

    .stripe-element-wrap.focused {
        border-color: var(--blue);
    }

    .stripe-error {
        font-size: .82rem;
        color: #ef4444;
        min-height: 20px;
    }

    .stripe-secure-note {
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: .78rem;
        color: var(--text-3);
    }

    .stripe-secure-note strong {
        color: var(--text-2);
    }

    /* ---- Step 5: Success ---- */
    .success-anim {
        margin-bottom: 24px;
    }

    .success-circle {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        animation: successPop .5s var(--spring) both;
        box-shadow: 0 0 40px rgba(59, 130, 246, .35);
    }

    @keyframes successPop {
        from {
            transform: scale(0);
            opacity: 0;
        }

        to {
            transform: scale(1);
            opacity: 1;
        }
    }

    .step-content-center h2 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 12px;
    }

    .success-msg {
        font-size: .95rem;
        color: var(--text-2);
        max-width: 480px;
        line-height: 1.7;
    }

    .success-details {
        margin-top: 20px;
        padding: 20px 24px;
        background: rgba(59, 130, 246, .06);
        border: 1px solid var(--border-blue);
        border-radius: var(--r-lg);
        text-align: left;
        font-size: .88rem;
        color: var(--text-2);
        line-height: 1.8;
        max-width: 400px;
        width: 100%;
    }

    /* Booking Footer */
    .booking-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 28px;
        border-top: 1px solid var(--border);
        flex-shrink: 0;
        background: rgba(6, 12, 26, .4);
    }

    .btn-back {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 10px 20px;
        border: 1px solid var(--border);
        border-radius: var(--r-md);
        font-size: .88rem;
        font-weight: 600;
        color: var(--text-2);
        transition: background .2s, color .2s, border-color .2s;
    }

    .btn-back:hover {
        background: rgba(255, 255, 255, .05);
        color: var(--text);
        border-color: var(--border-blue);
    }

    .footer-step-info {
        font-size: .8rem;
        color: var(--text-3);
        font-weight: 500;
    }

    .btn-next {
        display: flex;
        align-items: center;
        gap: 6px;
        padding: 12px 26px;
        background: var(--grad);
        border-radius: var(--r-md);
        font-size: .9rem;
        font-weight: 700;
        color: #fff;
        box-shadow: 0 4px 16px rgba(59, 130, 246, .25);
        transition: transform .2s, box-shadow .2s, opacity .2s;
    }

    .btn-next:hover:not(:disabled) {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(59, 130, 246, .35);
    }

    .btn-next:disabled {
        opacity: .35;
        cursor: not-allowed;
        transform: none;
    }

    .btn-next.loading {
        pointer-events: none;
    }

    /* ================================================
   RESPONSIVE
   =============================================== */
    @media (max-width: 900px) {
        .hero-inner {
            grid-template-columns: 1fr;
            text-align: center;
            gap: 40px;
        }

        .hero-sub {
            max-width: 100%;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-trust {
            justify-content: center;
        }

        .hero-card-wrap {
            display: none;
        }

        .models-grid {
            grid-template-columns: 1fr;
            max-width: 480px;
            margin: 0 auto;
        }

        .how-steps {
            flex-direction: column;
            gap: 16px;
            max-width: 400px;
            margin: 0 auto;
        }

        .how-arrow {
            transform: rotate(90deg);
        }

        .perks-grid {
            grid-template-columns: 1fr;
        }

        .zone-inner {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .zone-cities {
            text-align: left;
        }

        .footer-inner {
            grid-template-columns: 1fr;
            gap: 32px;
        }

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

    @media (max-width: 768px) {
        .nav-links {
            display: none;
        }

        .nav-links.open {
            display: flex;
            flex-direction: column;
            position: fixed;
            inset: 0;
            background: rgba(6, 12, 26, .97);
            backdrop-filter: blur(20px);
            justify-content: center;
            align-items: center;
            gap: 28px;
            z-index: 999;
        }

        .nav-links.open a {
            font-size: 1.2rem;
        }

        .hamburger {
            display: flex;
        }

        .btn-reserve-nav {
            display: none;
        }

        .booking-modal {
            max-height: 100vh;
            border-radius: var(--r-lg) var(--r-lg) 0 0;
            align-self: flex-end;
        }

        .booking-overlay {
            align-items: flex-end;
            padding: 0;
        }

        .booking-step {
            padding: 24px 20px;
        }

        .duration-pickers {
            grid-template-columns: 1fr;
        }

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

        .booking-steps-indicator {
            gap: 2px;
        }

        .step-ind-label {
            display: none;
        }

        .step-dot {
            width: 34px;
            height: 34px;
        }
    }

    @media (max-width: 480px) {
        .hero-text h1 {
            font-size: 2.2rem;
        }

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

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

        .booking-header {
            padding: 14px 16px;
            gap: 10px;
        }

        .booking-footer {
            padding: 14px 16px;
        }

        .booking-logo {
            display: none;
        }

        .btn-next {
            padding: 11px 18px;
            font-size: .85rem;
        }
    }