/* ============ OsCars — dark premium: black & gold (Masson palette) ============ */
:root {
    --bg: #0a0a0b;
    --bg-alt: #101012;
    --panel: #121214;
    --panel-2: #17171a;
    --line: rgba(255, 255, 255, 0.09);
    --text: #ececea;
    --muted: #8b8b90;
    --accent: #c9a25e;
    --accent-2: #a8783d;
    --accent-glow: rgba(201, 162, 94, 0.35);
    --radius: 18px;
    --font-display: "Unbounded", sans-serif;
    --font-body: "Inter", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
::selection { background: var(--accent); color: #14100a; }
html { scroll-behavior: smooth; }
body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- reveal animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn--primary {
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    color: #14100a;
    box-shadow: 0 8px 30px -8px var(--accent-glow);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px var(--accent-glow); }
.btn--ghost {
    border-color: var(--line);
    color: var(--text);
    background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn--sm { padding: 10px 22px; font-size: 14px; }
.btn--full { width: 100%; }

.accent {
    background: linear-gradient(120deg, var(--accent), #e0c188);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- header ---------- */
.header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    padding: 18px 0;
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
    border-bottom: 1px solid transparent;
}
.header.is-scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 11, 0.82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom-color: var(--line);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.02em;
}
.logo__mark { color: var(--accent); }
.nav { display: flex; gap: 28px; }
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    transition: color 0.2s ease;
}
.nav__link:hover { color: var(--text); }
.header__actions { display: flex; align-items: center; gap: 18px; }
.header__phone { font-size: 14px; font-weight: 600; color: var(--muted); transition: color 0.2s; }
.header__phone:hover { color: var(--accent); }
.burger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.burger span { width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

/* ---------- hero ---------- */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 92px 0 0;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 42%;
    filter: brightness(0.52) saturate(0.85);
    animation: heroIn 2.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes heroIn {
    from { transform: scale(1.14); filter: brightness(0.15) saturate(0.6); }
    to { transform: scale(1); filter: brightness(0.52) saturate(0.85); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, var(--bg) 5%, transparent 48%),
        linear-gradient(to bottom, rgba(10, 10, 11, 0.78), transparent 32%),
        radial-gradient(ellipse 85% 70% at 50% 58%, transparent 25%, rgba(10, 10, 11, 0.6) 100%);
}
.hero__side {
    position: absolute;
    right: 34px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transform-origin: center;
    z-index: 2;
}
.hero__side span {
    font-size: 10px;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: rgba(139, 139, 144, 0.75);
    white-space: nowrap;
}
.hero__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.hero__tag {
    font-size: 12px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 26px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to { opacity: 1; transform: none; }
}
.hero__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 4.4vw, 52px);
    line-height: 1.14;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 30px;
}
.hero__title .fancy {
    font-family: "Playfair Display", serif;
    font-style: normal;
    font-weight: 600;
    font-size: 1.06em;
    line-height: 1;
    letter-spacing: 0.04em;
    background: linear-gradient(110deg, #b98d4a, var(--accent) 45%, #ecd3a2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-right: 0.08em;
}
.line-mask { display: block; overflow: hidden; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.line-mask > span {
    display: block;
    transform: translateY(120%);
    transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
body.is-loaded .line-mask > span { transform: translateY(0); }
.hero__subtitle {
    max-width: 640px;
    margin: 0 auto 44px;
    color: var(--muted);
    font-size: clamp(14px, 1.3vw, 16px);
    line-height: 1.8;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.1s forwards;
}
.hero__actions {
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.25s forwards;
}
.hero__cta {
    position: relative;
    width: 94px;
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-display);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text);
    padding: 12px;
}
.hero__cta-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 162, 94, 0.45);
    border-radius: 50%;
    animation: pulseRing 3s ease-in-out infinite;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.5s ease, box-shadow 0.5s ease;
}
@keyframes pulseRing {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}
.hero__cta:hover .hero__cta-ring {
    transform: scale(1.12);
    border-color: var(--accent);
    box-shadow: 0 0 40px -10px var(--accent-glow);
    animation: none;
}
.hero__stats {
    display: flex;
    justify-content: center;
    gap: clamp(36px, 7vw, 96px);
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 22px clamp(20px, 4vw, 60px) 0;
    opacity: 0;
    animation: fadeUp 1s cubic-bezier(0.22, 1, 0.36, 1) 1.4s forwards;
}
.stat { text-align: center; }
.stat__num, .stat__plus {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(20px, 2.2vw, 26px);
    color: var(--text);
}
.stat__plus { color: var(--accent); }
.stat__label {
    display: block;
    margin-top: 4px;
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero__scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin: 24px 0 16px;
    opacity: 0;
    animation: fadeUp 1s ease 1.7s forwards;
}
.hero__scroll span {
    font-size: 10px;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: var(--muted);
}
.hero__scroll i {
    width: 1px;
    height: 30px;
    background: linear-gradient(var(--accent), transparent);
    overflow: hidden;
    position: relative;
}
.hero__scroll i::after {
    content: "";
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, var(--accent));
    animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
    to { top: 100%; }
}

/* marquee */
.hero__marquee {
    position: relative;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.015);
}
.marquee__track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 30s linear infinite;
    font-family: var(--font-display);
    font-size: 14px;
    letter-spacing: 0.22em;
    color: rgba(139, 139, 144, 0.55);
    white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 110px 0; position: relative; }
.section--alt { background: var(--bg-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section__tag {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.section__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.2;
    margin-bottom: 56px;
}

/* ---------- services ---------- */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service {
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 38px 32px;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 94, 0.4);
    box-shadow: 0 24px 50px -20px rgba(201, 162, 94, 0.25);
}
.service__icon {
    width: 54px; height: 54px;
    display: grid; place-items: center;
    border-radius: 14px;
    background: rgba(201, 162, 94, 0.1);
    color: var(--accent);
    margin-bottom: 24px;
}
.service__icon svg { width: 28px; height: 28px; }
.service__title { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-bottom: 14px; }
.service__text { color: var(--muted); font-size: 15px; margin-bottom: 22px; }
.service__link { color: var(--accent); font-weight: 600; font-size: 14px; transition: opacity 0.2s; }
.service__link:hover { opacity: 0.75; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
    position: relative;
    padding: 32px 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.3s ease, transform 0.3s ease;
}
.step:hover { border-color: rgba(201, 162, 94, 0.4); transform: translateY(-4px); }
.step__num {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(201, 162, 94, 0.9), rgba(201, 162, 94, 0.1));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    margin-bottom: 18px;
}
.step__title { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.step__text { color: var(--muted); font-size: 14px; }

/* ---------- cards (catalog) ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.card:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 162, 94, 0.4);
    box-shadow: 0 24px 50px -20px rgba(201, 162, 94, 0.25);
}
.card__img { position: relative; aspect-ratio: 16 / 10; background: #101013; overflow: hidden; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card__img img { transform: scale(1.05); }
.card__placeholder {
    height: 100%;
    display: grid;
    place-items: center;
    color: rgba(139, 139, 144, 0.35);
}
.card__placeholder svg { width: 84px; height: 84px; }
.card__badge {
    position: absolute;
    top: 14px; left: 14px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(8px);
    background: rgba(201, 162, 94, 0.16);
    color: var(--accent);
    border: 1px solid rgba(201, 162, 94, 0.3);
}
.card__badge--on_the_way { background: rgba(216, 216, 220, 0.14); color: #d8d8dc; border-color: rgba(216, 216, 220, 0.3); }
.card__body { padding: 24px; }
.card__title { font-family: var(--font-display); font-size: 17px; font-weight: 600; margin-bottom: 12px; }
.card__specs { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--muted); font-size: 13px; margin-bottom: 20px; }
.card__footer { display: flex; align-items: center; justify-content: space-between; }
.card__price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--accent); }
.cards__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 70px 24px;
    border: 1px dashed var(--line);
    border-radius: var(--radius);
    color: var(--muted);
}
.cards__empty p { margin-bottom: 24px; font-size: 16px; }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature {
    padding: 30px 26px;
    border-left: 2px solid rgba(201, 162, 94, 0.5);
    background: linear-gradient(90deg, rgba(201, 162, 94, 0.05), transparent 60%);
    border-radius: 0 var(--radius) var(--radius) 0;
}
.feature__title { font-size: 16px; font-weight: 600; margin-bottom: 10px; }
.feature__text { color: var(--muted); font-size: 14px; }

/* ---------- contact ---------- */
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.contact__text { color: var(--muted); margin-bottom: 32px; max-width: 440px; }
.contact__row { display: flex; flex-direction: column; gap: 6px; }
.contact__link { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--text); transition: color 0.2s; }
.contact__link:hover { color: var(--accent); }
.contact__label { color: var(--muted); font-size: 14px; }

.form {
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 40px;
}
.form__group { position: relative; margin-bottom: 22px; }
.form__group input,
.form__group textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    resize: vertical;
}
.form__group input:focus,
.form__group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 94, 0.15);
}
.form__group label {
    position: absolute;
    left: 16px; top: 16px;
    color: var(--muted);
    font-size: 15px;
    pointer-events: none;
    transition: 0.2s ease;
    background: transparent;
}
.form__group input:focus + label,
.form__group input:not(:placeholder-shown) + label,
.form__group textarea:focus + label,
.form__group textarea:not(:placeholder-shown) + label {
    top: -9px;
    left: 12px;
    font-size: 12px;
    color: var(--accent);
    background: var(--panel);
    padding: 0 6px;
    border-radius: 4px;
}
.form__note { margin-top: 16px; font-size: 12px; color: var(--muted); text-align: center; }

/* ---------- toasts ---------- */
.toasts { position: fixed; top: 90px; right: 24px; z-index: 200; display: flex; flex-direction: column; gap: 10px; }
.toast {
    padding: 16px 22px;
    border-radius: 12px;
    background: var(--panel-2);
    border: 1px solid rgba(201, 162, 94, 0.4);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.6);
    font-size: 14px;
    animation: toast-in 0.4s ease, toast-out 0.4s ease 5s forwards;
}
.toast--error { border-color: rgba(255, 99, 99, 0.5); }
@keyframes toast-in { from { opacity: 0; transform: translateX(30px); } }
@keyframes toast-out { to { opacity: 0; transform: translateX(30px); visibility: hidden; } }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--bg-alt); padding: 64px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer__text { color: var(--muted); font-size: 14px; margin-top: 16px; }
.footer__title { font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 18px; }
.footer__link { display: block; color: var(--muted); font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
a.footer__link:hover { color: var(--accent); }
.footer__bottom {
    border-top: 1px solid var(--line);
    padding: 22px 24px;
    font-size: 13px;
    color: var(--muted);
    text-align: center;
}

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
    .services, .cards { grid-template-columns: repeat(2, 1fr); }
    .steps, .features { grid-template-columns: repeat(2, 1fr); }
    .header__phone { display: none; }
}
@media (max-width: 768px) {
    .nav {
        position: fixed;
        inset: 0;
        height: 100dvh;
        background: rgba(10, 10, 11, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 32px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
        z-index: 90;
    }
    .nav.is-open { opacity: 1; pointer-events: auto; }
    .nav.is-open .nav__link {
        opacity: 0;
        transform: translateY(24px);
        animation: navLinkIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    }
    .nav.is-open .nav__link:nth-child(1) { animation-delay: 0.10s; }
    .nav.is-open .nav__link:nth-child(2) { animation-delay: 0.16s; }
    .nav.is-open .nav__link:nth-child(3) { animation-delay: 0.22s; }
    .nav.is-open .nav__link:nth-child(4) { animation-delay: 0.28s; }
    .nav.is-open .nav__link:nth-child(5) { animation-delay: 0.34s; }
    @keyframes navLinkIn {
        to { opacity: 1; transform: translateY(0); }
    }
    /* backdrop-filter on the fixed header creates a containing block for
       fixed children — the overlay would be trapped inside the header.
       While the menu is open, strip those props and lock page scroll. */
    body.nav-open { overflow: hidden; }
    body.nav-open .header {
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom-color: transparent;
    }
    .nav__link { font-size: 20px; font-family: var(--font-display); text-transform: uppercase; color: var(--text); }
    .burger { display: flex; position: relative; z-index: 95; }
    .burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.is-open span:nth-child(2) { opacity: 0; }
    .burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .header__actions .btn { display: none; }
    .section { padding: 80px 0; }
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
    .form { padding: 28px; }
    .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 560px) {
    .services, .cards, .steps, .features { grid-template-columns: 1fr; }
    .hero__stats { gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    .orb, .marquee__track { animation: none; }
    html { scroll-behavior: auto; }
}

/* ============ v2: services polish ============ */
.service { position: relative; overflow: hidden; }
.service::before {
    content: "";
    position: absolute;
    top: 0; left: -80%;
    width: 50%; height: 100%;
    background: linear-gradient(100deg, transparent, rgba(201, 162, 94, 0.07), transparent);
    transform: skewX(-18deg);
    transition: left 0.7s ease;
    pointer-events: none;
}
.service:hover::before { left: 130%; }
.service__icon { transition: transform 0.35s ease, background 0.35s ease; }
.service:hover .service__icon { transform: rotate(-8deg) scale(1.08); background: rgba(201, 162, 94, 0.18); }
.service__link { display: inline-flex; align-items: center; gap: 6px; }
.service__link svg { transition: transform 0.25s ease; }
.service__link:hover svg { transform: translateX(4px); }

/* ============ v2: journey ============ */
.journey__wrap { position: relative; }
.journey__track { position: relative; height: 120px; margin-bottom: 8px; }
.journey__svg { width: 100%; height: 100%; overflow: visible; }
.journey__path { fill: none; stroke-width: 2; vector-effect: non-scaling-stroke; }
.journey__path--base { stroke: rgba(255, 255, 255, 0.2); stroke-dasharray: 6 8; }
.journey__path--progress {
    stroke: var(--accent);
    filter: drop-shadow(0 0 6px var(--accent-glow));
}
.journey__node circle:first-child {
    fill: var(--bg-alt);
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 1.5;
    transition: stroke 0.4s ease, fill 0.4s ease;
}
.journey__node circle:last-child {
    fill: rgba(255, 255, 255, 0.5);
    transition: fill 0.4s ease, r 0.4s ease;
}
.journey__node.is-active circle:first-child { stroke: var(--accent); fill: rgba(201, 162, 94, 0.12); }
.journey__node.is-active circle:last-child { fill: var(--accent); }
.journey__dot {
    fill: #fff;
    stroke: var(--accent);
    stroke-width: 3;
    filter: drop-shadow(0 0 10px var(--accent));
}
.journey__steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}
.jstep {
    padding: 26px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.015);
    transition: border-color 0.45s ease, background 0.45s ease, transform 0.45s ease, opacity 0.45s ease;
    opacity: 0.55;
}
.jstep.is-active {
    opacity: 1;
    border-color: rgba(201, 162, 94, 0.45);
    background: linear-gradient(180deg, rgba(201, 162, 94, 0.07), rgba(255, 255, 255, 0.01));
    transform: translateY(-6px);
}
.jstep__icon {
    width: 46px; height: 46px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(201, 162, 94, 0.1);
    color: var(--muted);
    margin-bottom: 16px;
    transition: color 0.45s ease, background 0.45s ease;
}
.jstep.is-active .jstep__icon { color: var(--accent); background: rgba(201, 162, 94, 0.16); }
.jstep__icon svg { width: 24px; height: 24px; }
.jstep__num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--accent);
    letter-spacing: 0.12em;
}
.jstep__title { font-size: 16px; font-weight: 600; margin: 8px 0 8px; }
.jstep__text { color: var(--muted); font-size: 13.5px; }

/* ============ v2: bento ============ */
.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 18px;
}
.bento__tile {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    padding: 26px;
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.bento__tile:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 94, 0.4);
    box-shadow: 0 24px 50px -20px rgba(201, 162, 94, 0.22);
}
.bento__tile h3 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.bento__tile p { color: var(--muted); font-size: 14px; }
.bento__icon {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 12px;
    background: rgba(201, 162, 94, 0.1);
    color: var(--accent);
    margin-bottom: 16px;
}
.bento__icon svg { width: 22px; height: 22px; }
.bento__tile--photo { grid-column: span 2; grid-row: span 2; padding: 0; }
.bento__tile--photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.bento__tile--photo:hover img { transform: scale(1.04); }
.bento__overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 28px 26px 24px;
    background: linear-gradient(transparent, rgba(10, 10, 11, 0.92));
}
.bento__overlay h3 { font-family: var(--font-display); font-size: 19px; }
.bento__tile--stat {
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(140deg, rgba(201, 162, 94, 0.16), var(--panel-2));
}
.bento__big {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(40px, 5vw, 58px);
    color: var(--accent);
    line-height: 1.1;
}
.bento__tile--savings { grid-column: span 2; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.savings__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.savings__head h3 { font-family: var(--font-display); font-size: 19px; }
.savings__hint { color: var(--muted); font-size: 12.5px; }
.savings__row {
    display: grid;
    grid-template-columns: 110px 1fr 70px;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 10px;
}
.savings__row b { color: var(--text); text-align: right; font-size: 13.5px; }
.savings__row--accent b { color: var(--accent); }
.savings__line {
    height: 8px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}
.savings__line i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.45);
    transition: width 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) 0.2s;
}
.savings__line i.savings__fill { background: linear-gradient(90deg, var(--accent-2), var(--accent)); box-shadow: 0 0 12px var(--accent-glow); }
.bento__tile.is-visible .savings__line i { width: var(--w); }

/* ============ v2: responsive ============ */
@media (max-width: 1024px) {
    .hero__side { display: none; }
    .journey__steps { grid-template-columns: repeat(2, 1fr); }
    .journey__track { display: none; }
    .jstep { opacity: 1; }
    .bento { grid-template-columns: repeat(2, 1fr); }
    .bento__tile--photo { grid-column: span 2; }
    .bento__tile--stat, .bento__tile--savings { grid-column: span 2; }
}
@media (max-width: 640px) {
    .journey__steps { grid-template-columns: 1fr; }
    .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
    .bento__tile--photo { grid-row: span 1; min-height: 240px; }
    .bento__tile--photo, .bento__tile--stat, .bento__tile--savings { grid-column: span 1; }
    .bento__tile--stat { min-height: 160px; }
    .hero__cta { width: 88px; height: 88px; font-size: 10px; }
    .hero__stats { gap: 26px; }
}
@media (prefers-reduced-motion: reduce) {
    .line-mask > span { transform: none; transition: none; }
    .hero__media img, .hero__cta-ring, .hero__scroll i::after { animation: none; }
    .hero__tag, .hero__subtitle, .hero__actions, .hero__stats, .hero__scroll { opacity: 1; animation: none; }
}

/* ============ inner pages: page hero ============ */
.phero {
    padding: clamp(150px, 22vh, 220px) 0 clamp(40px, 6vw, 70px);
    position: relative;
    overflow: hidden;
}
.phero::before {
    content: "";
    position: absolute;
    top: -220px;
    right: -160px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 162, 94, 0.14), transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}
.phero__kicker {
    font-size: 12px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 22px;
}
.phero__title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(34px, 6.4vw, 78px);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}
.phero__title .fancy {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 1.06em;
    letter-spacing: 0.04em;
    background: linear-gradient(110deg, #b98d4a, var(--accent) 45%, #ecd3a2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.phero__note {
    max-width: 520px;
    color: var(--muted);
    font-size: 15px;
    margin-top: 26px;
}
.phero__meta {
    display: flex;
    gap: clamp(32px, 6vw, 80px);
    flex-wrap: wrap;
    margin-top: 44px;
    border-top: 1px solid var(--line);
    padding-top: 28px;
}
.phero__meta-item { display: flex; flex-direction: column; gap: 4px; }
.phero__meta-item span {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
}
.phero__meta-item b {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(16px, 1.8vw, 21px);
    color: var(--accent);
}

/* ============ service detail ============ */
.sdetail { padding-top: clamp(30px, 5vw, 60px); }
.sdetail__grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: clamp(40px, 6vw, 96px);
    align-items: start;
}
.sdetail__lead {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1.5;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 28px;
}
.sdetail__p { color: var(--muted); margin-bottom: 18px; font-size: 15.5px; }
.sdetail__includes {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    padding: 32px 30px;
    position: sticky;
    top: 100px;
}
.sdetail__includes h3 {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.includes { list-style: none; }
.includes li {
    position: relative;
    padding: 11px 0 11px 30px;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--text);
}
.includes li:last-child { border-bottom: none; }
.includes li::before {
    content: "✦";
    position: absolute;
    left: 0;
    top: 12px;
    color: var(--accent);
    font-size: 11px;
}

/* ============ price rows ============ */
.price-rows { border-top: 1px solid var(--line); }
.price-row {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr auto;
    gap: 24px;
    align-items: center;
    padding: clamp(20px, 2.4vw, 28px) 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.5s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s;
}
.price-row:hover { padding-left: 18px; }
.price-row__info h3 {
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 600;
}
.price-row__info p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.price-row__time {
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}
.price-row__price {
    justify-self: end;
    text-align: right;
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--accent);
    white-space: nowrap;
}
.price-note {
    margin-top: 26px;
    color: var(--muted);
    font-size: 13px;
    max-width: 560px;
}

/* ============ other services ============ */
.other-services { border-top: 1px solid var(--line); }
.other-service {
    display: grid;
    grid-template-columns: 70px 1fr 40px;
    align-items: center;
    gap: 20px;
    padding: clamp(22px, 3vw, 34px) 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.other-service:hover { padding-left: 20px; }
.other-service__num {
    font-family: var(--font-display);
    font-size: 13px;
    color: var(--muted);
    transition: color 0.3s;
}
.other-service:hover .other-service__num { color: var(--accent); }
.other-service__title {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: clamp(18px, 2.4vw, 28px);
    text-transform: uppercase;
}
.other-service__arrow {
    font-size: 22px;
    color: var(--muted);
    justify-self: end;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s;
}
.other-service:hover .other-service__arrow { transform: translateX(6px) rotate(-45deg); color: var(--accent); }

/* ============ page cta ============ */
.page-cta { text-align: center; }
.page-cta .section__title { margin-bottom: 18px; }
.page-cta__sub { color: var(--muted); margin-bottom: 34px; }

/* ============ catalog filters + pagination ============ */
.catalog { padding-top: clamp(20px, 4vw, 40px); }
.filters {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}
.filters__group { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-chip {
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.02);
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.filter-chip:hover { color: var(--text); border-color: rgba(201, 162, 94, 0.5); }
.filter-chip.is-active {
    color: #14100a;
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    border-color: transparent;
}
.filter-chip--ghost { padding: 7px 16px; font-size: 12px; }
.filter-chip--ghost.is-active {
    background: none;
    color: var(--accent);
    border-color: var(--accent);
}
.card__desc { color: var(--muted); font-size: 13px; margin-bottom: 18px; }
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 50px;
}
.pagination__link {
    width: 46px; height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--text);
    font-size: 17px;
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
}
.pagination__link:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.pagination__info { color: var(--muted); font-size: 13px; letter-spacing: 0.1em; }

@media (max-width: 900px) {
    .sdetail__grid { grid-template-columns: 1fr; }
    .sdetail__includes { position: static; }
    .price-row { grid-template-columns: 1fr auto; }
    .price-row__time { display: none; }
    .phero__meta { gap: 24px; }
}

.catalog-more { text-align: center; margin-top: 44px; }
@media (max-width: 900px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

/* ============ car detail ============ */
.phero--compact { padding-bottom: 10px; }
.backlink {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 26px;
    transition: color 0.25s;
}
.backlink:hover { color: var(--accent); }
.cdetail-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.phero__title--car { font-size: clamp(30px, 5vw, 60px); }
.cdetail-price { text-align: right; }
.cdetail-price__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 4px;
}
.cdetail-price__num {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(26px, 3.6vw, 42px);
    color: var(--accent);
}
.cdetail { padding-top: clamp(24px, 4vw, 44px); }
.cdetail__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: clamp(32px, 5vw, 64px);
    align-items: start;
}
.gallery__main {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    aspect-ratio: 16 / 10;
    background: #101013;
}
.gallery__main img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
}
.gallery__main--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: rgba(139, 139, 144, 0.5);
}
.gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-top: 10px;
}
.gallery__thumb {
    border: 1px solid var(--line);
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
    background: none;
    cursor: pointer;
    aspect-ratio: 16 / 10;
    opacity: 0.55;
    transition: opacity 0.3s, border-color 0.3s;
}
.gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
.gallery__thumb:hover { opacity: 0.85; }
.gallery__thumb.is-active { opacity: 1; border-color: var(--accent); }
.cdetail__desc { margin-top: 36px; }
.cdetail__desc h3 {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}
.cdetail__desc p { color: var(--muted); font-size: 15px; }
.cdetail__side { display: flex; flex-direction: column; gap: 22px; }
.specs {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    padding: 28px;
}
.specs h3 {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}
.specs__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
}
.specs__row span { color: var(--muted); }
.specs__row b { font-weight: 600; text-align: right; }
.specs__calc-link {
    display: inline-block;
    margin-top: 16px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--accent);
    transition: opacity 0.25s;
}
.specs__calc-link:hover { opacity: 0.75; }
.form--side { padding: 28px; }
.form__title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 20px;
}
.card__link-wrap { display: block; }

/* ============ calculator ============ */
.calc { padding-top: clamp(20px, 4vw, 40px); }
.calc__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}
.calc__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    padding: 34px;
}
.calc__field { display: flex; flex-direction: column; gap: 9px; }
.calc__field label {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}
.calc__field input,
.calc__field select {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    width: 100%;
    appearance: none;
}
.calc__field select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b8b90' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}
.calc__field input:focus,
.calc__field select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(201, 162, 94, 0.15);
}
.calc__field:first-child { grid-column: span 2; }
.calc__field:nth-child(2) { grid-column: span 2; }
.calc__toggle {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}
.calc__toggle button {
    padding: 12px 8px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.02);
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.calc__toggle button:hover { color: var(--text); border-color: rgba(201, 162, 94, 0.5); }
.calc__toggle button.is-active {
    color: #14100a;
    background: linear-gradient(120deg, var(--accent-2), var(--accent));
    border-color: transparent;
    font-weight: 600;
}
.calc__result {
    border: 1px solid rgba(201, 162, 94, 0.3);
    border-radius: var(--radius);
    background:
        radial-gradient(ellipse at top right, rgba(201, 162, 94, 0.08), transparent 60%),
        linear-gradient(160deg, var(--panel), var(--panel-2));
    padding: 34px;
    position: sticky;
    top: 100px;
}
.calc__result-title {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}
.calc__row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 14.5px;
}
.calc__row span { color: var(--muted); }
.calc__row i { font-style: normal; font-size: 11.5px; color: rgba(139, 139, 144, 0.7); }
.calc__row b {
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}
.calc__row--total b { color: var(--accent); font-size: 19px; }
.calc__row--grand { border-bottom: none; }
.calc__row--grand b { font-size: 22px; font-weight: 700; }
.calc__disclaimer {
    margin: 18px 0 22px;
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .cdetail__grid, .calc__grid { grid-template-columns: 1fr; }
    .calc__result { position: static; }
    .cdetail-price { text-align: left; }
}
@media (max-width: 560px) {
    .calc__form { grid-template-columns: 1fr; padding: 24px; }
    .calc__field:first-child, .calc__field:nth-child(2) { grid-column: span 1; }
    .calc__toggle { grid-template-columns: repeat(2, 1fr); }
    .gallery__thumbs { grid-template-columns: repeat(4, 1fr); }
}
