/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #e4bd57;
    --gold-light: #f7d978;
    --gold-dark: #a5791f;
    --bg-dark: #0B0B0F;
    --bg-card: #141418;
    --bg-card-hover: #1A1A22;
    --bg-section: #0F0F14;
    --text-white: #FFFFFF;
    --text-gray: #9A9A9A;
    --text-light: #CCCCCC;
    --border-gold: rgba(228, 189, 87, 0.32);
    --shadow-gold: 0 0 30px rgba(228, 189, 87, 0.2);
    --font-heading: 'Cinzel', 'Times New Roman', serif;
    --font-body: 'Manrope', 'Segoe UI', sans-serif;
    --container: 1200px;
    --header-h: 80px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background:
        radial-gradient(1200px 700px at 12% -10%, rgba(212, 175, 55, 0.12), transparent 55%),
        radial-gradient(900px 520px at 88% 8%, rgba(212, 175, 55, 0.09), transparent 52%),
        radial-gradient(700px 420px at 50% 100%, rgba(212, 175, 55, 0.06), transparent 60%),
        repeating-linear-gradient(135deg, rgba(212, 175, 55, 0.025) 0 2px, transparent 2px 16px),
        linear-gradient(180deg, #0b0b0f 0%, #0d0d12 45%, #09090c 100%);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color .3s;
}

ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input { font-family: inherit; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold);
}

.gold-link {
    color: var(--gold);
    transition: color .3s;
}
.gold-link:hover { color: var(--gold-light); }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all .3s ease;
    text-align: center;
}

.btn--gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #000;
    border: 1px solid var(--gold);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}
.btn--gold:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.btn--full {
    width: 100%;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-h);
    background: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-h);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo__icon {
    font-size: 2rem;
    color: var(--gold);
    line-height: 1;
}

.logo__text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
}

.nav__list {
    display: flex;
    gap: 30px;
}

.nav__link {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-light);
    transition: color .3s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width .3s;
}
.nav__link:hover { color: var(--gold); }
.nav__link:hover::after { width: 100%; }

.header__contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header__phone-wrapper {
    text-align: right;
}

.header__label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.header__phone {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.5px;
}
.header__phone:hover { color: var(--gold-light); }

.header__btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 30px;
    z-index: 1001;
}
.burger span {
    display: block;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all .3s;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--header-h);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 72% 48%, rgba(212, 175, 55, 0.14) 0%, transparent 60%),
        radial-gradient(ellipse at 28% 82%, rgba(212, 175, 55, 0.08) 0%, transparent 52%),
        repeating-linear-gradient(-32deg, rgba(212, 175, 55, 0.03) 0 2px, transparent 2px 20px),
        linear-gradient(180deg, #0b0b0f 0%, #0f0f14 100%);
    z-index: 0;
}

.hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex: 1;
    padding-top: 40px;
    padding-bottom: 120px;
}

.hero__content {
    flex: 1;
    max-width: 600px;
}

.hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 2px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
}

.hero__subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 36px;
    letter-spacing: 3px;
    font-weight: 300;
}

/* ===== HERO STATS BLOCK ===== */
.hero__image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 520px;
}

.hero__stats {
    width: 100%;
    background: rgba(20, 20, 26, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 16px;
    padding: 32px 28px 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(212,175,55,0.1);
    position: relative;
    overflow: hidden;
}
.hero__stats::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.hero__stats-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 20px;
    text-align: center;
}

.hero__stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center;
    transition: all .3s;
}
.stat-card:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212,175,55,0.15);
}

.stat-card__icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
    display: block;
    filter: drop-shadow(0 0 6px rgba(212,175,55,0.5));
}

.stat-card__value {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.1;
    margin-bottom: 4px;
    text-shadow: 0 0 16px rgba(212,175,55,0.3);
}

.stat-card__label {
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero__badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.07);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 0.3px;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

/* ===== ADVANTAGES ===== */
.advantages {
    position: relative;
    z-index: 2;
    background: rgba(20, 20, 24, 0.9);
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.advantages__inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0;
}

.advantage {
    text-align: center;
    max-width: 220px;
}

.advantage__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
}
.advantage__icon svg {
    width: 100%;
    height: 100%;
}

.advantage__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    color: var(--gold);
}

.advantage__text {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* ===== PRICES ===== */
.prices {
    padding: 80px 0;
    background:
        radial-gradient(1000px 420px at 20% 0%, rgba(212, 175, 55, 0.07), transparent 62%),
        radial-gradient(900px 380px at 90% 100%, rgba(212, 175, 55, 0.05), transparent 58%),
        linear-gradient(180deg, #0f0f14 0%, #101017 100%);
    position: relative;
}
.prices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.prices__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.price-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 28px 20px;
    text-align: center;
    transition: all .4s ease;
    overflow: hidden;
}
.price-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: var(--bg-card-hover);
}

.price-card__shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(212, 175, 55, 0.05) 50%,
        transparent 60%
    );
    transform: rotate(0deg);
    transition: transform .6s;
    pointer-events: none;
}
.price-card:hover .price-card__shine {
    transform: rotate(180deg);
}

.price-card__header {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
    color: var(--text-light);
}

.price-card__value {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1.2;
}

.price-card__currency {
    font-size: 1.2rem;
    font-weight: 400;
}

.price-card__unit {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 4px;
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 80px 0;
    background:
        radial-gradient(850px 380px at 50% -10%, rgba(212, 175, 55, 0.06), transparent 60%),
        repeating-linear-gradient(45deg, rgba(212, 175, 55, 0.018) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, #0c0c11 0%, #0b0b10 100%);
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
}

.step {
    text-align: center;
    flex: 1;
    max-width: 200px;
    position: relative;
}

.step__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}
.step__icon svg {
    width: 40px;
    height: 40px;
}
.step:hover .step__icon {
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.step__number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 6px;
    opacity: 0.7;
}

.step__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
}

.step__text {
    font-size: 0.82rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.step__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 1px solid rgba(228, 189, 87, 0.24);
    background: radial-gradient(circle at 30% 30%, rgba(247, 217, 120, 0.16), rgba(228, 189, 87, 0.04) 55%, rgba(0, 0, 0, 0) 100%);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.step__arrow svg {
    width: 36px;
    height: 36px;
    opacity: 1;
    filter: drop-shadow(0 0 12px rgba(228, 189, 87, 0.3));
}

/* ===== CONTACT ===== */
.contact {
    padding: 80px 0;
    background:
        radial-gradient(900px 420px at 15% 90%, rgba(212, 175, 55, 0.08), transparent 62%),
        radial-gradient(700px 300px at 88% 0%, rgba(212, 175, 55, 0.06), transparent 58%),
        linear-gradient(180deg, #0f0f14 0%, #111118 100%);
    position: relative;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact__form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 8px;
    padding: 40px 36px;
}

.contact__title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 2px;
}

.form-group {
    margin-bottom: 16px;
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 4px;
    color: var(--text-white);
    font-size: 0.95rem;
    transition: border-color .3s, box-shadow .3s;
    outline: none;
}
.form-input::placeholder {
    color: var(--text-gray);
}
.form-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}
.form-input.error {
    border-color: #e74c3c;
}

.consent-box {
    margin: 8px 0 14px;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(228, 189, 87, 0.18);
    background: rgba(228, 189, 87, 0.04);
    transition: border-color .25s ease, box-shadow .25s ease;
}

.consent-box.error {
    border-color: rgba(231, 76, 60, 0.9);
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12);
}

.consent-box--compact {
    margin-top: 2px;
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.consent-check input[type="checkbox"] {
    margin-top: 3px;
    accent-color: var(--gold);
    flex-shrink: 0;
}

.form-policy {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--text-gray);
    text-align: center;
}

.contact__info {
    padding: 28px 24px;
    border-radius: 14px;
    border: 1px solid rgba(228, 189, 87, 0.2);
    background: linear-gradient(165deg, rgba(20, 20, 28, 0.7) 0%, rgba(14, 14, 20, 0.88) 100%);
    box-shadow: inset 0 1px 0 rgba(255, 227, 152, 0.08);
}

.contact__info-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--gold);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.contact__info-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
}

.contact__address {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(228, 189, 87, 0.04);
    border: 1px solid rgba(228, 189, 87, 0.12);
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact__address-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(228, 189, 87, 0.08);
}
.contact__address-icon svg {
    width: 18px;
    height: 18px;
}

.contact__map {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
    height: 160px;
    background: var(--bg-card);
}

.contact__map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.85rem;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.contact__confidential {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
}

.contact__actions {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.contact__action {
    min-height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    padding: 0 14px;
    border: 1px solid rgba(228, 189, 87, 0.26);
    background: linear-gradient(145deg, rgba(228, 189, 87, 0.09) 0%, rgba(228, 189, 87, 0.03) 100%);
    color: var(--text-light);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
    transition: transform .2s ease, border-color .25s ease, color .25s ease;
}

.contact__action-icon {
    width: 24px;
    height: 24px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__action-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.contact__action:hover {
    border-color: rgba(255, 227, 152, 0.55);
    color: var(--text-white);
    transform: translateY(-1px);
}

.contact__action--max {
    grid-column: 1 / -1;
    border-color: rgba(168, 117, 255, 0.6);
    background: linear-gradient(145deg, rgba(168, 117, 255, 0.2) 0%, rgba(103, 74, 187, 0.1) 100%);
    color: #efe6ff;
}

.contact__action--max .contact__action-icon {
    color: #b98cff;
}

.contact__action--wa {
    border-color: rgba(46, 209, 111, 0.6);
    background: linear-gradient(145deg, rgba(46, 209, 111, 0.18) 0%, rgba(46, 209, 111, 0.08) 100%);
    color: #d8ffe8;
}

.contact__action--wa .contact__action-icon {
    color: #25d366;
}

.contact__action--tg {
    border-color: rgba(53, 168, 255, 0.6);
    background: linear-gradient(145deg, rgba(53, 168, 255, 0.18) 0%, rgba(53, 168, 255, 0.08) 100%);
    color: #d8ecff;
}

.contact__action--tg .contact__action-icon {
    color: #2aabee;
}

.contact__action--primary {
    grid-column: 1 / -1;
    min-height: 56px;
    justify-content: center;
    gap: 0;
    border-color: rgba(255, 227, 152, 0.75);
    background: linear-gradient(145deg, #fff1bf 0%, var(--gold-light) 35%, var(--gold) 100%);
    color: #0d0d12;
    letter-spacing: 1.3px;
    box-shadow: 0 10px 22px rgba(228, 189, 87, 0.32);
}

/* ===== CATALOG ===== */
.catalog {
    padding: 80px 0;
    background:
        radial-gradient(900px 400px at 80% 50%, rgba(212, 175, 55, 0.07), transparent 62%),
        linear-gradient(180deg, #0c0c11 0%, #0f0f14 100%);
    position: relative;
}

.catalog--page {
    min-height: 100vh;
    padding-top: 32px;
}
.catalog::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.catalog__subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-top: -36px;
    margin-bottom: 36px;
    letter-spacing: 1px;
}

/* Фильтры */
.catalog__filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 9px 22px;
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 30px;
    background: transparent;
    color: var(--text-gray);
    font-size: 0.82rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all .3s;
    font-family: var(--font-body);
}
.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(212, 175, 55, 0.3);
}

/* Сетка товаров */
.catalog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Карточка товара */
.product-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 12px;
    overflow: hidden;
    transition: all .4s ease;
    cursor: pointer;
    position: relative;
}
.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.2);
}

.product-card__img-wrap {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #1a1a20;
}
.product-card__img-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.product-card:hover .product-card__img-wrap img {
    transform: scale(1.07);
}

.product-card__no-img {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    opacity: 0.25;
}

.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: #000;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    z-index: 1;
}

.product-card__body {
    padding: 18px 18px 20px;
}

.product-card__category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 6px;
}

.product-card__title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text-white);
}

.product-card__meta {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 14px;
    line-height: 1.5;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product-card__price {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212,175,55,0.25);
}

.product-card__btn {
    padding: 8px 18px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Скелетон загрузки */
.product-skeleton {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    overflow: hidden;
    height: 340px;
    position: relative;
}
.product-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.06) 50%, transparent 100%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s infinite;
}
@keyframes skeleton-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Пустой каталог */
.catalog__empty {
    text-align: center;
    padding: 60px 0;
    color: var(--text-gray);
}
.catalog__empty-icon {
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 14px;
}
.catalog__empty p {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--text-light);
}
.catalog__empty span {
    font-size: 0.85rem;
}

/* ===== PRIVACY POLICY / OFFER ===== */
.policy-page,
.offer-page {
    padding: 32px 0 80px;
    min-height: 100vh;
    background:
        radial-gradient(900px 420px at 15% 0%, rgba(212, 175, 55, 0.08), transparent 62%),
        radial-gradient(900px 420px at 85% 100%, rgba(212, 175, 55, 0.05), transparent 58%),
        linear-gradient(180deg, #0c0c11 0%, #0f0f14 100%);
}

.legal-page .section-title {
    margin-bottom: 18px;
    line-height: 1.15;
    letter-spacing: 1px;
    font-size: clamp(1.55rem, 7vw, 2.6rem);
    overflow-wrap: anywhere;
    word-break: break-word;
    hyphens: auto;
}

.policy-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.policy-topbar__link {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.policy-hero-card {
    background: linear-gradient(165deg, rgba(20, 20, 28, 0.78) 0%, rgba(14, 14, 20, 0.92) 100%);
    border: 1px solid rgba(228, 189, 87, 0.22);
    border-radius: 18px;
    padding: 36px 28px;
    box-shadow: inset 0 1px 0 rgba(255, 227, 152, 0.08);
    margin-bottom: 28px;
    overflow: hidden;
}

.policy-eyebrow {
    text-align: center;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
    margin-bottom: 10px;
    opacity: 0.8;
}

.policy-intro {
    max-width: 900px;
    margin: 0 auto 14px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.98rem;
}

.policy-updated {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.82rem;
}

.policy-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.policy-card {
    background: var(--bg-card);
    border: 1px solid rgba(212, 175, 55, 0.16);
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.policy-card h2 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 0.8px;
}

.policy-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    margin-bottom: 10px;
}

.policy-list {
    padding-left: 18px;
    color: var(--text-light);
}

.policy-list li {
    margin-bottom: 6px;
}

.policy-note {
    margin-top: 24px;
    padding: 16px 18px;
    border-radius: 12px;
    border: 1px solid rgba(228, 189, 87, 0.2);
    background: rgba(228, 189, 87, 0.05);
    color: var(--text-light);
    text-align: center;
}

.footer__links {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

/* ===== COOKIES BANNER ===== */
.cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid rgba(228, 189, 87, 0.24);
    background: rgba(14, 14, 20, 0.96);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(10px);
}

.cookie-banner__text {
    font-size: 0.88rem;
    color: var(--text-light);
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__btn {
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .6px;
}

.cookie-banner__btn--secondary {
    color: var(--text-light);
    border: 1px solid rgba(228, 189, 87, 0.2);
    background: rgba(228, 189, 87, 0.06);
}

/* Лайтбокс просмотра */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 4000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    padding: 20px;
}
.lightbox.active {
    opacity: 1;
    visibility: visible;
}
.lightbox__inner {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform .3s;
}
.lightbox.active .lightbox__inner {
    transform: scale(1);
}
.lightbox__img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}
.lightbox__img-placeholder {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    background: #1a1a20;
    opacity: 0.3;
}
.lightbox__info {
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
}
.lightbox__close {
    position: absolute;
    top: 16px;
    right: 22px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color .3s;
    z-index: 1;
}
.lightbox__close:hover { color: var(--gold); }
.lightbox__category {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 8px;
}
.lightbox__title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.lightbox__desc {
    font-size: 0.88rem;
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 20px;
}
.lightbox__price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 18px;
}
.lightbox__contact {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-top: 12px;
    text-align: center;
}

/* Адаптив каталога */
@media (max-width: 1024px) {
    .catalog__grid { grid-template-columns: repeat(2, 1fr); }
    .policy-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .catalog__grid { grid-template-columns: 1fr; }
    .lightbox__inner { grid-template-columns: 1fr; }
    .lightbox__img, .lightbox__img-placeholder { aspect-ratio: 4/3; max-height: 220px; }
    .policy-topbar,
    .footer__inner,
    .footer__links,
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-banner {
        left: 12px;
        right: 12px;
        bottom: 12px;
    }
    .cookie-banner__actions {
        width: 100%;
        flex-direction: column;
    }
    .cookie-banner__actions .btn,
    .cookie-banner__btn {
        width: 100%;
        text-align: center;
    }
    .policy-hero-card {
        padding: 24px 16px;
    }
    .policy-card {
        padding: 18px 16px;
    }
    .step__arrow {
        width: 52px;
        height: 52px;
        margin: 0 auto;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 24px 0;
    background: rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__copy {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.footer__policy {
    font-size: 0.8rem;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
}
.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    position: relative;
    transform: translateY(30px);
    transition: transform .3s;
}
.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 1.8rem;
    color: var(--text-gray);
    transition: color .3s;
    line-height: 1;
}
.modal__close:hover { color: var(--gold); }

.modal__title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: 2px;
    text-align: center;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 8px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 3000;
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
    transform: translateY(100px);
    opacity: 0;
    transition: all .4s ease;
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast__icon {
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toast__text {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .prices__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps {
        flex-wrap: wrap;
        gap: 20px;
    }
    .step__arrow {
        display: none;
    }
    .step {
        flex: 0 0 calc(50% - 20px);
        max-width: none;
    }
}

/* ===== MOBILE MENU OVERLAY ===== */
.mmenu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #0b0b0f;
    display: flex;
    flex-direction: column;
    padding: 0 28px 36px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
    overflow-y: auto;
}
.mmenu.open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.mmenu__close {
    align-self: flex-end;
    margin-top: 20px;
    font-size: 2.2rem;
    color: var(--text-gray);
    cursor: pointer;
    line-height: 1;
    transition: color .25s;
    background: none;
    border: none;
    padding: 4px 0;
}
.mmenu__close:hover { color: var(--gold); }

.mmenu__logo {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    margin: 24px 0 36px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.mmenu__logo span { font-size: 1.6rem; }

.mmenu__nav {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-top: 1px solid rgba(212,175,55,0.12);
}

.mmenu__link {
    display: block;
    padding: 18px 4px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-light);
    border-bottom: 1px solid rgba(212,175,55,0.12);
    transition: color .25s, padding-left .25s;
}
.mmenu__link:hover {
    color: var(--gold);
    padding-left: 10px;
}

.mmenu__footer {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mmenu__label {
    font-size: 0.72rem;
    color: var(--text-gray);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mmenu__phone {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 1px;
}
.mmenu__phone:hover { color: var(--gold-light); }

.mmenu__cta {
    margin-top: 6px;
    font-size: 0.88rem;
    padding: 14px 24px;
}

@media (max-width: 768px) {
    :root { --header-h: 65px; }

    .nav, .header__contacts { display: none; }
    .burger { display: flex; z-index: 10000; }

    .hero__inner {
        flex-direction: column;
        text-align: center;
        padding-bottom: 60px;
    }
    .hero__image {
        max-width: 100%;
    }

    .advantages__inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .prices__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .contact__inner {
        grid-template-columns: 1fr;
    }

    .footer__inner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .prices__grid {
        grid-template-columns: 1fr;
    }
    .step {
        flex: 0 0 100%;
    }
    .contact__form-wrapper {
        padding: 28px 20px;
    }
    .hero__title {
        font-size: 2rem;
    }
    .btn--lg {
        padding: 15px 32px;
        font-size: 1rem;
    }
}

/* ===== STYLE UPGRADE (V2) ===== */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(45% 35% at 88% 10%, rgba(228, 189, 87, 0.14), transparent 70%),
        radial-gradient(35% 28% at 12% 82%, rgba(228, 189, 87, 0.1), transparent 72%),
        repeating-linear-gradient(120deg, rgba(228, 189, 87, 0.022) 0 1px, transparent 1px 16px);
    z-index: -1;
}

.section-title {
    letter-spacing: 3px;
    text-transform: uppercase;
}

.btn {
    border-radius: 10px;
}

.btn--gold {
    background: linear-gradient(145deg, #ffe9a0 0%, var(--gold-light) 38%, var(--gold) 68%, var(--gold-dark) 100%);
    border: 1px solid rgba(255, 227, 152, 0.65);
    box-shadow: 0 8px 22px rgba(228, 189, 87, 0.35);
}

.btn--gold:hover {
    background: linear-gradient(145deg, #fff1bf 0%, #fce08f 42%, var(--gold-light) 100%);
    box-shadow: 0 12px 30px rgba(228, 189, 87, 0.5);
}

.header {
    background: linear-gradient(90deg, rgba(8, 8, 12, 0.9) 0%, rgba(18, 18, 24, 0.85) 100%);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(228, 189, 87, 0.25);
}

.logo__text {
    letter-spacing: 2.5px;
}

.hero__title {
    text-shadow: 0 0 40px rgba(228, 189, 87, 0.24), 0 0 12px rgba(255, 255, 255, 0.1);
}

.hero__subtitle {
    letter-spacing: 4px;
}

.hero__stats {
    background: linear-gradient(165deg, rgba(19, 19, 27, 0.87) 0%, rgba(12, 12, 18, 0.94) 100%);
    border: 1px solid rgba(228, 189, 87, 0.32);
    border-radius: 20px;
    box-shadow: 0 24px 52px rgba(0, 0, 0, 0.52), inset 0 1px 0 rgba(228, 189, 87, 0.15);
}

.stat-card {
    background: linear-gradient(165deg, rgba(228, 189, 87, 0.1) 0%, rgba(228, 189, 87, 0.03) 100%);
    border: 1px solid rgba(228, 189, 87, 0.22);
    border-radius: 12px;
}

.advantages {
    background: linear-gradient(180deg, rgba(18, 18, 25, 0.95) 0%, rgba(14, 14, 20, 0.9) 100%);
}

.price-card {
    background: linear-gradient(160deg, rgba(20, 20, 28, 0.93) 0%, rgba(11, 11, 17, 0.96) 100%);
    border: 1px solid rgba(228, 189, 87, 0.28);
    border-radius: 14px;
}

.price-card:hover {
    box-shadow: 0 16px 36px rgba(228, 189, 87, 0.24);
}

.step__icon {
    border-radius: 16px;
}

.catalog {
    position: relative;
}

.catalog::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(70% 45% at 50% 50%, rgba(228, 189, 87, 0.05), transparent 75%);
}

.filter-btn {
    border-radius: 999px;
}

.product-card {
    background: linear-gradient(165deg, rgba(21, 21, 29, 0.92) 0%, rgba(13, 13, 19, 0.95) 100%);
    border: 1px solid rgba(228, 189, 87, 0.22);
    border-radius: 16px;
}

.product-card:hover {
    box-shadow: 0 18px 45px rgba(228, 189, 87, 0.25);
}

.contact__form-wrapper {
    background: linear-gradient(160deg, rgba(20, 20, 28, 0.9) 0%, rgba(13, 13, 18, 0.95) 100%);
    border: 1px solid rgba(228, 189, 87, 0.3);
    border-radius: 14px;
}

.form-input {
    border-radius: 10px;
}

.mmenu {
    background:
        radial-gradient(45% 35% at 90% 10%, rgba(228, 189, 87, 0.12), transparent 65%),
        radial-gradient(35% 30% at 10% 85%, rgba(228, 189, 87, 0.08), transparent 70%),
        #0b0b0f;
}

@media (max-width: 768px) {
    .hero__stats {
        padding: 24px 18px 18px;
    }
    .hero__stats-grid {
        gap: 10px;
    }
    .stat-card__value {
        font-size: 1.22rem;
    }
}

/* ===== LUXURY RHYTHM / DEPTH ===== */
.hero__inner {
    gap: 56px;
}

.hero__title {
    letter-spacing: 2.6px;
}

.hero__subtitle {
    letter-spacing: 3.8px;
}

.section-title {
    letter-spacing: 3px;
}

.advantages,
.prices,
.how,
.catalog,
.contact {
    position: relative;
}

.advantages::after,
.prices::after,
.how::after,
.catalog::after,
.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse at 50% 40%, rgba(228, 189, 87, 0.03) 0%, transparent 65%);
}

@media (max-width: 992px) {
    .hero__inner {
        gap: 34px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .hero {
        min-height: auto;
    }

    .hero__inner {
        padding-top: 22px;
        padding-bottom: 30px;
    }

    .hero__title {
        font-size: clamp(2rem, 7.5vw, 3rem);
        line-height: 1.1;
    }

    .hero__subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .hero__btn {
        width: 100%;
        max-width: 320px;
        font-size: 1rem;
        padding: 18px 24px;
        border-radius: 12px;
        letter-spacing: 1.2px;
    }

    .hero__stats,
    .prices .section-title,
    .catalog__subtitle {
        display: none;
    }

    .advantages {
        margin-top: 8px;
    }

    .advantages__inner {
        gap: 18px;
        padding: 24px 0;
    }

    .advantage {
        max-width: none;
    }

    .prices,
    .how,
    .catalog,
    .contact {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .contact__actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact__info {
        padding: 20px 16px;
    }

    .contact__action {
        min-height: 50px;
        font-size: 0.78rem;
    }

    .contact__action--primary {
        min-height: 54px;
    }
}
