@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Manrope', sans-serif;
    
    --bg-primary: #F9F6F0;
    --bg-secondary: #F2EFE9;
    --bg-tertiary: #EBE6DE;
    --accent-gold: #c0ad82;
    --accent-gold-light: #C0AD82;
    --accent-gold-dark: #C0AD82;
    --accent-blue: #4A90E2;
    --accent-blue-light: #7AB3F5;
    --accent-blue-dark: #2C6BB6;
    --accent: #4CAFC3;
    --accent-hover: #3a8a9e;
    --text-primary: #1A1A1A;
    --text-secondary: #4A4A4A;
    --text-muted: #8C8C8C;
    --text-light: #FFFFFF;
    --text-gray: #B0B0B0;
    --dark-bg: #1a1a1a;
    --border-light: rgba(201, 169, 97, 0.25);
    --border-blue: rgba(74, 144, 226, 0.25);
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.12);
    --primary-dark: #1A1A1A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.65;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6,
.section-title,
.hero-title,
.car-title,
.news-title,
.modal-title,
.card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.02em;
}

h1, .h1 {
    font-weight: 700;
    letter-spacing: 0.03em;
}

h2, .h2 {
    font-weight: 600;
    letter-spacing: 0.02em;
}

h3, .h3 {
    font-weight: 600;
    letter-spacing: 0.015em;
}

.top-bar {
    background: var(--dark-bg);
    color: rgba(255,255,255,0.65);
    font-size: 12px;
    padding: 8px 0;
    position: relative;
    z-index: 1030;
    font-weight: 400;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.top-bar a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.05em;
}

.top-bar a:hover {
    color: var(--accent-gold);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-link i {
    font-size: 10px;
}

.top-bar-address {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-address i {
    color: var(--accent);
}

.main-header {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1020;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.main-header.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.main-header .container {
    display: flex;
    align-items: nowrap;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 20px;
}

.header-left {
    display: flex;
    align-items: nowrap;
    gap: 40px;
    flex-wrap: nowrap;
}

.header-logo {
    flex-shrink: 0;
}

.header-logo img {
    height: 45px;
    width: auto;
    transition: height 0.3s ease;
}

.main-header.scrolled .header-logo img {
    height: 38px;
}

.nav-bar {
    background: transparent;
    position: static;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.nav-item {
    position: relative;
}

.nav-link-main {
    display: block;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.2s ease;
    white-space: nowrap;
    border-radius: 4px;
    font-family: var(--font-body);
}

.nav-link-main:hover,
.nav-link-main.active {
    color: var(--accent);
    background: rgba(76, 175, 195, 0.08);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: -70px;
    background: #ffffff;
    min-width: 250px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 8px 0;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 10px 20px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.03em;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-family: var(--font-body);
}

.nav-dropdown-item:hover {
    background: #f9f9f9;
    color: var(--accent);
    border-left-color: var(--accent);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.header-phone-block {
    text-align: right;
    line-height: 1.3;
}

.header-phone {
    font-size: 18px;
    font-weight: 600;
    color: #3e3e3e;
    text-decoration: none;
    transition: color 0.2s;
    display: block;
    letter-spacing: -0.3px;
    font-family: var(--font-body);
}

.header-phone:hover {
    color: var(--accent);
}

.header-phone-subtitle {
    font-size: 10px;
    color: #565656;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.callback-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.callback-btn:hover {
    background: var(--accent-hover);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(76, 175, 195, 0.3);
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 10px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    text-transform: uppercase;
}

.login-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(76, 175, 195, 0.05);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

.flash-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    z-index: 9999;
    animation: slideIn 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.flash-message.success {
    background: #28a745;
}

.flash-message.error {
    background: #dc3545;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

section {
    position: relative;
    z-index: 1;
    padding: 0;
}

.hero-section {
    min-height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: #000;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: white;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.hero-title .title-line {
    display: block;
}

.hero-title .gold-text {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-divider {
    width: 600px;
    height: 1.5px;
    background: #c4b998;
    margin: 20px 0;
}

.hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-floating-card {
    position: relative;
    animation: floatAnimation 3s ease-in-out infinite;
}

.floating-car-image img {
    max-width: 100%;
    border-radius: 20px;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.3));
}

.floating-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    border: 1px solid #ffffff;
    padding: 8px 16px;
    border-radius: 100px 0px 100px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.badge-new {
    color: white;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@keyframes floatAnimation {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5px 15px;
}

.section-header {
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
}

.gold-text {
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--accent-blue);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.section-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.title-divider {
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
    margin: 15px auto 30px;
    border-radius: 2px;
}

.brands-section-new {
    background: var(--bg-primary);
    padding: 60px 0;
}

.brands-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.brand-card-new {
    background: white;
    border-radius: 20px;
    padding: 30px 20px 25px;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.brand-card-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--accent-gold);
}

.brand-image-wrapper-new {
    width: 120px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.brand-logo-img-new {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-info-new {
    text-align: center;
}

.brand-name-new {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.brand-count-new {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 400;
}

@media (max-width: 768px) {
    .brands-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .brand-card-new {
        padding: 20px 15px;
    }
    
    .brand-image-wrapper-new {
        width: 80px;
        height: 60px;
    }
    
    .brand-logo-img-new {
        max-height: 50px;
    }
    
    .brand-name-new {
        font-size: 16px;
    }
}

.vk-channel-section-new .container {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.vk-channel-content {
    flex: 1;
    min-width: 280px;
}

.vk-channel-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.btn-vk {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #2787F5, #1A6BC4);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: var(--transition-fast);
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 13px;
}

.btn-vk:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(39, 135, 245, 0.4);
    color: white;
}

.vk-channel-preview {
    flex: 1;
    min-width: 280px;
}

.vk-channel-preview img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
}

.purchase-methods-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.purchase-method-card-new {
    position: relative;
    border-radius: 24px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-method-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
}

.purchase-method-card-new .card-content {
    position: relative;
    z-index: 2;
    padding: 50px 35px;
    color: white;
    width: 100%;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.purchase-method-card-new h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 0;
    color: white;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.purchase-method-card-new p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
    margin-bottom: 0;
    font-weight: 400;
    max-width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-button-wrapper {
    margin-top: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.method-link-new {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    background: rgba(0,0,0,0.5);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(4px);
}

.method-link-new:hover {
    gap: 15px;
    color: #d4b55c;
    background: rgba(0,0,0,0.7);
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .purchase-methods-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    .purchase-method-card-new .card-content {
        min-height: 420px;
        padding: 40px 30px;
    }
    .purchase-method-card-new h3 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .purchase-methods-grid-new {
        grid-template-columns: 1fr;
    }
    
    .purchase-method-card-new .card-content {
        min-height: 380px;
        padding: 40px 25px;
    }
    
    .purchase-method-card-new h3 {
        font-size: 28px;
    }
    
    .purchase-method-card-new p {
        font-size: 15px;
    }
    
    .method-link-new {
        padding: 10px 24px;
        font-size: 14px;
    }
}

.why-us-section-new .container {
    padding-top: 40px;
    padding-bottom: 40px;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px; 
    margin-top: 30px;
}

.why-us-item {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-fast);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 160px; 
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-gold);
}

.why-us-item i {
    font-size: 36px;
    color: var(--accent-blue);
    margin-bottom: 15px;
    display: inline-block;
}

.why-us-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
    display: block;
    letter-spacing: 0.01em;
    max-width: 100%;
}

@media (max-width: 992px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .why-us-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    
    .why-us-item {
        padding: 20px 15px;
        min-height: auto;
    }
    
    .why-us-item span {
        font-size: 13px;
    }
}

.how-we-work-section-new {
    background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.how-we-work-section-new .section-title {
    color: white;
}

.steps-grid-new {
    display: grid;
    grid-template-columns: repeat(4, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step-item-new {
    text-align: center;
    padding: 55px 35px 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    border: 1px solid rgba(201, 169, 97, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    min-width: 350px;
    max-width: 100%;
}

.step-item-new:hover {
    transform: translateY(-8px);
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.08);
}

.step-image-wrapper {
    width: 300px !important;
    height: 300px !important;
    margin: 0 auto 30px !important;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden;
    transition: all 0.3s ease;
}

.step-item-new:hover .step-image-wrapper {
    transform: scale(1.05);
    background: rgba(196, 167, 71, 0.2);
}

.step-image {
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
    max-height: 220px !important;
    min-width: 220px !important;
    min-height: 220px !important;
    object-fit: contain;
    display: block;
}

.step-item-new h4 {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 25px 0 15px;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-item-new p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
    max-width: 100%;
}

.container {
    max-width: 1600px !important;
    width: 100%;
    padding: 0 30px;
}

@media (max-width: 1500px) {
    .steps-grid-new {
        grid-template-columns: repeat(4, minmax(320px, 1fr));
        gap: 35px;
    }
    
    .step-image-wrapper {
        width: 270px !important;
        height: 270px !important;
    }
    
    .step-image {
        width: 200px !important;
        height: 200px !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
}

@media (max-width: 1400px) {
    .steps-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .step-item-new {
        min-width: auto;
    }
    
    .step-image-wrapper {
        width: 280px !important;
        height: 280px !important;
    }
    
    .step-image {
        width: 200px !important;
        height: 200px !important;
    }
}

@media (max-width: 768px) {
    .steps-grid-new {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .step-item-new {
        padding: 45px 30px;
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .step-image-wrapper {
        width: 250px !important;
        height: 250px !important;
    }
    
    .step-image {
        width: 170px !important;
        height: 170px !important;
        min-width: 170px !important;
        min-height: 170px !important;
    }
    
    .step-item-new h4 {
        font-size: 22px;
        min-height: 60px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .step-item-new {
        padding: 35px 20px;
    }
    
    .step-image-wrapper {
        width: 200px !important;
        height: 200px !important;
    }
    
    .step-image {
        width: 140px !important;
        height: 140px !important;
        min-width: 140px !important;
        min-height: 140px !important;
    }
    
    .step-item-new h4 {
        font-size: 20px;
        min-height: 55px;
    }
    
    .step-item-new p {
        font-size: 14px;
    }
}

.modal-callback .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
}

.modal-callback .modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    background: white;
    position: relative;
    max-height: 95vh;
    overflow-y: auto;
}

.modal-callback .modal-content::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.modal-callback .modal-header {
    border-bottom: none;
    padding: 0;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    background: transparent;
}

.modal-callback .modal-body {
    padding: 0;
    background: white;
}

.modal-callback .btn-close {
    background-color: white;
    border-radius: 50%;
    opacity: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    padding: 8px;
    margin: 0;
    width: 32px;
    height: 32px;
    background-size: 12px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 20;
}

.modal-callback .btn-close:hover {
    background-color: #c4a747;
    transform: rotate(90deg);
    opacity: 1;
}

.callback-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px 35px;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.callback-form-title {
    font-size: 32px;
    font-weight: 600;
    color: #1A1A1A;
    margin-bottom: 8px;
    text-align: center;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.callback-form-subtitle {
    font-size: 13px;
    color: #8C8C8C;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 400;
    letter-spacing: 0.02em;
}

.callback-form .form-group {
    margin-bottom: 20px;
}

.callback-form .form-label {
    display: block;
    font-weight: 500;
    font-size: 12px;
    margin-bottom: 8px;
    color: #4A4A4A;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.callback-form .form-control {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-body);
    border: 1.5px solid #e8e8e8;
    border-radius: 14px;
    background: #ffffff;
    transition: all 0.3s ease;
    color: #1A1A1A;
    font-weight: 400;
}

.callback-form .form-control:focus {
    outline: none;
    border-color: #c4a747;
    box-shadow: 0 0 0 3px rgba(196, 167, 71, 0.15);
}

.callback-form .form-control::placeholder {
    color: #bbb;
    font-weight: 400;
}

.callback-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #c4a747 0%, #d4b55c 100%);
    border: none;
    padding: 15px;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A1A;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.callback-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(196, 167, 71, 0.35);
}

.callback-submit-btn:active {
    transform: translateY(0);
}

.callback-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.callback-privacy {
    text-align: center;
    font-size: 11px;
    color: #8C8C8C;
    margin-top: 20px;
    letter-spacing: 0.02em;
}

.callback-privacy a {
    color: #c4a747;
    text-decoration: none;
}

.callback-privacy a:hover {
    text-decoration: underline;
}

.callback-success-message {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    padding: 20px 25px;
    border-radius: 16px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-align: center;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
    animation: fadeInUp 0.5s ease;
    display: block !important;
    font-family: var(--font-body);
    letter-spacing: 0.01em;
}

.callback-success-message::before {
    content: '✓';
    display: inline-block;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    line-height: 30px;
    font-size: 18px;
    font-weight: bold;
    margin-right: 10px;
}

.callback-success-message .close-message {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.callback-success-message .close-message:hover {
    opacity: 1;
}

.callback-error-message {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    padding: 15px 20px;
    border-radius: 12px;
    margin-top: 15px;
    font-size: 13px;
    color: white;
    text-align: center;
    animation: fadeInUp 0.5s ease;
    display: block !important;
}

.callback-trigger {
    background: #c4a747;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 12px;
    color: #1A1A1A;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.callback-trigger i,
.callback-trigger svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.callback-trigger:hover {
    background: #d4b55c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 167, 71, 0.3);
}

.callback-form .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.callback-form .form-check-input {
    width: 18px;
    height: 18px;
    margin: 0;
    cursor: pointer;
    border: 2px solid #ddd;
    border-radius: 4px;
    flex-shrink: 0;
}

.callback-form .form-check-input:checked {
    background-color: #c4a747;
    border-color: #c4a747;
}

.callback-form .form-check-input:focus {
    box-shadow: 0 0 0 3px rgba(196, 167, 71, 0.15);
    border-color: #c4a747;
}

.callback-form .form-check-label {
    font-size: 12px;
    color: #8C8C8C;
    letter-spacing: 0.01em;
}

.callback-form .form-check-label a {
    color: #c4a747;
    text-decoration: none;
}

.callback-form .form-check-label a:hover {
    text-decoration: underline;
}

.callback-notification {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 13px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
    font-family: var(--font-body);
    font-weight: 500;
}

.callback-notification.error {
    background: #dc3545;
    color: white;
}

.callback-notification.success {
    background: #28a745;
    color: white;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@media (max-width: 576px) {
    .modal-callback .modal-dialog {
        margin: 0.5rem;
    }
    
    .callback-form-wrapper {
        padding: 35px 20px 25px 20px;
    }
    
    .callback-form-title {
        font-size: 26px;
    }
    
    .callback-form .form-control {
        padding: 12px 15px;
    }
    
    .callback-submit-btn {
        padding: 12px;
    }
    
    .modal-callback .btn-close {
        top: 12px;
        right: 12px;
        width: 28px;
        height: 28px;
    }
    
    .callback-trigger {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .callback-trigger i {
        font-size: 11px;
    }
}

.news-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 2px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.news-card {
    display: flex;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    height: 320px;
    margin-bottom: 30px;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.news-card-image {
    flex: 0 0 380px;
    position: relative;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 2;
}

.news-category-badge.category-news { background: #c4a747; color: #1a1a2e; }
.news-category-badge.category-events { background: #e67e22; color: white; }
.news-category-badge.category-articles { background: #3498db; color: white; }
.news-category-badge.category-reviews { background: #9b59b6; color: white; }

.news-read-more-btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 20px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    z-index: 2;
    text-decoration: none;
}

.news-card:hover .news-read-more-btn {
    opacity: 1;
    transform: translateX(0);
}

.news-read-more-btn:hover {
    background: white;
    color: var(--accent-gold);
    transform: scale(1.1);
}

.news-card-content {
    flex: 1;
    padding: 30px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 12px;
    color: #888;
    letter-spacing: 0.02em;
}

.news-meta i {
    margin-right: 6px;
    color: var(--accent-gold);
}

.news-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 15px;
    line-height: 1.3;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}

.news-excerpt {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
}

.news-link {
    color: var(--accent-gold);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.news-link:hover {
    gap: 12px;
    color: #d4b55c;
}

.news-link:hover i {
    transform: translateX(5px);
}

.sidebar-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.sidebar-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-gold);
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 0.02em;
}

.popular-news-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: var(--transition-fast);
}

.popular-news-item:hover {
    transform: translateX(5px);
}

.popular-news-img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.popular-news-content h6 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
    font-family: var(--font-heading);
}

.popular-news-content a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.popular-news-content a:hover {
    color: var(--accent-gold);
}

.popular-news-date {
    font-size: 11px;
    color: #999;
    letter-spacing: 0.02em;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 0;
    transition: var(--transition-fast);
    font-size: 13px;
    font-weight: 500;
}

.category-list a:hover {
    color: var(--accent-gold);
    padding-left: 10px;
}

.category-count {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 500;
}

.pagination {
    margin-top: 40px;
}

.pagination .page-link {
    color: var(--primary-dark);
    border: none;
    margin: 0 5px;
    border-radius: 8px;
    padding: 10px 18px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
    font-family: var(--font-body);
    font-size: 13px;
}

.pagination .page-link:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.pagination .page-item.active .page-link {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
    cursor: not-allowed;
}

/* Пустое состояние */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 20px;
}

.empty-state i {
    font-size: 80px;
    color: var(--accent-gold);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.news-article-content {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    font-weight: 400;
}

.news-article-content h2 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 600;
}

.news-article-content h3 {
    font-size: 1.4rem;
    margin: 1.2rem 0 0.8rem;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    font-weight: 500;
}

.news-article-content p {
    margin-bottom: 1.2rem;
}

.news-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.5rem 0;
}

.news-article-content ul,
.news-article-content ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.news-article-content li {
    margin-bottom: 0.5rem;
}

.news-article-content blockquote {
    border-left: 4px solid var(--accent-gold);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #666;
}

.news-article-content table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
}

.news-article-content th,
.news-article-content td {
    border: 1px solid #ddd;
    padding: 10px;
}

.news-article-content th {
    background: #f5f5f5;
}

.social-share .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #f0f0f0;
    border-radius: 50%;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share .social-link:hover {
    background: var(--accent-gold);
    color: white;
    transform: translateY(-3px);
}

.bg-gold {
    background: var(--accent-gold);
    color: var(--primary-dark);
}

.filters-sidebar {
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-group h5 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
}

.price-range {
    display: flex;
    gap: 10px;
}

.price-range input {
    width: 50%;
    text-align: center;
}

.badge-popular {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 0.05em;
}

.team-card {
    transition: var(--transition-fast);
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card img {
    height: 250px;
    object-fit: cover;
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-person {
    transition: var(--transition-fast);
}

.contact-person:hover {
    transform: translateY(-10px);
}

.social-links .social-link {
    margin-right: 10px;
}

.social-links .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-links .social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.detailing-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}

.detailing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.detailing-icon {
    width: 80px;
    height: 80px;
    background: rgba(196, 167, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.detailing-icon i {
    font-size: 36px;
    color: var(--accent-gold);
}

.detailing-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-family: var(--font-heading);
}

.detailing-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
}

.price-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.03em;
}

.step-circle {
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    color: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 15px;
    font-family: var(--font-heading);
}

.advantage-item {
    padding: 25px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.profile-sidebar {
    border-radius: 15px;
    overflow: hidden;
}

.profile-avatar i {
    font-size: 80px;
}

.profile-menu {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.profile-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.profile-menu-item i {
    width: 24px;
    color: var(--accent-gold);
}

.profile-menu-item:hover,
.profile-menu-item.active {
    background: rgba(196, 167, 71, 0.1);
    color: var(--accent-gold);
}

.favorite-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.favorite-card:hover {
    transform: translateY(-5px);
}

.favorite-card img {
    height: 180px;
    width: 100%;
    object-fit: cover;
}

.favorite-card h5 {
    padding: 15px 15px 5px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-heading);
}

.favorite-card .price {
    padding: 0 15px;
    color: var(--accent-gold);
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 18px;
}

.favorite-card .d-flex {
    padding: 0 15px 15px;
}

.back-button-wrapper {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 999;
}

.back-button {
    background: var(--primary-dark);
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.back-button:hover {
    background: var(--accent-gold);
    color: var(--primary-dark);
    transform: translateX(-5px);
}

@media (max-width: 1200px) {
    .top-bar {
        display: none;
    }
    
    .header-left {
        gap: 20px;
    }
    
    .nav-link-main {
        padding: 8px 12px;
        font-size: 11px;
        letter-spacing: 0.08em;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-phone {
        font-size: 13px;
    }
    
    .header-phone-subtitle {
        font-size: 9px;
    }
    
    .callback-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
    
    .login-btn {
        padding: 8px 14px;
        font-size: 10px;
    }
}

@media (max-width: 991px) {
    .main-header .container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .header-left {
        justify-content: space-between;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-bar {
        position: static;
        width: 100%;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        padding: 10px 0;
        z-index: 1020;
    }
    
    .nav-list.show {
        display: flex;
    }
    
    .nav-link-main {
        padding: 12px 20px;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .nav-item:hover .nav-dropdown {
        display: block;
    }
    
    .header-actions {
        justify-content: flex-end;
        margin-top: 10px;
    }
    
    .hero-content {
        padding: 40px 0;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .vk-channel-section-new .container {
        flex-direction: column;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
    
    .news-card {
        flex-direction: column;
        height: auto;
    }
    
    .news-card-image {
        flex: 0 0 250px;
    }
    
    .news-card-content {
        padding: 25px;
    }
    
    .news-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 30px 16px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .brands-grid-new,
    .catalog-grid,
    .purchase-methods-grid,
    .why-us-grid,
    .steps-grid {
        gap: 20px;
    }
    
    .brands-grid-new {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .brand-image-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .brand-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .brand-card-new .brand-name {
        font-size: 16px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .hero-buttons .btn,
    .hero-buttons .btn-outline-gold {
        text-align: center;
        justify-content: center;
    }
    
    .callback-btn span {
        display: none;
    }
    
    .callback-btn {
        padding: 8px 12px;
    }
    
    .login-btn span {
        display: none;
    }
    
    .login-btn {
        padding: 8px 12px;
    }
    
    .news-card-image {
        flex: 0 0 200px;
    }
    
    .news-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 10px;
    }
    
    .back-button-wrapper {
        bottom: 20px;
        left: 20px;
    }
    
    .back-button {
        padding: 8px 15px;
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .header-logo img {
        height: 32px;
    }
    
    .header-phone-block {
        display: none;
    }
    
    .brands-grid-new {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .brand-card-new {
        padding: 20px 15px;
    }
    
    .brand-image-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }
    
    .brand-logo-img {
        width: 42px;
        height: 42px;
    }
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #c4a747;
    color: #c4a747;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.btn-outline-gold:hover {
    background: #c4a747;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 167, 71, 0.3);
}

.btn-outline-gold:active {
    transform: translateY(0);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #c4a747;
    border: none;
    color: #1a1a2e;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

.btn-gold:hover {
    background: #d4b55c;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 167, 71, 0.3);
}

.btn-gold:active {
    transform: translateY(0);
}

.btn-gold.btn-lg,
.btn-outline-gold.btn-lg {
    padding: 14px 40px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .btn-gold,
    .btn-outline-gold {
        padding: 10px 20px;
        font-size: 11px;
    }
    
    .btn-gold.btn-lg,
    .btn-outline-gold.btn-lg {
        padding: 12px 30px;
        font-size: 13px;
    }
}

.why-us-section-new .why-us-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important;
}

.why-us-section-new .why-us-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 25px 15px !important;
    background: white !important;
    border-radius: 16px !important;
}

@media (max-width: 992px) {
    .why-us-section-new .why-us-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 576px) {
    .why-us-section-new .why-us-grid {
        grid-template-columns: 1fr !important;
    }
}

.favorite-toast-top {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: linear-gradient(135deg, #1a1a2e 0%, #2a2a3e 100%);
    color: #c4a747;
    padding: 16px 32px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    letter-spacing: 0.5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
    border: 1px solid rgba(196, 167, 71, 0.4);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    white-space: nowrap;
}

.favorite-toast-top i {
    font-size: 20px;
    color: #c4a747;
}

.favorite-toast-top.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.favorite-toast-top.hide {
    opacity: 0;
    transform: translateX(-50%) translateY(-100px);
}

@media (max-width: 768px) {
    .favorite-toast-top {
        top: 20px;
        padding: 12px 24px;
        font-size: 14px;
        white-space: nowrap;
    }
    .favorite-toast-top i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .favorite-toast-top {
        padding: 10px 20px;
        font-size: 13px;
        white-space: nowrap;
    }
}

.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link-main i {
    font-size: 12px;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .nav-link-main i {
    transform: rotate(180deg);
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 10px 0;
    border: 1px solid rgba(196, 167, 71, 0.2);
}

.nav-item-dropdown:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .main-header .container {
        flex-wrap: wrap;
    }
    
    .header-left {
        width: 100%;
        justify-content: space-between;
    }
    
    .mobile-toggle {
        display: block !important;
    }
    
    .nav-bar {
        width: 100%;
    }
    
    .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        background: white;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .nav-list.show {
        display: flex;
    }
    
    .nav-item-dropdown {
        position: static;
    }
    
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
    }
    
    .nav-item-dropdown:hover .nav-dropdown {
        display: block;
    }
    
    .header-actions {
        margin-top: 15px;
        justify-content: flex-end;
        width: 100%;
        flex-wrap: wrap;
    }
}

@media (max-width: 576px) {
    .login-btn span,
    .callback-trigger span {
        display: none;
    }
    
    .header-phone-block {
        display: none;
    }
}