@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
    --ink: #14202B;
    --ink-70: #14202Bb3;
    --paper: #F4F7F8;
    --paper-2: #E9EEF0;
    --glass: #2E6E95;
    --glass-deep: #1E4A66;
    --glass-light: #8FC1DE;
    --amber: #E2A33B;
    --amber-deep: #C7862048;
    --amber-solid: #C68626;
    --slate: #5B6B79;
    --line: #D7DEE3;
    --line-dark: #2A3C4A;
    --ok: #3F7D58;
    --f-display: 'Space Grotesk', sans-serif;
    --f-body: 'Manrope', sans-serif;
    --f-mono: 'JetBrains Mono', monospace;
    --radius: 4px;
    --radius-lg: 10px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--f-body);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

h1, h2, h3, h4 {
    font-family: var(--f-display);
    margin: 0;
    line-height: 1.12;
    letter-spacing: -0.01em;
}

p {
    margin: 0;
}

:focus-visible {
    outline: 2.5px solid var(--amber);
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

.wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--f-mono);
    font-size: 12.5px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--glass-deep);
    margin-bottom: 10px;
}

    .eyebrow::before {
        content: "";
        width: 18px;
        height: 1px;
        background: var(--amber-solid);
    }

/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244,247,248,0.92);
    backdrop-filter: blur(10px) saturate(1.1);
    border-bottom: 1px solid var(--line);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--ink);
}

    .logo .logo-mark {
        width: 70px;
        height: 70px;
        object-fit: contain;
        display: block;
        flex-shrink: 0;
    }

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0 16px;
}

    .main-nav a {
        font-size: 14.5px;
        font-weight: 600;
        padding: 9px 16px;
        border-radius: var(--radius);
        color: var(--slate);
        transition: color .15s ease, background .15s ease;
        white-space: nowrap;
    }

        .main-nav a:hover {
            color: var(--ink);
            background: var(--paper-2);
        }

        .main-nav a.active {
            color: var(--glass-deep);
            background: var(--paper-2);
        }

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.tel-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    transition: color .15s ease;
}

    .tel-link svg {
        width: 22px;
        height: 22px;
        flex-shrink: 0;
    }

    .tel-link:hover {
        color: var(--glass-deep);
    }

.header-actions .btn {
    font-size: 15px;
    padding: 10px 20px;
    min-height: 44px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 14.5px;
    border: 1.5px solid transparent;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
    white-space: nowrap;
    min-height: 48px;
    min-width: 48px;
}

    .btn:hover {
        transform: translateY(-1px);
    }

.btn-amber {
    background: var(--amber-solid);
    color: #201302;
}

    .btn-amber:hover {
        background: #d6931f;
    }

.btn-ghost-dark {
    border-color: var(--ink);
    color: var(--ink);
    background: transparent;
}

    .btn-ghost-dark:hover {
        background: var(--ink);
        color: var(--paper);
    }

.btn-ghost-light {
    border-color: rgba(244,247,248,0.35);
    color: var(--paper);
}

    .btn-ghost-light:hover {
        background: rgba(244,247,248,0.12);
        border-color: var(--paper);
    }

.btn-block {
    width: 100%;
}

.btn[disabled] {
    opacity: .5;
    cursor: not-allowed;
    transform: none !important;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    border-radius: var(--radius);
}

    .nav-toggle svg {
        width: 24px;
        height: 24px;
    }

    .nav-toggle:hover {
        background: var(--paper-2);
    }

/* ===== HERO ===== */
.hero {
    background: var(--ink);
    color: var(--paper);
    position: relative;
    overflow: hidden;
    padding: 50px 0 60px;
}

@media (min-width: 769px) {
    .hero {
        background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
    }

        .hero::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(rgba(143,193,222,0.07) 1px, transparent 1px), linear-gradient(90deg, rgba(143,193,222,0.07) 1px, transparent 1px);
            background-size: 46px 46px;
            mask-image: radial-gradient(ellipse 80% 60% at 30% 20%, black 30%, transparent 75%);
            pointer-events: none;
            z-index: 0;
        }

        .hero .hero-video-bg {
            display: none !important;
        }

        .hero .hero-grid {
            position: relative;
            z-index: 1;
        }

        .hero .hero-art {
            display: block;
        }

        .hero .hero-video-card {
            display: block;
            aspect-ratio: 16 / 9;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }

            .hero .hero-video-card video {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
            }
}

@media (max-width: 768px) {
    .hero {
        background: var(--ink);
        padding: 32px 0 44px;
    }

        .hero .hero-video-bg {
            display: block !important;
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

            .hero .hero-video-bg video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }

        .hero .hero-video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(20,32,43,0.7);
            z-index: 1;
        }

        .hero .hero-grid {
            position: relative;
            z-index: 2;
        }

        .hero .hero-art {
            display: none !important;
        }

        .hero .hero-video-card {
            display: none !important;
        }
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(32px, 4.6vw, 52px);
    font-weight: 700;
    color: #fff;
    max-width: 15ch;
}

    .hero h1 .highlight {
        background: linear-gradient(135deg, #8FC1DE, #E2A33B);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero p.lead {
    margin-top: 20px;
    font-size: 17px;
    color: rgba(244,247,248,0.85);
    max-width: 46ch;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-meta {
    display: flex;
    gap: 22px;
    margin-top: 38px;
    flex-wrap: wrap;
}

    .hero-meta div {
        font-family: var(--f-mono);
        font-size: 12px;
        color: rgba(244,247,248,0.55);
    }

    .hero-meta strong {
        display: block;
        font-family: var(--f-display);
        font-size: 20px;
        color: #fff;
        font-weight: 700;
    }

.hero-art {
    position: relative;
}

.hero-video {
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

    .hero-video-bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,32,43,0.6);
    z-index: 1;
}

.hero-video .hero-grid,
.hero-video .page-hero-grid {
    position: relative;
    z-index: 2;
}

.hero-video-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

    .hero-video-card video {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

/* ===== PAGE HERO ===== */
.page-hero {
    color: #fff;
    padding: 48px 0 56px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 769px) {
    .page-hero {
        background: linear-gradient(135deg, #0a1628 0%, #1a2a4a 50%, #0d1f3c 100%);
    }

        .page-hero .hero-video-bg {
            display: none !important;
        }

        .page-hero .page-hero-img {
            display: block;
            aspect-ratio: 16 / 9;
        }

            .page-hero .page-hero-img video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                border-radius: var(--radius-lg);
                box-shadow: 0 12px 40px rgba(0,0,0,0.35);
                display: block;
            }
}

@media (max-width: 768px) {
    .page-hero {
        background: var(--ink);
        padding: 30px 0 40px;
    }

        .page-hero .hero-video-bg {
            display: block !important;
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
        }

            .page-hero .hero-video-bg video {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center center;
            }

        .page-hero .hero-video-overlay {
            position: absolute;
            inset: 0;
            background: rgba(20,32,43,0.7);
            z-index: 1;
        }

        .page-hero .page-hero-grid {
            position: relative;
            z-index: 2;
        }

        .page-hero .page-hero-img {
            display: none !important;
        }
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(143,193,222,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(143,193,222,0.06) 1px, transparent 1px);
    background-size: 46px 46px;
    mask-image: radial-gradient(ellipse 70% 100% at 90% 0%, black 20%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.breadcrumb {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 12px;
    color: rgba(244,247,248,0.5);
    margin-bottom: 16px;
    z-index: 1;
}

    .breadcrumb a:hover {
        color: #fff;
    }

.page-hero h1 {
    position: relative;
    font-size: clamp(28px, 4vw, 42px);
    max-width: 20ch;
    z-index: 1;
}

.page-hero p {
    position: relative;
    margin-top: 14px;
    font-size: 16px;
    color: rgba(244,247,248,0.68);
    max-width: 52ch;
    z-index: 1;
}

.page-hero-split .page-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 36px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.page-hero-img video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
    display: block;
    object-fit: cover;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.trust-row {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 16px;
    border-left: 1px solid var(--line);
}

    .trust-item:first-child {
        border-left: none;
    }

    .trust-item svg {
        width: 22px;
        height: 22px;
        color: var(--glass);
    }

    .trust-item span {
        font-size: 12.5px;
        font-weight: 600;
        color: var(--ink);
        line-height: 1.35;
    }

/* ===== SECTIONS ===== */
section {
    padding: 60px 0;
    overflow-x: hidden;
}

    section.section-2 + section,
    section + section.section-2 {
        padding-top: 20px;
    }

.section-tight {
    padding: 40px 0;
}

.section-head {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 42px;
}

    .section-head .eyebrow {
        margin-bottom: 4px;
    }

    .section-head h2 {
        font-size: clamp(26px, 3vw, 36px);
        max-width: 18ch;
        color: var(--glass-deep);
    }

    .section-head p {
        color: var(--slate);
        max-width: 38ch;
        font-size: 15.5px;
        margin-top: 4px;
    }

.section-2 {
    background: var(--paper-2);
}

/* ===== PROFILE GRID ===== */
.profile-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 16px;
    scroll-padding: 0 50%;
}

    .profile-grid::-webkit-scrollbar {
        display: none;
    }

    .profile-grid .profile-card {
        flex: 0 0 calc((100% - 3*20px) / 4);
        min-width: 0;
        scroll-snap-align: center;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

@media (max-width: 980px) {
    .profile-grid .profile-card {
        flex: 0 0 calc((100% - 2*20px) / 3);
    }
}

@media (max-width: 760px) {
    .profile-grid .profile-card {
        flex: 0 0 85%;
    }
}

.profile-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px 20px 20px;
    position: relative;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    cursor: pointer;
}

    .profile-card:hover {
        border-color: var(--glass-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(20,32,43,0.08);
    }

    .profile-card .class-tag {
        font-family: var(--f-mono);
        font-size: 11px;
        letter-spacing: .05em;
        color: var(--glass-deep);
        background: var(--paper-2);
        padding: 4px 9px;
        border-radius: 100px;
        display: inline-block;
        margin-bottom: 14px;
    }

    .profile-card h3 {
        font-size: 20px;
        margin-bottom: 4px;
    }

    .profile-card .profile-sub {
        font-size: 12.5px;
        color: var(--slate);
        margin-bottom: 16px;
    }

.profile-img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    border-radius: var(--radius);
    margin-bottom: 16px;
    background: var(--paper-2);
}

.profile-specs {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

    .profile-specs div {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        font-size: 12.5px;
        color: var(--slate);
        border-bottom: 1px dashed var(--line);
        padding-bottom: 6px;
    }

    .profile-specs strong {
        font-family: var(--f-mono);
        color: var(--ink);
        font-weight: 600;
    }

.profile-card .card-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--glass-deep);
    display: flex;
    align-items: center;
    gap: 6px;
}

    .profile-card .card-link svg {
        width: 13px;
        height: 13px;
        transition: transform .15s ease;
    }

.profile-card:hover .card-link svg {
    transform: translateX(3px);
}

/* ===== TYPE GRID ===== */
.type-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 4px 0 16px;
    scroll-padding: 0 50%;
}

    .type-grid::-webkit-scrollbar {
        display: none;
    }

    .type-grid .type-card {
        flex: 0 0 calc((100% - 1*20px) / 2);
        min-width: 0;
        scroll-snap-align: center;
        transition: transform 0.2s ease, border-color 0.2s ease;
    }

@media (max-width: 760px) {
    .type-grid .type-card {
        flex: 0 0 85%;
        grid-template-columns: 70px 1fr;
        gap: 14px;
        padding: 16px;
    }

        .type-grid .type-card svg {
            height: 65px;
            max-width: 70px;
        }
}

.type-card {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 20px;
    align-items: center;
}

    .type-card svg {
        width: 100%;
        height: 90px;
        color: var(--glass);
    }

    .type-card h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .type-card p {
        font-size: 13.5px;
        color: var(--slate);
    }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--ink);
    color: rgba(244,247,248,0.6);
    padding: 52px 0 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
    gap: 32px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line-dark);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 12px;
    }

    .footer-col:first-child {
        grid-column: 1 / -1;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        grid-column: span 1;
    }

    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: var(--f-mono);
    font-weight: 500;
    margin-bottom: 16px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    font-size: 14px;
    transition: color .15s ease;
}

    .footer-col a:hover {
        color: #fff;
    }

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

    .footer-logo img {
        width: 46px;
        height: 46px;
        object-fit: contain;
    }

    .footer-logo span {
        font-family: var(--f-display);
        font-weight: 700;
        color: #fff;
        font-size: 18px;
        display: block;
    }

.footer-col p {
    font-size: 13.5px;
    max-width: 32ch;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--line-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color .2s;
    }

        .footer-social a:hover {
            border-color: var(--glass-light);
        }

    .footer-social svg {
        width: 16px;
        height: 16px;
    }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12.5px;
    flex-wrap: wrap;
    gap: 10px;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20,32,43,0.55);
    backdrop-filter: blur(3px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

    .modal-overlay.open {
        display: flex;
    }

.modal-box {
    background: #fff;
    border-radius: var(--radius-lg);
    max-width: 420px;
    width: 100%;
    padding: 28px 24px;
    position: relative;
    margin: 10px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border: none;
    background: var(--paper-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate);
}

.modal-box h3 {
    font-size: 20px;
    margin-bottom: 6px;
    padding-right: 20px;
}

.modal-box > p {
    font-size: 14px;
    color: var(--slate);
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px;
}

    .form-row label {
        font-size: 12.5px;
        font-weight: 700;
        color: var(--ink);
    }

    .form-row input,
    .form-row textarea,
    .form-row select {
        border: 1.5px solid var(--line);
        border-radius: var(--radius);
        padding: 12px 14px;
        font-family: var(--f-body);
        font-size: 15px;
        background: var(--paper);
        color: var(--ink);
        transition: border-color .15s ease;
        min-height: 48px;
        width: 100%;
    }

        .form-row input:focus,
        .form-row textarea:focus,
        .form-row select:focus {
            border-color: var(--glass);
            outline: none;
        }

.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    background: #F0F7F2;
    border: 1px solid #CFE6D8;
    color: var(--ok);
    border-radius: var(--radius);
    padding: 14px 16px;
    font-size: 13.8px;
    font-weight: 600;
}

    .form-success.show {
        display: flex;
    }

    .form-success svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

.form-note {
    font-size: 12px;
    color: var(--slate);
    margin-top: 14px;
    text-align: center;
}

.mt-16 {
    margin-top: 16px;
}

.mt-24 {
    margin-top: 24px;
}

/* ===== CAROUSEL ===== */
.carousel-prev,
.carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.95);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    font-size: 26px;
    color: var(--ink);
    cursor: pointer;
    z-index: 20;
    transition: background .2s, transform .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

    .carousel-prev:hover,
    .carousel-next:hover {
        background: #fff;
        transform: translateY(-50%) scale(1.05);
    }

.carousel-prev {
    left: -10px;
}

.carousel-next {
    right: -10px;
}

.carousel-indicator {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    font-family: var(--f-mono);
    font-size: 13px;
    color: var(--slate);
}

    .carousel-indicator .dots {
        display: flex;
        gap: 6px;
    }

    .carousel-indicator .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--line);
        transition: background .3s ease, transform .3s ease;
        cursor: pointer;
    }

        .carousel-indicator .dot.active {
            background: var(--amber-solid);
            transform: scale(1.3);
        }

    .carousel-indicator .counter {
        font-weight: 600;
        color: var(--ink);
        min-width: 60px;
        text-align: center;
    }

/* ===== MAP ===== */
.map-container {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
}

.map-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.map-btn {
    flex: 1 0 auto;
    min-width: 90px;
}

    .map-btn.active {
        background: var(--amber-solid);
        color: #201302;
        border-color: var(--amber-solid);
    }

        .map-btn.active:hover {
            background: #d6931f;
        }

.map-info-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 28px;
    align-items: start;
}

.map-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 2px;
}

.map-detail-item {
    font-size: 14.5px;
    color: var(--ink);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

    .map-detail-item .map-detail-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
        margin-top: 1px;
        color: var(--amber-solid);
    }

    .map-detail-item strong {
        display: block;
        font-family: var(--f-display);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .04em;
        color: var(--slate);
        margin-bottom: 3px;
    }

.map-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}

    .map-iframe-wrap iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

/* ===== LANGUAGE SWITCH ===== */
.lang-switch {
    position: relative;
    display: inline-flex;
    align-items: center;
    background: var(--paper-2);
    border-radius: 100px;
    padding: 3px;
    cursor: pointer;
    user-select: none;
    height: 36px;
    min-width: 72px;
    border: 1px solid var(--line);
    transition: border-color 0.2s;
}

    .lang-switch:hover {
        border-color: var(--glass-light);
    }

.lang-option {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--slate);
    padding: 4px 6px;
    transition: color 0.25s ease;
    cursor: pointer;
    letter-spacing: 0.04em;
}

    .lang-option.active {
        color: #fff;
    }

.lang-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(50% - 3px);
    height: calc(100% - 6px);
    background: var(--amber-solid);
    border-radius: 100px;
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1;
    box-shadow: 0 2px 8px rgba(198, 134, 38, 0.25);
}

.lang-switch[data-lang="ru"] .lang-slider {
    transform: translateX(calc(100% + 0px));
}

.lang-switch[data-lang="ro"] .lang-slider {
    transform: translateX(0);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 769px) {
    .profile-grid,
    .type-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        overflow: visible !important;
        scroll-snap-type: none !important;
        padding: 0 !important;
        flex-wrap: wrap !important;
    }

        .profile-grid .profile-card,
        .type-grid .type-card {
            flex: 0 0 auto !important;
            scroll-snap-align: none !important;
            width: auto !important;
            min-width: 0 !important;
            transform: none !important;
            border-color: var(--line) !important;
            opacity: 1 !important;
        }

            .profile-grid .profile-card.active,
            .type-grid .type-card.active {
                border-color: var(--line) !important;
                box-shadow: none !important;
                transform: none !important;
                opacity: 1 !important;
            }

        .profile-grid .carousel-prev,
        .profile-grid .carousel-next,
        .profile-grid .carousel-indicator,
        .type-grid .carousel-prev,
        .type-grid .carousel-next,
        .type-grid .carousel-indicator {
            display: none !important;
        }
}

@media (max-width:980px) {
    .hero-grid,
    .split-2,
    .page-hero-split .page-hero-grid {
        grid-template-columns: 1fr;
    }

    .trust-row {
        grid-template-columns: repeat(3,1fr);
    }

    .trust-item:nth-child(4) {
        border-left: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    section {
        padding: 50px 0;
    }

        section.section-2 + section,
        section + section.section-2 {
            padding-top: 16px;
        }

    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        padding: 20px 16px 30px;
        gap: 2px;
        overflow-y: auto;
        z-index: 999;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 4px 30px rgba(0,0,0,0.12);
        max-height: 70vh;
        margin: 0;
        display: none;
        top: 76px;
    }

        .main-nav.open {
            display: flex;
            top: 76px;
        }

        .main-nav a {
            padding: 14px 14px;
            font-size: 16px;
            font-weight: 600;
            border-bottom: 1px solid var(--line);
            border-radius: 0;
            min-height: 50px;
            color: var(--ink) !important;
            background: transparent;
            touch-action: manipulation;
            z-index: 1000;
            position: relative;
            pointer-events: auto !important;
        }

            .main-nav a:hover,
            .main-nav a:active,
            .main-nav a:focus {
                background: var(--paper-2);
                color: var(--glass-deep) !important;
                outline: none;
            }

            .main-nav a.active {
                background: var(--paper-2);
                color: var(--glass-deep) !important;
            }

            .main-nav a:last-child {
                border-bottom: none;
            }

    .nav-toggle {
        display: flex;
        position: relative;
        z-index: 1000;
        background: transparent;
        border: none;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        color: var(--ink);
        border-radius: var(--radius);
        transition: background 0.15s ease;
    }

        .nav-toggle:hover {
            background: var(--paper-2);
        }

        .nav-toggle svg {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .nav-toggle.open svg {
            transform: rotate(90deg);
        }

    .header-actions .tel-link {
        display: none;
    }

    .header-actions .btn {
        font-size: 13px;
        padding: 8px 14px;
        min-height: 36px;
    }

    .hero {
        padding: 32px 0 44px;
    }

        .hero h1 {
            font-size: 26px;
        }

        .hero p.lead {
            font-size: 15px;
        }

    .hero-ctas .btn {
        flex: 1 1 100%;
        justify-content: center;
        font-size: 14px;
    }

    .hero-meta {
        gap: 14px;
    }

        .hero-meta strong {
            font-size: 17px;
        }

    .wrap {
        padding: 0 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        font-size: 11px;
    }

    .modal-overlay {
        padding: 12px;
        align-items: flex-end;
    }

    .modal-box {
        padding: 22px 16px 18px;
        border-radius: var(--radius-lg);
        max-width: 100%;
        margin: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

        .modal-box h3 {
            font-size: 18px;
            padding-right: 16px;
        }

        .modal-box > p {
            font-size: 13px;
            margin-bottom: 16px;
        }

    .modal-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }

    .logo .logo-mark {
        width: 60px;
        height: 60px;
    }

    .header-row {
        height: 64px;
        gap: 8px;
    }

    .main-nav.open {
        top: 64px;
        padding: 16px 12px 24px;
    }

    .main-nav a {
        padding: 12px 12px;
        font-size: 15px;
        min-height: 44px;
    }

    .logo {
        font-size: 16px;
        gap: 6px;
    }

        .logo .logo-mark {
            width: 50px;
            height: 50px;
        }

    .page-hero {
        padding: 30px 0 40px;
    }

        .page-hero h1 {
            font-size: 24px;
        }

        .page-hero p {
            font-size: 14.5px;
        }

    .page-hero-split .page-hero-grid {
        gap: 20px;
    }

    .breadcrumb {
        font-size: 11px;
        gap: 6px;
        flex-wrap: wrap;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .section-head p {
        font-size: 14px;
        margin-top: 2px;
    }

    .carousel-prev,
    .carousel-next {
        width: 34px;
        height: 34px;
        font-size: 18px;
        background: rgba(255,255,255,0.92);
        box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    }

    .carousel-prev {
        left: -6px;
    }

    .carousel-next {
        right: -6px;
    }

    .map-container {
        padding: 18px 12px;
    }

    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .map-buttons {
        gap: 8px;
    }

    .map-btn {
        flex: 1 1 auto;
        min-width: 80px;
        font-size: 12px;
        padding: 8px 12px;
        min-height: 38px;
    }

    .map-detail-item {
        font-size: 13px;
    }

    .map-iframe-wrap {
        padding-bottom: 65%;
    }

    .lang-switch {
        height: 32px;
        min-width: 62px;
    }

    .lang-option {
        font-size: 11px;
        padding: 2px 4px;
    }
}

@media (max-width:480px) {
    .main-nav {
        display: none;
        top: 64px;
        padding: 16px 12px 24px;
    }

        .main-nav.open {
            display: flex;
            top: 64px;
        }

        .main-nav a {
            font-size: 14px;
            min-height: 40px;
            padding: 10px 12px;
        }

    .hero h1 {
        font-size: 22px;
    }

    .hero p.lead {
        font-size: 14px;
    }

    .hero-ctas .btn {
        font-size: 13px;
        padding: 10px 14px;
    }

    .hero-meta strong {
        font-size: 15px;
    }

    .page-hero h1 {
        font-size: 20px;
    }

    .carousel-prev,
    .carousel-next {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
}

.review-toggle-btn {
    background: none;
    border: none;
    color: var(--amber);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 4px 0;
    margin-top: 2px;
    text-decoration: underline dotted;
    transition: color 0.2s;
    display: inline-block;
}
.review-toggle-btn:hover {
    color: #b8730e;
}
.review-text-short,
.review-text-full {
    margin: 0 0 6px 0;
    line-height: 1.5;
}