/* === Reset & Base === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ee1d24;
    --primary-hover: #d41a20;
    --dark: #1a1a2e;
    --dark-light: #232340;
    --white: #ffffff;
    --gray-bg: #f5f5f5;
    --gray-100: #e5e7eb;
    --gray-200: #d1d5db;
    --gray-300: #9ca3af;
    --gray-400: #6b7280;
    --gray-500: #4b5563;
    --text-muted: #64748b;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

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

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 8px 25px rgba(238, 29, 36, 0.35);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark);
    border-color: var(--white);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: 12px;
}

.btn-block {
    width: 100%;
}

/* === Header === */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 52px;
    width: auto;
}

.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark);
    transition: color var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition);
}

.nav-link:hover {
    color: var(--primary);
}

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

.header-contacts {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex-shrink: 0;
}

.header-phone {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark);
}

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

.header-schedule {
    font-size: 11px;
    color: var(--text-muted);
}

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

.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* === Mobile Menu === */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 200;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu-close {
    font-size: 28px;
    color: var(--dark);
    line-height: 1;
}

.mobile-nav {
    flex: 1;
    padding: 12px 0;
    overflow-y: auto;
}

.mobile-nav-link {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(238, 29, 36, 0.04);
}

.mobile-menu-contacts {
    padding: 20px;
    border-top: 1px solid var(--gray-100);
}

.mobile-phone {
    display: block;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 150;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* === Hero === */
.hero {
    position: relative;
    height: 90vh;
    min-height: 500px;
    max-height: 800px;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(26,26,46,0.4) 0%, rgba(26,26,46,0.6) 50%, rgba(26,26,46,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    padding-bottom: 60px;
}

.hero-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
    max-width: 700px;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.05em;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all var(--transition);
}

.hero-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* === Sections === */
.section {
    padding: 80px 0;
}

.section-white { background: var(--white); }
.section-light { background: var(--gray-bg); }
.section-dark { background: var(--dark); color: var(--white); }

.section-accent {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    color: var(--white);
}

.section-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    margin-bottom: 48px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-muted);
    margin-top: -32px;
    margin-bottom: 48px;
    line-height: 1.6;
}

.section-dark .section-subtitle,
.section-accent .section-subtitle {
    color: var(--gray-300);
}

.section-subtitle a {
    color: var(--primary);
    font-weight: 600;
}

.section-subtitle a:hover {
    text-decoration: underline;
}

/* === About === */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content p {
    font-size: 17px;
    color: var(--gray-500);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* === Advantages Grid === */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.advantages-grid .card:last-child:nth-child(3n+1) {
    grid-column: 2;
}

/* === Cards === */
.card {
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-white {
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
}

.card-glass {
    background: rgba(255,255,255,0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    overflow: hidden;
    padding: 0;
}

.card-glass:hover {
    background: rgba(255,255,255,0.12);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: transparent;
    border: 1.5px solid rgba(238, 29, 36, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}

.card-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 17px;
    background: radial-gradient(circle, rgba(238, 29, 36, 0.12) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.card:hover .card-icon {
    border-color: var(--primary);
    transform: rotate(-8deg) scale(1.1);
    box-shadow: 0 0 0 4px rgba(238, 29, 36, 0.1), 0 4px 12px rgba(238, 29, 36, 0.15);
}

.card:hover .card-icon::before {
    opacity: 1;
}

.card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card:hover .card-icon img {
    transform: scale(1.15);
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.card-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

.card-glass .card-text {
    color: var(--gray-300);
}

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

.card-body {
    padding: 24px;
}

.card-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    margin-bottom: 16px;
}

.card-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.badge-icon {
    width: 16px;
    height: 16px;
}

/* === Services Grid === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* === Manufacturers === */
.manufacturers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.manufacturer-card {
    text-align: center;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.manufacturer-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

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

.manufacturer-name {
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
}

/* === Warranty Section === */
.warranty-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.warranty-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.warranty-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
}

.warranty-check {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.warranty-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.form-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
}

.form-input {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: inherit;
    border: 1px solid var(--gray-200);
    border-radius: 10px;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: 12px;
    background: var(--white);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(238, 29, 36, 0.1);
}

.form-textarea {
    min-height: 100px;
    resize: vertical;
}

/* === Checkbox === */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

.checkbox-label {
    font-size: 12px;
    line-height: 1.5;
    color: var(--gray-500);
    cursor: pointer;
}

.consent-link {
    color: var(--primary);
    text-decoration: underline;
}

.consent-link:hover {
    text-decoration: none;
}

.checkbox-error {
    color: var(--primary);
    font-size: 13px;
    margin-bottom: 12px;
    padding: 8px 12px;
    background: rgba(238, 29, 36, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(238, 29, 36, 0.2);
}

/* === Services List === */
.services-list {
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
    transition: all var(--transition);
}

.service-item:hover {
    padding-left: 8px;
}

.service-name {
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}

.service-dots {
    flex: 1;
    border-bottom: 1px dotted var(--gray-300);
    margin-bottom: 4px;
    min-width: 20px;
}

.service-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* === FAQ === */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid var(--gray-100);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    color: var(--dark);
    gap: 16px;
}

.faq-arrow {
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--gray-400);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 8px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* === CTA === */
.section-cta {
    background: var(--gray-bg);
}

.cta-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
}

/* === Contacts === */
.section-contacts {
    background: var(--white);
}

.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: start;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}

.contact-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.contact-item a {
    color: var(--dark);
    font-weight: 600;
}

.contact-item a:hover {
    color: var(--primary);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow);
    background: var(--gray-bg);
}

.map-placeholder iframe {
    width: 100%;
    height: 100%;
}

/* === Footer === */
.footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--gray-300);
    line-height: 1.5;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-300);
    transition: color var(--transition);
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-phone,
.footer-mail {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
}

.footer-phone:hover,
.footer-mail:hover {
    color: var(--primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--gray-400);
    text-align: center;
}

/* === Scroll to Top === */
.scroll-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(238, 29, 36, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition);
    z-index: 50;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* === Modals === */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 440px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.95);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-xl);
}

.modal-overlay.active .modal {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 28px;
    color: var(--gray-400);
    line-height: 1;
    transition: color var(--transition);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--dark);
    background: var(--gray-bg);
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-success .success-icon {
    margin-bottom: 20px;
}

.modal-success .success-icon svg {
    margin: 0 auto;
}

/* === Animations === */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* === Privacy Modal === */
.modal-privacy {
    max-width: 700px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-privacy .modal-content {
    padding-right: 10px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.modal-privacy .modal-content h1,
.modal-privacy .modal-content h2,
.modal-privacy .modal-content h3 {
    color: var(--dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-privacy .modal-content p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .nav { display: none; }
    .header-cta { display: none; }
    .burger { display: flex; }
    .hero { margin-top: 80px; }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid .card:last-child:nth-child(3n+1) {
        grid-column: auto;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .manufacturers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .warranty-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .section-title {
        margin-bottom: 32px;
    }

    .hero {
        height: 70vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: clamp(26px, 6vw, 40px);
    }

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

    .hero-actions .btn {
        width: 100%;
    }

    .header-contacts {
        display: none;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .manufacturers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .service-name {
        font-size: 14px;
        white-space: normal;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .hero {
        height: 60vh;
        min-height: 350px;
    }

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

    .manufacturer-img {
        height: 140px;
    }

    .modal {
        padding: 28px 24px;
    }

    .warranty-form {
        padding: 24px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-item.open .faq-answer {
        padding: 0 18px 16px;
    }
}
