/* ============================================================
   ОБЩИЕ ПЕРЕМЕННЫЕ И СБРОС
   ============================================================ */
:root {
    --dark: #1b2b38;
    --darker: #111d27;
    --steel: #2e4558;
    --accent: #e87c00;
    --accent-light: #ff9a1f;
    --light: #f4f5f6;
    --muted: #8a9fb0;
    --white: #ffffff;
    --text: #3a4a58;
    --border: #dde3e8;
    --green: #27a96a;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'PT Sans', sans-serif; background: var(--white); }

/* ============================================================
   ШАПКА И МЕНЮ (общие для всех страниц — новое в Этапе 1: меню)
   ============================================================ */
header { background: var(--darker); position: sticky; top: 0; z-index: 1000; border-bottom: 3px solid var(--accent); }
.header-inner { max-width: 1200px; margin: 0 auto; padding: 14px 5%; display: flex; justify-content: space-between; align-items: center; }
.logo-link { display: flex; align-items: center; text-decoration: none; }
.logo-link img { height: 38px; display: block; }
.header-right { display: flex; align-items: center; gap: 36px; }
.nav-menu { display: flex; gap: 22px; }
.nav-menu a { color: rgba(255,255,255,0.75); text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: color 0.2s; }
.nav-menu a:hover, .nav-menu a.active { color: var(--accent-light); }
.nav-contacts { display: flex; gap: 28px; align-items: center; }
.nav-contacts a { color: var(--white); text-decoration: none; font-weight: 700; font-size: 0.95rem; letter-spacing: 0.03em; opacity: 0.9; transition: color 0.2s, opacity 0.2s; }
.nav-contacts a:hover { color: var(--accent-light); opacity: 1; }
.nav-contacts .phone { font-size: 1.1rem; }
.burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 32px; height: 32px; background: none; border: none; cursor: pointer; padding: 0; flex-shrink: 0; }
.burger span { display: block; width: 100%; height: 2px; background: #fff; transition: transform 0.2s, opacity 0.2s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        flex-direction: column;
        background: var(--darker);
        border-top: 1px solid rgba(255,255,255,0.08);
        padding: 6px 5% 14px;
        gap: 0;
    }
    .nav-menu.open { display: flex; }
    .nav-menu a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .burger { display: flex; }
}

/* ============================================================
   ПОЛОСА «ПОД ЗАКАЗ» (index, akko, renishaw — общая, идентична)
   ============================================================ */
.order-bar { background: var(--accent); padding: 0 5%; }
.order-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 22px 0; flex-wrap: wrap; }
.order-bar-left { display: flex; align-items: center; gap: 16px; }
.order-bar-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(0,0,0,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.order-bar-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.order-bar-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: white; margin-bottom: 2px; }
.order-bar-text span { font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.4; }
.order-bar-contacts { flex-shrink: 0; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.order-bar-email { font-family: 'Oswald', sans-serif; font-size: 1.15rem; font-weight: 600; letter-spacing: 0.04em; color: white; text-decoration: none; border-bottom: 1px dashed rgba(255,255,255,0.5); transition: border-color 0.2s, opacity 0.2s; }
.order-bar-email:hover { border-color: white; opacity: 0.85; }
.order-bar-phone { font-size: 0.9rem; color: rgba(255,255,255,0.75); text-decoration: none; transition: color 0.2s; }
.order-bar-phone:hover { color: white; }
@media (max-width: 640px) { .order-bar-inner { flex-direction: column; align-items: flex-start; gap: 16px; } .order-bar-contacts { align-items: flex-start; } }

/* ============================================================
   БОКОВЫЕ ФОТО (index, akko, renishaw — общие, идентичны)
   ============================================================ */
.side-photos { display: flex; flex-direction: column; gap: 0; position: relative; }
.side-photo { overflow: hidden; border-radius: 3px; box-shadow: 0 4px 20px rgba(0,0,0,0.15); position: relative; }
.side-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.side-photo:hover img { transform: scale(1.04); }
.side-photo-top { height: 215px; margin-bottom: 12px; border-left: 3px solid var(--accent); }
.side-photo-bottom { height: 215px; margin-top: 12px; border-left: 3px solid rgba(232,124,0,0.4); }
.side-divider-line { display: flex; align-items: center; gap: 10px; padding: 0 4px; }
.side-divider-line span { font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); white-space: nowrap; }
.side-divider-line::before, .side-divider-line::after { content: ''; flex: 1; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(232,124,0,0.15)); }
.side-divider-line::after { background: linear-gradient(270deg, var(--accent), rgba(232,124,0,0.15)); }
@media (max-width: 1100px) { .side-photos { display: none; } }

/* ============================================================
   ГЛАВНАЯ — index.html
   (классы .hero/.about-section/footer и т.п. переопределяются
   по-разному на каждом типе страницы, поэтому стили страницы
   скопированы «как есть» и вложены под body.page-*, чтобы не
   столкнуть одинаковые имена классов с другим смыслом)
   ============================================================ */
body.page-home { color: var(--dark); overflow-x: hidden; }

body.page-home .hero { position: relative; min-height: 90vh; display: flex; align-items: center; overflow: hidden; background: var(--darker); }
body.page-home .hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 40%; opacity: 0.22; }
body.page-home .hero-overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(17,29,39,0.97) 45%, rgba(17,29,39,0.55) 100%); }
body.page-home .hero-content { position: relative; max-width: 1200px; margin: 0 auto; padding: 80px 5%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
body.page-home .hero-label { display: inline-block; background: var(--accent); color: white; font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 5px 14px; margin-bottom: 22px; }
body.page-home .hero h1 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 3rem; line-height: 1.1; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 22px; }
body.page-home .hero h1 span { color: var(--accent); }
body.page-home .hero-desc { font-size: 1.08rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
body.page-home .btn-download { display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: white; padding: 18px 36px; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer; border-radius: 3px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 24px rgba(232,124,0,0.35); }
body.page-home .btn-download:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,124,0,0.45); }
body.page-home .btn-download svg { flex-shrink: 0; }
body.page-home .hero-photo { position: relative; }
body.page-home .hero-photo img { width: 100%; border-radius: 4px; display: block; box-shadow: 0 20px 60px rgba(0,0,0,0.6); border: 2px solid rgba(232,124,0,0.3); }
body.page-home .hero-photo::before { content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px; border: 2px solid var(--accent); border-radius: 4px; opacity: 0.4; pointer-events: none; }
body.page-home .badge-row { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
body.page-home .badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); padding: 7px 16px; border-radius: 2px; font-size: 0.82rem; letter-spacing: 0.04em; display: flex; align-items: center; gap: 6px; }
body.page-home .badge::before { content: '✓'; color: var(--accent); font-weight: 700; }

body.page-home .brands-section { background: var(--dark); padding: 48px 5%; }
body.page-home .brands-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
body.page-home .brands-title { font-family: 'Oswald', sans-serif; font-size: 0.82rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-bottom: 30px; }
body.page-home .brands-grid { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 10px 4px; }
body.page-home .brand-item { font-family: 'Oswald', sans-serif; font-size: 1.25rem; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.25); padding: 10px 28px; border-right: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; }
body.page-home .brand-item:last-child { border-right: none; }
body.page-home .brand-item:hover { color: var(--accent); }

body.page-home .about-section { padding: 80px 5%; background: var(--light); }
body.page-home .about-inner { max-width: 1200px; margin: 0 auto; }
body.page-home .section-tag { font-family: 'Oswald', sans-serif; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
body.page-home .section-title { font-family: 'Oswald', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--darker); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 30px; }
body.page-home .about-grid { display: grid; grid-template-columns: 1fr 1fr 380px; gap: 50px; align-items: start; }
body.page-home .about-text p { font-size: 1.05rem; line-height: 1.8; color: #4a5a6a; margin-bottom: 16px; }
body.page-home .features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
body.page-home .feature-card { background: white; border-left: 3px solid var(--accent); padding: 18px 20px; border-radius: 2px; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
body.page-home .feature-card strong { display: block; font-family: 'Oswald', sans-serif; font-size: 1rem; letter-spacing: 0.04em; color: var(--darker); margin-bottom: 4px; }
body.page-home .feature-card span { font-size: 0.88rem; color: #6a7a8a; }

body.page-home footer { background: var(--darker); padding: 70px 5%; text-align: center; border-top: 4px solid var(--accent); }
body.page-home .footer-inner { max-width: 700px; margin: 0 auto; }
body.page-home footer h2 { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; text-transform: uppercase; color: white; margin-bottom: 16px; }
body.page-home footer p { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; line-height: 1.7; }
body.page-home .footer-contacts { margin-bottom: 36px; }
body.page-home .footer-contacts a { display: block; color: white; text-decoration: none; font-family: 'Oswald', sans-serif; font-size: 1.7rem; font-weight: 500; letter-spacing: 0.03em; transition: color 0.2s; margin-bottom: 8px; }
body.page-home .footer-contacts a:hover { color: var(--accent-light); }
body.page-home .footer-contacts a.email { font-size: 1.2rem; color: var(--muted); }
body.page-home .footer-contacts a.email:hover { color: var(--accent-light); }
body.page-home .btn-download-footer { display: inline-flex; align-items: center; gap: 12px; background: transparent; color: var(--accent); border: 2px solid var(--accent); padding: 15px 32px; font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; text-decoration: none; border-radius: 3px; margin-bottom: 48px; transition: background 0.2s, color 0.2s; cursor: pointer; }
body.page-home .btn-download-footer:hover { background: var(--accent); color: white; }
body.page-home .footer-copy { font-size: 0.82rem; color: rgba(255,255,255,0.3); }

@media (max-width: 1100px) {
    body.page-home .about-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    body.page-home .hero-content { grid-template-columns: 1fr; gap: 40px; }
    body.page-home .hero h1 { font-size: 2.2rem; }
    body.page-home .hero-photo { order: -1; }
    body.page-home .hero-photo img { max-height: 260px; object-fit: cover; }
    body.page-home .about-grid { grid-template-columns: 1fr; }
    body.page-home .features-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    body.page-home .nav-contacts .phone { display: none; }
    body.page-home .nav-contacts .email-nav { display: none; }
    body.page-home .hero h1 { font-size: 1.7rem; }
    body.page-home .brands-grid { gap: 0; }
    body.page-home .brand-item { font-size: 1rem; padding: 8px 14px; }
}

/* ============================================================
   БРЕНД-СТРАНИЦЫ — akko.html и renishaw.html (общий шаблон)
   ============================================================ */
body.page-brand { color: var(--text); overflow-x: hidden; }

body.page-brand .hero { background: var(--darker); padding: 80px 5% 72px; position: relative; overflow: hidden; }
body.page-brand .hero::before { content: ''; position: absolute; right: -80px; top: -100px; width: 480px; height: 480px; border: 80px solid rgba(232,124,0,0.06); border-radius: 50%; pointer-events: none; }
body.page-brand .hero::after { content: ''; position: absolute; right: 100px; top: 80px; width: 220px; height: 220px; border: 32px solid rgba(232,124,0,0.04); border-radius: 50%; pointer-events: none; }
body.page-brand .hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 80px; align-items: center; position: relative; }
body.page-brand .breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 22px; }
body.page-brand .breadcrumb a { color: var(--muted); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
body.page-brand .breadcrumb a:hover { color: var(--accent-light); }
body.page-brand .breadcrumb .sep { color: rgba(255,255,255,0.18); font-size: 0.85rem; }
body.page-brand .breadcrumb .current { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
body.page-brand .brand-label { display: inline-block; background: var(--accent); color: white; font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; margin-bottom: 18px; }
body.page-brand .hero h1 { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 4rem; line-height: 1; color: var(--white); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
body.page-brand .hero-subtitle { font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 400; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 32px; }
body.page-brand .btn-primary { display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: white; padding: 18px 36px; font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 20px rgba(232,124,0,0.3); }
body.page-brand .btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,124,0,0.4); }
body.page-brand .brand-logo-box { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 8px; padding: 44px 56px; display: flex; align-items: center; justify-content: center; min-width: 240px; }
body.page-brand .brand-logo-box img { max-height: 80px; max-width: 180px; display: block; opacity: 0.9; }
body.page-brand .brand-logo-placeholder { font-family: 'Oswald', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(255,255,255,0.1); letter-spacing: 0.08em; text-transform: uppercase; }
body.page-brand .stats-row { display: flex; gap: 0; margin-top: 40px; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; }
body.page-brand .stat { flex: 1; padding-right: 32px; border-right: 1px solid rgba(255,255,255,0.08); margin-right: 32px; }
body.page-brand .stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
body.page-brand .stat-num { font-family: 'Oswald', sans-serif; font-size: 1.6rem; font-weight: 700; color: var(--accent); line-height: 1; }
body.page-brand .stat-label { font-size: 0.8rem; color: var(--muted); margin-top: 4px; letter-spacing: 0.03em; }

body.page-brand .about-section { padding: 80px 5%; background: var(--white); }
body.page-brand .about-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 360px; gap: 50px; align-items: start; }
body.page-brand .section-tag { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
body.page-brand .section-title { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--darker); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 24px; line-height: 1.1; }
body.page-brand .about-text p { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 16px; }
body.page-brand .about-text p:last-child { margin-bottom: 0; }

body.page-brand .pros-list { display: flex; flex-direction: column; gap: 14px; }
body.page-brand .pro-item { display: flex; gap: 16px; align-items: flex-start; padding: 20px 22px; background: var(--light); border-radius: 3px; border-left: 3px solid var(--accent); }
body.page-brand .pro-icon { flex-shrink: 0; width: 38px; height: 38px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
body.page-brand .pro-icon svg { width: 18px; height: 18px; stroke: white; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
body.page-brand .pro-text strong { display: block; font-family: 'Oswald', sans-serif; font-size: 0.95rem; letter-spacing: 0.04em; color: var(--darker); margin-bottom: 3px; }
body.page-brand .pro-text span { font-size: 0.88rem; color: #6a7a8a; line-height: 1.5; }

body.page-brand .download-section { padding: 72px 5%; background: var(--darker); position: relative; overflow: hidden; }
body.page-brand .download-section::before { content: ''; position: absolute; left: -80px; bottom: -80px; width: 360px; height: 360px; border: 60px solid rgba(232,124,0,0.05); border-radius: 50%; pointer-events: none; }
body.page-brand .download-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; position: relative; }
body.page-brand .download-inner h2 { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 12px; }
body.page-brand .download-inner p { color: rgba(255,255,255,0.6); font-size: 1rem; line-height: 1.7; max-width: 540px; }
body.page-brand .download-meta { display: flex; gap: 24px; margin-top: 20px; flex-wrap: wrap; }
body.page-brand .download-meta span { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 6px; }
body.page-brand .download-meta span::before { content: '✓'; color: var(--accent); font-weight: 700; }
body.page-brand .btn-download-big { display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: white; padding: 22px 44px; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none; border-radius: 3px; white-space: nowrap; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 24px rgba(232,124,0,0.35); }
body.page-brand .btn-download-big:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,124,0,0.45); }

body.page-brand footer { background: var(--darker); padding: 28px 5%; display: flex; justify-content: space-between; align-items: center; border-top: 3px solid var(--accent); flex-wrap: wrap; gap: 14px; }
body.page-brand .footer-left a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
body.page-brand .footer-left a:hover { color: var(--accent-light); }
body.page-brand .footer-copy { color: rgba(255,255,255,0.2); font-size: 0.82rem; }

body.page-brand .btn-download-footer { display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: white; padding: 22px 44px; font-family: 'Oswald', sans-serif; font-size: 1.1rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 3px; white-space: nowrap; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 24px rgba(232,124,0,0.35); }
body.page-brand .btn-download-footer:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(232,124,0,0.45); }

body.page-brand .btn-download { display: inline-flex; align-items: center; gap: 12px; background: var(--accent); color: white; padding: 18px 36px; font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 500; letter-spacing: 0.07em; text-transform: uppercase; border: none; cursor: pointer; border-radius: 3px; transition: background 0.2s, transform 0.2s, box-shadow 0.2s; box-shadow: 0 6px 20px rgba(232,124,0,0.3); }
body.page-brand .btn-download:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,124,0,0.4); }

@media (max-width: 1100px) {
    body.page-brand .about-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
    body.page-brand .hero-inner { grid-template-columns: 1fr; }
    body.page-brand .brand-logo-box { display: none; }
    body.page-brand .hero h1 { font-size: 2.8rem; }
    body.page-brand .about-inner { grid-template-columns: 1fr; gap: 48px; }
    body.page-brand .download-inner { grid-template-columns: 1fr; }
    body.page-brand .stats-row { flex-wrap: wrap; gap: 20px; }
    body.page-brand .stat { border-right: none; margin-right: 0; flex: 1 1 40%; }
}
@media (max-width: 560px) {
    body.page-brand .hero h1 { font-size: 2.2rem; }
    body.page-brand .nav-contacts a:not(.phone) { display: none; }
    body.page-brand footer { flex-direction: column; text-align: center; }
}

/* ============================================================
   РАСПРОДАЖА — sale.html
   ============================================================ */
body.page-sale { color: var(--text); overflow-x: hidden; }
body.page-sale header .header-inner { max-width: 1300px; }

body.page-sale .page-hero { background: var(--darker); padding: 52px 5% 48px; position: relative; overflow: hidden; }
body.page-sale .page-hero::before { content: ''; position: absolute; right: -60px; top: -80px; width: 380px; height: 380px; border: 65px solid rgba(232,124,0,0.07); border-radius: 50%; pointer-events: none; }
body.page-sale .hero-inner { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; }
body.page-sale .page-tag { display: inline-block; background: var(--accent); color: white; font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 5px 14px; margin-bottom: 16px; }
body.page-sale .page-hero h1 { font-family: 'Oswald', sans-serif; font-size: 2.6rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 14px; line-height: 1.1; }
body.page-sale .page-hero h1 span { color: var(--accent); }
body.page-sale .page-hero p { color: rgba(255,255,255,0.68); font-size: 1.02rem; line-height: 1.75; max-width: 620px; }
body.page-sale .hero-badge-col { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; }
body.page-sale .hero-badge { background: rgba(232,124,0,0.12); border: 1px solid rgba(232,124,0,0.3); border-radius: 4px; padding: 16px 22px; text-align: center; }
body.page-sale .hero-badge .num { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
body.page-sale .hero-badge .lbl { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-top: 4px; letter-spacing: 0.04em; }

body.page-sale .filters-bar { background: var(--light); border-bottom: 2px solid var(--border); padding: 20px 5%; position: sticky; top: 69px; z-index: 900; }
body.page-sale .filters-inner { max-width: 1300px; margin: 0 auto; display: flex; gap: 14px; align-items: flex-end; flex-wrap: wrap; }
body.page-sale .filter-group { display: flex; flex-direction: column; gap: 6px; }
body.page-sale .filter-group label { font-family: 'Oswald', sans-serif; font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
body.page-sale .filter-group select, body.page-sale .filter-group input {
    height: 40px; padding: 0 12px;
    border: 1px solid var(--border); border-radius: 3px;
    font-family: 'PT Sans', sans-serif; font-size: 0.92rem; color: var(--dark);
    background: white; outline: none; min-width: 160px;
    transition: border-color 0.2s;
}
body.page-sale .filter-group select:focus, body.page-sale .filter-group input:focus { border-color: var(--accent); }
body.page-sale .filter-group input { min-width: 220px; }
body.page-sale .filter-btn {
    height: 40px; padding: 0 20px;
    background: var(--accent); color: white; border: none; border-radius: 3px;
    font-family: 'Oswald', sans-serif; font-size: 0.88rem; font-weight: 500;
    letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer;
    transition: background 0.2s; white-space: nowrap;
    align-self: flex-end;
}
body.page-sale .filter-btn:hover { background: var(--accent-light); }
body.page-sale .filter-btn.reset { background: transparent; border: 1px solid var(--border); color: var(--muted); }
body.page-sale .filter-btn.reset:hover { border-color: var(--accent); color: var(--accent); background: transparent; }
body.page-sale .filter-btn.dl { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
body.page-sale .filter-btn.dl svg { flex-shrink: 0; }
body.page-sale .filter-count { align-self: flex-end; font-size: 0.85rem; color: var(--muted); white-space: nowrap; padding-bottom: 10px; }
body.page-sale .filter-count b { color: var(--accent); font-size: 1rem; }
body.page-sale .filters-spacer { flex: 1 1 auto; }

body.page-sale .catalog-section { padding: 36px 5% 60px; }
body.page-sale .catalog-inner { max-width: 1300px; margin: 0 auto; }

body.page-sale .table-wrap { overflow-x: auto; border-radius: 4px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
body.page-sale table { width: 100%; border-collapse: collapse; background: white; font-size: 0.9rem; }
body.page-sale thead tr { background: var(--darker); }
body.page-sale thead th {
    padding: 14px 16px; text-align: left;
    font-family: 'Oswald', sans-serif; font-size: 0.78rem;
    font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); white-space: nowrap;
}
body.page-sale thead th:first-child { border-radius: 4px 0 0 0; }
body.page-sale thead th:last-child { border-radius: 0 4px 0 0; text-align: right; }
body.page-sale tbody tr { border-bottom: 1px solid var(--border); transition: background 0.15s; }
body.page-sale tbody tr:hover { background: #f0f4f8; }
body.page-sale tbody tr:last-child { border-bottom: none; }
body.page-sale td { padding: 13px 16px; vertical-align: middle; }
body.page-sale td.art { font-family: 'Oswald', sans-serif; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.03em; white-space: nowrap; }
body.page-sale td.name { color: var(--dark); font-weight: 700; line-height: 1.4; }
body.page-sale td.brand { white-space: nowrap; }
body.page-sale .brand-tag { display: inline-block; background: var(--dark); color: rgba(255,255,255,0.75); font-family: 'Oswald', sans-serif; font-size: 0.72rem; letter-spacing: 0.08em; padding: 3px 9px; border-radius: 2px; }
body.page-sale td.qty { text-align: center; }
body.page-sale .qty-badge { display: inline-block; background: rgba(39,169,106,0.1); color: var(--green); font-weight: 700; font-size: 0.85rem; padding: 3px 10px; border-radius: 12px; }
body.page-sale td.price { text-align: right; white-space: nowrap; }
body.page-sale .price-ask {
    display: inline-block; font-family: 'Oswald', sans-serif; font-size: 0.78rem;
    font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
    color: var(--accent); border: 1px solid var(--accent); border-radius: 3px;
    padding: 6px 12px; text-decoration: none; transition: background 0.15s, color 0.15s;
    white-space: nowrap;
}
body.page-sale .price-ask:hover { background: var(--accent); color: white; }

body.page-sale .catalog-status { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 0.95rem; }
body.page-sale .catalog-status.is-error { color: #c0392b; }

body.page-sale .no-results { text-align: center; padding: 60px 20px; color: var(--muted); }
body.page-sale .no-results svg { width: 48px; height: 48px; stroke: var(--border); margin-bottom: 16px; display: block; margin: 0 auto 16px; }
body.page-sale .no-results p { font-size: 1rem; }

body.page-sale .pagination { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding: 18px 4px 0; }
body.page-sale .pagination-info { font-size: 0.85rem; color: var(--muted); }
body.page-sale .pagination-controls { display: flex; align-items: center; gap: 14px; }
body.page-sale .page-btn {
    height: 36px; padding: 0 16px;
    background: white; color: var(--dark); border: 1px solid var(--border); border-radius: 3px;
    font-family: 'Oswald', sans-serif; font-size: 0.82rem; font-weight: 500;
    letter-spacing: 0.05em; text-transform: uppercase; cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
}
body.page-sale .page-btn:hover:not(:disabled) { border-color: var(--accent); color: var(--accent); }
body.page-sale .page-btn:disabled { opacity: 0.4; cursor: default; }
body.page-sale .page-current { font-size: 0.88rem; color: var(--dark); font-weight: 700; white-space: nowrap; }

body.page-sale .download-bar { padding: 32px 5%; background: var(--darker); border-top: 3px solid var(--accent); }
body.page-sale .download-bar-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
body.page-sale .download-bar-text h3 { font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 600; color: white; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 4px; }
body.page-sale .download-bar-text p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
body.page-sale .btn-dl {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent); color: white;
    padding: 16px 36px;
    font-family: 'Oswald', sans-serif; font-size: 1rem; font-weight: 500;
    letter-spacing: 0.07em; text-transform: uppercase; text-decoration: none;
    border: none; border-radius: 3px; cursor: pointer; white-space: nowrap;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 16px rgba(232,124,0,0.3);
}
body.page-sale .btn-dl:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(232,124,0,0.4); }

body.page-sale footer { background: var(--darker); padding: 24px 5%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
body.page-sale .footer-left a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
body.page-sale .footer-left a:hover { color: var(--accent-light); }
body.page-sale .footer-copy { color: rgba(255,255,255,0.2); font-size: 0.82rem; }

@media (max-width: 900px) {
    body.page-sale .hero-inner { grid-template-columns: 1fr; }
    body.page-sale .hero-badge-col { flex-direction: row; }
    body.page-sale .page-hero h1 { font-size: 1.9rem; }
    body.page-sale .filters-bar { top: 69px; }
}
@media (max-width: 600px) {
    body.page-sale .nav-contacts a:not(.phone) { display: none; }
    body.page-sale .filter-group input { min-width: 160px; }
    body.page-sale .filter-group select { min-width: 130px; }
    body.page-sale thead th.col-art, body.page-sale td.art { display: none; }
}

/* ============================================================
   ПОЛИТИКА КОНФИДЕНЦИАЛЬНОСТИ — privacy.html
   ============================================================ */
body.page-privacy { color: var(--text); line-height: 1.7; }

body.page-privacy .page-hero { background: var(--darker); padding: 48px 5%; position: relative; overflow: hidden; }
body.page-privacy .page-hero::after { content: ''; position: absolute; right: 5%; top: 50%; transform: translateY(-50%); width: 220px; height: 220px; border: 40px solid rgba(232,124,0,0.06); border-radius: 50%; }
body.page-privacy .page-hero-inner { max-width: 860px; margin: 0 auto; position: relative; }
body.page-privacy .page-tag { display: inline-block; background: var(--accent); color: white; font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 12px; margin-bottom: 16px; }
body.page-privacy .page-hero h1 { font-family: 'Oswald', sans-serif; font-size: 2.4rem; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 0.02em; line-height: 1.1; margin-bottom: 12px; }
body.page-privacy .page-hero p { color: rgba(255,255,255,0.5); font-size: 0.9rem; }

body.page-privacy .content-wrap { max-width: 860px; margin: 0 auto; padding: 60px 5% 80px; }

body.page-privacy .toc { background: var(--light); border-left: 3px solid var(--accent); padding: 24px 28px; margin-bottom: 48px; border-radius: 0 4px 4px 0; }
body.page-privacy .toc-title { font-family: 'Oswald', sans-serif; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
body.page-privacy .toc ol { list-style: none; counter-reset: toc; padding: 0; }
body.page-privacy .toc li { counter-increment: toc; padding: 4px 0; }
body.page-privacy .toc li::before { content: counter(toc) ". "; color: var(--accent); font-weight: 700; font-size: 0.9rem; }
body.page-privacy .toc a { color: var(--dark); text-decoration: none; font-size: 0.95rem; transition: color 0.2s; }
body.page-privacy .toc a:hover { color: var(--accent); }

body.page-privacy .policy-section { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border); }
body.page-privacy .policy-section:last-of-type { border-bottom: none; }
body.page-privacy .section-num { font-family: 'Oswald', sans-serif; font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
body.page-privacy .policy-section h2 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--darker); text-transform: uppercase; letter-spacing: 0.02em; margin-bottom: 18px; }
body.page-privacy .policy-section p { font-size: 1rem; color: var(--text); margin-bottom: 14px; }
body.page-privacy .policy-section p:last-child { margin-bottom: 0; }
body.page-privacy .policy-section ul, body.page-privacy .policy-section ol { padding-left: 0; list-style: none; margin-bottom: 14px; }
body.page-privacy .policy-section ul li, body.page-privacy .policy-section ol li { padding: 6px 0 6px 22px; position: relative; font-size: 1rem; color: var(--text); border-bottom: 1px solid var(--border); }
body.page-privacy .policy-section ul li:last-child, body.page-privacy .policy-section ol li:last-child { border-bottom: none; }
body.page-privacy .policy-section ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

body.page-privacy .highlight-box { background: var(--darker); color: rgba(255,255,255,0.8); padding: 20px 24px; border-left: 3px solid var(--accent); border-radius: 0 4px 4px 0; font-size: 0.95rem; margin: 20px 0; line-height: 1.7; }
body.page-privacy .highlight-box a { color: var(--accent-light); text-decoration: none; }
body.page-privacy .highlight-box a:hover { text-decoration: underline; }

body.page-privacy .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
body.page-privacy .contact-card { background: var(--light); padding: 18px 20px; border-radius: 4px; border-top: 3px solid var(--accent); }
body.page-privacy .contact-card span { display: block; font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; font-family: 'Oswald', sans-serif; margin-bottom: 6px; }
body.page-privacy .contact-card a { color: var(--darker); text-decoration: none; font-weight: 700; font-size: 1.05rem; transition: color 0.2s; }
body.page-privacy .contact-card a:hover { color: var(--accent); }

body.page-privacy .doc-date { display: inline-block; font-size: 0.85rem; color: var(--muted); margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--border); width: 100%; }

body.page-privacy footer { background: var(--darker); padding: 32px 5%; text-align: center; border-top: 3px solid var(--accent); }
body.page-privacy footer a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
body.page-privacy footer a:hover { color: var(--accent-light); }
body.page-privacy footer .footer-copy { color: rgba(255,255,255,0.25); font-size: 0.82rem; margin-top: 10px; }

@media (max-width: 600px) {
    body.page-privacy .page-hero h1 { font-size: 1.7rem; }
    body.page-privacy .contact-grid { grid-template-columns: 1fr; }
    body.page-privacy .nav-contacts { display: none; }
}
