:root {
    --black: #0b0b0b;
    --dark: #111111;
    --gold: #d4af37;
    --beige: #e6e0d4;
    --gray: #9a9a9a;
}
/* =====================
   БРЕНД-ПАЛИТРА
===================== */
:root {
    --black: #0b0b0b;
    --dark: #111111;
    --gold: #d4af37;
    --beige: #e6e0d4;
    --gray: #9a9a9a;
}

/* =====================
   RESET
===================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =====================
   BASE
===================== */
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(
        180deg,
        #111111 0%,
        #0e0e0e 50%,
        #0b0b0b 100%
    );
    color: var(--beige);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

section {
    padding: 60px 0;
}

h1, h2, h3 {
    font-weight: 700;
}

/* =====================
   HEADER (NEW)
===================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(14,14,14,0.9);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(212,175,55,0.2);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 90px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 18px;

    font-family: 'Playfair Display', serif; /* ← ЛЮКС */
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;

    color: var(--gold);
}

.logo img {
    height: 70px; /* ← логотип заметнее */
    width: auto;
}

/* NAV */
.nav a {
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* MOBILE */
@media (max-width: 768px) {
    .logo {
        font-size: 18px;
    }

    .logo img {
        height: 56px;
    }
}
/* =====================
   NAVIGATION
===================== */
.nav {
    display: flex;
    align-items: center;
}

/* =====================
   NAV BUTTONS
===================== */
.nav a {
    display: inline-block;
    padding: 10px 18px;
    margin-left: 14px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;

    color: var(--gold);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 30px;
    background: transparent;

    transition: all 0.25s ease;
}

.nav a:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 6px 18px rgba(212,175,55,0.35);
}

/* =====================
   BURGER
===================== */
.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.burger span {
    width: 26px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

/* =====================
   HERO
===================== */
.hero {
    background: radial-gradient(circle at top, #1a1a1a, #000);
    text-align: center;
    padding: 140px 0;
}

.hero h2 {
    font-size: 44px;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}

/* =====================
   BUTTON
===================== */
.btn {
    display: inline-block;
    margin-top: 35px;
    padding: 15px 35px;
    background: var(--gold);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* =====================
   HOW IT WORKS
===================== */
.how-it-works {
    margin-top: 120px;
}

.how-it-works h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 70px;
    color: var(--gold);
}

.steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    background: var(--dark);
    padding: 35px;
    flex: 1;
    min-width: 240px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.25);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--gold);
}

.step p {
    font-size: 15px;
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* =====================
   TARIFFS
===================== */
.tariffs {
    background: #080808;
}

.tariffs h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 70px;
    color: var(--gold);
}

.cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card {
    background: var(--dark);
    padding: 40px;
    flex: 1;
    min-width: 240px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(212,175,55,0.25);
    transition: transform 0.3s;
}

.card h3 {
    color: var(--gold);
    margin-bottom: 10px;
}

.card p {
    font-size: 18px;
}

.card:hover {
    transform: translateY(-6px);
}

/* =====================
   CATEGORIES
===================== */
.categories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--gold);
}

.categories ul {
    list-style: none;
    max-width: 500px;
    margin: 0 auto;
}

.categories li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(212,175,55,0.2);
    text-align: center;
    font-size: 16px;
}

/* =====================
   CONTACT
===================== */
.contact {
    background: #080808;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 30px;
}

.contact p {
    font-size: 16px;
}

/* =====================
   FOOTER
===================== */
.footer {
    background: #000;
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(212,175,55,0.25);
}

.footer p {
    font-size: 14px;
    color: var(--gray);
}

/* =====================
   MOBILE
===================== */
@media (max-width: 768px) {

    .nav {
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: #000;
        display: none;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        border-top: 1px solid rgba(212,175,55,0.3);
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        margin: 15px 0;
        font-size: 18px;
    }

    .burger {
        display: flex;
    }

    .hero h2 {
        font-size: 32px;
    }

    .steps,
    .cards {
        flex-direction: column;
    }

    section {
        padding: 70px 0;
    }
}

/* =====================
   SOCIAL BUTTONS
===================== */
.social-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-btn {
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--gold);
    color: #000;
}

/* Индивидуальные эффекты (опционально) */
.social-btn.telegram:hover {
    box-shadow: 0 0 20px rgba(0,136,204,0.6);
}

.social-btn.tiktok:hover {
    box-shadow: 0 0 20px rgba(255,0,80,0.6);
}
.action-buttons {
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.action-btn {
    padding: 14px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 10px 25px rgba(212,175,55,0.4);
}

/* =====================
   WHY TRUST US
===================== */
.why-us {
    background: #080808;
}

.why-us h2 {
    text-align: center;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 70px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-card {
    background: var(--dark);
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(212,175,55,0.25);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.why-card h3 {
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 18px;
}

.why-card p {
    font-size: 15px;
    color: var(--beige);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.6);
}

/* =====================
   TRUST COUNTER
===================== */
.trust-counter {
    background: radial-gradient(circle at center, #1a1a1a, #000);
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.counter-item span {
    display: block;
    font-size: 48px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

.counter-item p {
    font-size: 15px;
    color: var(--beige);
    opacity: 0.9;
}

/* TRUST COUNTER TITLE */
.trust-title {
    text-align: center;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 60px;
}

/* =====================
   FIXED TELEGRAM BUTTON
===================== */
.telegram-fixed {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: var(--gold);
    color: #000;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(212,175,55,0.5);
    z-index: 999;
    transition: transform 0.3s, box-shadow 0.3s;
}

.telegram-fixed:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212,175,55,0.7);
}
@media (max-width: 600px) {
    .telegram-fixed {
        right: 15px;
        bottom: 15px;
        padding: 16px 20px;
        font-size: 14px;
    }
}

.hero,
.why-us,
.trust-counter,
.how-it-works,
.tariffs,
.categories,
.contact {
    background: transparent;
}

/* BUTTON MICROANIMATION */
.action-btn,
.social-btn,
.btn {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.action-btn:hover,
.social-btn:hover,
.btn:hover {
    transform: translateY(-3px);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(212,175,55,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212,175,55,0);
    }
}

.telegram-fixed {
    animation: pulse 2.5s infinite;
}

.step,
.card,
.why-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover,
.card:hover,
.why-card:hover {
    transform: translateY(-6px) scale(1.01);
}

.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}

h2 {
    transition: letter-spacing 0.3s ease;
}

section:hover h2 {
    letter-spacing: 0.5px;
}

/* HEADER CENTER (BRAND STYLE) */
.header-center {
    flex: 1;
    text-align: center;
}

.header-center span {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    opacity: 0.9;

    margin-left: 20px; /* ← УВЕЛИЧИВАЕТ ОТСТУП ОТ НАЗВАНИЯ */
}

.logo {
    margin-right: 60px;
}

/* HEADER CENTER TELEGRAM BUTTON */
.header-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-telegram {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    padding: 12px 26px;
    border-radius: 40px;

    color: #000;
    background: var(--gold);
    text-decoration: none;

    box-shadow: 0 8px 25px rgba(212,175,55,0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-telegram:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(212,175,55,0.6);
}

@media (max-width: 900px) {
    .header-center {
        display: none;
    }
}

/* =====================
   DELIVERY CALCULATOR
===================== */
.calculator h2 {
    text-align: center;
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 40px;
}

.calculator-box {
    max-width: 420px;
    margin: 0 auto;
    background: var(--dark);
    padding: 35px;
    border-radius: 14px;
    border: 1px solid rgba(212,175,55,0.25);
}

.calculator-box label {
    display: block;
    margin-bottom: 20px;
    font-size: 14px;
}

.calculator-box input,
.calculator-box select {
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    background: #000;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--beige);
    border-radius: 6px;
    font-size: 14px;
}

.calculator-result {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
    color: var(--gold);
}

.calculator-note {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.7;
    text-align: center;
}

.calculator-box .btn {
    display: block;          /* делаем блочной */
    margin: 30px auto 0;     /* центрируем по горизонтали */
    text-align: center;
}

/* SAFE SCROLL ANIMATION */
.animate {
    opacity: 1;
    transform: none;
}

.js .animate {
    opacity: 0;
    transform: translateY(30px);
}

.js .animate.show {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.calculator-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.telegram-btn {
    display: inline-block;
    padding: 12px 32px;
    background: #d4af37; /* золото */
    color: #000;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
}

.telegram-btn:hover {
    background: #c9a633;
    transform: translateY(-2px);
}

.trust {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 80px 0;
    text-align: center;
}

.trust-item {
    min-width: 120px;
}

.trust-number {
    font-size: 42px;
    font-weight: 700;
    color: var(--gold);
}

.trust-text {
    margin-top: 6px;
    font-size: 14px;
    opacity: 0.8;
}

.delivery-calc {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 20px;
    text-align: center;
}

.delivery-subtitle {
    margin-top: 10px;
    opacity: 0.8;
}

.delivery-form {
    max-width: 420px;
    margin: 40px auto;
    display: grid;
    gap: 20px;
}

.delivery-form label {
    text-align: left;
    font-size: 14px;
}

.delivery-form input,
.delivery-form select {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    background: #000;
    border: 1px solid rgba(212,175,55,0.3);
    color: var(--beige);
    border-radius: 6px;
}

.delivery-tariffs {
    margin-top: 80px;
}

.tariff-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.tariff-card {
    padding: 30px;
    border: 1px solid rgba(212,175,55,0.25);
    border-radius: 14px;
    background: rgba(0,0,0,0.4);
}

.tariff-card h4 {
    margin-bottom: 15px;
    color: var(--gold);
}

.delivery-example {
    margin-top: 50px;
    font-size: 15px;
    opacity: 0.9;
}

/* Убираем стрелки у number */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

.delivery-form input {
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(212,175,55,0.35);
    color: var(--beige);
    font-size: 15px;
    padding: 14px;
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.delivery-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212,175,55,0.15);
}

.order-hint {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    opacity: 0.7;
}

.order-note {
    font-size: 13px;
    opacity: 0.75;
    margin-top: 10px;
    line-height: 1.4;
}

.order-btn {
    margin-top: 30px;
    cursor: pointer;
}

/* Форма скрыта */
.order-form {
    max-width: 600px;
    margin: 30px auto 0;
    display: grid;
    gap: 22px;

    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition: all 0.4s ease;
}

/* При клике */
#order-toggle:checked ~ .order-form {
    max-height: 1200px;
    opacity: 1;
}

/* ===== ORDER FORM STYLE ===== */

.order-form {
    max-width: 620px;
    margin: 40px auto 0;
    display: grid;
    gap: 22px;
}

/* Подписи */
.order-form label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--beige);
    letter-spacing: 0.4px;
}

/* Поля ввода */
.order-form input,
.order-form select,
.order-form textarea {
    width: 100%;
    margin-top: 6px;
    padding: 14px 16px;

    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;

    color: var(--beige);
    font-size: 14px;
    font-family: inherit;

    transition: 
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.18);
}

.order-form input::placeholder,
.order-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.order-form select {
    appearance: none;
    background-image: 
        linear-gradient(45deg, transparent 50%, var(--gold) 50%),
        linear-gradient(135deg, var(--gold) 50%, transparent 50%);
    background-position:
        calc(100% - 20px) 55%,
        calc(100% - 14px) 55%;
    background-size: 6px 6px;
    background-repeat: no-repeat;
}

.order-hint,
.order-note {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.75;
    margin-top: 6px;
}

html {
    scroll-behavior: smooth;
}

.hero-logo {
    margin-top: 35px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    max-width: 320px;   /* размер логотипа */
    width: 100%;
    height: auto;

    filter: drop-shadow(0 10px 30px rgba(212,175,55,0.25));
}

/* Анимация появления */
@keyframes logoFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo img {
    max-width: 500px;
    width: 100%;
    height: auto;

    opacity: 0;
    animation: logoFadeUp 1.2s ease-out forwards;
    animation-delay: 0.4s;

    filter: drop-shadow(0 12px 35px rgba(212,175,55,0.35));
}

.order-section {
    margin-top: 120px;
}

.order-btn { margin-top: 100px; }

.order-section {
    padding-top: 120px;
}

#order {
    transform: translateY(120px) !important;
}

.order-title,
.order-subtitle {
    position: relative;
    top: 80px;
}

#order h2,
#order p {
    position: relative;
    top: 80px;
}

#order > h2,
#order > .order-subtitle {
    position: relative;
    top: 20px;
}

#order {
    padding-top: 20px;
}

#order {
    margin-top: -80px;
}

.hero {
    margin-bottom: -80px;
}

#order {
    scroll-margin-top: 120px;
}

.delivery-form button {
    position: relative;
    z-index: 9999;
    pointer-events: auto;
}

.quick-calc {
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.calc-form {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.calc-form label {
    text-align: left;
    font-size: 14px;
}

.calc-form input,
.calc-form select {
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(212,175,55,0.35);
    border-radius: 10px;
    color: #fff;
    font-size: 14px;
}

.calc-form button {
    margin-top: 20px;
    position: relative;
    z-index: 10;
}

.brand-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
}

.brand-title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--gold);
    margin-bottom: 30px;
}

.brand-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--beige);
    opacity: 0.9;
    margin-bottom: 20px;
}

.brand-accent {
    margin: 40px 0;
    font-size: 15px;
    letter-spacing: 0.5px;
    color: var(--gold);
    opacity: 0.85;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.brand-section > * {
    opacity: 0;
    animation: fadeUp 0.9s ease-out forwards;
}

/* задержки */
.brand-title {
    animation-delay: 0.2s;
}

.brand-text:nth-of-type(1) {
    animation-delay: 0.4s;
}

.brand-text:nth-of-type(2) {
    animation-delay: 0.6s;
}

.brand-accent {
    animation-delay: 0.8s;
}

.brand-section .btn {
    animation-delay: 1s;
}

.counter,
.counter-test,
.test {
    display: none !important;
}

body {
    margin-bottom: 0;
}

section:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-section,
.brand-section {
    transform: translateY(-30px);
}

.categories-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 120px 20px;
    text-align: center;
}

.categories-title {
    font-size: 38px;
    color: var(--gold);
    margin-bottom: 60px;
}

.categories-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.category-btn {
    display: block;
    padding: 28px 26px;
    text-align: left;
    text-decoration: none;
    border-radius: 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212,175,55,0.25);
    transition: all 0.3s ease;
}

.category-btn:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    background: rgba(212,175,55,0.06);
}

.cat-title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
}

.cat-text {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: var(--beige);
    opacity: 0.85;
}

/* акцентная кнопка */
.category-btn.accent {
    background: rgba(212,175,55,0.12);
    border-color: var(--gold);
}

footer {
    padding-top: 10px;
    padding-bottom: 10px;
}

#contact {
    margin-top: 80px;
}

#contact {
    margin-bottom: 80px;
}

/* LOADER */
#loader {
    position: fixed;
    inset: 0;
    background: #0b0b0b;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-logo {
    width: 140px;
    margin-bottom: 30px;
}

.loader-bar {
    width: 220px;
    height: 2px;
    background: rgba(255,255,255,0.15);
    overflow: hidden;
}

.loader-bar span {
    display: block;
    width: 0;
    height: 100%;
    background: var(--gold);
    animation: loading 1.4s ease forwards;
}

@keyframes loading {
    to {
        width: 100%;
    }
}

section {
    padding: 120px 20px;
}

html, body {
    overflow-x: hidden;
}

.trust-section {
    max-width: 100%;
    overflow: hidden;
}

html, body {
    overflow-x: hidden;
}

section {
    max-width: 100%;
    box-sizing: border-box;
}

.trust-section,
.trust-grid {
    overflow: hidden;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

.trust-section,
.trust-grid,
.trust-card {
    max-width: 100%;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr !important;
    }

    .trust-card {
        transform: none !important;
    }
}

/* TRUST SECTION FIX */
.trust-section {
    max-width: 100%;
    overflow: hidden;
    padding: 80px 20px;
    box-sizing: border-box;
}

.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
}

.trust-item {
    padding: 24px;
    text-align: center;
    box-sizing: border-box;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .trust {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    /* BURGER */
    .burger {
        display: flex;
        z-index: 1001;
    }

    /* MENU */
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #111;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        z-index: 1000;
    }

    .nav.active {
        display: flex;
    }
}

header {
    overflow: visible !important;
}

/* ПК */
.desktop-nav {
    display: flex;
}

/* мобилка — скрыто */
.mobile-nav {
    display: none;
}

@media (max-width: 768px) {

    /* прячем ПК-меню */
    .desktop-nav {
        display: none;
    }

    /* показываем бургер */
    .burger {
        display: flex;
        z-index: 1001;
    }

    /* мобильное меню */
    .mobile-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #111;
        display: none;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 30px 0;
        z-index: 1000;
    }

    .mobile-nav.active {
        display: flex;
    }
}

/* FORCE REMOVE BURGER */
.burger,
.burger span,
.burger::before,
.burger::after {
    display: none !important;
}

html, body {
    overflow-x: hidden;
    overflow-y: auto;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

/* Показываем весь контент по умолчанию */
body, header, main, section, footer {
  opacity: 1 !important;
  visibility: visible !important;
}

.order-page h1 {
    font-size: 36px;
    text-align: center;
    color: var(--gold);
    margin-bottom: 16px;
}

.order-description {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 40px;
    opacity: 0.85;
}

.order-check {
    max-width: 420px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.order-check label {
    font-size: 13px;
    opacity: 0.7;
}

.order-check input {
    padding: 14px;
    border-radius: 8px;
    background: #0d0d0d;
    border: 1px solid rgba(212,175,55,0.25);
    color: var(--beige);
    font-size: 15px;
}

.order-check input:focus {
    outline: none;
    border-color: var(--gold);
}

.order-page {
    padding: 80px 0 100px;
}

a.logo {
    text-decoration: none !important;
}

.logo,
.logo span,
.logo-text {
    text-decoration: none !important;
}

.site-title {
    text-decoration: none !important;
    color: inherit !important;
}

header a {
    text-decoration: none;
    color: inherit;
}

/* Logo link fix */
.logo {
    text-decoration: none;
    border-bottom: none;
}

.logo-text {
    text-decoration: none;
}

.logo:hover,
.logo:focus {
    text-decoration: none;
    border-bottom: none;
}

/* ===== HARD FIX LOGO UNDERLINE ===== */
header .logo,
header .logo *,
header .logo::before,
header .logo::after,
header .logo *::before,
header .logo *::after {
    text-decoration: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    background: none !important;
}

/* =====================
   ORDER FORM (LUX)
===================== */

.order-form {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid red;   /* ВРЕМЕННО */
    border-radius: 16px;
    padding: 32px;
}

.order-label {
    display: block;
    font-size: 13px;
    letter-spacing: 0.4px;
    color: #aaa;
}

.order-input {
    margin-top: 10px;
    width: 100%;
    padding: 14px 16px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 10px;

    color: var(--beige);
    font-size: 15px;

    outline: none;
    transition: 0.25s ease;
}

.order-input::placeholder {
    color: #777;
}

.order-input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.3);
}

/* кнопка */
.order-btn {
    margin-top: 24px;
    width: 100%;
    padding: 14px 0;

    background: var(--gold);
    color: #000;

    border: none;
    border-radius: 30px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;

    cursor: pointer;
    transition: 0.25s ease;
}

.order-btn:hover {
    background: #c9a633;
    transform: translateY(-2px);
}