/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1a1a2e;
    background: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; transition: color 0.2s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
.container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }

/* ===== TOP BAR ===== */
.top-bar {
    background: #1a1a2e;
    color: rgba(255,255,255,0.75);
    font-size: 0.8rem;
    line-height: 1;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 38px;
}
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    white-space: nowrap;
    transition: color 0.2s;
}
a.top-bar-item:hover {
    color: #fb923c;
}
.top-bar-item svg {
    color: #f97316;
    flex-shrink: 0;
}

/* ===== HEADER ===== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: box-shadow 0.3s;
}
.header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.08); }
.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 72px;
    max-width: 1440px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    color: #1a1a2e;
}
.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
    transition: transform 0.3s, box-shadow 0.3s;
}
.logo:hover .logo-icon {
    transform: rotate(-6deg) scale(1.05);
    box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.logo span { color: #f97316; }
.nav-desktop { display: flex; gap: 36px; align-items: center; }
.nav-desktop a {
    font-size: 0.95rem;
    font-weight: 500;
    color: #555;
    position: relative;
    padding: 6px 0;
    transition: color 0.2s;
}
.nav-desktop a:hover { color: #f97316; }
.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transition: width 0.3s ease;
    border-radius: 1px;
}
.nav-desktop a:hover::after { width: 100%; }
.nav-desktop a.active { color: #f97316; }
.nav-desktop a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1a1a2e;
    transition: color 0.2s;
}
.header-phone:hover { color: #f97316; }
.header-phone svg { width: 20px; height: 20px; color: #f97316; }
.btn-callback {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 11px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(249,115,22,0.2);
}
.btn-callback:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}

/* ===== MOBILE MENU ===== */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
}
.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: #fff;
    z-index: 99;
    padding: 110px 24px 40px;
    flex-direction: column;
    gap: 4px;
    overflow-y: auto;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
    animation: slideInMenu 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes slideInMenu {
    from { opacity: 0; transform: translateX(100%); }
    to { opacity: 1; transform: translateX(0); }
}
.mobile-menu a {
    display: flex;
    align-items: center;
    padding: 18px 16px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a2e;
    border-bottom: 1px solid #f0f0f0;
    border-radius: 12px;
    min-height: 56px;
    transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: #fff7ed; color: #f97316; }
.mobile-menu a.active { color: #f97316; background: #fff7ed; }
.mobile-menu-contacts {
    margin-top: auto;
    padding-top: 24px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.mobile-menu-contacts a {
    font-size: 1.2rem;
    border: none;
    padding: 12px 16px;
    min-height: 48px;
    color: #1a1a2e;
}
.mobile-menu-contacts a:hover { color: #f97316; }
.mobile-menu-hours {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: #888;
}
.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff !important;
    padding: 18px 24px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 16px;
    min-height: 56px;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}
.mobile-cta-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249,115,22,0.4);
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1a1a2e 100%);
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(249,115,22,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249,115,22,0.1) 0%, transparent 50%);
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-sparks {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.spark {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #f97316;
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 6px #f97316, 0 0 12px rgba(249,115,22,0.5);
}
@keyframes sparkle {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0); }
    50% { opacity: 1; transform: translateY(-30px) scale(1); }
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}
.hero-text {}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(249,115,22,0.12);
    border: 1px solid rgba(249,115,22,0.25);
    border-radius: 100px;
    color: #f97316;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #f97316;
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.8); }
}
.hero h1 {
    font-size: clamp(2.8rem, 4.5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 .accent {
    background: linear-gradient(135deg, #f97316, #fb923c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 540px;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(249,115,22,0.25);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(249,115,22,0.4);
}
.btn-primary:active { transform: translateY(-1px); }
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.06);
    color: #fff;
    padding: 18px 36px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.12);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
}
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 56px;
}
.hero-stat {
    text-align: left;
    position: relative;
    padding-top: 16px;
}
.hero-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 32px;
    height: 3px;
    background: linear-gradient(90deg, #f97316, transparent);
    border-radius: 2px;
}
.hero-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}
.hero-stat-value .orange { color: #f97316; }
.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    margin-top: 4px;
}
/* Hero visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-visual-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 4s ease-in-out infinite;
}
@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}
.hero-card {
    position: relative;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 44px;
    width: 100%;
    max-width: 460px;
    transition: border-color 0.4s;
}
.hero-card:hover { border-color: rgba(249,115,22,0.2); }
.hero-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
}
.hero-card-items { display: flex; flex-direction: column; gap: 16px; }
.hero-card-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: rgba(255,255,255,0.04);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
.hero-card-item:hover {
    background: rgba(249,115,22,0.08);
    border-color: rgba(249,115,22,0.15);
    transform: translateX(6px);
}
.hero-card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(249,115,22,0.2), rgba(249,115,22,0.08));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: transform 0.3s;
}
.hero-card-item:hover .hero-card-icon { transform: scale(1.08); }
.hero-card-item-text strong { font-size: 0.95rem; font-weight: 600; color: #fff; display: block; }
.hero-card-item-text p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 3px; }

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f97316;
    margin-bottom: 14px;
}
.section-title {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

/* ===== ADVANTAGES ===== */
.advantages {
    padding: 120px 0;
    background: #fafafa;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}
.adv-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.adv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.adv-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.08);
    border-color: transparent;
}
.adv-card:hover::before { transform: scaleX(1); }
.adv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: transform 0.3s;
}
.adv-card:hover .adv-icon { transform: scale(1.1) rotate(-4deg); }
.adv-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a1a2e;
}
.adv-card p {
    font-size: 0.92rem;
    color: #666;
    line-height: 1.65;
}

/* ===== CATEGORIES ===== */
.categories { padding: 120px 0; }
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.cat-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b, #334155);
    padding: 44px 36px;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    will-change: transform;
}
.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
    z-index: 1;
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}
.cat-card-bg {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 7rem;
    opacity: 0.18;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}
/* When cat-card-bg contains an img (SVG), opacity is handled on the img itself */
.cat-card-bg:has(img) {
    opacity: 1;
}
.cat-card-bg img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    opacity: 0.35;
    filter: invert(1) brightness(1.5);
    transition: transform 0.4s, opacity 0.4s;
}
.cat-card:hover .cat-card-bg { opacity: 0.32; transform: scale(1.15) rotate(4deg); }
.cat-card-bg:has(img) { transform: none; }
.cat-card:hover .cat-card-bg:has(img) { opacity: 1; transform: scale(1.1); }
.cat-card:hover .cat-card-bg img {
    opacity: 0.5;
    transform: scale(1.1);
}
.cat-card-content { position: relative; z-index: 2; }
.cat-card-count {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(249,115,22,0.18);
    border-radius: 100px;
    color: #fb923c;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 14px;
    backdrop-filter: blur(4px);
}
.cat-card h3 {
    font-size: 1.45rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}
.cat-card p { font-size: 0.9rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.cat-card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: #f97316;
    font-weight: 600;
    font-size: 0.9rem;
    transition: gap 0.3s;
}
.cat-card:hover .cat-card-arrow { gap: 14px; }

/* ===== BRANDS ===== */
.brands {
    padding: 100px 0;
    background: #fafafa;
}
.brands-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 32px;
    flex-wrap: wrap;
}
.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 40px 56px;
    background: #fff;
    border-radius: 24px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-width: 220px;
}
.brand-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    transform: scaleX(0);
    transition: transform 0.3s;
}
.brand-item:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(249,115,22,0.12);
    transform: translateY(-4px);
}
.brand-item:hover::after { transform: scaleX(1); }
.brand-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.01em;
}
.brand-desc { font-size: 0.85rem; color: #888; text-align: center; }

/* ===== ABOUT SECTION ===== */
.about { padding: 120px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-content {}
.about h2 {
    font-size: clamp(1.8rem, 2.8vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}
.about h2 .accent { color: #f97316; }
.about-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 24px;
}
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    transition: background 0.3s;
}
.about-feature:hover { background: #fff7ed; }
.about-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: linear-gradient(135deg, #fff7ed, #ffedd5);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: transform 0.3s;
}
.about-feature:hover .about-feature-icon { transform: scale(1.1); }
.about-feature-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 3px;
}
.about-feature-text p { font-size: 0.88rem; color: #888; }
.about-clients {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-radius: 28px;
    padding: 48px;
    box-shadow: 0 24px 60px rgba(15,23,42,0.2);
}
.about-clients h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
}
.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}
.client-tag {
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    color: rgba(255,255,255,0.75);
    font-size: 0.88rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
}
.client-tag:hover {
    background: rgba(249,115,22,0.1);
    border-color: rgba(249,115,22,0.2);
    color: #fff;
}

/* ===== CTA ===== */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    position: relative;
    overflow: hidden;
}
.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(249,115,22,0.12), transparent 60%),
        radial-gradient(circle at 70% 50%, rgba(249,115,22,0.06), transparent 60%);
}
.cta-content {
    position: relative;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.cta h2 {
    font-size: clamp(2rem, 3.2vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.cta p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 40px;
    line-height: 1.7;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
    font-size: 2rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 8px;
}
.cta-phone a {
    color: #f97316;
    transition: color 0.2s, text-shadow 0.2s;
}
.cta-phone a:hover {
    text-shadow: 0 0 24px rgba(249,115,22,0.4);
}
.cta-schedule {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.35);
    margin-bottom: 36px;
}

/* ===== FOOTER ===== */
.footer {
    background: #0a0a14;
    padding: 72px 0 32px;
    color: rgba(255,255,255,0.5);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand .logo { color: #fff; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; }
.footer h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 24px;
}
.footer ul li { margin-bottom: 14px; }
.footer ul a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s, padding-left 0.2s;
}
.footer ul a:hover { color: #f97316; padding-left: 4px; }
.footer-address {
    font-style: normal;
}
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: #f97316; flex-shrink: 0; }
.footer-contact-item a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}
.footer-contact-item a:hover { color: #f97316; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}
.footer-bottom a {
    color: rgba(255,255,255,0.35);
    transition: color 0.2s;
}
.footer-bottom a:hover { color: #f97316; }

/* ===== BREADCRUMBS ===== */
.breadcrumbs { padding: 20px 0; font-size: 0.85rem; color: #888; }
.breadcrumbs a { color: #666; transition: color 0.2s; }
.breadcrumbs a:hover { color: #f97316; }
.breadcrumbs span { margin: 0 8px; color: #ccc; }

/* ===== PRODUCT GRID ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
    gap: 28px;
}
.product-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.04);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-color: transparent;
}
.product-card-body { padding: 24px; }
.product-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
}
.product-card-brand { font-size: 0.8rem; color: #888; margin-bottom: 8px; }
.product-card-price { font-size: 1.2rem; font-weight: 700; color: #f97316; }
.product-card-img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #fafafa;
    padding: 16px;
    border-bottom: 1px solid #f0f0f0;
}

/* ===== PLACEHOLDER IMAGES ===== */
/* Card view (listings) */
.product-card-img.placeholder {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background: #f8f9fa;
    padding: 40px;
    border-bottom: 1px solid #f0f0f0;
    opacity: 0.5;
}
/* Detail view placeholder */
.product-detail .product-image-placeholder {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/3;
    background: #f8f9fa;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 40px;
    gap: 12px;
}
.product-detail .product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-detail .product-image-placeholder .placeholder-label {
    font-size: 0.8rem;
    color: #b0b5bc;
    text-align: center;
}

/* ===== PRODUCT DETAIL ===== */
.product-detail { padding: 48px 0 100px; }
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.product-detail-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.product-detail-brand { font-size: 0.9rem; color: #888; margin-bottom: 24px; }
.product-detail-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 28px;
}
.product-specs { margin-top: 36px; }
.product-specs h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 18px; }
.spec-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: #888; font-size: 0.9rem; }
.spec-value { font-weight: 600; font-size: 0.9rem; }

/* ===== PAGE HEADER FOR INNER PAGES ===== */
.page-header {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    padding: 56px 0 48px;
}
.page-header h1 {
    color: #fff;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}
.page-header .breadcrumbs { color: rgba(255,255,255,0.5); }
.page-header .breadcrumbs a { color: rgba(255,255,255,0.6); }
.page-header .breadcrumbs a:hover { color: #f97316; }
.page-header .breadcrumbs span { color: rgba(255,255,255,0.3); }

/* ===== INFO PAGES ===== */
.info-page p { color: #475569; line-height: 1.75; }
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
}
.contact-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-color: rgba(249,115,22,0.15);
}
.contact-card-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    display: block;
}
.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}
.contact-card p {
    color: #475569;
    line-height: 1.7;
    font-size: 0.95rem;
}
.privacy-content {
    max-width: 820px;
    margin: 0 auto;
}
.privacy-content h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 16px;
}
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}
.privacy-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.privacy-content li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 6px;
}

/* ===== RESPONSIVE: 1440px ===== */
@media (max-width: 1440px) {
    .container { padding: 0 32px; }
    .header-top { padding: 0 32px; }
    .hero-content { padding: 0 32px; gap: 60px; }
}

/* ===== RESPONSIVE: 1024px ===== */
@media (max-width: 1024px) {
    .container { padding: 0 24px; }
    .header-top { padding: 0 24px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; padding: 0 24px; }
    .hero-subtitle { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-stat { text-align: center; }
    .hero-stat::before { left: 50%; transform: translateX(-50%); }
    .hero-visual { display: none; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .advantages { padding: 80px 0; }
    .categories { padding: 80px 0; }
    .about { padding: 80px 0; }
    .cta { padding: 80px 0; }
    .top-bar-right { display: none; }
}

/* ===== RESPONSIVE: 768px ===== */
@media (max-width: 768px) {
    .top-bar { display: none; }
    .nav-desktop { display: none; }
    .burger { display: flex; }
    .header-phone { display: none; }
    .hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    .hero h1 { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.05rem; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .hero-stat-value { font-size: 1.6rem; }
    .advantages-grid { grid-template-columns: 1fr; gap: 16px; }
    .adv-card { padding: 28px 24px; }
    .categories-grid { grid-template-columns: 1fr; }
    .cat-card {
        min-height: 220px;
        padding: 32px 28px;
    }
    .brands-row { gap: 16px; }
    .brand-item {
        padding: 28px 36px;
        flex: 1 1 calc(50% - 8px);
        min-width: 160px;
    }
    .clients-grid { grid-template-columns: 1fr; }
    .about-clients { padding: 32px; }
    .cta-phone { font-size: 1.5rem; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    .product-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .product-detail-title { font-size: 1.5rem; }
    .product-detail-price { font-size: 1.8rem; }
    .page-header h1 { font-size: 1.5rem; }
    .page-header { padding: 36px 0 28px; }
    .section-header { margin-bottom: 40px; }
    .info-grid { grid-template-columns: 1fr; }
    .contact-card { padding: 28px 24px; }
}

/* ===== RESPONSIVE: 480px ===== */
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .header-top { padding: 0 16px; height: 64px; }
    .hero-content { padding: 0 16px; }
    .hero h1 { font-size: 1.85rem; }
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary, .btn-secondary {
        justify-content: center;
        width: 100%;
        padding: 16px 24px;
        min-height: 52px;
    }
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .hero-stat-value { font-size: 1.3rem; }
    .hero-stat-label { font-size: 0.75rem; }
    .section-title { font-size: 1.6rem; }
    .cat-card h3 { font-size: 1.2rem; }
    .brand-item {
        flex: 1 1 100%;
        padding: 24px;
    }
    .cta h2 { font-size: 1.6rem; }
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
        min-height: 52px;
    }
    .about h2 { font-size: 1.5rem; }
    .about-feature { padding: 12px; }
    .footer { padding: 48px 0 24px; }
}

/* ===== YANDEX MAP ===== */
#map {
    width: 100%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}
