/* ═══════════════════════════════════════
   AutoGolden — Premium Dark Gold Theme
   v2.0 — Hero Slider, Team, Map, Popup
═══════════════════════════════════════ */
:root {
    --bg: #070707;
    --bg2: #0c0a08;
    --bg-alt: #0a0908;
    --card: #0f0e0c;
    --card2: #141210;
    --gold: #d4a843;
    --gold2: #c9962b;
    --gold-dim: rgba(212, 168, 67, 0.16);
    --gold-glow: rgba(212, 168, 67, 0.22);
    --gold-text: rgba(215, 176, 108, 0.9);
    --border: rgba(212, 168, 67, 0.13);
    --border2: rgba(255, 255, 255, 0.055);
    --text: #fff;
    --muted: rgba(244, 234, 215, 0.82);
    --dim: rgba(255, 247, 230, 0.5);
    --r: 12px;
    --rs: 8px;
    --t: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    --sh: 0 8px 32px rgba(0, 0, 0, 0.38);
}

/* Calculator */
.calc-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}
.calc-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 22px;
    align-items: start;
}
.calc-card,
.calc-total-card,
.calc-note {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow);
}
.calc-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.calc-field-wide,
.calc-distance,
.calc-form .btn-full,
.calc-error {
    grid-column: 1 / -1;
}
.calc-check {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 168, 67, 0.14);
    border-radius: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--muted);
    font-size: 13px;
    cursor: pointer;
}
.calc-check input {
    accent-color: var(--gold);
}
.calc-distance,
.calc-note {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}
.calc-distance strong,
.calc-note b {
    color: var(--text);
}
.calc-results {
    display: grid;
    gap: 16px;
}
.calc-actions {
    display: flex;
    justify-content: flex-end;
}
.calc-actions .btn-primary {
    min-width: 190px;
}
.calc-results[hidden] {
    display: none;
}
.calc-total-card {
    background: linear-gradient(135deg, rgba(212, 168, 67, 0.22), rgba(255, 255, 255, 0.055));
}
.calc-total-card span,
.calc-summary span {
    color: var(--muted);
}
.calc-total-card strong {
    display: block;
    margin: 8px 0;
    color: var(--text);
    font-size: clamp(34px, 4vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.05em;
}
.calc-total-card p {
    color: var(--muted);
    font-size: 14px;
}
.calc-card h3 {
    margin-bottom: 14px;
    color: var(--text);
    font-size: 18px;
}
.calc-lines {
    display: grid;
    gap: 8px;
}
.calc-line,
.calc-summary {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-radius: 14px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--muted);
    font-size: 14px;
}
.calc-line strong,
.calc-summary strong {
    white-space: nowrap;
    color: var(--text);
}
.calc-summary {
    margin-top: 12px;
    background: rgba(212, 168, 67, 0.12);
    font-weight: 700;
}
.calc-customs-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 14px;
}
.calc-tabs {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 4px;
    border: 1px solid rgba(212, 168, 67, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
}
.calc-tabs button {
    border: 0;
    border-radius: 999px;
    padding: 9px 12px;
    background: transparent;
    color: var(--muted);
    font: inherit;
    cursor: pointer;
}
.calc-tabs button.active {
    background: var(--gold);
    color: #1a1307;
}
.calc-customs-fields {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}
.calc-customs-fields.hidden {
    display: none;
}
.calc-error {
    color: #ff8f8f;
    font-size: 13px;
}
@media (max-width: 980px) {
    .calc-grid {
        grid-template-columns: 1fr;
    }
    .calc-actions {
        justify-content: stretch;
    }
    .calc-actions .btn-primary {
        width: 100%;
    }
}
@media (max-width: 640px) {
    .calc-form,
    .calc-customs-fields,
    .phone-combo {
        grid-template-columns: 1fr;
    }
    .calc-customs-head {
        align-items: flex-start;
        flex-direction: column;
    }
    .calc-tabs {
        width: 100%;
    }
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    overflow-x: clip;
}
body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: clip;
    overscroll-behavior-x: none;
    -webkit-font-smoothing: antialiased;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}
a {
    color: inherit;
    text-decoration: none;
}
button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}
ul,
ol {
    list-style: none;
}

.container {
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}
.br-lg {
    display: none;
}
@media (min-width: 768px) {
    .br-lg {
        display: block;
    }
}

/* ── Animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}
@keyframes pulse-gold {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.4);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(212, 168, 67, 0);
    }
}
@keyframes spin-slow {
    to {
        transform: rotate(360deg);
    }
}
@keyframes progress {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes floatY {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay {
    transition-delay: 0.18s;
}

/* ── Typography ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 13px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-text);
    background: rgba(18, 15, 11, 0.92);
    border: 1px solid var(--gold-dim);
    border-radius: 0;
}
.section-title {
    margin-top: 14px;
    font-size: clamp(30px, 4vw, 54px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.044em;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
}
.section-desc {
    margin-top: 14px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 600px;
}
.section-header {
    margin-bottom: 52px;
}
.section {
    padding: 80px 0;
    scroll-margin-top: 112px;
}
.section-alt {
    background: var(--bg-alt);
}
.gold-text {
    color: var(--gold);
}

/* ── Topbar ── */
.topbar {
    display: none;
}
.topbar-inner {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 24px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
    flex-wrap: wrap;
}
.topbar-flags {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}
.topbar-flag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.topbar-flag img {
    width: 21px;
    height: auto;
    flex-shrink: 0;
    filter:
        drop-shadow(0 3px 10px rgba(0, 0, 0, 0.34))
        drop-shadow(0 0 10px rgba(212, 168, 67, 0.1));
}
.topbar-flags .dot {
    color: var(--gold-dim);
    font-size: 16px;
}
.topbar-text {
    flex: 1;
    font-size: 12px;
    color: var(--dim);
    text-align: center;
}
.topbar-cta {
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    padding: 5px 12px;
    border: 1px solid var(--gold-dim);
    border-radius: 4px;
    transition:
        background var(--t),
        border-color var(--t);
    white-space: nowrap;
}
.topbar-cta:hover {
    background: var(--gold-glow);
    border-color: var(--gold);
}

/* ── Header ── */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(7, 7, 7, 0.94);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    transition:
        top 0.3s ease,
        background 0.3s ease,
        box-shadow 0.3s ease;
}
.header.scrolled {
    background: rgba(5, 5, 5, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    top: 0;
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
    height: 68px;
    width: min(1240px, 100%);
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-mark {
    display: flex;
    align-items: center;
}
.logo-mark img {
    width: 34px;
    height: 34px;
    display: block;
}
.footer-logo .logo-mark img {
    width: 28px;
    height: 28px;
}
.logo-text {
    display: flex;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.logo-auto {
    color: var(--text);
}
.logo-golden {
    color: var(--gold);
}

/* Nav */
.nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}
.nav-link {
    padding: 6px 13px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--muted);
    border-radius: var(--rs);
    transition:
        color var(--t),
        background var(--t);
    position: relative;
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition:
        left var(--t),
        right var(--t);
}
.nav-link:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}
.nav-link.active {
    color: var(--gold);
}
.nav-link.active::after {
    left: 13px;
    right: 13px;
}

/* Header icons */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.header-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    transition:
        color var(--t),
        border-color var(--t),
        background var(--t);
}
.header-icon:hover {
    color: var(--text);
    border-color: var(--gold-dim);
    background: rgba(255, 255, 255, 0.05);
}
.tg-icon:hover {
    color: #2aabee;
}
.wa-icon:hover {
    color: #25d366;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    margin-left: auto;
}
.burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition:
        transform var(--t),
        opacity var(--t);
}
.burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
    opacity: 0;
}
.burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
.nav-close-mobile {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    font-size: 22px;
    line-height: 1;
    background: rgba(255, 255, 255, 0.04);
    transition:
        border-color var(--t),
        background var(--t),
        transform var(--t);
}
.nav-close-mobile:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--gold-dim);
    transform: rotate(90deg);
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #0a0700;
    background: linear-gradient(135deg, #d4a843, #b87c1e);
    border-radius: var(--rs);
    cursor: pointer;
    transition:
        transform var(--t),
        box-shadow var(--t),
        filter var(--t);
    box-shadow: 0 4px 20px rgba(201, 150, 43, 0.28);
    white-space: nowrap;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(201, 150, 43, 0.42);
    filter: brightness(1.07);
}
.btn-primary:active {
    transform: translateY(0);
}
.btn-sm {
    height: 42px;
    padding: 0 18px;
    font-size: 13px;
}
.btn-full {
    width: 100%;
}
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 52px;
    padding: 0 28px;
    font-size: 15px;
    font-weight: 600;
    color: var(--muted);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    transition:
        color var(--t),
        border-color var(--t),
        background var(--t),
        transform var(--t);
}
.btn-outline:hover {
    color: var(--text);
    border-color: var(--gold-dim);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-2px);
}

/* ── HERO SLIDER ── */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    touch-action: pan-y;
}
.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.77, 0, 0.175, 1);
    touch-action: pan-y;
}
.hero-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    background: var(--bg) var(--slide-bg, none) center 30% / cover no-repeat;
}
.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(
        120deg,
        rgba(5, 5, 5, 0.92) 0%,
        rgba(5, 5, 5, 0.55) 60%,
        rgba(5, 5, 5, 0.3) 100%
    );
}
.slide-2 {
    background: linear-gradient(135deg, #0a0806 0%, #12100c 40%, #0d0b07 100%);
}
.slide-2 .slide-overlay {
    background:
        radial-gradient(
            ellipse at 30% 50%,
            rgba(201, 150, 43, 0.12),
            transparent 60%
        ),
        linear-gradient(180deg, rgba(5, 5, 5, 0.6), rgba(5, 5, 5, 0.4));
}
.slide-3 {
    background: linear-gradient(145deg, #08060a 0%, #100c14 50%, #08060a 100%);
    overflow: hidden;
    isolation: isolate;
}
.slide-3 .slide-overlay {
    background:
        radial-gradient(
            circle at 78% 38%,
            rgba(212, 168, 67, 0.18),
            transparent 34%
        ),
        radial-gradient(
            circle at 74% 54%,
            rgba(58, 92, 170, 0.12),
            transparent 60%
        ),
        linear-gradient(
            98deg,
            rgba(5, 5, 5, 0.88) 0%,
            rgba(5, 5, 5, 0.66) 44%,
            rgba(5, 5, 5, 0.28) 100%
        );
}

.usa-focus-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.usa-focus-glow {
    position: absolute;
    right: -8%;
    top: 52%;
    width: min(54vw, 780px);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(212, 168, 67, 0.22) 0%,
            rgba(212, 168, 67, 0.1) 26%,
            rgba(212, 168, 67, 0) 66%
        );
    transform: translateY(-50%);
    filter: blur(20px);
    animation: usaGlowFloat 10s ease-in-out infinite alternate;
}
.usa-focus-flag {
    position: absolute;
    right: max(-56px, -3vw);
    top: 53%;
    width: min(48vw, 760px);
    aspect-ratio: 1.6 / 1;
    background: url("assets/flag-usa.svg") center / contain no-repeat;
    opacity: 0.24;
    transform: translateY(-50%) perspective(1200px) rotateY(-17deg)
        rotate(-8deg);
    transform-origin: center;
    filter:
        saturate(1.08)
        brightness(1.08)
        drop-shadow(0 32px 80px rgba(0, 0, 0, 0.42));
    animation: usaFlagFloat 13s ease-in-out infinite;
}

.slide-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 440px;
    gap: 60px;
    align-items: center;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
    height: 100%;
}
.slide-center {
    grid-template-columns: 1fr;
}
.slide-copy {
    max-width: 580px;
}
.slide-copy-wide {
    max-width: 720px;
}

.slide-title {
    margin-top: 16px;
    font-size: clamp(38px, 5.5vw, 76px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-wrap: balance;
    word-break: normal;
    overflow-wrap: normal;
    animation: fadeUp 0.7s ease both;
}
.slide-title-usa {
    max-width: 11ch;
}
.slide-desc {
    margin-top: 20px;
    font-size: 17px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 500px;
    animation: fadeUp 0.7s 0.1s ease both;
}
.slide-points {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: fadeUp 0.7s 0.2s ease both;
}
.sp-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: var(--muted);
}
.sp-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 50%;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}
.slide-actions {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: fadeUp 0.7s 0.3s ease both;
}

/* Slide stats row (slide 2) */
.slide-stats-row {
    display: flex;
    align-items: center;
    gap: 0;
    margin-top: 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    animation: fadeUp 0.7s 0.25s ease both;
}
.slide-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 18px 28px;
    text-align: center;
}
.slide-stat strong {
    font-size: 28px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.04em;
    line-height: 1;
}
.slide-stat span {
    font-size: 12px;
    color: var(--dim);
    margin-top: 2px;
}
.slide-stat-divider {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    min-height: 50px;
}

/* Slide 3 supporting tags */
.usa-focus-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    max-width: 560px;
    animation: fadeUp 0.7s 0.25s ease both;
}
.usa-focus-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.09),
        rgba(255, 255, 255, 0.04)
    );
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 18px 32px rgba(0, 0, 0, 0.2);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: rgba(255, 247, 230, 0.88);
}

/* Hero form card */
.slide-form-wrap {
    animation: fadeUp 0.7s 0.15s ease both;
}
.slide-form-card {
    background: rgba(10, 8, 6, 0.95);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(212, 168, 67, 0.09);
}
.form-card-badge {
    display: inline-flex;
    align-items: center;
    height: 26px;
    padding: 0 10px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.22);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.02em;
    margin-bottom: 12px;
}
.slide-form-card h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.slide-form-card p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 16px;
}

/* Hero nav */
.hero-nav {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}
.hero-arr {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: var(--text);
    transition:
        background var(--t),
        border-color var(--t),
        transform var(--t);
}
.hero-arr:hover {
    background: rgba(212, 168, 67, 0.2);
    border-color: var(--gold-dim);
    transform: scale(1.08);
}

@keyframes usaFlagFloat {
    0% {
        transform: translate3d(0, -50%, 0) perspective(1200px) rotateY(-17deg)
            rotate(-8deg) scale(1);
        opacity: 0.2;
    }
    50% {
        transform: translate3d(-18px, calc(-50% - 14px), 0)
            perspective(1200px) rotateY(-10deg) rotate(-5deg) scale(1.04);
        opacity: 0.28;
    }
    100% {
        transform: translate3d(8px, calc(-50% + 10px), 0)
            perspective(1200px) rotateY(-19deg) rotate(-9deg) scale(0.99);
        opacity: 0.22;
    }
}

@keyframes usaGlowFloat {
    0% {
        transform: translate3d(0, -50%, 0) scale(0.98);
        opacity: 0.84;
    }
    100% {
        transform: translate3d(-14px, calc(-50% - 10px), 0) scale(1.08);
        opacity: 1;
    }
}

.hero-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.hero-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition:
        background var(--t),
        width var(--t),
        border-radius var(--t);
}
.hero-dot.active {
    background: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* ── Catalog ── */
.top-sales-section,
.catalog-section {
    background:
        radial-gradient(
            ellipse at 100% 0%,
            rgba(212, 168, 67, 0.08),
            transparent 42%
        ),
        var(--bg-alt);
}
.top-sales-section {
    border-top: 1px solid rgba(212, 168, 67, 0.08);
    border-bottom: 1px solid rgba(212, 168, 67, 0.08);
}
.catalog-intro {
    display: grid;
    grid-template-columns: 1.2fr auto;
    gap: 28px;
    align-items: center;
    padding: 34px 36px;
    border-radius: var(--r);
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02)
        );
    border: 1px solid var(--border);
    box-shadow: var(--sh);
}
.catalog-intro-copy h3 {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
}
.catalog-intro-copy p {
    max-width: 720px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}
.catalog-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    margin-bottom: 16px;
    border-radius: 999px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.22);
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.catalog-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 240px;
}
.top-sales-intro {
    background:
        radial-gradient(
            circle at top right,
            rgba(212, 168, 67, 0.13),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.02)
        );
}
#top-sales-grid.catalog-grid.top-sales-track {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px;
    width: 100%;
    margin-top: 0;
}
#top-sales-grid .catalog-card {
    min-width: 0;
    max-width: none;
}
.catalog-stock-panel {
    display: grid;
    gap: 28px;
    margin-top: 34px;
    padding-top: 34px;
    border-top: 1px solid rgba(212, 168, 67, 0.12);
}
.catalog-stock-panel[hidden] {
    display: none;
}
.catalog-stock-panel > .catalog-grid {
    margin-top: 0;
}
.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}
.catalog-more {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}
.catalog-more[hidden] {
    display: none;
}
.catalog-more-btn {
    min-width: 220px;
}
.catalog-card {
    position: relative;
    overflow: hidden;
    border-radius: calc(var(--r) + 4px);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0)),
        #12100e;
    border: 1px solid rgba(212, 168, 67, 0.12);
    box-shadow: 0 22px 56px rgba(0, 0, 0, 0.34);
    transition:
        transform var(--t),
        border-color var(--t),
        box-shadow var(--t);
}
.catalog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 168, 67, 0.24);
    box-shadow: 0 28px 72px rgba(0, 0, 0, 0.42);
}
.catalog-card-media {
    position: relative;
    aspect-ratio: 1.18 / 1;
    overflow: hidden;
    background: #090807;
}
.catalog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}
.catalog-card:hover .catalog-card-media img {
    transform: scale(1.03);
}
.catalog-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.38), transparent 34%);
}
.catalog-card-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.catalog-card-open {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 17px;
    transition:
        transform var(--t),
        background var(--t);
}
.catalog-card-open:hover {
    background: rgba(212, 168, 67, 0.22);
    transform: translateY(-1px);
}
.catalog-card-body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px 18px 20px;
}
.catalog-card-head {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}
.catalog-card-head h3 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.02;
}
.catalog-card-head h3 span {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    color: var(--muted);
}
.catalog-card-year {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.18);
    color: var(--gold);
    font-size: 12px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
}
.catalog-card-price-row {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px 12px;
}
.catalog-card-price {
    font-size: 30px;
    line-height: 1;
    letter-spacing: -0.04em;
    font-weight: 900;
    color: var(--gold);
}
.catalog-card-price-note {
    font-size: 12px;
    line-height: 1.4;
    color: var(--dim);
    font-weight: 700;
}
.catalog-card-copy {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
}
.catalog-card-mobile-summary {
    display: none;
}
.catalog-card-mobile-line {
    font-size: 13px;
    line-height: 1.4;
    color: var(--muted);
}
.catalog-card-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.catalog-card-spec,
.catalog-modal-spec {
    min-height: 66px;
    padding: 12px 14px;
    border-radius: 16px;
    background:
        linear-gradient(
            180deg,
            rgba(255, 255, 255, 0.04),
            rgba(255, 255, 255, 0.01)
        );
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.catalog-card-spec-label,
.catalog-modal-spec-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--dim);
}
.catalog-card-spec-value,
.catalog-modal-spec-value {
    color: var(--text);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}
.catalog-card-cta {
    width: 100%;
    min-height: 48px;
}
.catalog-modal {
    position: fixed;
    inset: 0;
    z-index: 220;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(3, 3, 3, 0.82);
    backdrop-filter: blur(12px);
}
.catalog-modal.open {
    display: flex;
}
.catalog-modal-dialog {
    position: relative;
    width: min(1160px, 100%);
    max-height: min(90vh, 920px);
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) 380px;
    background:
        radial-gradient(
            circle at top left,
            rgba(212, 168, 67, 0.12),
            transparent 34%
        ),
        #0c0a08;
    border-radius: 28px;
    border: 1px solid rgba(212, 168, 67, 0.14);
    box-shadow: 0 32px 120px rgba(0, 0, 0, 0.62);
}
.catalog-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 18px;
    z-index: 2;
}
.catalog-modal-media {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 18px;
    gap: 14px;
}
.catalog-modal-stage {
    flex: 1 1 auto;
    min-height: 420px;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(212, 168, 67, 0.08), transparent 54%),
        #050505;
}
.catalog-modal-stage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.catalog-modal-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}
.catalog-modal-thumb {
    aspect-ratio: 1 / 0.78;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #050505;
    transition:
        border-color var(--t),
        transform var(--t);
}
.catalog-modal-thumb.active,
.catalog-modal-thumb:hover {
    border-color: rgba(212, 168, 67, 0.36);
    transform: translateY(-2px);
}
.catalog-modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.catalog-modal-panel {
    min-height: 0;
    overflow-y: auto;
    padding: 28px 26px 28px 8px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.catalog-modal-panel h3 {
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 0.95;
}
.catalog-modal-copy {
    font-size: 15px;
    line-height: 1.7;
    color: var(--muted);
}
.catalog-modal-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: -4px;
}
.catalog-modal-price strong {
    font-size: 34px;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--gold);
}
.catalog-modal-price span {
    color: var(--dim);
    font-size: 13px;
    font-weight: 700;
}
.catalog-modal-specs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}
.catalog-modal-note {
    padding: 15px 16px;
    border-radius: 18px;
    background: rgba(212, 168, 67, 0.08);
    border: 1px solid rgba(212, 168, 67, 0.12);
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}
.catalog-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}

/* Hero progress */
.hero-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 10;
}
.hero-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--gold2), var(--gold));
    width: 0;
    transition: none;
}
.hero-progress-bar.animating {
    animation: progress 8s linear forwards;
}

/* ── Process Ticker ── */
.process-ticker {
    background: rgba(212, 168, 67, 0.07);
    border-top: 1px solid var(--gold-dim);
    border-bottom: 1px solid var(--gold-dim);
    padding: 14px 0;
    overflow-x: auto;
}
.ticker-inner {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    justify-content: space-around;
    width: min(1240px, calc(100% - 48px));
    margin: 0 auto;
}
.ticker-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
}
.t-num {
    font-size: 22px;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.04em;
    line-height: 1;
}
.ticker-arrow {
    color: rgba(212, 168, 67, 0.3);
    font-size: 18px;
}

/* ── Stats Bar ── */
.stats-bar {
    background:
        linear-gradient(
            90deg,
            rgba(212, 168, 67, 0.06),
            rgba(212, 168, 67, 0.02)
        ),
        var(--bg2);
    border-bottom: 1px solid var(--border);
    padding: 44px 0;
}
.stats-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-around;
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 5px;
    padding: 0 20px;
    flex: 1;
}
.stat-num {
    display: block;
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--gold);
    line-height: 1;
}
.stat-plus {
    font-size: 26px;
    font-weight: 900;
    color: var(--gold);
}
.stat-label {
    font-size: 12px;
    color: var(--dim);
    max-width: 130px;
    line-height: 1.35;
}
.stat-div {
    width: 1px;
    background: var(--border);
    align-self: stretch;
    min-height: 56px;
}

/* ── Infograph Cards (carpoint 01-04 style) ── */
.infograph-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.infograph-card {
    background: var(--card);
    padding: 36px 32px;
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto 1fr;
    gap: 0 20px;
    align-items: start;
    position: relative;
    overflow: hidden;
    transition: background var(--t);
}
.infograph-card:hover {
    background: var(--card2);
}
.infograph-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 80% 80%,
        rgba(212, 168, 67, 0.04),
        transparent 60%
    );
}
.ig-num {
    grid-column: 1;
    grid-row: 1;
    font-size: 48px;
    font-weight: 900;
    color: rgba(212, 168, 67, 0.18);
    letter-spacing: -0.06em;
    line-height: 1;
    margin-bottom: 16px;
    font-variant-numeric: tabular-nums;
}
.ig-content {
    grid-column: 1;
    grid-row: 2;
}
.ig-content h3 {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}
.ig-content p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
}
.ig-visual {
    grid-column: 2;
    grid-row: 1/3;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatY 4s ease-in-out infinite;
}
.infograph-card:nth-child(2) .ig-visual {
    animation-delay: 0.5s;
}
.infograph-card:nth-child(3) .ig-visual {
    animation-delay: 1s;
}
.infograph-card:nth-child(4) .ig-visual {
    animation-delay: 1.5s;
}

/* ── Team Banner (carpoint "we help" style) ── */
.team-banner {
    background: linear-gradient(135deg, #d4a843 0%, #c9962b 40%, #a87520 100%);
    overflow: hidden;
    position: relative;
}
.team-banner::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}
.team-banner::after {
    content: "";
    position: absolute;
    bottom: -60px;
    left: 20%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.08);
    pointer-events: none;
}
.team-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 40px;
    padding: 60px 0 0;
    position: relative;
    z-index: 1;
}
.tb-copy {
    padding-bottom: 60px;
}
.tb-pre {
    font-size: 20px;
    color: rgba(10, 7, 0, 0.65);
    font-weight: 500;
    line-height: 1.4;
}
.tb-title {
    font-size: clamp(32px, 4.5vw, 58px);
    font-weight: 900;
    letter-spacing: -0.045em;
    line-height: 0.95;
    color: #0a0700;
    margin-top: 8px;
}
.tb-desc {
    margin-top: 14px;
    font-size: 16px;
    color: rgba(10, 7, 0, 0.7);
    max-width: 480px;
    line-height: 1.6;
}
.tb-actions {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.tb-actions .btn-primary {
    background: #0a0700;
    color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.tb-actions .btn-primary:hover {
    background: #1a1200;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);
}
.tb-info-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(10, 7, 0, 0.7);
    transition: color var(--t);
}
.tb-info-link:hover {
    color: #0a0700;
}
.info-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(10, 7, 0, 0.4);
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: rgba(10, 7, 0, 0.6);
}

/* Team photos in banner */
.tb-team {
    display: flex;
    align-items: flex-end;
    gap: -20px;
    position: relative;
    height: 320px;
    width: 380px;
    flex-shrink: 0;
}
.tb-photo {
    position: absolute;
    bottom: 0;
    object-fit: cover;
    object-position: top;
    filter: grayscale(100%) contrast(1.1);
    border-radius: var(--r) var(--r) 0 0;
    transition: filter var(--t);
}
.tb-photo:hover {
    filter: grayscale(0);
}
.tb-p1 {
    height: 280px;
    width: 130px;
    left: 0;
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.2);
}
.tb-p2 {
    height: 300px;
    width: 140px;
    left: 120px;
    z-index: 4;
    border: 2px solid rgba(255, 255, 255, 0.3);
}
.tb-p3 {
    height: 260px;
    width: 120px;
    left: 250px;
    z-index: 3;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ── Benefits Grid ── */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
}
.benefit-card {
    background: var(--card);
    padding: 32px 28px;
    transition: background var(--t);
    position: relative;
}
.benefit-card:hover {
    background: var(--card2);
}
.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--gold), transparent);
    transition: height 0.4s ease;
}
.benefit-card:hover::before {
    height: 100%;
}
.b-icon {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 18px;
    color: var(--gold);
    background:
        radial-gradient(
            circle at top left,
            rgba(212, 168, 67, 0.22),
            transparent 62%
        ),
        rgba(20, 17, 12, 0.92);
    border: 1px solid rgba(212, 168, 67, 0.22);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 14px 26px rgba(0, 0, 0, 0.26);
}
.b-icon svg {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.022em;
    margin-bottom: 8px;
}
.benefit-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

/* ── Steps Grid ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}
.steps-grid::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        var(--gold-dim),
        var(--gold-dim),
        transparent
    );
    pointer-events: none;
}
.step-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 28px 22px;
    text-align: center;
    position: relative;
    transition:
        border-color var(--t),
        transform var(--t),
        box-shadow var(--t);
}
.step-card:hover {
    border-color: var(--gold-dim);
    transform: translateY(-5px);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(212, 168, 67, 0.08);
}
.step-num {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 800;
    color: var(--gold);
    background: var(--bg);
    border: 1px solid var(--gold-dim);
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0.06em;
}
.step-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid var(--gold-dim);
    border-radius: var(--rs);
    margin: 14px auto 14px;
}
.step-card h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}
.step-card p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

/* ── Gallery ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gallery-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition:
        transform var(--t),
        border-color var(--t),
        box-shadow var(--t);
}
.gallery-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.gallery-img {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--card2);
}
.gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-card:hover .gallery-img img {
    transform: scale(1.05);
}
.gallery-body {
    padding: 20px;
}
.gallery-body h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.gallery-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── Reviews ── */
.reviews-wrap {
    overflow: hidden;
    padding: 8px 0 4px;
    margin-top: 16px;
    touch-action: pan-y;
}
.reviews-track {
    display: flex;
    gap: 20px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 max(24px, calc((100vw - 1240px) / 2 + 24px));
    touch-action: pan-y;
}
.review-card {
    flex-shrink: 0;
    width: 380px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition:
        transform var(--t),
        border-color var(--t),
        box-shadow var(--t);
}
.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.rc-photo {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--card2);
}
.rc-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.review-card:hover .rc-photo img {
    transform: scale(1.04);
}
.rc-stars {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(7, 7, 7, 0.9);
    border: 1px solid var(--gold-dim);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
}
.rc-stars span {
    margin-left: 4px;
}
.rc-body {
    padding: 20px;
}
.rc-badge {
    display: inline-flex;
    height: 22px;
    padding: 0 8px;
    background: rgba(212, 168, 67, 0.12);
    border: 1px solid rgba(212, 168, 67, 0.2);
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    align-items: center;
    margin-bottom: 10px;
}
.rc-body h3 {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.rc-sub {
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}
.rc-body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

.reviews-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}
.slider-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--muted);
    transition:
        background var(--t),
        border-color var(--t),
        color var(--t);
}
.slider-btn:hover {
    background: var(--card2);
    border-color: var(--gold-dim);
    color: var(--gold);
}
.slider-dots {
    display: flex;
    gap: 6px;
    align-items: center;
}
.slider-dot {
    width: 6px;
    height: 6px;
    background: var(--border2);
    border-radius: 50%;
    cursor: pointer;
    border: none;
    transition:
        background var(--t),
        width var(--t);
}
.slider-dot.active {
    background: var(--gold);
    width: 20px;
    border-radius: 3px;
}

/* ── Forms ── */
.field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
}
.field label {
    font-size: 11px;
    font-weight: 600;
    color: var(--dim);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.field input,
.field select {
    height: 48px;
    width: 100%;
    min-width: 0;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border2);
    border-radius: var(--rs);
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition:
        border-color var(--t),
        background var(--t);
    font-family: inherit;
}
.field select {
    cursor: pointer;
}
.field select option {
    background: #120f0b;
    color: var(--text);
}
.field input.is-invalid {
    border-color: rgba(220, 60, 60, 0.72);
    box-shadow: 0 0 0 3px rgba(220, 60, 60, 0.12);
}
.field input::placeholder {
    color: var(--dim);
}
.field input:focus,
.field select:focus {
    border-color: rgba(212, 168, 67, 0.4);
    background: rgba(255, 255, 255, 0.065);
}
.phone-combo {
    display: grid;
    grid-template-columns: minmax(128px, 0.9fr) minmax(0, 1.3fr);
    gap: 8px;
}
.phone-country-select {
    min-width: 0;
}
.field-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    align-items: start;
}
.field-error {
    display: block;
    margin-top: 2px;
    font-size: 12px;
    line-height: 1.45;
    color: #ff7d7d;
}
.field-error[hidden] {
    display: none;
}
.privacy {
    font-size: 11px;
    color: var(--dim);
    line-height: 1.4;
    margin-top: 2px;
}
.form-success {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 14px;
    background: rgba(212, 168, 67, 0.1);
    border: 1px solid rgba(212, 168, 67, 0.24);
    border-radius: var(--rs);
}
.form-success strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}
.form-success p {
    font-size: 13px;
    color: var(--muted);
}
.form-success.show {
    display: flex;
}

/* ── Lead Section ── */
.lead-section {
    background:
        radial-gradient(
            ellipse at 0% 50%,
            rgba(212, 168, 67, 0.08),
            transparent 50%
        ),
        var(--bg-alt);
}
.lead-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: center;
}
.lead-form-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 32px;
    box-shadow: var(--sh);
}
.lead-form-box h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 6px;
}
.lead-form-box p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 14px;
}
.point-list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.point-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--muted);
}
.chk {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: rgba(212, 168, 67, 0.14);
    border: 1px solid rgba(212, 168, 67, 0.28);
    border-radius: 50%;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
}

/* ── Team Section ── */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition:
        transform var(--t),
        border-color var(--t),
        box-shadow var(--t);
}
.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold-dim);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.team-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--card2);
    position: relative;
}
.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}
.team-card:hover .team-photo img {
    transform: scale(1.04);
}
.tc-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 48px;
    color: var(--dim);
}
.team-info {
    padding: 18px;
}
.team-info h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}
.team-info span {
    display: block;
    font-size: 12px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 8px;
}
.team-info p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
}

/* ── FAQ ── */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-width: 820px;
}
.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    overflow: hidden;
    transition: border-color var(--t);
}
.faq-item:hover {
    border-color: var(--gold-dim);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: color var(--t);
    background: none;
    border: none;
    font-family: inherit;
}
.faq-q:hover {
    color: var(--gold);
}
.faq-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 300;
    color: var(--gold);
    flex-shrink: 0;
    transition: transform var(--t);
}
.faq-item.open .faq-ico {
    transform: rotate(45deg);
}
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
}
.faq-item.open .faq-a {
    max-height: 300px;
}
.faq-a p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}

/* ── Map + Contacts ── */
.contact-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 32px;
    min-height: 480px;
}
.contact-info-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.ci-group h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.ci-group p {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 6px;
    line-height: 1.5;
}
.ci-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    transition: opacity var(--t);
    margin-bottom: 6px;
}
.ci-link:hover {
    opacity: 0.75;
}
.ci-hint {
    font-size: 12px;
    color: var(--dim);
}
.ci-socials {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.ci-social {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: var(--rs);
    font-size: 14px;
    font-weight: 600;
    border: 1px solid;
    transition:
        transform var(--t),
        background var(--t);
}
.ci-social:hover {
    transform: translateY(-2px);
}
.ci-tg {
    color: #2aabee;
    border-color: rgba(42, 171, 238, 0.28);
    background: rgba(42, 171, 238, 0.06);
}
.ci-tg:hover {
    background: rgba(42, 171, 238, 0.12);
}
.ci-wa {
    color: #25d366;
    border-color: rgba(37, 211, 102, 0.28);
    background: rgba(37, 211, 102, 0.06);
}
.ci-wa:hover {
    background: rgba(37, 211, 102, 0.12);
}
.ci-details {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.ci-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border2);
}
.ci-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.ci-detail span {
    font-size: 11px;
    font-weight: 600;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ci-detail strong {
    font-size: 13px;
    color: var(--muted);
    font-weight: 600;
}
.map-box {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 480px;
}

/* ── Final CTA ── */
.final-cta {
    background:
        radial-gradient(
            ellipse at 100% 50%,
            rgba(212, 168, 67, 0.08),
            transparent 50%
        ),
        var(--bg2);
}
.final-inner {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 80px;
    align-items: center;
}
.final-form-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 32px;
    box-shadow: var(--sh);
}
.final-form-box h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 14px;
}

/* ── Footer ── */
.footer {
    background: rgba(4, 4, 3, 1);
    border-top: 1px solid var(--border);
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 48px;
    padding: 64px 0 48px;
}
.footer-brand .footer-logo {
    margin-bottom: 18px;
}
.footer-brand p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 8px;
}
.footer-disc {
    font-size: 12px !important;
    color: var(--dim) !important;
}
.footer-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-col p {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
    line-height: 1.5;
}
.f-link {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 8px;
    transition: opacity var(--t);
}
.f-link:hover {
    opacity: 0.7;
}
.f-socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.f-social {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dim);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--rs);
    transition:
        color var(--t),
        border-color var(--t);
}
.f-social:hover {
    color: var(--text);
    border-color: var(--gold-dim);
}
.f-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border2);
}
.f-detail:last-child {
    border-bottom: none;
}
.f-detail span {
    font-size: 11px;
    font-weight: 600;
    color: var(--dim);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.f-detail strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
}
.footer-bottom {
    border-top: 1px solid var(--border2);
    padding: 18px 0;
}
.fb-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 13px;
    color: var(--dim);
}
.fb-links {
    display: flex;
    gap: 22px;
}
.fb-link {
    font-size: 13px;
    color: var(--dim);
    transition: color var(--t);
}
.fb-link:hover {
    color: var(--gold);
}

/* ── Floating Buttons ── */
.float-btns {
    position: fixed;
    bottom: 32px;
    right: 24px;
    z-index: 998;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
    pointer-events: none;
}
.float-btns.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
body.ui-lock .float-btns,
body.ui-lock .mob-nav {
    opacity: 0;
    pointer-events: none;
}
.float-btn {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition:
        transform var(--t),
        box-shadow var(--t);
}
.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}
.flt-wa {
    background: #25d366;
}
.flt-tg {
    background: #2aabee;
}

/* ── Mobile Bottom Nav ── */
.mob-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(7, 6, 4, 0.97);
    border-top: 1px solid var(--border);
    padding: 10px 16px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 8px;
}
.mn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 7px 4px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--muted);
    transition: color var(--t);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}
.mn-item:hover {
    color: var(--text);
}
.mn-cta {
    background: linear-gradient(135deg, #d4a843, #b87c1e);
    color: #0a0700 !important;
    border-radius: var(--rs);
    font-weight: 700;
}

/* ── Modal ── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.modal-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.modal-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px;
    width: min(480px, 100%);
    position: relative;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    transform: scale(0.95) translateY(16px);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.modal-overlay.open .modal-box {
    transform: scale(1) translateY(0);
}
.modal-x {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--dim);
    font-size: 14px;
    transition:
        color var(--t),
        background var(--t);
}
.modal-x:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}
.modal-box h3 {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.modal-box > p {
    font-size: 14px;
    color: var(--muted);
}

/* ── 2-min Popup ── */
.popup-overlay {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: rgba(0, 0, 0, 0.72);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.popup-overlay.open {
    opacity: 1;
    pointer-events: all;
}
.popup-box {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 36px 32px;
    width: min(460px, 100%);
    position: relative;
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(212, 168, 67, 0.12);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.popup-overlay.open .popup-box {
    transform: scale(1) translateY(0);
}
.popup-x {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card2);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--dim);
    font-size: 13px;
    transition: color var(--t);
}
.popup-x:hover {
    color: var(--text);
}
.popup-badge {
    display: inline-flex;
    align-items: center;
    height: 28px;
    padding: 0 12px;
    background: rgba(212, 168, 67, 0.15);
    border: 1px solid rgba(212, 168, 67, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold);
    animation: pulse-gold 2s infinite;
}
.popup-box h3 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.popup-box > p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
}
.popup-skip {
    background: none;
    border: none;
    font-size: 13px;
    color: var(--dim);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--t);
    padding: 4px;
    font-family: inherit;
}
.popup-skip:hover {
    color: var(--muted);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .catalog-modal-dialog {
        grid-template-columns: 1fr;
    }
    .catalog-modal-panel {
        padding: 0 18px 20px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-grid::before {
        display: none;
    }
    .slide-inner {
        grid-template-columns: 1fr 380px;
        gap: 40px;
    }
    .infograph-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 960px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
    }
    .header-inner {
        width: min(1240px, calc(100% - 28px));
        padding: 0;
        gap: 12px;
    }
    .header + .hero-slider {
        margin-top: 68px;
    }
    .slide-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .hero-slider {
        height: auto;
        min-height: 100svh;
    }
    .slide-form-wrap {
        display: none;
    }
    .nav {
        display: none;
    }
    body.nav-open::before {
        content: "";
        position: fixed;
        inset: 68px 0 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        z-index: 185;
    }
    body.nav-open .nav {
        position: fixed;
        top: 80px;
        left: 12px;
        right: 12px;
        bottom: auto;
        height: calc(100dvh - 188px - env(safe-area-inset-bottom, 0px));
        max-height: calc(100dvh - 188px - env(safe-area-inset-bottom, 0px));
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        flex: none;
        gap: 10px;
        padding: 16px;
        overflow-y: auto;
        overscroll-behavior: contain;
        border-radius: 28px;
        border: 1px solid rgba(212, 168, 67, 0.16);
        background:
            radial-gradient(circle at top right, rgba(212, 168, 67, 0.12), transparent 32%),
            rgba(8, 7, 5, 0.98);
        box-shadow: 0 26px 80px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        z-index: 190;
    }
    body.nav-open .nav-link {
        min-height: 56px;
        padding: 0 18px;
        display: flex;
        align-items: center;
        border-radius: 18px;
        font-size: 17px;
        font-weight: 600;
        color: var(--text);
        background: rgba(255, 255, 255, 0.045);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
    body.nav-open .nav-link::after {
        display: none;
    }
    body.nav-open .nav-link.active,
    body.nav-open .nav-link:hover {
        color: var(--gold);
        border-color: rgba(212, 168, 67, 0.22);
        background: rgba(212, 168, 67, 0.08);
    }
    .burger {
        display: flex;
    }
    .nav-close-mobile {
        display: none;
    }
    body.nav-open .burger {
        display: none;
    }
    body.nav-open .nav-close-mobile {
        display: inline-flex;
    }
    .header-actions .btn-primary {
        display: none;
    }
    .lead-inner,
    .final-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .map-box {
        min-height: 300px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .team-banner-inner {
        grid-template-columns: 1fr;
    }
    .tb-team {
        display: none;
    }
    .tb-copy {
        padding-bottom: 48px;
    }
    .stats-inner {
        flex-wrap: wrap;
    }
    .stat-div {
        display: none;
    }
    .stat-item {
        flex: 0 0 48%;
        border-bottom: 1px solid var(--border);
        padding: 18px;
    }
    .catalog-grid {
        grid-template-columns: 1fr;
    }
    #top-sales-grid.catalog-grid.top-sales-track {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px;
    }
    #top-sales-grid .catalog-card {
        min-width: 0;
    }
    .catalog-card-head h3 {
        font-size: 22px;
    }
    .catalog-modal {
        padding: 0;
        align-items: flex-start;
        overflow-y: auto;
    }
    .catalog-modal-dialog {
        display: block;
        width: 100%;
        max-height: none;
        min-height: 100svh;
        height: auto;
        border-radius: 0;
        overflow: visible;
    }
    .catalog-modal-media {
        padding: 18px 18px 12px;
    }
    .catalog-modal-stage {
        min-height: 320px;
    }
    .catalog-modal-thumbs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    .catalog-modal-panel {
        overflow: visible;
        padding: 0 18px 20px;
    }
    .catalog-modal-specs {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .container {
        width: calc(100% - 32px);
    }
    .section {
        padding: 60px 0;
    }
    .section-header {
        margin-bottom: 34px;
    }
    #top-sales-grid.catalog-grid.top-sales-track,
    #catalog-grid.catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }
    .catalog-card {
        border-radius: 24px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    }
    .catalog-card-body {
        gap: 10px;
        padding: 12px 12px 14px;
    }
    .catalog-card-media {
        aspect-ratio: 1.02 / 1;
    }
    #top-sales-grid .catalog-card-media {
        aspect-ratio: 1.08 / 1;
    }
    .catalog-stock-panel {
        gap: 22px;
        margin-top: 28px;
        padding-top: 28px;
    }
    .catalog-card-overlay {
        padding: 10px;
    }
    .catalog-card-tag {
        min-height: 24px;
        padding: 0 10px;
        font-size: 10px;
        letter-spacing: 0.03em;
    }
    .catalog-card-open {
        width: 40px;
        height: 40px;
    }
    .catalog-card-head {
        gap: 8px;
        align-items: flex-start;
    }
    .catalog-card-head h3 {
        font-size: 18px;
        line-height: 1.08;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
    }
    .catalog-card-head h3 span {
        display: none;
    }
    .catalog-card-year {
        min-height: 26px;
        padding: 0 10px;
        font-size: 11px;
    }
    .catalog-card-price-row {
        order: 3;
        gap: 4px;
        margin-top: auto;
        align-items: flex-start;
        flex-direction: column;
    }
    .catalog-card-price {
        font-size: 24px;
    }
    .catalog-card-price-note {
        font-size: 10px;
        line-height: 1.25;
    }
    .catalog-card-mobile-summary {
        order: 2;
        display: grid;
        gap: 4px;
    }
    .catalog-card-mobile-line {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .catalog-card-specs {
        display: none;
    }
    .catalog-modal-specs {
        grid-template-columns: 1fr;
    }
    .catalog-card-copy {
        display: none;
    }
    .catalog-card-cta {
        display: none;
    }
    .catalog-modal-panel h3 {
        font-size: 28px;
    }
    #catalog-grid .catalog-card .catalog-card-price-note {
        display: none;
    }
    #catalog-grid .catalog-card .catalog-card-open {
        width: 38px;
        height: 38px;
    }
    #catalog-grid .catalog-card .catalog-card-body {
        min-height: 124px;
    }
    #catalog-grid .catalog-card .catalog-card-head h3 {
        font-size: 17px;
    }
    #catalog-grid .catalog-card .catalog-card-price {
        font-size: 21px;
    }
    #catalog-grid .catalog-card .catalog-card-mobile-line {
        font-size: 12px;
    }
    #catalog-grid .catalog-card .catalog-card-tag {
        font-size: 9px;
        padding: 0 8px;
    }
    #catalog-grid .catalog-card .catalog-card-year {
        min-height: 24px;
        padding: 0 8px;
        font-size: 10px;
    }
    .section-title {
        font-size: clamp(24px, 7.8vw, 38px);
        line-height: 1.02;
        letter-spacing: -0.038em;
    }
    .section-desc {
        font-size: 15px;
    }
    .slide-title {
        font-size: clamp(30px, 8.8vw, 46px);
        line-height: 0.96;
    }
    .slide-desc {
        font-size: 15px;
    }
    .slide-copy-wide,
    .slide-copy {
        max-width: 100%;
    }
    .slide-title-usa {
        max-width: 8.8ch;
    }
    .slide-actions {
        flex-direction: column;
    }
    .slide-actions a,
    .slide-actions button {
        width: 100%;
    }
    .header-inner {
        width: calc(100% - 32px);
    }
    .logo-text {
        font-size: 18px;
    }
    .header-actions {
        gap: 6px;
    }
    .header-icon {
        width: 42px;
        height: 42px;
    }
    .infograph-grid {
        grid-template-columns: 1fr;
    }
    .infograph-card {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .ig-visual {
        display: none;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .review-card {
        width: 300px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 40px 0 28px;
    }
    .fb-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .field-row {
        grid-template-columns: 1fr;
    }
    .float-btns {
        display: none;
    }
    .mob-nav {
        display: grid;
    }
    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom, 0));
    }
    .stat-item {
        flex: 0 0 100%;
    }
    .ticker-arrow {
        display: none;
    }
    .slide-stats-row {
        flex-direction: column;
    }
    .usa-focus-glow {
        right: -34%;
        top: 32%;
        width: 92vw;
    }
    .usa-focus-flag {
        right: -34%;
        top: 34%;
        width: 82vw;
        opacity: 0.18;
    }
    .usa-focus-tags {
        gap: 10px;
        margin-top: 22px;
    }
    .usa-focus-tags span {
        min-height: 40px;
        padding: 0 14px;
        font-size: 12px;
    }
    .slide-stat-divider {
        display: none;
    }
    .catalog-intro {
        grid-template-columns: 1fr;
        padding: 26px 20px;
    }
    .catalog-intro-copy h3 {
        font-size: 24px;
    }
    .catalog-actions {
        min-width: 0;
        width: 100%;
    }
    .catalog-more-btn {
        width: 100%;
        min-width: 0;
    }
    .catalog-card-price {
        font-size: 28px;
    }
    .modal-box,
    .final-form-box,
    .lead-form-box,
    .popup-box {
        padding: 24px 18px;
    }
    .hero-nav {
        bottom: 20px;
    }
}
