/* Сброс стилей и базовые настройки */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --primary-dark: #0a0a0a;
    --secondary-color: #D4AF37;
    --accent-color: #F5A623;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #999999;
    --bg-light: #ffffff;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --radius: 12px;
    --radius-sm: 8px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie плашка */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Шапка */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 20px 0;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-lighter);
    margin: 0;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    flex-wrap: wrap;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    letter-spacing: 0.02em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-phone:hover {
    color: var(--text-light);
}

.nav-phone svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    stroke: var(--text-dark);
}

.nav-btn {
    padding: 12px 30px;
    border: none;
    background: none;
    cursor: pointer;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Главный баннер */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.7);
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-content {
    max-width: 900px;
    color: white;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 64px;
    font-weight: 300;
    margin-bottom: 40px;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

.hero-title-accent {
    color: var(--accent-color);
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    max-width: 600px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

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

/* Кнопки в hero-секции имеют белый стиль для лучшей читаемости */
.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--text-dark);
    border-color: white;
    text-shadow: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Кнопки */
.btn-primary {
    background: var(--text-dark);
    color: white;
    border: 1px solid var(--text-dark);
    padding: 16px 40px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    padding: 15px 39px;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.02em;
}

.btn-secondary:hover {
    background: var(--text-dark);
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn-link {
    background: none;
    border: none;
    color: var(--text-dark);
    font-weight: 400;
    cursor: pointer;
    padding: 10px 0;
    text-decoration: underline;
    transition: var(--transition);
    font-size: 15px;
    letter-spacing: 0.02em;
}

.btn-link:hover {
    color: var(--accent-color);
}

.btn-full {
    width: 100%;
}

/* Секции */

.section-title {
    font-size: 48px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.section-title-accent {
    color: var(--accent-color);
    font-weight: 400;
}

/* Услуги */
.services {
    background: var(--bg-white);
    padding: 120px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.service-icon svg,
.service-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.service-icon svg {
    fill: currentColor;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

/* Преимущества */
.advantages {
    background: var(--bg-white);
    padding: 120px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.advantage-item {
    text-align: center;
    padding: 40px 20px;
}

.advantage-icon {
    font-size: 56px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
}

.advantage-icon svg,
.advantage-icon img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.advantage-icon svg {
    fill: currentColor;
}

.advantage-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.advantage-item p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Галерея */
.gallery {
    background: var(--bg-white);
    padding: 120px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Статистика */
.stats-section {
    background: var(--bg-dark);
    color: white;
    padding: 120px 0;
    position: relative;
}

.stats-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: center;
}

.stats-main {
    max-width: 700px;
}

.stats-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
}

.stats-number {
    color: white;
    font-weight: 400;
}

.stats-accent {
    color: var(--accent-color);
    font-weight: 400;
}

.stats-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-card {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    padding: 40px;
    background: rgba(255, 255, 255, 0.03);
}

.stat-value {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Призыв к действию */
.cta {
    background: var(--bg-dark);
    color: white;
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 26, 0.75);
    z-index: 1;
}

.cta-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 56px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -0.02em;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.cta-title-line {
    display: block;
    color: white;
    font-weight: 600;
}

.cta-title-accent {
    color: var(--accent-color);
    font-weight: 600;
}

.cta .btn-primary {
    background: white;
    color: var(--text-dark);
    border: 1px solid white;
    font-weight: 600;
    padding: 18px 50px;
    font-size: 18px;
}

.cta .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Бренды / Продажа кондиционеров */
.brands {
    background: var(--bg-white);
    padding: 120px 0;
}

.brands-description {
    text-align: center;
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px 0;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    filter: grayscale(100%);
    opacity: 0.7;
}

.brand-item:hover {
    transform: translateY(-5px);
    border-color: var(--text-dark);
    box-shadow: var(--shadow-lg);
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brands-info {
    text-align: center;
    margin-top: 40px;
}

.brands-info p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.8;
}

.brands-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.brand-benefit {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    text-align: left;
    transition: var(--transition);
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.brand-benefit:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-dark);
}

.brand-benefit strong {
    display: block;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 600;
}

/* Отзывы */
.reviews {
    background: var(--bg-white);
    padding: 120px 0;
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 30px;
}

.reviews-rating {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.rating-stars {
    font-size: 32px;
    color: var(--accent-color);
    letter-spacing: 4px;
}

.rating-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
}

.rating-count {
    font-size: 18px;
    color: var(--text-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--text-dark);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 18px;
}

.review-date {
    color: var(--text-light);
    font-size: 14px;
}

.review-rating {
    color: var(--accent-color);
    font-size: 18px;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* Контакты */
.contacts {
    background: var(--bg-white);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.contacts-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 0;
}

.contacts-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.85);
    z-index: 1;
}

.contacts-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.3;
}

.contacts .container {
    position: relative;
    z-index: 2;
}

.contacts-content {
    text-align: center;
}

.contact-info {
    margin-bottom: 50px;
}

.contact-info p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
    font-weight: 500;
}

.contact-phone {
    margin-top: 15px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 18px;
}

.phone-link:hover {
    border-color: var(--text-dark);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.phone-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.contact-email {
    margin-top: 15px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 20px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.email-link:hover {
    border-color: var(--text-dark);
    color: var(--accent-color);
    transform: translateY(-2px);
}

.email-link svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.avito-link {
    margin-top: 15px;
}

.avito-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    padding: 10px 20px;
    border: 2px solid var(--accent-color);
    border-radius: var(--radius-sm);
}

.avito-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
}

.avito-btn svg {
    width: 20px;
    height: 20px;
}

/* Подвал */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    text-align: center;
    font-size: 14px;
}

/* Модальные окна */
.modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-overlay.show {
    display: block;
}

.modal-content {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-dark);
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

/* Формы */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-light);
}

/* Мобильное меню */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        gap: 20px;
    }

    .nav-menu.active {
        display: flex;
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .nav-btn {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-description {
        font-size: 16px;
    }

    .stats-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .stats-title,
    .cta-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid,
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }

    .reviews-rating {
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 30px;
    }

    .brands-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .brand-benefit {
        padding: 20px;
    }

    .reviews-header {
        flex-direction: column;
        text-align: center;
    }

    .reviews-rating {
        justify-content: center;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .brand-item {
        height: 100px;
        padding: 15px;
    }

    .brand-item img {
        max-height: 60px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .btn-accept {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .stats-title,
    .cta-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .logo h1 {
        font-size: 24px;
    }
}

