* { margin: 0; padding: 0; box-sizing: border-box; }
@font-face{font-family:'Montserrat';font-style:normal;font-weight:300 900;font-display:swap;src:local('Montserrat'),url(https://fonts.gstatic.com/s/montserrat/v29/JTUSjIg1_i6t8kCHKm459Wlhyw.woff2) format('woff2');}
body { font-family: 'Montserrat', sans-serif; background: linear-gradient(145deg, #fafaf8 0%, #f0efed 100%); color: #1e2a3a; line-height: 1.5; scroll-behavior: smooth; font-weight: 400; min-height: 100vh; }
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/webfonts/fa-solid-900.woff2') format('woff2');
}

/* Навбар */
.navbar { position: fixed; top: 0; left: 0; width: 100%; background: #0D0D0D; z-index: 1000; padding: 4px 0 0; border-bottom: none; }
.navbar .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; display: flex; flex-direction: column; gap: 0; }
.navbar-top { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; padding: 8px 0; background: #0D0D0D; }
.navbar-logo { position: relative; top: 2px; }
.navbar-logo img { height: 60px; width: auto; min-width: 180px; object-fit: contain; }
.navbar-contacts { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; position: static; }
.navbar-phone { color: #EEE; text-decoration: none; font-weight: 600; font-size: clamp(0.7rem, 1.5vw, 1rem); letter-spacing: 0.3px; white-space: nowrap; }
.navbar-phone i { color: #D4AF37; margin-right: 6px; }
.callback-btn { background: #D4AF37; color: #0D0D0D; border: none; padding: 8px 20px; border-radius: 40px; font-weight: 600; font-size: 0.85rem; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.callback-btn:hover { background: #E5C158; transform: translateY(-2px); }
.navbar-bottom { width: 100vw; position: relative; left: 50%; transform: translateX(-50%); display: flex; justify-content: center; align-items: center; background: #1a1508; border-top: 1px solid rgba(212,175,55,0.3); padding: 6px 0; }
.nav-menu { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0; list-style: none; margin: 0 auto; padding: 0 20px; width: 100%; max-width: 1280px; }
.nav-link { display: inline-block; padding: 4px 6px; font-size: 0.9rem; font-weight: 500; color: #FFF; text-decoration: none; transition: all 0.2s; white-space: nowrap; border-radius: 0; background: transparent; }
.nav-link i { display: none; }
.nav-link:hover { color: #D4AF37; background: transparent; }
.nav-link[href="#calculator-section"] { background: transparent !important; color: #FFF !important; font-weight: 500 !important; }
.nav-link[href="#calculator-section"]:hover { color: #D4AF37 !important; }
.burger-btn { display: none; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
.mobile-phone-bar { display: none; }

/* Личный кабинет в навбаре */
.cabinet-btn { color: #0D0D0D; text-decoration: none; font-size: 0.75rem; transition: all 0.2s; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; border: 1px solid rgba(212,175,55,0.4); flex-shrink: 0; background: #FFF; }
.cabinet-btn:hover { background: rgba(212,175,55,0.15); }
.cabinet-user { display: flex; align-items: center; gap: 4px; cursor: pointer; position: relative; padding: 2px 10px; border-radius: 40px; transition: background 0.2s; background: #FFF; }
.cabinet-user:hover { background: #f0efed; }
.cabinet-avatar { display: none; }
.cabinet-name { color: #1a1508; font-size: 0.85rem; font-weight: 600; white-space: nowrap; display: inline; }
.cabinet-dropdown { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: #1e2a3a; border: 1px solid rgba(212,175,55,0.3); border-radius: 12px; min-width: 180px; padding: 8px 0; z-index: 1001; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.cabinet-dropdown a { display: block; padding: 10px 16px; color: #EEE; text-decoration: none; font-size: 0.8rem; transition: all 0.2s; }
.cabinet-dropdown a:hover { background: rgba(212,175,55,0.1); color: #D4AF37; }
.cabinet-dropdown a:last-child { border-top: 1px solid rgba(255,255,255,0.1); margin-top: 4px; padding-top: 12px; }
.cabinet-user.open .cabinet-dropdown { display: block; }

/* Мобильное меню */
.mobile-menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100%; background: #0D0D0D; z-index: 2000; transition: right 0.3s; padding: 10px 20px 20px; display: flex; flex-direction: column; gap: 12px; border-left: 1px solid rgba(212,175,55,0.3); }
.mobile-menu.open { right: 0; }
.mobile-menu .close-btn { position: absolute; top: 20px; right: 20px; background: none; border: none; font-size: 1.5rem; color: #D4AF37; cursor: pointer; }
.mobile-menu a { color: #EEE; text-decoration: none; font-size: 1rem; padding: 14px 0; border-bottom: none; display: flex; align-items: center; gap: 12px; }
.mobile-menu .mobile-contacts { margin-top: 0; padding-top: 0; border-top: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; padding-bottom: 12px; border-bottom: none; }
.mobile-phone { color: #EEE; text-decoration: none; font-weight: 600; }
.mobile-menu .mobile-phone { font-size: 1.2rem; }
.mobile-callback { background: #D4AF37; color: #0D0D0D; border: none; padding: 10px; border-radius: 40px; font-weight: 600; cursor: pointer; width: 100%; text-align: center; }
.mobile-menu .mobile-callback { width: auto; padding: 8px 20px; display: inline-block; align-self: flex-start; }
.mobile-menu .social-icons { justify-content: flex-start !important; gap: 16px !important; border-bottom: none; }
.mobile-menu .social-icons a { font-size: 1.5rem; }
.overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 1999; display: none; }
.overlay.show { display: block; }
main { padding-top: 120px; }

/* Модалка */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 3000; align-items: center; justify-content: center; }
.modal.active { display: flex; }
.modal-content { background: #1e2a3a; border-radius: 28px; padding: 32px; max-width: 420px; width: 90%; text-align: center; color: #FFF; position: relative; }
.modal-content h3 { font-size: 1.5rem; margin-bottom: 20px; color: #D4AF37; }
.modal-content input { width: 100%; padding: 14px; margin-bottom: 16px; border-radius: 60px; border: none; background: #f0f2f5; font-size: 1rem; }
.modal-content button { background: #D4AF37; color: #0D0D0D; border: none; padding: 12px; width: 100%; border-radius: 60px; font-weight: 600; cursor: pointer; }
.close-modal { position: absolute; top: 15px; right: 20px; font-size: 1.5rem; cursor: pointer; color: #aaa; }

/* Кнопка наверх */
.go-top { position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px; background: #D4AF37; color: #0D0D0D; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; cursor: pointer; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 99; border-radius: 50%; box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
.go-top.show { opacity: 1; visibility: visible; }
.go-top:hover { background: #E5C158; transform: translateY(-3px); }
.mobile-phone-icon { display: none; }

/* Hero */
.hero-wrapper { padding: 0 0 40px; }
.hero-wrapper .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
.full-width-slider { width: 100%; margin-bottom: 0; overflow: hidden; aspect-ratio: 21/9; border-radius: 0; box-shadow: none; border: none; }
.full-width-slider .slides-container { position: relative; width: 100%; height: 100%; }
.full-width-slider .slide { position: absolute; top: 0; left: 0; width: 100%; height: 100%; opacity: 0; transition: opacity 1.2s; background-size: cover; background-position: center; border-radius: 0; }
.full-width-slider .slide.active { opacity: 1; position: relative; }
.slider-dots-wrapper { position: absolute; bottom: 10px; right: 20px; z-index: 10; padding: 0; text-align: right; }
.full-width-slider { position: relative; }
.dot { display: inline-block; width: 8px; height: 8px; margin: 0 5px; background: rgba(0,0,0,0.4); cursor: pointer; border-radius: 50%; transition: all 0.2s; }
.dot.active { background: #D4AF37; transform: scale(1.3); }

/* Курсы ЦБ */
.cbr-rates-card { background: rgba(255,255,255,0.96); border: none; border-bottom: 1px solid #cbd5e0; border-radius: 0; padding: clamp(14px, 2vw, 20px); margin-bottom: 24px; box-shadow: none; overflow-x: auto; width: 100%; }
.rates-header { display: flex; flex-wrap: wrap; align-items: center; min-width: max-content; }
.rates-title { padding-right: clamp(12px, 2vw, 24px); border-right: 2px solid #D4AF37; margin-right: clamp(12px, 2vw, 24px); flex-shrink: 0; }
.rates-title-main { font-size: clamp(1rem, 1.5vw, 1.3rem); font-weight: 700; color: #1e2a3a; line-height: 1.2; }
.rates-date { font-size: clamp(0.65rem, 0.9vw, 0.8rem); color: #5c6f87; margin-top: 2px; }
.rates-metals { display: flex; gap: clamp(12px, 2vw, 40px); flex: 1; justify-content: space-between; flex-wrap: nowrap; }
.metal-item { display: flex; gap: clamp(4px, 0.6vw, 8px); align-items: center; position: relative; }
.metal-item:not(:last-child)::after { content: ''; position: absolute; right: calc(-1 * clamp(6px, 1vw, 20px)); height: 20px; width: 1px; background: #dde1e8; }
.bar-icon { display: inline-block; width: clamp(12px, 1.5vw, 18px); height: clamp(8px, 1vw, 12px); border-radius: 2px; margin-right: 4px; position: relative; top: 0; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }
.bar-icon::before { content: ''; position: absolute; top: -2px; left: 0; width: 100%; height: 3px; background: inherit; border-radius: 1px; opacity: 0.7; }
.gold-bar { background: linear-gradient(135deg,#D4AF37,#B8860B); border: 1px solid #F0C674; }
.silver-bar { background: linear-gradient(135deg,#cbd5e1,#94a3b8); border: 1px solid #dde1e8; }
.platinum-bar { background: linear-gradient(135deg,#e2e8f0,#cbd5e1); border: 1px solid #f1f5f9; }
.palladium-bar { background: linear-gradient(135deg,#b0bec5,#90a4ae); border: 1px solid #cfd8dc; }
.metal-label { font-size: clamp(0.85rem, 1.2vw, 1.05rem); color: #5c6f87; font-weight: 700; white-space: nowrap; }
.metal-value { font-size: clamp(0.85rem, 1.2vw, 1.05rem); font-weight: 700; color: #1e2a3a; white-space: nowrap; }

/* Hero-контент */
.hero-single-col { max-width: 1280px; margin: 0 auto 40px; padding: 0 20px; text-align: center; }
.hero-title { font-size: 2.2rem; font-weight: 600; color: #1e2a3a; line-height: 1.3; margin: 0 0 20px; text-shadow: 0 1px 2px rgba(255,255,255,0.5); }
.photos-grid { display: flex; justify-content: center; gap: 24px; margin-bottom: 28px; }
.photo-item img { width: 90%; height: auto; border-radius: 20px; border: 1px solid #cbd5e0; transition: all 0.3s; box-shadow: 0 8px 20px rgba(0,0,0,0.08); object-fit: cover; }
.hero-description-text { background: rgba(255,255,255,0.85); backdrop-filter: blur(2px); padding: 16px; border-left: 4px solid #D4AF37; text-align: left; max-width: 100%; margin: 0 auto; border-radius: 24px; }
.hero-description-text p { margin-bottom: 8px; font-size: 0.9rem; line-height: 1.5; color: #1e2a3a; }

/* Калькулятор */
.office-selector-wrapper { margin-bottom: 24px; }
.office-selector-wrapper label { font-size: 0.8rem; color: #5c6f87; display: block; margin-bottom: 8px; font-weight: 500; text-align: left; }
.office-select, .tariff-select { width: 100%; max-width: 450px; background: white; border: 1px solid #cbd5e0; border-radius: 0; padding: 14px 18px; font-size: 0.95rem; color: #1e2a3a; font-family: 'Roboto', sans-serif; font-weight: 500; cursor: pointer; transition: all 0.2s; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4AF37' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 18px center; padding-right: 40px; }
.office-select:hover, .tariff-select:hover { border-color: #B8860B; box-shadow: 0 2px 8px rgba(212,175,55,0.15); }
.office-select:focus, .tariff-select:focus { outline: none; border-color: #D4AF37; box-shadow: 0 0 0 3px rgba(212,175,55,0.15); }
.param-input { background: white; border: 1px solid #cbd5e0; border-radius: 0; padding: 12px 16px; font-size: 0.95rem; color: #1e2a3a; width: 100%; transition: all 0.2s; font-family: 'Roboto', sans-serif; font-weight: 500; }
.param-input:focus { outline: none; border-color: #D4AF37; transform: translateY(-1px); }
.param-input:hover { border-color: #D4AF37; }
.calculator-full-width { width: 100%; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border: 1px solid #cbd5e0; border-radius: 0; padding: 28px; margin-top: 20px; box-shadow: 0 12px 24px rgba(0,0,0,0.08); content-visibility: auto; contain-intrinsic-size: 500px; }
#calculator-section, #tariffs, #services, #reviews, #offices-section, #about, #contacts, #help { scroll-margin-top: 130px; }
.calculator-full-width h3 { font-size: 1.3rem; font-weight: 800; color: #1e2a3a; margin-bottom: 24px; text-align: left; line-height: 1.2; }
.calc-main-grid { display: flex; flex-wrap: wrap; gap: 30px; align-items: stretch; }
.calc-left { flex: 1.2; min-width: 260px; display: flex; flex-direction: column; }
.calc-right { flex: 1; min-width: 250px; max-width: 380px; display: flex; align-items: stretch; }
.calc-switch { display: flex; margin-bottom: 24px; background: #eef2f6; border-radius: 0; padding: 4px; border: 1px solid #cbd5e0; }
.calc-switch-btn { flex: 1; text-align: center; padding: 12px; background: transparent; cursor: pointer; font-size: 0.9rem; font-weight: 600; border: none; border-radius: 0; transition: all 0.2s; color: #1e2a3a; }
.calc-switch-btn.active { background: #D4AF37; color: #0D0D0D; }
.params-row { display: flex; gap: 20px; flex-wrap: wrap; }
.param-item { flex: 1; min-width: 120px; }
#weightInput { flex: 0.85; }
#daysParamItem { flex: 0.85; }
#tariffParamItem { flex: 1.3; }
.param-item label { font-size: 0.7rem; white-space: nowrap; color: #5c6f87; display: block; margin-bottom: 6px; font-weight: 500; }
.purities-grid-sunlight { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(4px, 1vw, 12px); margin-top: clamp(8px, 2vw, 16px); }
.purity-card-sunlight { background: white; border: 1px solid #b0b8c0; border-radius: 0; padding: clamp(3px, 1vw, 8px) clamp(2px, 0.5vw, 6px); text-align: center; cursor: pointer; transition: all 0.2s; line-height: 1.1; }
.purity-card-sunlight i { font-size: clamp(0.6rem, 1.5vw, 1rem); color: #D4AF37; margin: 0 0 clamp(1px, 0.3vw, 4px) 0; display: inline-block; }
.purity-card-sunlight.active { border: 2px solid #D4AF37; background: rgba(212,175,55,0.08); transform: scale(1.02); }
.purity-value { font-size: clamp(0.6rem, 1.5vw, 0.9rem); font-weight: 600; display: block; margin: 0 0 clamp(1px, 0.3vw, 3px) 0; color: #1e2a3a; line-height: 1.1; }
.purity-price { font-size: clamp(0.55rem, 1.4vw, 0.75rem); color: #9A7700; display: block; font-weight: 600; margin: 0; line-height: 1.1; }
.result-side { background: white; border-radius: 0; padding: clamp(10px, 2vw, 20px); width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: space-between; box-shadow: 0 8px 20px rgba(0,0,0,0.05); border: 1px solid #cbd5e0; }
.result-amount-sunlight { text-align: center; margin-bottom: 15px; }
.result-label { display: block; font-size: 0.75rem; color: #5c6f87; margin-bottom: 8px; letter-spacing: 0.5px; }
.result-value { font-size: 1.8rem; font-weight: 800; color: #1a1508; line-height: 1.2; transition: all 0.2s; }
.result-info { margin-bottom: 15px; flex-grow: 1; }
.info-row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 0.8rem; border-bottom: 1px solid #dde1e8; }
.info-row span:last-child { font-weight: 500; }
.result-buttons { display: flex; flex-direction: row; gap: clamp(4px, 1vw, 8px); width: 100%; }
.ask-question-btn { background: #D4AF37; color: #0D0D0D; padding: clamp(6px, 1.5vw, 10px) clamp(8px, 2vw, 12px); font-weight: 600; border: 1px solid #D4AF37; border-radius: 0; cursor: pointer; font-size: clamp(0.6rem, 1.5vw, 0.8rem); transition: all 0.2s; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 4px; white-space: nowrap; flex: 1; }
.ask-question-btn:hover { background: #E5C158; transform: translateY(-2px); }
.share-btn { background: #9A7700; color: #FFF; padding: clamp(6px, 1.5vw, 10px) clamp(8px, 2vw, 12px); font-weight: 600; border: 1px solid #9A7700; border-radius: 0; cursor: pointer; font-size: clamp(0.6rem, 1.5vw, 0.8rem); transition: all 0.2s; display: flex; align-items: center; justify-content: center; gap: 4px; white-space: nowrap; flex: 1; }
.share-btn:hover { background: #B8860B; transform: translateY(-2px); }
.max-btn { background: linear-gradient(135deg,#2b6ef0,#9747ff) !important; color: #FFF !important; border: none !important; }
.max-btn-icon { width: clamp(14px, 3vw, 18px); height: clamp(14px, 3vw, 18px); margin-right: 4px; vertical-align: middle; filter: brightness(0) invert(1); }
.calculator-note { font-size: 0.6rem; color: #5c6f87; text-align: center; margin-top: 8px; }
.result-side.buyout-mode .result-info { display: none; }
.result-side.buyout-mode { justify-content: center; }
.result-side.buyout-mode .result-amount-sunlight { margin-bottom: 90px; }
.result-side.buyout-mode .result-buttons { margin-top: 10px; }

/* Общие */
.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
section { padding: 60px 0; border-bottom: 1px solid rgba(255,255,255,0.05); animation: fadeInUp 0.6s ease forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
h2 { font-size: 1.8rem; font-weight: 600; color: #1e2a3a; display: inline-block; margin-bottom: 30px; letter-spacing: -0.01em; border-left: 4px solid #D4AF37; padding-left: 20px; }

/* Услуги */
.services-advantages-grid { display: flex; flex-wrap: wrap; gap: 30px; margin-top: 20px; }
.advantages-list { flex: 1; background: #FFF; padding: 32px; border-radius: 32px; border: 1px solid #eef2f6; box-shadow: 0 8px 24px rgba(0,0,0,0.04); display: flex; flex-direction: column; justify-content: center; }
.advantage-item { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.advantage-item i { font-size: 2rem; color: #D4AF37; width: 48px; text-align: center; }
.advantage-text { text-align: left; }
.advantages-list h3 { font-size: 1.5rem; margin-bottom: 28px; color: #1e2a3a; text-align: center; }
.advantage-text h4 { font-size: 1.1rem; margin-bottom: 6px; color: #1e2a3a; }
.advantage-text p { font-size: 0.9rem; color: #5c6f87; }
.services-list { flex: 1; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.service-card { background: #FFF; padding: 28px 20px; text-align: center; border-radius: 32px; border: 1px solid #eef2f6; transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.service-card:hover { transform: translateY(-6px); border-color: #D4AF37; }
.service-card i { font-size: 2.2rem; color: #D4AF37; margin-bottom: 18px; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: #1e2a3a; }
.service-card p { font-size: 0.9rem; color: #5c6f87; }

/* Тарифы */
.tariffs-slider-container { position: relative; overflow: visible; margin: 5px 0 0; padding: 10px 0 20px; }
.tariffs-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; transition: none; will-change: auto; align-items: stretch; }
.tariff-card { background: #FFF; border: 1px solid #cbd5e0; border-radius: 0; padding: 22px 16px; transition: all 0.3s; box-shadow: 0 6px 14px rgba(0,0,0,0.04); position: relative; overflow: visible; margin-top: 4px; display: flex; flex-direction: column; }
.tariff-card:hover { transform: translateY(-4px); border-color: #D4AF37; box-shadow: 0 12px 28px rgba(0,0,0,0.08); z-index: 10; }
.tariff-badge { display: inline-block; font-size: clamp(0.65rem, 0.9vw, 0.78rem); font-weight: 600; color: #FFF; background: #1e2a3a; padding: 4px 12px; margin-bottom: 12px; border-radius: 6px; border-left: 3px solid #D4AF37; align-self: flex-start; min-height: 26px; }
.tariff-card h3 { font-size: clamp(0.95rem, 1.3vw, 1.15rem); font-weight: 600; margin-bottom: 16px; color: #1e2a3a; min-height: 28px; }
.tariff-info { flex-grow: 1; }
.tariff-item { display: flex; justify-content: space-between; align-items: baseline; padding: 7px 0; border-bottom: 1px solid #eef2f6; }
.tariff-item .label { font-size: clamp(0.65rem, 0.9vw, 0.75rem); color: #5c6f87; min-width: 80px; }
.tariff-item .value { font-size: clamp(0.65rem, 0.85vw, 0.75rem); font-weight: 600; color: #1e2a3a; }
.tariff-item .value.accent { color: #D4AF37; font-size: clamp(0.8rem, 1.05vw, 0.9rem); }
.tariff-features-block { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; margin-top: 16px; padding: 16px 20px; background: #FFF; border-radius: 16px; border: 1px solid #eef2f6; }
.tariff-features-item { font-size: 0.9rem; color: #5c6f87; display: flex; align-items: center; gap: 8px; }
.tariff-features-item i { color: #D4AF37; font-size: 1rem; }
.tariff-note { text-align: center; font-size: 0.9rem; color: #5c6f87; margin-top: 20px; padding-top: 16px; border-top: 1px solid #eef2f6; }
.slider-controls { display: none; }
.slider-nav-btn { background: #FFF; border: 1px solid #e2e8f0; border-radius: 50%; width: 44px; height: 44px; font-size: 1.2rem; color: #D4AF37; cursor: pointer; transition: all 0.2s; display: flex; align-items: center; justify-content: center; }
.slider-nav-btn:hover { background: #D4AF37; color: #0D0D0D; transform: translateY(-2px); }
.slider-dots { display: none; }
.slider-dot { width: 8px; height: 8px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: all 0.2s; }
.slider-dot.active { background: #D4AF37; transform: scale(1.3); }

/* О компании */
.about-stats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 50px; }
.stat-card { background: #FFF; border-radius: 32px; padding: 32px 20px; text-align: center; border: 1px solid #eef2f6; transition: all 0.3s; box-shadow: 0 8px 24px rgba(0,0,0,0.04); }
.stat-card:hover { transform: translateY(-5px); border-color: #D4AF37; }
.stat-value { font-size: clamp(1.3rem, 3vw, 2.2rem); font-weight: 700; color: #1e2a3a; margin-bottom: 10px; }
.stat-label { font-size: clamp(0.65rem, 1.4vw, 0.9rem); color: #5c6f87; }

/* FAQ */
.faq-grid { display: flex; flex-direction: column; gap: 16px; max-width: 900px; margin: 30px auto 0; }
.faq-item { background: #FFF; border-radius: 20px; border: 1px solid #eef2f6; overflow: hidden; transition: all 0.2s; }
.faq-question { padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 600; color: #1e2a3a; transition: background 0.2s; text-align: left !important; }
.faq-question:hover { background: #f8fafc; }
.faq-question i { color: #D4AF37; transition: transform 0.2s; flex-shrink: 0; margin-left: auto; }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: #5c6f87; font-size: 0.85rem; line-height: 1.5; text-align: left !important; }
.faq-item.active .faq-answer { padding: 0 24px 20px 24px !important; max-height: 300px; }
.faq-item.active .faq-question i { transform: rotate(180deg); }

/* Отзывы */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 20px; }
.review-card { background: #FFF; border: 1px solid #eef2f6; border-radius: 24px; padding: 24px; transition: all 0.3s; }
.review-card:hover { transform: translateY(-4px); border-color: #D4AF37; box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.review-stars { font-size: 1rem; margin-bottom: 12px; }
.review-text { font-size: 0.85rem; color: #5c6f87; line-height: 1.5; margin-bottom: 12px; font-style: italic; }
.review-author { font-size: 0.75rem; color: #1e2a3a; font-weight: 600; }

/* Контакты */
.map-container { display: flex; height: 500px; background: #fff; border-radius: 0; overflow: hidden; border: 1px solid #cbd5e0; }
.map-block { flex: 1; height: 100%; min-height: 300px; }
.sidebar-list { width: 340px; background: #f9f9f9; padding: 12px; overflow-y: auto; border-left: 1px solid #e0e0e0; }
.location-item { background: #fff; padding: 14px; border: none; border-bottom: 1px solid #cbd5e0; border-radius: 0; cursor: pointer; transition: all 0.2s; margin-bottom: 0; }
.location-item:hover, .location-item.active { background: #fdf6e3; border-left: 4px solid #D4AF37; }
.location-item h4 { font-size: 1rem; margin: 0 0 4px 0; color: #1e2a3a; }
.location-item .address { color: #5c6f87; font-size: 0.85rem; margin: 0 0 4px 0; }
.location-item .schedule { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 4px; }
.location-item .schedule span { background: none; padding: 0; border-radius: 0; font-size: 0.7rem; color: #888; white-space: nowrap; }
.search-bar { position: relative; padding: 0 0 10px 0; position: sticky; top: 0; background: #f9f9f9; z-index: 2; }
.search-bar i { position: absolute; left: 12px; top: 50%; transform: translateY(-50%); color: #888; font-size: 0.9rem; z-index: 3; }
.search-bar input { width: 100%; padding: 10px 12px 10px 34px; border: 1px solid #cbd5e0; border-radius: 6px; font-size: 0.85rem; font-family: 'Montserrat', sans-serif; outline: none; }
.search-bar input:focus { border-color: #D4AF37; }

/* Детальная карточка */
.detail-header { display: flex; align-items: center; justify-content: center; position: relative; background: #fff; padding: 12px 14px; flex-shrink: 0; border-bottom: 1px solid #eef2f6; }
.detail-logo { height: 44px; width: auto; filter: sepia(1) saturate(0) invert(1) contrast(1.5) drop-shadow(0 0 0.8px rgba(0,0,0,1)); }
.back-btn { position: absolute; left: 14px; background: none; border: none; color: #000; font-size: 1.2rem; cursor: pointer; padding: 0; }
.back-btn:hover { color: #333; }
.location-detail { height: auto; min-height: auto; display: flex; flex-direction: column; overflow: visible; }
.detail-content { background: #fff; padding: 20px; border-radius: 0; text-align: left; flex: 1; display: flex; flex-direction: column; overflow-y: visible; }
.detail-name { font-size: 1rem; margin: 0 0 10px 0; color: #1e2a3a; }
.detail-address { font-size: 0.9rem; color: #5c6f87; margin: 0 0 6px 0; }
.detail-schedule { font-size: 0.8rem; color: #888; margin: 0 0 10px 0; display: flex; flex-wrap: wrap; gap: 6px; justify-content: flex-start; }
.detail-schedule span { background: none; padding: 0; font-size: 0.75rem; color: #888; }
.detail-buttons { display: flex; gap: 8px; justify-content: center; margin-bottom: 14px; flex-shrink: 0; }
.detail-phone-btn, .detail-max-btn { flex: 1; padding: 10px; border-radius: 0; font-size: 0.8rem; font-weight: 600; text-decoration: none; display: flex; align-items: center; justify-content: center; gap: 6px; cursor: pointer; border: none; }
.detail-phone-btn { background: #eef2f6; color: #1e2a3a; }
.detail-phone-btn:hover { background: #dde1e8; }
.detail-max-btn { background: #eef2f6; color: #1e2a3a; }
.detail-max-btn:hover { background: #dde1e8; }
.detail-services-label { font-size: 0.8rem; color: #5c6f87; margin: 0 0 8px 0; text-align: left; }
.detail-services { display: flex; gap: 8px; justify-content: flex-start; margin: 0 0 14px 0; }
.detail-services span { background: #eef2f6; color: #1e2a3a; padding: 6px 14px; border-radius: 0; font-size: 0.8rem; }
.route-btn-detail { margin-top: auto; background: #D4AF37; color: #0D0D0D; border: none; padding: 10px 18px; border-radius: 6px; font-weight: 600; cursor: pointer; width: 100%; font-size: 0.85rem; font-family: 'Montserrat', sans-serif; flex-shrink: 0; }
.route-btn-detail:hover { background: #E5C158; }

.contact-line { margin-bottom: 0; }
.contact-line a { color: #1e2a3a; text-decoration: none; }
.go-top { width: 44px; height: 44px; font-size: 1.4rem; bottom: 20px; right: 30px; }
.max-float-btn { width: 44px; height: 44px; }
.mobile-phone-icon { width: 44px; height: 44px; }
#yandex-map { width: 100%; height: 100%; min-height: 300px; }

@media (max-width: 850px) {
.map-container { flex-direction: column; height: auto; }
.map-block { height: 280px; }
.sidebar-list { width: 100%; max-height: calc(100vh - 420px); height: auto; overflow-y: auto; }
.location-detail { height: auto; min-height: auto; overflow: visible; }
.detail-content { padding: 10px 12px; }
.detail-buttons { flex-direction: column; gap: 6px; margin-bottom: 6px; }
.detail-name { font-size: 0.85rem; margin-bottom: 4px; }
.detail-address { font-size: 0.75rem; margin-bottom: 2px; }
.detail-schedule { font-size: 0.7rem; margin-bottom: 6px; gap: 4px; }
.detail-schedule span { font-size: 0.7rem; }
.detail-services-label { font-size: 0.7rem; margin-bottom: 4px; }
.detail-services { margin-bottom: 6px; gap: 4px; }
.detail-services span { font-size: 0.7rem; padding: 4px 8px; }
.detail-phone-btn, .detail-max-btn { font-size: 0.75rem; padding: 8px 10px; }
.route-btn-detail { font-size: 0.8rem; padding: 8px 14px; margin-top: 4px; }
.detail-header { padding: 8px 10px; }
.detail-logo { height: 32px; }
.back-btn { font-size: 1rem; left: 10px; }
}

/* Футер */
.footer { background: #0D0D0D; padding: 48px 0 32px; margin-top: 40px; border-top: 1px solid rgba(212,175,55,0.2); }
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.footer-col { flex: 1; min-width: 160px; }
.footer-title { color: #D4AF37; margin-bottom: 16px; font-size: 1rem; font-weight: 600; }
.footer-col a { display: block; color: #aaa; text-decoration: none; font-size: 0.8rem; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: #D4AF37; }
.social-links { display: flex; gap: 16px; margin-top: 16px; }
.social-links a { font-size: 1.4rem; color: #fff; transition: color 0.2s; margin-bottom: 0; }
.social-links a:hover { color: #D4AF37; }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid #1a1a1a; font-size: 0.7rem; color: #777; }
.legal-links { display: flex; justify-content: center; gap: 24px; margin-top: 16px; flex-wrap: wrap; }
.legal-links a { color: #aaa; text-decoration: none; font-size: 0.7rem; }
.legal-links a:hover { color: #D4AF37; }

/* Белые иконки в футере и меню */
.footer-col .social-links a i,
.mobile-menu .social-icons a i {
    color: #FFF;
}
.footer-col .social-links a:hover i,
.mobile-menu .social-icons a:hover i {
    color: #D4AF37;
}

@keyframes toastFadeIn { from { opacity: 0; transform: translateX(-50%) translateY(10px); } to { opacity: 1; transform: translateX(-50%) translateY(0); } }
@keyframes toastFadeOut { from { opacity: 1; } to { opacity: 0; } }

/* ========== 481px – 1024px ========== */
@media (min-width: 481px) and (max-width: 1024px) {
    .navbar { padding: 0 !important; }
    main { padding-top: clamp(0px, 6vw, 60px); } 
    section { padding: clamp(32px, 5vw, 40px) 0; }
    h2 { margin-bottom: clamp(16px, 2.5vw, 20px); font-size: clamp(1.3rem, 3vw, 1.5rem); }
    
    .navbar .container { flex-direction: row !important; align-items: center; justify-content: flex-start; padding: 8px clamp(12px, 3vw, 20px); background: #0D0D0D; gap: 0; flex-wrap: nowrap; position: relative; }
    .navbar-top { display: flex !important; align-items: center; background: transparent; padding: 0 !important; gap: 0; flex: 1 1 auto; min-width: 0; }
    .navbar-logo { margin: 0 !important; top: 0 !important; flex-shrink: 0; }
    .navbar-logo img { height: clamp(36px, 5vw, 44px); min-width: auto; display: block; }
    .navbar-contacts { display: flex !important; align-items: center; gap: clamp(2px, 1vw, 8px); margin-left: auto; margin-right: clamp(32px, 7vw, 48px); flex-shrink: 1; min-width: 0; }
    #headerOfficeSelect { font-size: clamp(0.5rem, 2vw, 0.85rem) !important; padding: 0 clamp(8px, 2vw, 16px) 2px 0 !important; max-width: clamp(60px, 18vw, 120px); color: #FFF !important; }
    .navbar-phone { display: flex !important; align-items: center; font-size: clamp(0.5rem, 2vw, 0.85rem) !important; white-space: nowrap; }
    .nav-menu { display: none !important; }
    .navbar-bottom { position: absolute !important; right: clamp(12px, 3vw, 20px); top: 50% !important; transform: translateY(-50%) !important; width: auto !important; left: auto !important; background: transparent !important; border: none !important; padding: 0 !important; margin: 0 !important; }
    .mobile-phone-bar { display: none !important; }
    .burger-btn { display: flex !important; position: static !important; transform: none !important; width: 36px; height: 36px; font-size: 1.2rem; background: none; border: none; color: #D4AF37; align-items: center; justify-content: center; flex-shrink: 0; }

    .mobile-menu {
        position: fixed; top: -100%; right: auto; left: 0; width: 100%; max-width: 100%; height: auto;
        max-height: 80vh; padding: 12px 16px; gap: 0; text-align: right;
        border-left: none; border-bottom: 2px solid #D4AF37; z-index: 999; overflow-y: auto;
        transition: top 0.3s; background: #1a1508; margin: 0;
    }
    .mobile-menu.open { top: 56px; }
    .mobile-menu .close-btn { display: none; }
    .mobile-menu .mobile-contacts { display: none !important; }
    .mobile-menu .social-icons { display: none !important; }
    .mobile-menu a { text-align: right; }
    .mobile-menu .nav-links-row { 
        display: flex; flex-wrap: wrap; justify-content: center; gap: 2px 6px; width: 100%; 
    }
    .mobile-menu .nav-links-row a {
        display: inline-block; padding: 6px 8px; font-size: clamp(0.6rem, 1.4vw, 0.7rem); border-bottom: none; white-space: nowrap; flex: 0 0 auto; line-height: 1.2;
    }
    .mobile-menu .nav-links-row a[href="#calculator-section"] {
        color: #EEE !important;
        font-weight: 500 !important;
    }
    .overlay { display: none !important; }
    .mobile-nav-guest { display: contents !important; }
    .mobile-nav-user { display: none !important; }
    
    .hero-wrapper { padding: 0 0 clamp(18px, 3vw, 24px); max-width: 100%; }
    .hero-wrapper .container { max-width: 100%; padding: 0 !important; }
    .hero-title { white-space: normal; font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0 0 16px; }
    
    .full-width-slider { width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); margin-bottom: 0; border-radius: 0; border: none; box-shadow: none; aspect-ratio: auto; position: relative; z-index: 1; }
    .full-width-slider .slides-container { height: auto; aspect-ratio: 21/9; border-radius: 0; width: 100%; }
    .full-width-slider .slide { height: 100%; border-radius: 0; background-size: cover; background-repeat: no-repeat; background-position: center; width: 100%; }
    
    .calculator-full-width, .cbr-rates-card { width: calc(100% - 16px); margin-left: auto; margin-right: auto; }
    .calculator-full-width { margin-bottom: 0; padding: clamp(18px, 3vw, 24px) clamp(16px, 3vw, 20px); border-radius: 0; }
    .calculator-full-width h3 { font-size: clamp(0.9rem, 3vw, 1.3rem); margin-bottom: clamp(12px, 2.5vw, 18px); }
    .cbr-rates-card { width: 100%; margin: 0; padding: clamp(12px, 2.5vw, 16px); margin-bottom: 16px; border-radius: 0; border-bottom: 1px solid #cbd5e0; box-shadow: none; }

    .rates-header { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 16px; min-width: auto; }
    .rates-title { padding-right: 16px; border-right: 2px solid #D4AF37; margin-right: 0; text-align: left; flex-shrink: 0; }
    .rates-title-main { font-size: clamp(0.8rem, 2vw, 1rem); }
    .rates-date { font-size: clamp(0.55rem, 1.2vw, 0.7rem); }
    .rates-metals { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(6px, 1.5vw, 12px); flex: 1; }
    .metal-item { display: flex; align-items: center; justify-content: center; gap: clamp(4px, 1vw, 8px); padding: 2px 0; }
    .metal-item:not(:last-child)::after { content: ''; position: absolute; right: calc(-1 * clamp(6px, 1.5vw, 10px)); height: 18px; width: 1px; background: #dde1e8; display: block; }
    .metal-label { font-size: clamp(0.7rem, 1.5vw, 0.85rem); text-align: left; width: clamp(55px, 8vw, 70px); flex-shrink: 0; }
    .metal-value { font-size: clamp(0.7rem, 1.5vw, 0.85rem); text-align: right; width: clamp(60px, 9vw, 80px); flex-shrink: 0; }
    .bar-icon { width: clamp(10px, 1.5vw, 14px); height: clamp(7px, 1vw, 10px); margin-right: 4px; flex-shrink: 0; }

    #tariffs, #contacts { padding-top: clamp(16px, 3vw, 20px); }
    #services, #reviews, #about, #help, #contacts { padding-top: clamp(28px, 4.5vw, 36px); }
    #contacts { padding-bottom: clamp(32px, 5vw, 40px); }

    .calc-main-grid { gap: clamp(16px, 3vw, 24px); }
    .calc-switch { margin-bottom: clamp(14px, 3vw, 24px); border-radius: 0; }
    .calc-switch-btn { padding: clamp(6px, 1.5vw, 10px); font-size: clamp(0.65rem, 1.8vw, 0.9rem); border-radius: 0; }
    .params-row { flex-direction: column; gap: clamp(8px, 2vw, 14px); }
    .param-item label { font-size: clamp(0.6rem, 1.6vw, 0.8rem); margin-bottom: clamp(4px, 1vw, 8px); }
    .param-input { padding: clamp(8px, 2vw, 14px) clamp(10px, 3vw, 18px); font-size: clamp(0.75rem, 2vw, 1rem); border-radius: 0; }
    .purities-grid-sunlight { margin-top: clamp(8px, 2vw, 16px); }
    #tariffParamItem { margin-bottom: clamp(8px, 2vw, 16px); }
    .result-side { padding: clamp(14px, 2.5vw, 20px); display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: clamp(10px, 2vw, 14px); height: auto !important; border-radius: 0; width: 100%; }
    .result-amount-sunlight { text-align: center; margin: 0 !important; }
    .result-value { font-size: clamp(1.1rem, 3.5vw, 1.8rem); }
    .result-label { font-size: clamp(0.6rem, 1.8vw, 0.85rem); }
    .result-info { text-align: left; width: 100%; margin: 0 !important; padding: clamp(4px, 1vw, 8px) 0; flex-grow: 0 !important; }
    .info-row { font-size: clamp(0.65rem, 1.8vw, 0.85rem); justify-content: space-between; gap: 0; padding: clamp(4px, 1vw, 8px) 0; }
    .calculator-note { font-size: clamp(0.45rem, 1.4vw, 0.65rem); text-align: center; margin: 0 !important; }
    .result-side.buyout-mode { justify-content: center !important; }
    .result-side.buyout-mode .result-amount-sunlight { margin-bottom: 0 !important; }
    .office-select, .tariff-select { max-width: 100%; font-size: clamp(0.75rem, 2vw, 1rem); padding: clamp(10px, 2.5vw, 14px) clamp(12px, 3vw, 18px); border-radius: 0; }
    .calc-right { max-width: 380px; flex: 1; }
    .calc-left { flex: 1.2; min-width: 260px; }
    .map-container { display: flex; flex-direction: row; height: 450px; }
    .map-block { flex: 1; height: 100%; }
    .sidebar-list { width: 300px; max-height: none; }
}

/* Внутри 481-1024, когда результат снизу */
@media (max-width: 700px) {
    .calc-right { max-width: none; flex: 1 1 100%; }
    .result-side { width: 100% !important; }
    
    .about-stats-grid { display: flex; flex-direction: row; justify-content: center; gap: clamp(8px, 2vw, 12px); flex-wrap: nowrap; }
    .stat-card { flex: 1; min-width: auto; padding: clamp(16px, 3vw, 22px) clamp(10px, 2vw, 14px); }
    .stat-value { font-size: clamp(1.3rem, 3vw, 1.6rem); }
    .stat-label { font-size: clamp(0.65rem, 1.4vw, 0.75rem); }
    
    .tariffs-track { display: flex; flex-wrap: nowrap; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); gap: 0; will-change: transform; overflow: visible; }
    .tariff-card { flex: 0 0 100%; width: 100%; min-width: auto; border-radius: 20px; margin: 0; padding: clamp(16px, 3vw, 22px) clamp(10px, 2vw, 16px); display: flex; flex-direction: column; }
    .tariff-card h3 { font-size: clamp(1rem, 2.5vw, 1.3rem); margin-bottom: 16px; min-height: 26px; }
    .tariff-badge { font-size: clamp(0.6rem, 1.5vw, 0.75rem); padding: 2px 8px; margin-bottom: 12px; align-self: flex-start; min-height: 24px; }
    .tariff-info { flex-grow: 1; }
    .tariff-item .label { font-size: clamp(0.7rem, 1.8vw, 0.9rem); }
    .tariff-item .value { font-size: clamp(0.75rem, 2vw, 0.95rem); }
    .tariff-item .value.accent { font-size: clamp(0.85rem, 2.2vw, 1.05rem); }
    .tariffs-slider-container { overflow: hidden; padding: 10px 0 0; margin: 5px 0 0; }
    .slider-controls { display: flex; justify-content: center; align-items: center; margin-top: 12px; gap: 10px; position: static; height: 36px; }
    .slider-nav-btn { width: 36px; height: 36px; font-size: 0.9rem; background: #FFF; border: 1px solid #e2e8f0; border-radius: 50%; color: #D4AF37; cursor: pointer; display: none; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; line-height: 1; }
    .slider-dots { display: flex; justify-content: center; align-items: center; gap: 6px; height: 36px; }
    .slider-dot { width: 6px; height: 6px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: all 0.2s; }
    .slider-dot.active { background: #D4AF37; transform: scale(1.4); }
    .tariff-features-block { flex-direction: column; gap: 10px; align-items: flex-start; justify-content: flex-start !important; margin-top: 12px; padding: clamp(12px, 2.5vw, 16px); }
    .tariff-features-item { font-size: clamp(0.75rem, 1.8vw, 0.9rem); }
    .tariff-features-item i { font-size: clamp(0.85rem, 2vw, 1rem); }
    .tariff-note { font-size: clamp(0.7rem, 1.6vw, 0.85rem); margin-top: 14px; text-align: left; }
    
    .cabinet-name { display: none; }
    .cabinet-user { padding: 0; background: transparent; gap: 0; }
    .cabinet-user:hover { background: transparent; }
    .cabinet-avatar { display: flex; width: 28px; height: 28px; background: #FFF; color: #1a1508; border-radius: 50%; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; flex-shrink: 0; border: 1px solid rgba(212,175,55,0.4); }
    
    .services-advantages-grid { flex-direction: column; gap: 20px; }
    .advantages-list { padding: clamp(18px, 3.5vw, 24px); }
    .advantages-list h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
    .advantage-text h4 { font-size: clamp(0.85rem, 2vw, 1rem); }
    .advantage-text p { font-size: clamp(0.7rem, 1.5vw, 0.8rem); }
    .services-list { display: flex; flex-direction: row; justify-content: center; gap: 12px; flex-wrap: nowrap; }
    .service-card { flex: 1; min-width: auto; padding: clamp(16px, 3vw, 22px) clamp(10px, 2vw, 14px); }
    .service-card h3 { font-size: clamp(0.85rem, 2vw, 1rem); }
    .service-card p { font-size: clamp(0.65rem, 1.4vw, 0.75rem); }
    .service-card i { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
    
    .photos-grid { display: flex; flex-direction: row; justify-content: center; align-items: center; gap: clamp(6px, 1vw, 10px); flex-wrap: nowrap; margin-bottom: 20px; }
    .photo-item { width: auto; max-width: none; flex: 1; }
    .photo-item img { width: 100%; max-width: clamp(200px, 28vw, 300px); height: auto; border: none; border-radius: 16px; }
    
    .reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .review-card { padding: clamp(16px, 3vw, 22px); }
    .review-text { font-size: clamp(0.75rem, 1.6vw, 0.85rem); }
    .review-author { font-size: clamp(0.65rem, 1.4vw, 0.75rem); }
    
.map-container { flex-direction: column; height: auto; }
.map-block { height: 280px; }
.sidebar-list { width: 100%; max-height: calc(100vh - 400px); height: auto; overflow-y: auto; }
.location-detail { height: auto; min-height: auto; overflow: visible; }
.detail-content { padding: 10px 12px; }
.detail-buttons { flex-direction: column; gap: 6px; margin-bottom: 6px; }
.detail-name { font-size: 0.85rem; margin-bottom: 4px; }
.detail-address { font-size: 0.75rem; margin-bottom: 2px; }
.detail-schedule { font-size: 0.7rem; margin-bottom: 6px; gap: 4px; }
.detail-schedule span { font-size: 0.7rem; }
.detail-services-label { font-size: 0.7rem; margin-bottom: 4px; }
.detail-services { margin-bottom: 6px; gap: 4px; }
.detail-services span { font-size: 0.7rem; padding: 4px 8px; }
.detail-phone-btn, .detail-max-btn { font-size: 0.75rem; padding: 8px 10px; }
.route-btn-detail { font-size: 0.8rem; padding: 8px 14px; margin-top: 4px; }
.detail-header { padding: 8px 10px; }
.detail-logo { height: 32px; }
.back-btn { font-size: 1rem; left: 10px; }
    
    .faq-question { font-size: clamp(0.8rem, 1.8vw, 0.95rem); }
    .faq-answer { font-size: clamp(0.7rem, 1.5vw, 0.85rem); }
    
    .office-selector-wrapper { margin-bottom: 10px; }
    .tariff-select { margin-bottom: 6px; }
    
    .footer-grid { display: flex; flex-direction: row; flex-wrap: wrap; justify-content: space-between; gap: clamp(20px, 3vw, 40px); text-align: left; }
    .footer-col { flex: 1; min-width: 140px; text-align: left; }
    .footer-col .footer-title { font-size: clamp(0.8rem, 1.6vw, 0.9rem); }
    .footer-col a { font-size: clamp(0.65rem, 1.4vw, 0.75rem); }
    .social-links { justify-content: flex-start; gap: 16px; }
    .social-links a { font-size: clamp(1.2rem, 2.5vw, 1.4rem); }
    .footer-bottom { font-size: clamp(0.6rem, 1.2vw, 0.7rem); }
    
    .params-row { display: flex; flex-direction: row; gap: clamp(2px, 1.5vw, 8px); flex-wrap: nowrap; }
    .param-item { flex: 1 1 0; min-width: 0; }
    .param-item label { font-size: clamp(0.45rem, 1.5vw, 0.7rem); white-space: nowrap; margin-bottom: clamp(2px, 0.5vw, 4px); }
    .param-input { padding: clamp(3px, 1vw, 10px) clamp(4px, 1.5vw, 12px); font-size: clamp(0.55rem, 1.8vw, 0.85rem); width: 100%; }
    #weightInput { flex: 0.6; }
    #daysParamItem { flex: 0.6; }
    #tariffParamItem { flex: 1; }
    .tariff-select { font-size: clamp(0.55rem, 1.8vw, 0.85rem); padding: clamp(3px, 1vw, 10px) clamp(18px, 3vw, 30px) clamp(3px, 1vw, 10px) clamp(4px, 1.5vw, 10px); background-position: right clamp(3px, 1vw, 8px) center; width: 100%; margin-bottom: 0; }
    .result-side { display: flex !important; flex-direction: column !important; }
}

/* ========== 480px ========== */
@media (max-width: 480px) {
    .navbar { padding: 0 !important; }
    main { padding-top: clamp(0px, 10vh, 40px); }  
    section { padding: clamp(24px, 5vw, 32px) 0; }
    h2 { margin-bottom: clamp(12px, 2.5vw, 16px); font-size: clamp(1rem, 3.5vw, 1.4rem); padding-left: 14px; }

    .navbar .container { flex-direction: row !important; align-items: center; justify-content: flex-start; padding: clamp(4px, 1.5vw, 6px) clamp(8px, 3vw, 12px); background: #0D0D0D; gap: 0; flex-wrap: nowrap; }
    .navbar-top { display: flex !important; align-items: center; background: transparent; padding: 0 !important; gap: 0; flex: 1 1 auto; min-width: 0; }
    .navbar-logo { margin: 0 !important; top: 0 !important; flex-shrink: 0; }
    .navbar-logo img { height: clamp(28px, 8vw, 32px); min-width: auto; display: block; }
    .navbar-contacts { display: flex !important; align-items: center; gap: clamp(2px, 1vw, 4px); margin-left: auto; margin-right: clamp(4px, 2vw, 8px); flex-shrink: 0; }
    #headerOfficeSelect { font-size: clamp(0.6rem, 2vw, 0.7rem) !important; padding: 0 clamp(8px, 2.5vw, 14px) 2px 0 !important; max-width: clamp(75px, 24vw, 100px); color: #FFF !important; }
    .navbar-phone { display: none !important; }
    .nav-menu { display: none !important; }
    .navbar-bottom { display: flex !important; align-items: center; gap: 0; background: transparent !important; border-top: none !important; padding: 0 !important; margin: 0 !important; width: auto !important; position: static !important; left: auto !important; transform: none !important; flex-shrink: 0; }
    .mobile-phone-bar { display: none !important; }
    .burger-btn { display: flex !important; position: static !important; transform: none !important; width: clamp(28px, 8vw, 32px); height: clamp(28px, 8vw, 32px); font-size: clamp(0.9rem, 3vw, 1.1rem); background: none; border: none; color: #D4AF37; align-items: center; justify-content: center; flex-shrink: 0; }
    .cabinet-btn { width: 26px; height: 26px; font-size: 0.7rem; }
    .cabinet-avatar { width: 26px; height: 26px; font-size: 0.7rem; }
    .nav-links-row { display: flex; flex-direction: column; }
    .nav-links-row a, .mobile-nav-guest a, .mobile-nav-user a { display: block; padding: 12px 0; font-size: 0.9rem; border-bottom: none; color: #EEE; text-decoration: none; }
    .mobile-nav-guest, .mobile-nav-user { display: flex; flex-direction: column; }
    
    .hero-wrapper { padding: 0 0 clamp(12px, 2.5vw, 16px); }
    .hero-wrapper .container { padding: 0; }
    .hero-title { font-size: clamp(1rem, 4vw, 1.6rem); margin: 0 0 12px; }

    .full-width-slider { width: 100%; margin: 0; aspect-ratio: auto; height: auto; border-radius: 0; border: none; box-shadow: none; }
    .full-width-slider .slides-container { height: auto; }
    .full-width-slider .slide { height: auto; aspect-ratio: 21/9; background-size: cover; background-repeat: no-repeat; background-position: center; }

    .calculator-full-width, .cbr-rates-card { width: calc(100% - 12px); margin-left: auto; margin-right: auto; }
    .calculator-full-width { padding: clamp(10px, 3vw, 14px); border-radius: 0; margin-top: 8px; margin-bottom: 0; }
    .calculator-full-width h3 { font-size: clamp(0.85rem, 3vw, 1.2rem); margin-bottom: 10px; }
    .cbr-rates-card { width: 100%; margin: 0; padding: 10px 14px; margin-bottom: 12px; border-radius: 0; border-bottom: 1px solid #cbd5e0; box-shadow: none; }

    #tariffs, #contacts { padding-top: clamp(16px, 3vw, 20px); }
    #services, #reviews, #about, #help { padding-top: clamp(22px, 4vw, 28px); }
    #contacts { padding-bottom: clamp(24px, 5vw, 32px); }

    .rates-header { min-width: auto !important; flex-direction: column; align-items: center; gap: 10px; }
    .rates-title { border-right: none; border-bottom: 2px solid #D4AF37; padding-right: 0; padding-bottom: 8px; margin-right: 0; margin-bottom: 8px; text-align: center; width: 100%; }
    .rates-title-main { font-size: clamp(0.75rem, 3vw, 1rem); }
    .rates-date { font-size: clamp(0.55rem, 2vw, 0.7rem); }
    .rates-metals { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(6px, 2vw, 12px); width: 100%; max-width: 380px; margin: 0 auto; }
    .metal-item { display: flex; align-items: center; justify-content: flex-start; gap: clamp(3px, 1.5vw, 6px); padding: 4px 0; }
    .metal-item:not(:last-child)::after { content: ''; position: absolute; right: calc(-1 * clamp(4px, 1.5vw, 8px)); height: 16px; width: 1px; background: #dde1e8; display: block; }
    .metal-value, .metal-label { font-size: clamp(0.65rem, 2vw, 0.8rem); }
    .metal-label { text-align: left; width: clamp(50px, 12vw, 65px); flex-shrink: 0; }
    .metal-value { text-align: right; width: clamp(55px, 13vw, 75px); flex-shrink: 0; }
    .bar-icon { width: clamp(8px, 2.5vw, 12px); height: clamp(6px, 1.5vw, 9px); margin-right: 4px; flex-shrink: 0; }

    .photos-grid { gap: 8px; margin-bottom: 14px; }
    .photo-item img { width: 100%; height: auto; border-radius: 12px; border: none; }

    .calc-main-grid { gap: clamp(10px, 3vw, 16px); }
    .calc-switch { margin-bottom: clamp(8px, 2.5vw, 14px); padding: 3px; border-radius: 0; }
    .calc-switch-btn { padding: clamp(6px, 2vw, 10px) clamp(4px, 1.5vw, 8px); font-size: clamp(0.6rem, 2.2vw, 0.8rem); border-radius: 0; }
    .params-row { display: flex; flex-direction: row; gap: clamp(2px, 1.5vw, 6px); flex-wrap: nowrap; margin-bottom: clamp(8px, 2.5vw, 14px); }
    .param-item { flex: 1 1 0; min-width: 0; }
    .param-item label { font-size: clamp(0.45rem, 1.5vw, 0.65rem); margin-bottom: clamp(2px, 0.5vw, 4px); white-space: nowrap; }
    .param-input { padding: clamp(3px, 1vw, 8px) clamp(4px, 1.5vw, 10px); font-size: clamp(0.55rem, 1.8vw, 0.8rem); border-radius: 0; width: 100%; }
    #weightInput { flex: 0.6; }
    #daysParamItem { flex: 0.6; }
    #tariffParamItem { flex: 1; margin-bottom: 0; }
    .tariff-select { font-size: clamp(0.55rem, 2vw, 0.8rem); padding: clamp(3px, 1vw, 8px) clamp(18px, 3vw, 28px) clamp(3px, 1vw, 8px) clamp(4px, 1.5vw, 8px); background-position: right clamp(3px, 1vw, 6px) center; width: 100%; margin-bottom: 0; }
    .purities-grid-sunlight { margin-top: clamp(6px, 2vw, 12px); }
    .result-side { padding: clamp(10px, 3vw, 16px); border-radius: 0; width: 100% !important; display: flex !important; flex-direction: column !important; }
    .result-value { font-size: clamp(0.9rem, 3.5vw, 1.5rem); }
    .result-label { font-size: clamp(0.6rem, 2vw, 0.8rem); }
    .info-row { font-size: clamp(0.6rem, 2vw, 0.8rem); padding: clamp(4px, 1.5vw, 8px) 0; }
    .calculator-note { font-size: clamp(0.45rem, 1.5vw, 0.65rem); }
    .office-select, .tariff-select { font-size: clamp(0.7rem, 2.5vw, 0.95rem); padding: clamp(8px, 3vw, 14px) clamp(10px, 3.5vw, 16px); border-radius: 0; }
    .calculator-full-width h3 { font-size: clamp(0.85rem, 3vw, 1.2rem); margin-bottom: clamp(8px, 2vw, 12px); }
    .calc-right { flex: 1 1 100%; max-width: none; }
    .calculator-full-width { contain-intrinsic-size: auto; border-radius: 0; }

    .about-stats-grid { display: flex; flex-direction: column; gap: 12px; }
    .stat-card { flex: none; width: 100%; padding: clamp(16px, 4vw, 20px) clamp(12px, 3vw, 16px); }
    .stat-value { font-size: clamp(1.5rem, 4vw, 1.8rem); }
    .stat-label { font-size: clamp(0.7rem, 2vw, 0.8rem); }
    .hero-description-text p { font-size: clamp(0.75rem, 2.2vw, 0.85rem); }

    .services-list { display: flex; flex-direction: column; gap: 10px; }
    .service-card { flex: none; width: 100%; padding: clamp(12px, 3.5vw, 16px); }
    .service-card h3 { font-size: clamp(0.85rem, 2.5vw, 0.95rem); }
    .service-card p { font-size: clamp(0.65rem, 1.8vw, 0.7rem); }
    .advantages-list { padding: clamp(16px, 4vw, 24px); }
    .advantages-list h3 { font-size: clamp(1.1rem, 3vw, 1.4rem); }
    .advantage-text h4 { font-size: clamp(0.85rem, 2.5vw, 1rem); }
    .advantage-text p { font-size: clamp(0.65rem, 1.8vw, 0.8rem); }

    .tariffs-slider-container { overflow: hidden; padding: 10px 0 0; margin: 5px 0 0; width: 100%; }
    .tariffs-track { display: flex; flex-wrap: nowrap; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); gap: 0; will-change: transform; }
    .tariff-card { flex: 0 0 calc(100% - 20px); width: calc(100% - 20px); min-width: calc(100% - 20px); max-width: calc(100% - 20px); border-radius: 20px; margin: 0 10px; padding: clamp(14px, 4vw, 20px); box-sizing: border-box; display: flex; flex-direction: column; }
    .tariff-card h3 { font-size: clamp(0.9rem, 3.5vw, 1.3rem); margin-bottom: 16px; min-height: 24px; }
    .tariff-badge { font-size: clamp(0.55rem, 2vw, 0.75rem); padding: 2px 8px; margin-bottom: 12px; align-self: flex-start; min-height: 22px; }
    .tariff-info { flex-grow: 1; }
    .tariff-item .label { font-size: clamp(0.65rem, 2.2vw, 0.9rem); }
    .tariff-item .value { font-size: clamp(0.7rem, 2.5vw, 0.95rem); }
    .tariff-item .value.accent { font-size: clamp(0.8rem, 3vw, 1.1rem); }
    .slider-controls { display: flex; justify-content: center; align-items: center; margin-top: 12px; gap: 10px; position: static; height: 36px; }
    .slider-nav-btn { width: 36px; height: 36px; font-size: 0.9rem; background: #FFF; border: 1px solid #e2e8f0; border-radius: 50%; color: #D4AF37; cursor: pointer; display: none; align-items: center; justify-content: center; transition: all 0.2s; flex-shrink: 0; line-height: 1; }
    .slider-dots { display: flex; justify-content: center; align-items: center; gap: 6px; height: 36px; }
    .slider-dot { width: 6px; height: 6px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: all 0.2s; }
    .slider-dot.active { background: #D4AF37; transform: scale(1.4); }
    .tariff-features-block { padding: clamp(10px, 3vw, 12px); gap: 8px; justify-content: flex-start !important; }
    .tariff-features-item { font-size: clamp(0.65rem, 2.2vw, 0.9rem); }
    .tariff-note { font-size: clamp(0.6rem, 2vw, 0.8rem); margin-top: 10px; text-align: left; }

    .review-card { padding: clamp(14px, 4vw, 20px); }
    .review-text { font-size: clamp(0.7rem, 2.5vw, 0.9rem); }
    .review-author { font-size: clamp(0.6rem, 2vw, 0.8rem); }

    .faq-question { font-size: clamp(0.75rem, 2.5vw, 0.95rem); padding: clamp(14px, 3.5vw, 18px) clamp(16px, 4vw, 24px); }
    .faq-answer { font-size: clamp(0.65rem, 2.2vw, 0.9rem); }

.map-container { flex-direction: column; height: auto; }
.map-block { height: 180px !important; min-height: 180px !important; display: block !important; }
.sidebar-list { width: 100%; max-height: calc(100vh - 320px); height: auto; overflow-y: auto; }
.location-detail { height: auto !important; min-height: auto !important; max-height: none !important; overflow: visible !important; }
.detail-content { padding: 10px 12px !important; gap: 0 !important; }
.detail-name { font-size: 0.8rem !important; margin: 0 0 2px 0 !important; }
.detail-address { font-size: 0.7rem !important; margin: 0 0 2px 0 !important; }
.detail-schedule { font-size: 0.65rem !important; margin: 0 0 6px 0 !important; gap: 3px !important; }
.detail-schedule span { font-size: 0.65rem !important; }
.detail-services-label { font-size: 0.65rem !important; margin: 0 0 4px 0 !important; }
.detail-services { margin: 0 0 6px 0 !important; gap: 4px !important; }
.detail-services span { font-size: 0.65rem !important; padding: 4px 8px !important; }
.detail-buttons { flex-direction: column; margin-bottom: 6px !important; gap: 4px !important; }
.detail-phone-btn, .detail-max-btn { font-size: 0.7rem !important; padding: 6px 8px !important; }
.route-btn-detail { font-size: 0.75rem !important; padding: 8px 12px !important; margin-top: 4px !important; }
.detail-header { padding: 8px 10px !important; }
.detail-logo { height: 32px !important; }
.back-btn { font-size: 1rem !important; left: 10px !important; }

    .footer { padding: clamp(20px, 5vw, 28px) 0 clamp(16px, 4vw, 20px); margin-top: 24px; }
    .footer-grid { gap: clamp(16px, 4vw, 20px); margin-bottom: 20px; }
    .footer-col .footer-title { font-size: clamp(0.75rem, 2.2vw, 0.85rem); margin-bottom: 8px; }
    .footer-col a { font-size: clamp(0.65rem, 1.8vw, 0.7rem); margin-bottom: 6px; }
    .footer-bottom { padding-top: 16px; font-size: clamp(0.6rem, 1.6vw, 0.65rem); }
    .footer-bottom img { height: clamp(30px, 8vw, 36px); margin-bottom: 8px; }
    .legal-links { gap: 12px; margin-top: 10px; }
    .legal-links a { font-size: clamp(0.55rem, 1.5vw, 0.6rem); }
    .footer-col .social-links { display: flex; flex-direction: row; justify-content: flex-start; gap: 20px; margin-top: 8px; }
    .footer-col .social-links a { font-size: clamp(1.2rem, 3.5vw, 1.5rem); }

    .mobile-menu { position: fixed; top: 0; right: -100%; left: auto; width: clamp(70%, 85vw, 320px); max-width: 320px; height: 100%; border-left: 1px solid rgba(212,175,55,0.3); border-bottom: none; padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 16px) clamp(12px, 3vw, 16px); gap: clamp(4px, 1.5vw, 6px); overflow-y: auto; }
    .mobile-menu.open { right: 0; top: 0; }
    .mobile-menu .close-btn { display: block; top: clamp(10px, 2vw, 12px); right: clamp(10px, 2vw, 12px); font-size: clamp(1rem, 3.5vw, 1.4rem); }
    .mobile-menu .mobile-contacts { display: flex; gap: clamp(4px, 1.5vw, 6px); margin-bottom: clamp(2px, 1vw, 4px); padding-bottom: clamp(4px, 2vw, 8px); }
    .mobile-menu .mobile-phone { font-size: clamp(0.9rem, 3vw, 1.2rem); }
    .mobile-menu a { font-size: clamp(0.8rem, 2.5vw, 1rem); padding: clamp(8px, 2vw, 12px) 0; gap: clamp(6px, 2vw, 8px); }
    .mobile-menu a:not(.mobile-phone):not(.social-icons a) { display: flex; }
    .mobile-menu .social-icons { gap: clamp(10px, 3vw, 14px); margin-top: clamp(2px, 1vw, 4px); }
    .mobile-menu .social-icons a { font-size: clamp(1rem, 3.5vw, 1.4rem); }
    .nav-links-row { display: flex; flex-direction: column; }

    .mobile-phone-icon { display: flex !important; position: fixed !important; bottom: 140px !important; right: 12px !important; width: 40px !important; height: 40px !important; background: #25D366 !important; border-radius: 50% !important; align-items: center !important; justify-content: center !important; color: #FFF !important; font-size: 1rem !important; z-index: 97 !important; box-shadow: 0 4px 12px rgba(0,0,0,0.3) !important; text-decoration: none !important; }
    .max-float-btn { right: 12px !important; bottom: 88px !important; width: 40px !important; height: 40px !important; }
    .go-top { width: 40px; height: 40px; font-size: 1rem; bottom: 36px !important; right: 12px !important; }
}

/* Фото и калькулятор на маленьких экранах (до 380px) */
@media (max-width: 380px) {
    .photo-item img { max-width: 110px; }
    main { padding-top: clamp(0px, 12vh, 35px); } 
    .navbar-logo img { height: 28px; }
    #headerOfficeSelect { font-size: 0.65rem !important; max-width: 80px; }
    .burger-btn { width: 28px; height: 28px; font-size: 1rem; }
    .cabinet-btn { width: 28px; height: 28px; font-size: 0.8rem; }
    .cbr-rates-card { width: 100%; padding: 8px; border-bottom: 1px solid #cbd5e0; box-shadow: none; }
    .rates-metals { gap: 4px 6px; }
    .metal-label { width: 55px; font-size: clamp(0.65rem, 2.5vw, 0.8rem); }
    .metal-value { width: 60px; font-size: clamp(0.65rem, 2.5vw, 0.8rem); }
    .bar-icon { width: clamp(8px, 3vw, 12px); height: clamp(6px, 2vw, 8px); }
    .calculator-full-width { width: calc(100% - 8px); padding: 10px 8px; contain-intrinsic-size: auto; }
    .calculator-full-width h3 { font-size: 0.75rem; margin-bottom: 6px; }
    .calc-main-grid { flex-direction: column; gap: 8px; }
    .calc-left { min-width: auto; }
    .calc-right { max-width: none; min-width: auto; }
    .calc-switch { margin-bottom: 6px; }
    .calc-switch-btn { padding: 5px 3px; font-size: 0.55rem; }
    .params-row { gap: 4px; margin-bottom: 6px; flex-wrap: nowrap; }
    .param-item { min-width: auto; }
    .param-item label { font-size: 0.5rem; }
    .param-input { padding: 5px 6px; font-size: 0.6rem; }
    .office-select, .tariff-select { font-size: 0.6rem; padding: 6px 8px; }
    .result-side { padding: 8px 6px; }
    .result-value { font-size: 0.9rem; }
    .result-label { font-size: 0.55rem; }
    .info-row { font-size: 0.55rem; padding: 3px 0; }
    .calculator-note { font-size: 0.4rem; }
    .mobile-menu { width: 85vw; max-width: 280px; }
    .mobile-menu a { font-size: 0.75rem; padding: 5px 0; }
    .mobile-menu .mobile-phone { font-size: 0.85rem; }
    .mobile-menu .close-btn { font-size: 1rem; top: 8px; right: 8px; }
.map-container { flex-direction: column; height: auto; }
.map-block { height: 160px !important; min-height: 160px !important; display: block !important; }
.sidebar-list { width: 100%; max-height: calc(100vh - 290px); height: auto; overflow-y: auto; }
.location-detail { height: auto !important; min-height: auto !important; max-height: none !important; overflow: visible !important; }
.detail-content { padding: 10px 12px !important; }
.detail-logo { height: 32px !important; }
.detail-buttons { flex-direction: column; }
    .mobile-phone-icon { bottom: 130px !important; right: 10px !important; width: 36px !important; height: 36px !important; z-index: 97 !important; }
    .max-float-btn { bottom: 80px !important; right: 10px !important; width: 36px !important; height: 36px !important; }
    .go-top { bottom: 30px !important; right: 10px !important; width: 36px !important; height: 36px !important; }
}

/* Фото 381-480px */
@media (min-width: 381px) and (max-width: 480px) {
    .photo-item img { max-width: 150px; }
}

/* Альбомный режим Z Fold и планшеты */
@media (min-width: 481px) and (max-width: 900px) and (orientation: landscape) {
    .tariffs-slider-container { overflow: hidden; padding: 10px 0 0; margin: 5px 0 0; width: 100%; }
    .tariffs-track { display: flex !important; flex-wrap: nowrap !important; transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94); gap: 0; will-change: transform; }
    .tariff-card { flex: 0 0 100% !important; width: 100% !important; min-width: 100% !important; max-width: 100% !important; border-radius: 20px; margin: 0 !important; padding: 20px; box-sizing: border-box; }
    .slider-controls { display: flex !important; justify-content: center; align-items: center; margin-top: 16px; gap: 10px; position: static; height: 36px; }
    .slider-nav-btn { display: none !important; }
    .slider-dots { display: flex !important; justify-content: center; align-items: center; gap: 8px; height: 36px; }
    .slider-dot { width: 8px; height: 8px; background: #cbd5e1; border-radius: 50%; cursor: pointer; transition: all 0.2s; }
    .slider-dot.active { background: #D4AF37; transform: scale(1.4); }
}

/* Исправление контрастности */
.purity-price { color: #9A7700; }
.result-side .info-row span:last-child { color: #1a1508; }
.route-btn { color: #9A7700; border-color: #9A7700; }
.route-btn:hover { background: #9A7700; color: #FFF; }
.footer-bottom { color: #999; }
.legal-links a { color: #ccc; }
.office-hours .break { color: #888; }
.share-btn { background: #9A7700; border-color: #9A7700; color: #FFF; }

