:root {
    --color-bg: #F7F7F7;
    --color-primary-red: #CE353C;
    /* Match the vibrant red from the image */
    --color-text-dark: #333333;
    --color-text-muted: #666666;
    --color-gold: #A28A5B;
    /* The olive gold color of Emerica. */
    --color-white: #FFFFFF;

    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Oswald', sans-serif;

    --container-width: 1440px;
    --content-width: 1300px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*:focus,
*:focus-visible,
*:active {
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    box-shadow: none !important;
}

*::-moz-focus-inner {
    border: 0 !important;
}

button {
    border: 0 !important;
    outline: 0 !important;
}

button:focus,
button:active,
button:focus-visible,
button:focus-within {
    outline: 0 !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
}

button::-moz-focus-inner {
    border: 0 !important;
}

html {
    /* overflow-x: hidden removed - fix root cause instead of hiding */
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    -webkit-font-smoothing: antialiased;
    /* overflow-x: hidden removed - fix root cause instead of hiding */
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    /* overflow-x: hidden removed - fix root cause instead of hiding */
    width: 100%;
}

.container {
    width: 100%;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 20px;
    /* Reduced base padding for better mobile experience */
}

/* === HEADER === */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px) saturate(150%);
    -webkit-backdrop-filter: blur(8px) saturate(150%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.header.is-scrolled {
    background-color: rgba(255, 255, 255, 0.85);
    /* Higher transparency for "glass" look */
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    /* Slightly stronger shadow instead of border */
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    /* Added for absolute centering of nav */
}

.header .container {
    max-width: 1300px;
    padding: 0 20px;
    /* Match base container padding */
}

.header__left {
    display: flex;
    align-items: center;
}

.header__logo-link {
    display: flex;
    align-items: center;
    z-index: 101;
    flex-shrink: 0;
    /* Logo never shrinks */
}

.logo-img {
    height: 40px;
    filter: drop-shadow(0 1px 3px rgba(255, 255, 255, 0.9));
}

.header__nav {
    display: flex;
    gap: 35px;
    /* Modern wide spacing */
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header__nav a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    white-space: nowrap;
    transition: all 0.3s ease;
    padding: 6px 14px;
    border-radius: 99px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.header__nav a:hover {
    color: var(--color-primary-red);
    background: rgba(206, 53, 60, 0.05);
    /* Subtle pill background on hover */
}

.text-red {
    color: var(--color-primary-red) !important;
}

.header__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
    flex-shrink: 0;
    /* min-width removed – was max-content which causes overflow on mobile */
}

.header__schedule {
    font-size: 11px;
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.header__contacts-row {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-shrink: 0;
}

.header__phone {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-dark);
    text-decoration: none;
    letter-spacing: 0.8px;
    transition: color 0.2s ease;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
    white-space: nowrap;
}

.header__phone:hover {
    color: var(--color-primary-red);
}

.separator-line {
    width: 2px;
    height: 16px;
    background-color: var(--color-primary-red);
    box-shadow: 0 0 4px rgba(255, 255, 255, 0.9);
}

.header__socials {
    display: flex;
    gap: 6px;
    color: var(--color-primary-red);
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
}

.header__socials a {
    color: inherit;
    text-decoration: none;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    display: flex;
    filter: drop-shadow(0 1px 2px rgba(255, 255, 255, 0.8));
}

.header__socials a:hover {
    transform: scale(1.15) translateY(-2px);
}

.header__socials a[aria-label="Viber"]:hover {
    color: #7360F2 !important;
}

.header__socials a[aria-label="WhatsApp"]:hover {
    color: #25D366 !important;
}

.header__socials a[aria-label="Telegram"]:hover {
    color: #2AABEE !important;
}

/* --- Mobile Components Base (Hidden on Desktop) --- */
.burger-btn,
.burger-btn *,
.burger-btn::before,
.burger-btn::after,
.burger-btn:focus,
.burger-btn:focus-visible,
.burger-btn:active,
.burger-btn:hover,
.burger-btn:focus-within,
.burger-btn.active,
.burger-btn.active *,
.burger-btn.active:focus,
.burger-btn.active:active,
.burger-btn.active:hover,
.burger-btn.active::before,
.burger-btn.active::after {
    outline: none !important;
    outline-width: 0 !important;
    outline-offset: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-width: 0 !important;
    border-style: none !important;
    border-color: transparent !important;
    -webkit-tap-highlight-color: transparent !important;
}

.burger-btn {
    display: none;
    background: transparent !important;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    padding: 0 !important;
    margin: 0 !important;
    transition: 0.3s;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    position: relative;
    z-index: 1001;
}

.burger-btn span {
    display: block;
    width: 18px;
    height: 1px;
    background: #333;
    transition: 0.3s;
    box-shadow: 0 1px 2px rgba(255, 255, 255, 0.9);
    pointer-events: none;
}

.burger-btn span:focus,
.burger-btn span:active {
    outline: none !important;
    border: none !important;
}

.burger-btn.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
    opacity: 0;
}

.burger-btn.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu-overlay {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    height: 100vh;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    z-index: 5;
}

.mobile-menu-overlay.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-overlay a {
    text-decoration: none;
    color: var(--color-text-dark);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.8px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* === MAIN CONTENT === */
main {
    flex: 1;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    overflow: hidden;
    min-height: 600px;
    background-image:
        linear-gradient(to right, #ffffff 25%, rgba(255, 255, 255, 0.6) 45%, transparent 70%),
        url('assets/gallery/112.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero__background-text {
    position: absolute;
    top: 130px;
    /* Lowered to clear fixed header */
    left: 40px;
    font-size: 260px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    z-index: 0;
    line-height: 0.8;
    pointer-events: none;
    letter-spacing: -12px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    max-width: 100%;
}

.hero__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Changed from center to allow manual vertical positioning */
    position: relative;
    z-index: 1;
    min-height: 500px;
}

.hero__text-area {
    padding-left: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 450px;
}

.brand-name {
    color: var(--color-primary-red);
    font-size: 26px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0px;
    margin-left: 0;
    padding-left: 0;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7);
}

.product-title {
    font-size: 72px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 1;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    margin-left: 0;
    padding-left: 0;
    max-width: 100%;
    -webkit-text-stroke: 3px rgba(255, 255, 255, 0.9);
    paint-order: stroke fill;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.9), 0 0 40px rgba(255, 255, 255, 0.7);
}

.product-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 60px;
    text-align: left;
    letter-spacing: 0;
    line-height: 1.6;
    -webkit-text-stroke: 4px rgba(255, 255, 255, 0.9);
    paint-order: stroke fill;
    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(255, 255, 255, 0.5);
}

.product-actions {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.btn-shop,
.price-box {
    text-decoration: none;
    padding: 16px 30px;
    font-weight: 700;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 6px;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-primary);
    width: 300px;
    max-width: 100%;
    box-sizing: border-box;
}

.btn-shop {
    background-color: var(--color-primary-red);
    color: var(--color-white);
    border: 2px solid transparent;
    /* Match the 2px border of .price-box for height symmetry */
}

.btn-shop:hover {
    background-color: #b02a30;
    transform: translateY(-2px);
}

.price-box {
    border: 2px solid var(--color-primary-red);
    color: var(--color-primary-red);
    background-color: var(--color-white);
}

.price-box:hover {
    background-color: rgba(188, 30, 45, 0.05);
    transform: translateY(-2px);
}

/* Hero Image Area */
.hero__image-area {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.main-photo {
    width: 140%;
    max-width: 1200px;
    transform: translateX(5%);
    /* Adjust breakout to the right */
    filter: drop-shadow(0 40px 40px rgba(0, 0, 0, 0.15));
    z-index: 2;
    mix-blend-mode: multiply;
    mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 65%, transparent 100%);
}

@media (max-width: 992px) {
    .main-photo {
        width: 100%;
        max-width: 600px;
        transform: none;
    }
}

/* === NEED CHECK SECTION === */
.need-check-section {
    padding: 100px 0;
    padding-top: 60px;
    background: #FAFAFA;
    position: relative;
    z-index: 5;
}

.need-check-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.need-check-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
    background: #FAFAFA;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.need-check-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    background: var(--color-white);
    border-color: rgba(206, 53, 60, 0.08);
}

.need-check-card__icon {
    margin-bottom: 20px;
    color: var(--color-primary-red);
}

.need-check-card__title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: 0.8px;
}

.need-check-card__title iconify-icon {
    color: var(--color-primary-red);
}

.need-check-card__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

.need-check-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-red);
    transition: width 0.3s ease;
}

.need-check-card:hover::after {
    width: 100%;
}

.need-check-footer {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 20px;
    position: relative;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    overflow: hidden;
}

.need-check-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/gallery/prompt5-1.webp') center/cover no-repeat;
    opacity: 0.15;
    filter: contrast(1.5) saturate(1.4) brightness(1.1);
    pointer-events: none;
    z-index: 0;
}

.need-check-footer__card {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    max-width: 700px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.need-check-footer__text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-dark);
    margin-bottom: 0;
    font-weight: 500;
}

.btn-inspection {
    /* Inherits all styles from .btn-shop */
    position: relative;
    z-index: 2;
    /* Ensure button is fully opaque and above the semi-transparent card */
}

@media (max-width: 992px) {
    .need-check-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .need-check-section {
        padding: 40px 0;
        padding-top: 15px;
    }

    .need-check-footer {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .need-check-footer__card {
        padding: 32px 24px;
    }
}

/* === BENEFITS SECTION === */
/* === VIDEO SECTION === */
.video-section {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    z-index: 5;
    width: 100%;
}

.video-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.video-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-card__label {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    position: relative;
}

.video-wrapper--vertical {
    width: 300px;
    aspect-ratio: 9 / 16;
}

.video-wrapper--horizontal {
    width: 540px;
    aspect-ratio: 16 / 9;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-wrapper iframe,
.video-wrapper .video-iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 992px) {
    .video-grid {
        flex-direction: column;
        gap: 30px;
    }

    .video-wrapper--horizontal {
        width: 100%;
        max-width: 540px;
    }

    .video-wrapper--vertical {
        width: 260px;
    }
}

@media (max-width: 576px) {
    .video-section {
        padding: 40px 0;
    }

    .video-wrapper--vertical {
        width: 220px;
    }

    .video-wrapper--horizontal {
        max-width: 100%;
    }
}

.benefits {
    padding: 100px 0;
    background: var(--color-white);
    position: relative;
    z-index: 5;
    width: 100%;
    overflow: hidden;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 32px;
    background: #FAFAFA;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    background: var(--color-white);
    border-color: rgba(206, 53, 60, 0.08);
}

.benefit-item__icon {
    margin-bottom: 28px;
    color: var(--color-primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    flex-shrink: 0;
    transition: all 0.3s ease;
    border: 1px solid rgba(206, 53, 60, 0.1);
}

.benefit-item:hover .benefit-item__icon {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 16px rgba(206, 53, 60, 0.12);
}

.benefit-item__icon svg {
    display: block;
}


.benefit-item__title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: 0.8px;
}

.benefit-item__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
}

.benefit-item__text strong {
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Decoration for hover state */
.benefit-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-red);
    transition: width 0.3s ease;
}

.benefit-item:hover::after {
    width: 100%;
}

@media (max-width: 1200px) {
    .benefits__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits {
        padding: 40px 0;
    }

    .benefits__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit-item {
        padding: 30px;
    }
}



/* === SERVICES / PRICING SECTION === */
.services {
    padding: 100px 0;
    background: var(--color-bg);
    width: 100%;
    overflow: hidden;
}

.services__lead {
    text-align: center;
    font-size: 16px;
    color: var(--color-text-muted);
    margin-top: -40px;
    margin-bottom: 60px;
    font-weight: 500;
}

.services__lead strong {
    color: var(--color-text-dark);
}

/* --- Car Diagram --- */
.car-diagram-wrap {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 30px;
    align-items: center;
    background: var(--color-white);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 768px) {
    .car-diagram-wrap {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }
}

.car-diagram-area {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-diagram-img-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.blueprint-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    display: block;
}

/* Dots */
.car-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: rgba(206, 53, 60, 0.25);
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 0 rgba(206, 53, 60, 0);
    z-index: 10;
}

.car-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.car-dot:hover {
    background: rgba(206, 53, 60, 0.8);
    box-shadow: 0 0 15px rgba(206, 53, 60, 0.6);
    transform: translate(-50%, -50%) scale(1.3);
}

.car-dot:hover::after {
    background: #fff;
}


/* --- Info Panel --- */
.car-info-panel {
    background: var(--color-bg);
    border-radius: 16px;
    padding: 30px 24px;
    height: 280px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.car-info-panel__default {
    text-align: center;
}

.car-info-panel__icon {
    margin: 0 auto 16px;
    width: 60px;
    height: 60px;
    background: rgba(206, 53, 60, 0.07);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-info-panel__hint {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 500;
}

.car-info-panel__active {
    width: 100%;
    display: none;
}

.car-info-panel__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    display: block;
    margin-bottom: 6px;
}

.car-info-panel__part {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.car-info-panel__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.07);
    margin-bottom: 20px;
}

.car-info-panel__price {
    font-family: var(--font-secondary);
    font-size: 28px;
    font-weight: 700;
    color: var(--color-primary-red);
    margin-top: 6px;
    margin-bottom: 16px;
}

.car-info-panel__note {
    font-size: 11px;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 500;
}

/* --- Price Grid --- */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.price-card--single {
    grid-column: 1 / -1;
    max-width: 100%;
}

.price-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.price-card--featured {
    background: var(--color-primary-red);
    border-color: transparent;
}

.price-card--featured .price-card__title {
    color: var(--color-white);
}

.price-card--featured .price-card__num {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.price-card--featured .price-list li span {
    color: rgba(255, 255, 255, 0.8);
}

.price-card--featured .price-list li strong {
    color: var(--color-white);
}

.price-card--featured .price-list li {
    border-color: rgba(255, 255, 255, 0.2);
}

.price-card__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.price-card--featured .price-card__head {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.price-card__num {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-red);
    border: 1px solid rgba(206, 53, 60, 0.2);
    border-radius: 6px;
    padding: 2px 7px;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-card__title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    line-height: 1.2;
    letter-spacing: 0.5px;
    min-height: 44px;
    /* Обеспечивает одинаковую высоту для заголовков в 1 и 2 строки */
}

.price-card--single .price-card__title {
    font-size: 20px;
    text-align: center;
    min-height: auto;
}

.price-card--single .price-card__head {
    justify-content: center;
}

.price-list {
    list-style: none;
}

.price-list--two-columns {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 13px;
}

.price-list li iconify-icon {
    color: var(--color-primary-red);
    font-size: 18px;
    flex-shrink: 0;
}

.price-list li span {
    color: var(--color-text-dark);
    font-weight: 500;
    line-height: 1.5;
}

.price-list li strong {
    color: var(--color-text-dark);
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Pricing Title */
.pricing-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    text-align: center;
    margin: 40px auto 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

/* Pricing Note */
.pricing-note {
    text-align: center;
    padding: 20px 20px 0;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note__price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-primary-red);
    margin-bottom: 16px;
    font-family: var(--font-secondary);
}

.pricing-note__text {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
    font-weight: 500;
}

/* Material Pricing inside Price Cards */
.material-pricing {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.material-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
}

.material-name {
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 15px;
}

.material-name--highlight {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: 0.8px;
}

.material-price {
    color: var(--color-primary-red);
    font-weight: 700;
    font-family: var(--font-secondary);
    font-size: 16px;
    white-space: nowrap;
}

/* Material Difference Info */
.material-difference {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.material-difference__item {
    text-align: center;
    flex: 1;
}

.material-difference__logo {
    width: 150px; /* восстановлено */ 
    height: auto;
    margin-bottom: 12px;
}


.material-difference__icon {
    margin-bottom: 12px;
}

.material-difference__title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.material-difference__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    font-weight: 500;
}

.material-difference__divider {
    width: 1px;
    height: 80px;
    background: rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 1200px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .car-diagram-wrap {
        grid-template-columns: 1fr;
    }

    .car-info-panel {
        min-height: auto;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-list--two-columns {
        grid-template-columns: 1fr;
    }

    .car-diagram-wrap {
        display: none;
    }

    .material-difference {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .material-difference__divider {
        width: 80px;
        height: 1px;
    }
}

/* Gallery Carousel */

.hero__gallery {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: auto;
}

.nav-arrow {
    background: none;
    border: none;
    color: var(--color-primary-red);
    cursor: pointer;
    transition: transform 0.2s ease;
    display: flex;
    align-items: center;
}

.nav-arrow:hover {
    transform: scale(1.2);
}

.gallery-container {
    display: flex;
    gap: 30px;
    flex: 1;
    justify-content: space-evenly;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 150px; /* восстановлено */ 
    max-width: 100%;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.05));
}

.gallery-item:hover img {
    transform: translateY(-5px) scale(1.05);
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.item-info h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-dark);
}

.item-info p {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-red);
}

/* === TIMELINE SECTION === */
.timeline {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.timeline .container {
    position: relative;
    z-index: 1;
}

/* === PROCESS SECTION === */
.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.process-card {
    background: var(--color-bg);
    border-radius: 16px;
    padding: 30px 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
    background: var(--color-white);
    border-color: rgba(206, 53, 60, 0.1);
}

.process-card__number {
    font-family: var(--font-secondary);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary-red);
    line-height: 1;
    margin-bottom: 8px;
}

.process-card__title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    line-height: 1.2;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.process-card__subtitle {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin-bottom: 12px;
    line-height: 1.4;
}

.process-card__desc {
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.process-card--featured {
    background: var(--color-primary-red);
    border-color: transparent;
}

.process-card--featured .process-card__number {
    color: var(--color-white);
}

.process-card--featured .process-card__title {
    color: var(--color-white);
}

.process-card--featured .process-card__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.process-card--featured .process-card__desc {
    color: rgba(255, 255, 255, 0.9);
}

.process-card--featured:hover {
    background: #b02a30;
    border-color: transparent;
}

@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

.timeline-grid {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.timeline-card {
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    max-width: 700px;
    width: 100%;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
    background: var(--color-white);
    border-color: rgba(206, 53, 60, 0.1);
}

.timeline-card__head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.timeline-card__num {
    font-family: var(--font-secondary);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary-red);
    border: 1px solid rgba(206, 53, 60, 0.2);
    border-radius: 6px;
    padding: 2px 7px;
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-card__title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    line-height: 1.2;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.timeline-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    gap: 8px;
}

.timeline-card__desc {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-muted);
    margin: 0;
}

.timeline-card__note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.75);
}

.timeline-card__note iconify-icon {
    font-size: 14px;
    flex-shrink: 0;
    opacity: 0.85;
}

.timeline-card__time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    min-width: 140px;
}

.timeline-card--featured {
    background: var(--color-primary-red);
    border-color: transparent;
}

.timeline-card--featured .timeline-card__head {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.timeline-card--featured .timeline-card__title {
    color: var(--color-white);
}

.timeline-card--featured .timeline-card__num {
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

.timeline-card--featured .timeline-card__desc {
    color: rgba(255, 255, 255, 0.8);
}

.timeline-card--featured .time-value {
    color: var(--color-white);
}

.timeline-card--featured .time-unit {
    color: rgba(255, 255, 255, 0.8);
}

.timeline-card--featured:hover {
    background: #b02a30;
    border-color: transparent;
}

.time-value {
    font-family: var(--font-secondary);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-primary-red);
    line-height: 1;
}

.time-unit {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-dark);
}

.timeline-video {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}

.timeline-video .video-wrapper--horizontal {
    width: 100%;
    max-width: 720px;
}

/* Generic video carousel (used in timeline and video-process) */
.video-carousel {
    position: relative;
    margin: 50px auto 0;
    max-width: 880px;
}

.video-carousel--vertical {
    max-width: 440px;
}

.video-carousel__strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0;
}

.video-carousel__strip::-webkit-scrollbar {
    display: none;
}

.video-carousel__slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-carousel__slide .video-wrapper--horizontal,
.video-carousel__slide .video-wrapper--vertical {
    width: 100%;
    margin: 0 auto;
}

.video-carousel__slide .video-wrapper--horizontal {
    max-width: 720px;
}

.video-carousel__slide .video-wrapper--vertical {
    max-width: 300px;
}

.video-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 3;
    display: none;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.video-carousel.is-multi .video-carousel-arrow {
    display: flex;
}

.video-carousel-arrow:hover {
    background: var(--color-primary-red);
    transform: translateY(-50%) scale(1.06);
}

.video-carousel-arrow:hover svg {
    stroke: white;
}

.video-carousel-prev {
    left: 8px;
}

.video-carousel-next {
    right: 8px;
}

.video-carousel__dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.video-carousel.is-multi .video-carousel__dots {
    display: flex;
}

.video-carousel__dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.18);
    cursor: pointer;
    transition: background 0.2s ease, width 0.2s ease;
}

.video-carousel__dots .dot.active {
    background: var(--color-primary-red);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 1100px) {
    .video-carousel-arrow,
    .video-carousel.is-multi .video-carousel-arrow {
        display: none;
    }
}

.timeline-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: var(--color-bg);
    border-radius: 10px;
    color: var(--color-text-muted);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-note svg {
    color: var(--color-primary-red);
    flex-shrink: 0;
}

.timeline-note p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1200px) {
    /* Timeline grid is now flex, no changes needed */
}

@media (max-width: 768px) {
    .timeline {
        padding: 60px 0;
    }

    .timeline-card {
        padding: 30px 20px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .timeline-card__time {
        flex-direction: row;
        align-items: baseline;
        min-width: auto;
    }

    .time-value {
        font-size: 40px;
    }

    .time-unit {
        font-size: 11px;
    }

    .timeline-card__title {
        font-size: 13px;
    }

    .timeline-card__desc {
        font-size: 11px;
    }
}

/* === BEFORE/AFTER SECTION === */
.before-after {
    padding: 100px 0;
    background-color: var(--color-white);
    width: 100%;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-subtitle {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    /* More spacing for premium look */
    color: var(--color-text-muted);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-secondary);
    /* Back to the powerful Oswald */
    font-size: 64px;
    /* Impactful size */
    font-weight: 800;
    /* Back to bold weight */
    margin: 0;
    color: var(--color-text-dark);
    letter-spacing: 2px;
    line-height: 1;
    text-transform: uppercase;
    max-width: 100%;
    word-wrap: break-word;
}

.section-title span {
    color: var(--color-primary-red);
}

.section-description {
    font-family: var(--font-primary);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 20px;
    margin-bottom: 0;
    line-height: 1.5;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.text-red {
    color: var(--color-primary-red);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.before-after-wrapper {
    overflow: visible;
}

.comparison-card {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    border-radius: 12px;
    background-color: #f5f5f5;
    cursor: ew-resize;
    user-select: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.comparison-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-img.before {
    z-index: 2;
    /* width is now 100%, clipping is done via clip-path in JS */
    width: 100% !important;
    pointer-events: none;
    /* Let clicks pass to the card for dragging */
}

/* Ensure images are always full size and not shrinking */
.comparison-img img {
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

.comparison-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 1);
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    transition: scale 0.2s ease;
}

.comparison-card:active .slider-handle {
    scale: 1.1;
}

/* Mobile Nav - Hidden on Desktop */
.mobile-nav-comparison {
    display: none;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 0 20px;
}

.nav-arrow {
    width: 48px;
    height: 48px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-arrow:hover {
    border-color: var(--color-primary-red);
}

.dots-indicator {
    display: flex;
    gap: 8px;
}

.dot {
    height: 6px;
    width: 20px;
    background: #e0e0e0;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.dot.active {
    width: 45px;
    background: var(--color-primary-red);
}

/* === FOOTER === */
.footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 60px 0;
    margin-top: 60px;
    background-color: transparent;
    width: 100%;
    overflow: hidden;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.footer__left {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 300px;
}

.footer__logo-img {
    height: 35px;
}

.footer__desc {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.footer__right {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: right;
    max-width: 300px;
}

.footer__company,
.footer__text,
.footer__copyright {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.footer__company {
    font-weight: 700;
    color: var(--color-text-dark);
}

.footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer__legal-link {
    font-size: 11px;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__legal-link:hover {
    color: var(--color-primary-red);
}

/* === CONTACTS SECTION === */
.contacts {
    padding: 100px 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.contacts__background-text {
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 200px;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.04);
    z-index: 0;
    line-height: 0.8;
    pointer-events: none;
    letter-spacing: -8px;
    text-transform: uppercase;
    font-family: var(--font-primary);
    white-space: nowrap;
    overflow: hidden;
    max-width: 90vw;
}

.contacts__main-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
}

/* V3 Strict Minimalism Card Styles */
.v3-card {
    background: white;
    border: 2px solid var(--color-primary-red);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.v3-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/gallery/lexus.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.20;
    z-index: 0;
}

.v3-card > * {
    position: relative;
    z-index: 1;
}

.v3-title {
    font-family: var(--font-secondary);
    font-size: 32px;
    margin: 0 0 10px 0;
    color: var(--color-primary-red);
    text-transform: uppercase;
}

.v3-desc {
    font-size: 15px;
    color: var(--color-text-dark);
    margin: 0 0 25px 0;
    line-height: 1.5;
    text-shadow:
        -1px -1px 0 white,
        1px -1px 0 white,
        -1px 1px 0 white,
        1px 1px 0 white,
        0 0 8px rgba(255, 255, 255, 0.8);
}

.v3-icons-row {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.v3-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: transparent;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.v3-icon:hover {
    transform: translateY(-3px);
    box-shadow: none;
}

.v3-divider {
    width: 100%;
    height: 1px;
    background: #EAEAEA;
    margin: 30px 0;
    position: relative;
}

.v3-divider::after {
    content: "ИЛИ ПОЗВОНИТЕ";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 15px;
    font-size: 11px;
    color: #888;
    font-weight: 700;
}

.payment-standalone {
    padding: 0 0 60px;
    background: var(--color-bg);
}

/* Payment Methods in CTA Block */
.payment-methods-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
}

.payment-title {
    text-align: center;
    margin-bottom: 30px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 960px;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 40px 24px;
    background: #FAFAFA;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.payment-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    background: var(--color-white);
    border-color: rgba(206, 53, 60, 0.08);
}

.payment-item__title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--color-text-dark);
    line-height: 1.3;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.payment-item__title iconify-icon {
    color: var(--color-primary-red);
}

.payment-item__text {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
    margin: 0;
}

/* Decoration for hover state */
.payment-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary-red);
    transition: width 0.3s ease;
}

.payment-item:hover::after {
    width: 100%;
}

/* ==========================================
   TRUST STATS
   ========================================== */

.trust-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 56px auto 0;
}

.trust-stats__item {
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-stats__item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.trust-stats__number {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #555;
    letter-spacing: 0.04em;
    line-height: 1;
    margin-bottom: 10px;
}

.trust-stats__label {
    font-family: var(--font-primary);
    font-size: 13px;
    color: #666;
    font-weight: 400;
    line-height: 1.55;
}

.trust-stats__sublabel {
    font-size: 11px;
    color: #999;
}

@media (max-width: 860px) {
    .trust-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-stats__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .trust-stats__number {
        font-size: 17px;
    }

    .trust-stats__item {
        padding: 24px 16px;
    }
}

/* Map Section */
.map-section {
    padding: 0 0 80px 0;
    /* Padding below the main contacts */
    background: var(--color-bg);
    width: 100%;
    overflow: hidden;
}

.map-layout {
    width: 100%;
}

.map-card {
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    position: relative;
}

.map-card-address {
    background: white;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-top: 30px;
}

.map-address-main {
    display: flex;
    align-items: center;
    gap: 15px;
}

.map-address-icon {
    font-size: 32px;
    color: var(--color-primary-red);
}

.map-address-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.map-address-label {
    font-size: 12px;
    color: var(--color-text-muted);
    font-family: var(--font-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.map-address-value {
    font-size: 16px;
    color: var(--color-text-dark);
    font-weight: 700;
}

.map-route-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.map-route-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--color-text-dark);
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 14px;
    border: 1px solid #EAEAEA;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    flex: 1;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.map-route-btn:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #DDDDDD;
}

.map-route-btn-text {
    font-weight: 500;
    white-space: nowrap;
}

.map-route-btn-text strong {
    font-weight: 800;
}

.route-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.map-info-card {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.facade-photo {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    min-height: 250px;
}

.facade-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-primary-red);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(231, 38, 40, 0.4);
    z-index: 2;
}

.facade-badge svg {
    width: 16px;
    height: 16px;
}

.map-details {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.map-details h4 {
    font-family: var(--font-secondary);
    font-size: 16px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.map-details p {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 20px;
}

.btn-map {
    display: block;
    width: 100%;
    text-align: center;
    background: #F8F9FA;
    color: var(--color-text-dark);
    font-size: 14px;
    padding: 15px;
    border-radius: 10px;
}

.btn-map:hover {
    background: #EAEAEA;
    color: var(--color-text-dark);
}

/* Working Hours inside CTA Block */
.working-hours-block {
    text-align: center;
    margin-top: 25px;
    padding: 18px;
    background: #FAFAFA;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border: 1px dashed #E0E0E0;
}

.working-hours-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.working-hours-value {
    font-size: 16px;
    color: var(--color-text-dark);
}

/* ========================================= */
/* Process Section (Variant 3)               */
/* ========================================= */
.process-section {
    padding: 100px 0;
    background: var(--color-bg);
    width: 100%;
    overflow: hidden;
}

.process-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 20%;
    z-index: 2;
    position: relative;
}

.p-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    color: var(--color-text-dark);
    margin: 15px 0 5px 0;
    text-transform: uppercase;
}

.p-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
    margin: 0;
}

.v3-row {
    position: relative;
    padding-top: 30px;
}

.v3-line {
    position: absolute;
    top: 65px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #EAEAEA;
    z-index: 1;
}

.v3-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--color-primary-red);
    width: 0%;
    transition: width 0.5s ease;
}

.process-row:hover .v3-line-fill {
    width: 100%;
}

.v3-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-red);
    font-size: 30px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.process-step:hover .v3-icon-box {
    background: var(--color-primary-red);
    color: white;
    transform: scale(1.1);
}

/* === PREPARATION SECTION === */
.preparation-section {
    padding: 100px 0;
    background: var(--color-bg);
    width: 100%;
    position: relative;
}

.preparation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.preparation-card {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.preparation-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.preparation-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
}

.preparation-card figcaption {
    padding: 16px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    text-align: center;
    letter-spacing: 0.3px;
}

@media (max-width: 992px) {
    .preparation-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .preparation-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .preparation-section {
        padding: 40px 0;
    }

    .preparation-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .preparation-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }

    .preparation-card figcaption {
        font-size: 13px;
        padding: 14px 16px;
    }
}

/* === MATERIALS SECTION === */
.materials-section {
    padding: 100px 0;
    background: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.materials-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(250, 250, 250, 0) 0%, rgba(250, 250, 250, 0.5) 100%);
    pointer-events: none;
    z-index: 0;
}

.materials-section .container {
    position: relative;
    z-index: 1;
}

/* Brand Badge */
.brand-badge {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border: 1px solid #E8E8E8;
    border-radius: 20px;
    padding: 20px 40px;
    margin: 40px 0 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    text-align: center;
}

.brand-badge__logo {
    width: 225px;
    height: 225px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.brand-badge__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-badge__title {
    font-family: var(--font-secondary);
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.brand-badge__text {
    font-size: 14px;
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.6;
    max-width: 800px;
}

@media (max-width: 768px) {
    .brand-badge {
        padding: 16px 20px;
    }

    .brand-badge__logo {
        width: 180px;
        height: 180px;
    }

    .brand-badge__title {
        font-size: 16px;
    }

    .brand-badge__text {
        font-size: 13px;
    }

    .section-description {
        font-size: 15px;
        font-weight: 500;
    }

    .zone-subtitle {
        font-size: 15px;
        font-weight: 500;
    }
}

/* Materials Zone */
.materials-zone {
    margin-bottom: 60px;
}

.materials-zone:last-child {
    margin-bottom: 0;
}

.zone-header {
    margin-bottom: 30px;
    text-align: center;
}

.zone-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.zone-subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Product Header */
.product-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.product-name {
    font-family: var(--font-secondary);
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin: 12px 0 0 0;
    letter-spacing: 0.8px;
}

.materials-content {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Compact Grid Layout */
.materials-compact-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.materials-compact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid #EAEAEA;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

/* Equipment Card */
.materials-compact-card--equipment {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    justify-content: center;
    border: 1px solid #E8E8E8;
}

.materials-compact-card--equipment::before {
    background: linear-gradient(90deg, #666 0%, #999 100%);
}

.equipment-icon-large {
    width: 150px; /* восстановлено */ 
    height: 100px; /* восстановлено */ 
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.equipment-icon-large iconify-icon {
    font-size: 50px;
    color: var(--color-primary-red);
    --svg-stroke-width: 1;
}

.equipment-icon-large iconify-icon svg {
    stroke-width: 1;
}

.materials-compact-card--equipment h3 {
    font-size: 18px;
    margin-bottom: 24px;
}

.materials-compact-card--equipment .compact-features {
    width: 100%;
}

/* Combined Brands Card - REMOVED */

.materials-compact-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-8px);
    border-color: var(--color-primary-red);
}

.materials-compact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary-red) 0%, #E74C3C 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.materials-compact-card:hover::before {
    opacity: 1;
}

.compact-icon {
    width: 60px;
    height: 60px;
    background: #FAFAFA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.compact-icon iconify-icon {
    font-size: 32px;
    color: var(--color-primary-red);
}

.compact-logo {
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    background: white;
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.materials-compact-card:hover .compact-logo {
    transform: scale(1.05);
}

.compact-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.12));
    border-radius: 16px;
}

.materials-compact-card h3 {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin: 0 0 20px 0;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.card-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.compact-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.compact-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    border-bottom: 1px solid #F5F5F5;
    transition: all 0.2s ease;
    text-align: left;
}

.materials-compact-card:hover .compact-features li {
    padding-left: 4px;
}

.compact-features li:last-child {
    border-bottom: none;
}

.compact-features iconify-icon {
    font-size: 20px;
    color: var(--color-primary-red);
    flex-shrink: 0;
    transition: transform 0.2s ease;
    margin-top: 2px;
}

.feature-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.star-icon {
    width: 20px;
    height: 20px;
    color: #FFD700;
}

.faq-arrow {
    width: 20px;
    height: 20px;
}

.menu-arrow {
    width: 20px;
    height: 20px;
    display: inline-block;
    vertical-align: middle;
}

.materials-compact-card:hover .compact-features iconify-icon {
    transform: scale(1.1);
}

/* Equipment Block */
.materials-equipment {
    background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #EAEAEA;
}

.equipment-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.equipment-icon iconify-icon {
    font-size: 40px;
    color: var(--color-primary-red);
}

.materials-equipment h3 {
    font-family: var(--font-secondary);
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-dark);
    margin: 0 0 24px 0;
}

.equipment-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.equipment-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-dark);
}

.equipment-features iconify-icon {
    font-size: 20px;
    color: var(--color-primary-red);
}

/* Brands Grid */
.materials-brands {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.brand-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #EAEAEA;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
    border-color: var(--color-primary-red);
}

.brand-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    background: #FAFAFA;
    border-radius: 16px;
    padding: 20px;
}

.brand-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-features {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.brand-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    border-bottom: 1px solid #F5F5F5;
}

.brand-features li:last-child {
    border-bottom: none;
}

.brand-features iconify-icon {
    font-size: 18px;
    color: var(--color-primary-red);
    flex-shrink: 0;
}

/* === GUARANTEE (TRUST) SECTION === */
.guarantee-section {
    padding: 100px 0;
    background: white;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.guarantee-section .section-title {
    color: var(--color-text-dark);
}

.guarantee-section .section-subtitle {
    color: var(--color-text-muted);
}

.guarantee-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/gallery/prompt5-3.webp') center/cover no-repeat;
    opacity: 0.15;
    filter: contrast(1.5) saturate(1.4) brightness(1.1);
    pointer-events: none;
    z-index: 0;
}

.guarantee-section .container {
    position: relative;
    z-index: 1;
}

.guarantee-grid {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.guarantee-card {
    background: transparent;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: none;
    transition: all 0.3s ease;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.guarantee-card--single {
    max-width: 700px;
    width: 100%;
    background: rgba(255, 255, 255, 0.30);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.guarantee-card--single ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.guarantee-card--single li {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text-dark);
    padding: 16px 0;
    position: relative;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
}

.guarantee-card--single li::before {
    content: "✓";
    color: var(--color-primary-red);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.guarantee-card:hover {
    transform: translateY(-8px);
    box-shadow: none;
}

.guarantee-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 20px 32px;
    background: var(--color-primary-red);
    color: var(--color-white);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 30px;
    box-shadow: 0 4px 16px rgba(206, 53, 60, 0.3);
}

.guarantee-badge strong {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}

.guarantee-badge span {
    font-size: 12px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    opacity: 0.95;
}

@media (max-width: 992px) {
}

@media (max-width: 576px) {
    .guarantee-card--single {
        padding: 32px 24px;
    }

    .guarantee-card--single li {
        font-size: 16px;
        padding: 12px 0 12px 32px;
    }

    .need-check-footer {
        padding: 30px 20px;
    }

    .need-check-footer__card {
        padding: 32px 24px;
    }

    .need-check-footer__text {
        font-size: 16px;
    }

}

/* === FAQ SECTION === */
.faq-section {
    padding: 100px 0;
    background: white;
    width: 100%;
    overflow: hidden;
}

.faq-container {
    max-width: 900px;
    margin: 60px auto 0;
}

.faq-item {
    border-bottom: 1px solid #F0F0F0;
}

.faq-item:first-child {
    border-top: 1px solid #F0F0F0;
}

.faq-item__header {
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item__header:hover .faq-item__question {
    color: var(--color-primary-red);
}

.faq-item__question {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
    flex: 1;
}

.faq-item__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #F8F8F8;
    color: var(--color-text-dark);
    font-size: 20px;
    transition: all 0.3s ease;
}

.faq-item__content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item__answer {
    padding-bottom: 30px;
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-list li {
    position: relative;
    padding-left: 20px;
}

.faq-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-primary-red);
}

.faq-item.active .faq-item__arrow {
    background: var(--color-primary-red);
    color: white;
    transform: rotate(180deg);
}

.faq-item.active .faq-item__content {
    max-height: 500px;
}

@media (max-width: 576px) {
    .faq-item__question {
        font-size: 16px;
        line-height: 1.4;
    }

    .faq-item__header {
        padding: 20px 0;
    }

    .faq-item__answer {
        font-size: 14px;
    }
}

/* === REVIEWS SECTION === */
.reviews-section {
    padding: 100px 0;
    background: var(--color-bg);
    width: 100%;
    overflow: hidden;
}

.reviews-slider-container {
    width: 100%;
    max-width: 1360px;
    margin: 40px auto 0;
    position: relative;
    padding: 0 80px;
    /* Space for the arrows */
}

.reviews-track-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.review-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    color: var(--color-text-dark);
}

.review-nav-arrow:hover {
    background: var(--color-primary-red);
    color: white;
    transform: translateY(-50%) scale(1.06);
}

.review-nav-arrow:hover svg {
    stroke: white;
}

.review-prev {
    left: 8px;
}

.review-next {
    right: 8px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    padding: 50px 0;
    align-items: center;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    width: max-content;
}

.review-card {
    flex: 0 0 380px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    scroll-snap-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    opacity: 0.6;
    transform: scale(0.95);
    pointer-events: auto;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-card.active,
.review-card:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.review-stars {
    display: flex;
    gap: 4px;
    color: #FFC107;
    /* Yellow / Gold for stars */
    font-size: 20px;
}

.review-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--color-text-muted);
    font-style: italic;
    flex-grow: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #EAEAEA;
    padding-top: 20px;
    margin-top: 10px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.review-author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--color-text-dark);
}

.review-car {
    font-size: 13px;
    color: #888;
}

@media (max-width: 1360px) {
    .reviews-slider-container {
        padding: 0 20px;
    }

    .review-prev {
        left: 5px;
    }

    .review-next {
        right: 5px;
    }

    .review-card {
        flex: 0 0 350px;
    }
}

@media (max-width: 992px) {
    .reviews-slider-container {
        padding: 0 15px;
    }

    .review-card {
        flex: 0 0 320px;
        padding: 35px 25px;
    }

    .review-nav-arrow {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 576px) {
    .reviews-track {
        padding: 40px 10px;
        gap: 20px;
    }

    .review-card {
        /* FIX: Use calc to ensure cards fit within viewport with padding */
        flex: 0 0 calc(100vw - 80px);
        max-width: 280px;
        padding: 28px 20px;
        border-radius: 16px;
        gap: 16px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.5;
    }

    .review-stars {
        font-size: 18px;
        gap: 3px;
    }

    .review-avatar {
        width: 40px;
        height: 40px;
    }

    .review-name {
        font-size: 14px;
    }

    .review-car {
        font-size: 12px;
    }

    .review-author {
        padding-top: 14px;
        margin-top: 10px;
        gap: 12px;
    }

    .review-card.active {
        transform: scale(1);
    }
}

/* Mobile scroll indicators */
.review-scroll-indicators {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.review-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s ease;
    cursor: pointer;
}

.review-dot.active {
    background: var(--color-primary-red);
    width: 24px;
    border-radius: 4px;
}

@media (max-width: 576px) {
    .reviews-slider-container {
        padding: 0;
    }

    .reviews-track-wrapper {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 calc(50vw - 140px);
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
    }

    .reviews-track-wrapper::-webkit-scrollbar {
        display: none;
    }

    .reviews-track {
        padding: 40px calc(50vw - 140px);
        gap: 20px;
        transition: none;
    }

    .review-card {
        flex: 0 0 280px;
        padding: 28px 20px;
        border-radius: 16px;
        gap: 16px;
        scroll-snap-align: center;
    }

    .review-nav-arrow {
        display: none;
    }

    .review-scroll-indicators {
        display: flex;
    }
}

@media (max-width: 768px) {
    .reviews-slider-container {
        padding: 0 15px;
    }

    .review-card {
        flex: 0 0 300px;
    }

    .review-card.active {
        transform: scale(1.02);
    }

    .process-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-step {
        width: 100%;
        max-width: 300px;
    }

    .v3-line {
        display: none;
    }
}

/* Responsive Extra */
@media (max-width: 992px) {
    .contacts__main-row {
        grid-template-columns: 1fr;
    }

    .map-layout {
        height: auto;
    }

    .map-card {
        height: 500px;
    }

    .v3-card {
        padding: 30px 20px;
    }

    .payment-title {
        text-align: center;
        margin-top: 30px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .payment-item {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .v3-title {
        font-size: 26px;
    }

    .v3-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .payment-grid {
        gap: 12px;
    }

    .payment-item {
        padding: 30px;
    }

    .payment-item__title {
        font-size: 16px;
    }

    .payment-item__text {
        font-size: 13px;
    }

    .map-card-address {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 20px;
    }

    .map-route-btn {
        width: 300px;
        max-width: 100%;
        justify-content: flex-start;
    }

    .contact-data-side {
        padding: 30px 20px;
    }

    .contacts__background-text {
        font-size: 32vw;
    }

    .map-card {
        height: 400px;
    }
}

@media (max-width: 1440px) {
    .header__left {
        gap: 30px;
    }

    .header__nav {
        gap: 16px;
    }
}

@media (min-width: 1024px) {
    /* Restore full padding on desktop screens */
    .container {
        padding: 0 40px;
    }

    .header .container {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (max-width: 1280px) {
    .container {
        padding: 0 20px;
    }

    .logo-img {
        height: 34px;
    }

    .header__left {
        gap: 20px;
    }

    .header__nav {
        gap: 12px;
    }

    .header__schedule {
        font-size: 9px;
        margin-right: 10px;
    }
}

@media (max-width: 1180px) {
    .header__nav {
        gap: 6px;
    }

    .header__nav a {
        letter-spacing: 0;
    }

    /* Hide separator line so it doesn't create weird wraps */
    .separator-line {
        display: none;
    }

    .header__schedule {
        margin-right: 0;
    }
}

@media (max-width: 1100px) {
    .header {
        padding: 12px 0;
    }

    .header__inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0;
    }

    .header .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .header__left {
        width: auto;
    }

    .header__nav,
    .desktop-phone,
    .header__schedule {
        display: none !important;
    }

    /* Variant 5 Layout adjustments */
    .header__actions {
        margin: 0;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-direction: row;
        width: 100%;
    }

    .header__contacts-row {
        margin: 0;
        display: flex;
        justify-content: flex-end;
        margin-left: auto;
    }

    .header__phone {
        display: none;
    }

    .header__socials {
        display: flex;
        gap: 4px;
    }

    .header__socials a {
        /* FIX: Ensure 44px minimum touch target for accessibility */
        width: 44px;
        height: 44px;
        min-width: 44px;
        min-height: 44px;
        background: transparent;
        padding: 0;
        border-radius: 10px;
        transition: transform 0.2s ease;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: none;
    }

    .header__socials a:hover {
        transform: scale(1.1);
    }

    .header__socials a img {
        width: 24px;
        height: 24px;
    }

    .burger-btn {
        display: flex;
        /* FIX: Ensure 44px minimum touch target for burger button */
        min-width: 44px;
        min-height: 44px;
    }

    .mobile-menu-overlay {
        display: flex;
    }

    .hero {
        padding-top: 120px !important;
        padding-bottom: 10px !important;
        background-position: 75% center;
    }

    .hero__content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding-top: 0 !important;
    }

    .hero__text-area {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }

    .product-title {
        font-size: 48px;
        margin-left: 0;
        text-align: left;
    }

    .product-subtitle {
        text-align: left;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .product-actions {
        justify-content: flex-start;
        width: 100%;
        flex-direction: row;
        gap: 12px;
    }

    .main-photo {
        width: 100%;
        max-width: 600px;
        transform: none;
    }

    .hero__background-text {
        font-size: 140px;
        top: 80px;
        /* Offset from fixed header */
        left: 50%;
        transform: translateX(-50%);
        color: rgba(0, 0, 0, 0.04);
        text-align: center;
    }

    .before-after,
    .materials-section,
    .guarantee-section,
    .faq-section,
    .reviews-section,
    .contacts,
    .quick-form-section {
        padding: 40px 0;
    }

    .quick-form-section {
        padding-top: 20px;
        padding-bottom: 5px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .materials-grid,
    .guarantee-grid,
    .faq-container {
        margin-top: 40px;
    }

    .materials-content {
        margin-top: 40px;
        gap: 30px;
    }

    .materials-compact-grid {
        margin-top: 40px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .materials-compact-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 16px 10px;
        gap: 10px;
    }

    .equipment-icon-large {
        width: 70px;
        height: 70px;
        margin: 0;
        flex-shrink: 0;
    }

    .equipment-icon-large iconify-icon {
        font-size: 36px;
    }

    .compact-logo {
        width: 110px;
        height: 110px;
        margin: 0;
        padding: 0;
        flex-shrink: 0;
    }

    .compact-logo img {
        border-radius: 12px;
    }

    .materials-compact-card h3 {
        font-size: 16px;
        margin-bottom: 16px;
    }

    .equipment-icon-large {
        width: 70px;
        height: 70px;
    }

    .equipment-icon-large iconify-icon {
        font-size: 36px;
    }

    .materials-compact-card--equipment h3 {
        font-size: 15px;
    }

    .compact-features li {
        font-size: 14px;
        padding: 10px 0;
        gap: 10px;
    }

    .compact-features iconify-icon {
        font-size: 18px;
    }

    .services__lead {
        margin-top: 10px;
        margin-bottom: 40px;
        text-align: left;
    }

    .section-title {
        font-size: 32px;
    }

    .before-after-wrapper {
        overflow: hidden;
    }

    .before-after-grid {
        display: flex;
        overflow: visible;
        gap: 0;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .comparison-card {
        min-width: 100%;
        width: 100%;
        flex-shrink: 0;
        aspect-ratio: 4/3;
        border-radius: 0;
    }

    .mobile-nav-comparison {
        display: flex;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding-top: 120px !important;
        background-position: 70% center;
    }

    .product-title {
        font-size: 36px;
        /* Smaller to fit single line if possible */
    }

    .brand-name {
        font-size: 18px;
    }

    .product-actions {
        /* FIX: Stack CTA buttons vertically to prevent horizontal overflow */
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        width: 100%;
        gap: 10px;
    }

    .product-title {
        text-align: left;
        line-height: 1.1;
    }

    .product-subtitle {
        text-align: left;
    }

    .btn-shop,
    .price-box {
        width: 300px;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 14px;
        min-height: 44px;
    }

    .hero__background-text {
        font-size: 110px;
        top: 80px;
        /* Offset from fixed header */
        color: rgba(0, 0, 0, 0.05);
        left: 50%;
        transform: translateX(-50%);
        max-width: 90vw;
    }

    .footer__inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
        padding-bottom: 90px;
    }

    .footer__left,
    .footer__right {
        align-items: center;
        text-align: center;
        max-width: 100%;
    }

    .footer__right {
        text-align: center;
    }

    .footer__legal {
        text-align: left;
        justify-content: flex-start;
    }

    .section-title {
        font-size: 28px;
    }
}

/* Fix for background text overflow */
/* Removed overflow-x: hidden from hero and contacts - fix root cause instead */

/* === FLOATING ACTION BUTTONS === */
.fab-v2-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    z-index: 1000;
    pointer-events: none;
    transition: bottom 0.3s ease;
    /* Let clicks pass through container */
}

body:has(.cookie-banner.active) .fab-v2-container {
    bottom: 120px;
}

@media (max-width: 768px) {
    body:has(.cookie-banner.active) .fab-v2-container {
        bottom: 200px;
    }
}

.fab-v2-up {
    width: 38px;
    height: 38px;
    background: white;
    color: #555;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #EFEFEF;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    /* Disabled until visible */
}

.fab-v2-up.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    /* Enable clicks */
}

.fab-v2-up:hover {
    transform: translateY(-3px) !important;
    background: #FAFAFA;
}

/* ВАРИАНТ 1: Усиленная пульсация */
.fab-v2-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary-red);
    color: white;
    padding: 12px 18px;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(206, 53, 60, 0.3);
    transition: all 0.3s ease;
    pointer-events: auto;
    /* Enable clicks */
    animation: pulse-red 2s infinite;
}

.fab-v2-call-text {
    display: flex;
    flex-direction: column;
}

.fab-v2-call-text strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.1;
}

.fab-v2-call-text span {
    font-size: 9px;
    opacity: 0.9;
    margin-top: 3px;
}

.fab-v2-call:hover {
    background: #A9262C;
    transform: scale(1.03);
    animation: none;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(206, 53, 60, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(206, 53, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(206, 53, 60, 0);
    }
}

@media (max-width: 768px) {
    .fab-v2-container {
        bottom: 16px;
        right: 16px;
    }
}

/* === SCROLL ANIMATIONS === */
.fade-up,
.section-header {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity, transform;
}

.fade-in {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: opacity;
}

.fade-up.is-visible,
.fade-in.is-visible,
.section-header.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delays for grids */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

.delay-400 {
    transition-delay: 400ms;
}

.delay-500 {
    transition-delay: 500ms;
}

/* =============================================
   MOBILE RESPONSIVE FIXES (≤480px)
   Comprehensive fixes for small phone screens
   ============================================= */
@media (max-width: 480px) {

    /* FIX: Reduce container padding to gain horizontal space on small screens */
    .container {
        padding: 0 16px;
    }

    .header .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* FIX: Cap hero background text to prevent horizontal overflow */
    .hero__background-text {
        font-size: 70px;
        left: 50%;
        transform: translateX(-50%);
        letter-spacing: -4px;
        white-space: nowrap;
        max-width: 90vw;
    }

    /* FIX: Scale down product title for narrow screens */
    .product-title {
        font-size: 32px;
    }

    .product-subtitle {
        font-size: 15px;
    }

    .brand-name {
        font-size: 16px;
    }

    /* FIX: Reduce section padding on mobile for better vertical rhythm */
    .services {
        padding: 40px 0;
    }

    .services__lead {
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 14px;
    }

    /* FIX: Reduce price card padding to prevent content clipping */
    .price-card {
        padding: 20px 16px;
    }

    /* FIX: Allow price values to wrap if needed */
    .price-list li strong {
        white-space: normal;
        text-align: right;
    }

    .price-list li {
        font-size: 12px;
    }

    /* FIX: Scale down section titles to prevent overflow on narrow screens */
    .section-title {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .section-subtitle {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .section-header {
        margin-bottom: 30px;
    }

    /* FIX: Pricing title responsive sizing */
    .pricing-title {
        font-size: 18px;
        margin-top: 30px;
    }

    /* FIX: Reduce timeline padding and time-value size */
    .timeline {
        padding: 40px 0;
    }

    .time-value {
        font-size: 36px;
    }

    .timeline-card {
        padding: 20px 16px;
    }

    /* FIX: Reduce benefit card padding for mobile */
    .benefit-item {
        padding: 20px 16px;
    }

    /* FIX: Process section padding */
    .process-section {
        padding: 40px 0;
    }

    /* FIX: Materials section padding */
    .materials-section {
        padding: 40px 0;
    }

    .materials-content {
        margin-top: 30px;
        gap: 20px;
    }

    .materials-compact-grid {
        margin-top: 30px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .materials-compact-card {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 20px 16px;
        gap: 16px;
    }

    .compact-logo {
        max-width: 120px; width: 30%; /* восстановлено */ 
        height: 100px; /* восстановлено */ 
        margin: 0;
        padding: 0 5px;
        flex-shrink: 0;
    }

    .compact-logo img {
        border-radius: 8px;
    }

    .equipment-icon-large {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }


    .compact-logo {
        max-width: 120px; width: 30%; /* восстановлено */ 
        height: 100px; /* восстановлено */ 
        margin: 0;
        padding: 0 5px;
        flex-shrink: 0;
    }

    .compact-logo img {
        border-radius: 8px;
    }

    .equipment-icon-large {
        width: 60px;
        height: 60px;
        margin: 0;
        flex-shrink: 0;
    }

    .equipment-icon-large iconify-icon {
        font-size: 30px;
    }

    .compact-icon {
        width: 60px;
        height: 60px;
    }

    .compact-icon iconify-icon {
        font-size: 28px;
    }

    .materials-compact-card h3 {
        font-size: 14px;
        margin-bottom: 12px;
        text-align: left;
    }

    .compact-features li {
        font-size: 12px;
        padding: 6px 0;
    }

    .compact-features iconify-icon {
        font-size: 16px;
    }


    /* FIX: Guarantee section padding for narrow screens */
    .guarantee-grid {
        gap: 20px;
        margin-top: 30px;
    }

    .guarantee-section {
        padding: 40px 0;
    }

    .guarantee-card {
        padding: 28px 20px;
    }

    /* FIX: Guarantee section padding for narrow screens */
    .guarantee-card--single {
        padding: 28px 20px;
    }

    .guarantee-card--single li {
        font-size: 15px;
        padding: 10px 0 10px 28px;
    }

    /* FIX: FAQ section padding */
    .faq-section {
        padding: 40px 0;
    }

    .faq-container {
        margin-top: 30px;
    }

    .faq-item__question {
        font-size: 15px;
    }

    /* FIX: Reviews section – hide nav arrows that clip on small screens */
    .reviews-section {
        padding: 40px 0;
    }

    .reviews-slider-container {
        padding: 0 10px;
    }

    .reviews-track {
        padding: 30px 10px;
    }

    .review-card {
        gap: 16px;
        flex: 0 0 260px;
    }

    .review-card.active {
        transform: scale(1);
    }

    /* FIX: Contacts section */
    .contacts {
        padding: 40px 0;
    }

    .contacts__background-text {
        font-size: 24vw;
    }

    .v3-card {
        padding: 24px 16px;
    }

    .v3-title {
        font-size: 22px;
    }

    .v3-desc {
        font-size: 13px;
        margin-bottom: 15px;
    }

    .v3-icon {
        width: 48px;
        height: 48px;
    }

    /* FIX: Map card address layout */
    .map-card-address {
        padding: 16px;
        gap: 12px;
    }

    .map-route-btn {
        width: 300px;
        max-width: 100%;
        padding: 16px 20px;
        font-size: 14px;
        min-height: 44px;
        justify-content: flex-start;
    }

    .map-card {
        height: 350px;
    }

    /* FIX: Footer padding */
    .footer {
        padding: 40px 0;
        margin-top: 30px;
    }

    /* FIX: Mobile menu link touch targets */
    .mobile-menu-overlay a {
        min-height: 44px;
        padding: 14px 0;
    }

    /* FIX: FAB buttons positioning for small screens */
    .fab-v2-container {
        bottom: 16px;
        right: 16px;
    }
/* ВАРИАНТ 1: Усиленная пульсация */    .fab-v2-call {        padding: 16px 22px;        border-radius: 50px;        box-shadow: 0 8px 25px rgba(206, 53, 60, 0.5);        animation: pulse-strong 1.5s infinite;    }    .fab-v2-call .fab-v2-call-text strong {        font-size: 16px;        font-weight: 800;    }    .fab-v2-call .fab-v2-call-text span {        font-size: 10px;    }    .fab-v2-call iconify-icon {        width: 28px;        height: 28px;    }    @keyframes pulse-strong {        0% {            box-shadow: 0 0 0 0 rgba(206, 53, 60, 0.7);            transform: scale(1);        }        50% {            transform: scale(1.05);        }        70% {            box-shadow: 0 0 0 15px rgba(206, 53, 60, 0);        }        100% {            box-shadow: 0 0 0 0 rgba(206, 53, 60, 0);            transform: scale(1);        }    }

    /* ВАРИАНТ 1: Усиленная пульсация */
    .fab-v2-call {
        padding: 16px 22px;
        border-radius: 50px;
        box-shadow: 0 8px 25px rgba(206, 53, 60, 0.5);
        animation: pulse-strong 1.5s infinite;
    }

    .fab-v2-call .fab-v2-call-text strong {
        font-size: 16px;
        font-weight: 800;
    }

    .fab-v2-call .fab-v2-call-text span {
        font-size: 10px;
    }

    .fab-v2-call iconify-icon {
        width: 28px;
        height: 28px;
    }

    @keyframes pulse-strong {
        0% {
            box-shadow: 0 0 0 0 rgba(206, 53, 60, 0.7);
            transform: scale(1);
        }
        50% {
            transform: scale(1.05);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(206, 53, 60, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(206, 53, 60, 0);
            transform: scale(1);
        }
    }

    /* FIX: Working hours block in contacts */
    .working-hours-block {
        padding: 14px;
    }

    .working-hours-value {
        font-size: 14px;
    }

    /* FIX: Before/after gallery padding adjustment */
    .before-after {
        padding: 40px 0;
    }

    .comparison-card {
        border-radius: 8px;
    }

    .payment-item {
        padding: 18px 14px;
    }

    .payment-item__title {
        font-size: 15px;
    }

    .payment-item__text {
        font-size: 12px;
    }
}

/* =============================================
   EXTRA SMALL SCREENS (≤320px)
   Addresses the narrowest phones
   ============================================= */
@media (max-width: 320px) {
    .container {
        padding: 0 12px;
    }

    .header .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .product-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 20px;
    }

    .hero__background-text {
        font-size: 56px;
    }

    .v3-title {
        font-size: 20px;
    }

    /* FIX: Tighter price card styling for 320px */
    .price-card {
        padding: 16px 12px;
    }

    .price-list li {
        font-size: 11px;
        gap: 6px;
    }

    .pricing-title {
        font-size: 16px;
        margin-top: 24px;
    }

    .review-card {
        flex: 0 0 calc(100vw - 60px);
        max-width: 240px;
        padding: 24px 16px;
        gap: 14px;
    }

    .review-text {
        font-size: 13px;
        line-height: 1.4;
    }

    .review-author {
        padding-top: 12px;
        margin-top: 6px;
        gap: 10px;
    }

    .review-stars {
        font-size: 16px;
        gap: 2px;
    }

    .reviews-slider-container {
        padding: 0 8px;
    }
}

/* ==========================================
   CONTACT FORM
   ========================================== */

.contact-form-wrapper {
    margin-top: 40px;
    background: #FFFFFF !important;
    border-radius: 16px;
    padding: 40px 30px;
    border: 2px solid var(--color-primary-red);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.contact-form__title {
    font-family: var(--font-secondary);
    font-size: 28px;
    color: var(--color-primary-red);
    text-align: center;
    margin: 0 0 8px 0;
    text-transform: uppercase;
}

.contact-form__desc {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 0 30px 0;
}

.contact-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-form__group--full {
    grid-column: 1 / -1;
}

.contact-form__input {
    width: 100%;
    padding: 16px 18px;
    border: 1px solid #D0D0D0 !important;
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text-dark);
    background: #FAFAFA !important;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form__input:focus {
    border-color: var(--color-primary-red) !important;
    box-shadow: 0 0 0 3px rgba(206, 53, 60, 0.1) !important;
    outline: none !important;
}

.contact-form__input::placeholder {
    color: #999;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-form__input.error {
    border-color: var(--color-primary-red);
}

.phone-field {
    display: flex;
    align-items: center;
    width: 100%;
    border: 1px solid #D0D0D0;
    border-radius: 10px;
    background: #FAFAFA;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: text;
}

.phone-field:focus-within {
    border-color: #999 !important;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06) !important;
}

.phone-field.error {
    border-color: var(--color-primary-red) !important;
    box-shadow: 0 0 0 3px rgba(206, 53, 60, 0.1) !important;
}

.phone-field__prefix {
    padding: 16px 6px 16px 18px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: #555;
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}


.phone-field__number {
    flex: 1;
    padding: 16px 18px 16px 8px;
    border: none;
    background: transparent;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text-dark);
    outline: none;
    min-width: 0;
}

.phone-field__number::placeholder {
    color: #999;
    font-weight: 400;
}

.phone-field__error {
    display: none;
    color: var(--color-primary-red);
    font-size: 12px;
    margin-top: 5px;
    padding-left: 2px;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    20%       { transform: translateX(-7px); }
    40%       { transform: translateX(7px); }
    60%       { transform: translateX(-4px); }
    80%       { transform: translateX(4px); }
}

.contact-form__submit.shake {
    animation: shake 0.4s ease;
}

.form-error-msg {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    background: #FFF5F5;
    border: 1px solid rgba(206, 53, 60, 0.2);
    border-radius: 8px;
    padding: 12px 14px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-dark);
}

.form-error-msg iconify-icon {
    color: var(--color-primary-red);
    flex-shrink: 0;
    margin-top: 1px;
}

.form-error-msg a {
    color: var(--color-primary-red);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.contact-form__consent {
    margin-bottom: 24px;
}

.contact-form__checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.4;
}

.contact-form__checkbox-label input[type="checkbox"] {
    display: none;
}

.contact-form__checkmark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid #D0D0D0;
    border-radius: 4px;
    position: relative;
    transition: all 0.2s;
    margin-top: 1px;
}

.contact-form__checkbox-label input[type="checkbox"]:checked ~ .contact-form__checkmark {
    background: var(--color-primary-red);
    border-color: var(--color-primary-red);
}

.contact-form__checkbox-label input[type="checkbox"]:checked ~ .contact-form__checkmark::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 1px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.contact-form__checkmark.error {
    border-color: var(--color-primary-red);
}

.contact-form__link {
    color: var(--color-primary-red);
    text-decoration: underline;
}

.contact-form__link:hover {
    text-decoration: none;
}

.contact-form__submit {
    display: block;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 16px 32px;
    background: var(--color-primary-red);
    color: white;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none !important;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.contact-form__submit:hover {
    background: #B82E34;
    transform: translateY(-1px);
}

.contact-form__submit:active {
    transform: translateY(0);
}

.contact-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.contact-form__success {
    text-align: center;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.contact-form__success-title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: #4CAF50;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin: 0;
}

.contact-form__success-sub {
    font-size: 15px;
    color: var(--color-text-muted);
    margin: 0;
}

/* ==========================================
   PRIVACY POLICY MODAL
   ========================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 640px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 28px;
    background: none;
    border: none !important;
    cursor: pointer;
    color: var(--color-text-muted);
    line-height: 1;
    transition: color 0.2s;
}

.modal-close:hover {
    color: var(--color-primary-red);
}

.modal-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    color: var(--color-primary-red);
    margin: 0 0 20px 0;
}

.modal-body h4 {
    font-size: 15px;
    margin: 18px 0 6px 0;
    color: var(--color-text-dark);
}

.modal-body p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0 0 8px 0;
}

.modal-body a {
    color: var(--color-primary-red);
}

/* ==========================================
   COOKIE CONSENT BANNER
   ========================================== */

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 900px;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: white;
    z-index: 9999;
    padding: 20px 0;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cookie-banner.active {
    display: block;
}

.cookie-banner__content {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-banner__text {
    font-size: 14px;
    line-height: 1.5;
    color: #CCC;
    margin: 0;
}

.cookie-banner__link {
    color: var(--color-primary-red);
    text-decoration: underline;
}

.cookie-banner__link:hover {
    text-decoration: none;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-banner__accept {
    padding: 10px 24px;
    background: var(--color-primary-red);
    color: white;
    border: 1px solid var(--color-primary-red) !important;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.cookie-banner__accept:hover {
    background: #B82E34;
    border-color: #B82E34 !important;
}

.cookie-banner__decline {
    padding: 10px 24px;
    background: #2a2a2a;
    color: #CCC;
    border: 1px solid #555 !important;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.cookie-banner__decline:hover {
    background: #333;
    border-color: #888 !important;
    color: white;
}

/* ==========================================
   RESPONSIVE: CONTACT FORM & COOKIE BANNER
   ========================================== */

@media (max-width: 768px) {
    .contact-form__fields {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .contact-form__title {
        font-size: 22px;
    }

    .cookie-banner__content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner__actions {
        width: 100%;
        justify-content: center;
    }

    .modal-content {
        padding: 24px 20px;
    }

    .modal-title {
        font-size: 20px;
    }
}

/* === CONTACT FAB (expandable menu) === */
.fab-container {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    transition: bottom 0.35s ease;
    pointer-events: none;
    /* Сам контейнер прозрачен для кликов — только кнопки ловят события */
}

/* Поднимаем FAB выше cookie-баннера, пока он активен */
body:has(.cookie-banner.active) .fab-container {
    bottom: 140px;
}

.fab-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    pointer-events: none;
}

.fab-item {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px) scale(0.5);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
}

.fab-item svg {
    width: 28px;
    height: 28px;
}

.fab-item:hover {
    transform: translateY(-2px) scale(1.05) !important;
}

.fab-container.open .fab-items {
    pointer-events: auto;
}

.fab-container.open .fab-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fab-container.open .fab-item:nth-child(1) { transition-delay: 0.05s; }
.fab-container.open .fab-item:nth-child(2) { transition-delay: 0.12s; }
.fab-container.open .fab-item:nth-child(3) { transition-delay: 0.19s; }
.fab-container.open .fab-item:nth-child(4) { transition-delay: 0.26s; }

.fab-item.whatsapp { background: #25D366; }
.fab-item.telegram { background: #229ED9; }
.fab-item.viber    { background: #7360F2; }
.fab-item.phone    { background: #fff; }
.fab-item.whatsapp svg,
.fab-item.telegram svg,
.fab-item.viber svg { color: #fff; }
.fab-item.phone svg { color: #c0212b; }

.fab-main {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #c0212b;
    color: #fff;
    border: none;
    padding: 16px 22px 16px 18px;
    border-radius: 40px;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    text-transform: uppercase;
    position: relative;
    animation: fab-main-pulse 2s infinite;
    pointer-events: auto;
}

.fab-main:hover {
    background: #9a1a22;
    transform: translateY(-2px) scale(1.03);
    animation: none;
    box-shadow: 0 12px 32px rgba(192, 33, 43, 0.55);
}

@keyframes fab-main-pulse {
    0% {
        box-shadow: 0 8px 28px rgba(192, 33, 43, 0.45), 0 0 0 0 rgba(192, 33, 43, 0.55);
    }
    70% {
        box-shadow: 0 8px 28px rgba(192, 33, 43, 0.45), 0 0 0 16px rgba(192, 33, 43, 0);
    }
    100% {
        box-shadow: 0 8px 28px rgba(192, 33, 43, 0.45), 0 0 0 0 rgba(192, 33, 43, 0);
    }
}

.fab-main-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.fab-main-icon svg {
    width: 18px;
    height: 18px;
}

.fab-container.open .fab-main-icon { transform: rotate(135deg); }
.fab-container.open .fab-main {
    background: #9a1a22;
    animation: none;
    box-shadow: 0 8px 28px rgba(192, 33, 43, 0.45);
}

.fab-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 999;
}

.fab-container.open ~ .fab-backdrop {
    opacity: 1;
    pointer-events: auto;
}

/* Поднимаем старую кнопку "вверх", чтобы не накладывалась на новый FAB */
.fab-v2-container {
    bottom: 100px;
}

body:has(.cookie-banner.active) .fab-v2-container {
    bottom: 210px;
}

@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    body:has(.cookie-banner.active) .fab-container {
        bottom: 220px;
    }
    .fab-main {
        padding: 14px 18px 14px 14px;
        font-size: 13px;
    }
    .fab-item {
        width: 52px;
        height: 52px;
    }
    .fab-item svg {
        width: 26px;
        height: 26px;
    }
    .fab-v2-container {
        bottom: 85px;
    }
    body:has(.cookie-banner.active) .fab-v2-container {
        bottom: 290px;
    }
}

/* === WORKS GALLERY === */
.works-section {
    padding: 100px 0;
    background-color: var(--color-white);
    overflow: hidden;
}

.works-strip-wrapper {
    position: relative;
    margin-top: 40px;
}

.works-strip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 8px 60px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.works-strip::-webkit-scrollbar {
    display: none;
}

.works-item {
    flex: 0 0 calc((100% - 60px - 60px - 32px) / 3);
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
    border-radius: 12px;
    overflow: hidden;
    cursor: zoom-in;
    background: #1a1a1a;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.works-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.works-item:hover img {
    transform: scale(1.05);
}

.works-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.works-arrow:hover {
    background: var(--color-primary-red);
    transform: translateY(-50%) scale(1.06);
}

.works-arrow:hover svg {
    stroke: white;
}

.works-prev {
    left: 12px;
}

.works-next {
    right: 12px;
}

@media (max-width: 1100px) {
    .works-section {
        padding: 60px 0;
    }

    .works-strip {
        padding: 8px 20px;
        gap: 12px;
    }

    .works-item {
        flex: 0 0 70%;
    }

    .works-arrow {
        display: none;
    }
}

@media (max-width: 576px) {
    .works-item {
        flex: 0 0 80%;
        border-radius: 10px;
    }
}

/* Lightbox */
.works-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.94);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 60px 80px;
}

.works-lightbox.is-open {
    display: flex;
}

.works-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.works-lightbox__close,
.works-lightbox__nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 2;
}

.works-lightbox__close:hover,
.works-lightbox__nav:hover {
    background: rgba(255, 255, 255, 0.24);
}

.works-lightbox__close {
    top: 24px;
    right: 24px;
}

.works-lightbox__prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.works-lightbox__next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.works-lightbox__counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    background: rgba(0, 0, 0, 0.35);
    padding: 6px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
}

@media (max-width: 768px) {
    .works-lightbox {
        padding: 70px 16px;
    }

    .works-lightbox__close {
        top: 16px;
        right: 16px;
        width: 40px;
        height: 40px;
    }

    .works-lightbox__prev {
        left: 8px;
        width: 40px;
        height: 40px;
    }

    .works-lightbox__next {
        right: 8px;
        width: 40px;
        height: 40px;
    }
}

/* === REVIEWS YANDEX-STYLE (variant) === */
.reviews-section--yandex .reviews-track {
    align-items: stretch;
}

.reviews-section--yandex .review-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 320px;
}

.reviews-section--yandex .review-text {
    flex: 1;
}

.reviews-section--yandex .review-author {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviews-section--yandex .review-text {
    margin: 0;
}

.reviews-section--yandex .review-stars {
    margin-top: 0;
    order: 3;
}

.reviews-section--yandex .review-date {
    color: #999;
    font-size: 13px;
    font-weight: 500;
    margin-top: 2px;
}

/* Initial-letter avatar (Yandex-style) */
.review-avatar--initial {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    flex-shrink: 0;
    background: #6c7a89;
}

.review-avatar--initial[data-color="blue"]   { background: #4a90e2; }
.review-avatar--initial[data-color="green"]  { background: #5cb85c; }
.review-avatar--initial[data-color="orange"] { background: #f5a623; }
.review-avatar--initial[data-color="pink"]   { background: #e26a8b; }
.review-avatar--initial[data-color="purple"] { background: #9b6bd0; }
.review-avatar--initial[data-color="teal"]   { background: #50c5b7; }

/* Review count next to rating in Yandex link */
.yandex-reviews-link__count {
    color: #888;
    font-size: 13px;
    font-weight: 500;
    margin-left: 4px;
}

/* Yandex link in section header */
.yandex-reviews-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 18px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    color: var(--color-text-dark);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.yandex-reviews-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.yandex-reviews-link__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-right: 16px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.yandex-reviews-link__score {
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.yandex-reviews-link__stars {
    display: inline-flex;
    gap: 2px;
    color: #ffb400;
    font-size: 14px;
}

.yandex-reviews-link__cta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
}

/* Yandex logo (red Я + .Карты text) */
.yandex-logo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.yandex-logo__mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: #fc3f1d;
    color: #fff;
    border-radius: 4px;
    font-family: 'Arial Black', Arial, sans-serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 1;
}

.yandex-logo__text {
    font-weight: 700;
}

@media (max-width: 576px) {
    .yandex-reviews-link {
        gap: 10px;
        padding: 8px 14px;
        flex-wrap: wrap;
    }

    .yandex-reviews-link__rating {
        padding-right: 10px;
    }

    .yandex-reviews-link__score {
        font-size: 18px;
    }

    .yandex-reviews-link__cta {
        font-size: 13px;
    }
}

/* ==========================================================
   COMBO CONTACT — объединённый блок: телефон/мессенджеры + форма
   ========================================================== */

.combo-contact {
    background: #fff;
    border: 2px solid var(--color-primary-red);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.combo-contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
}

/* Left side — phone + messengers (with car bg) */
.combo-contact__left {
    position: relative;
    padding: 50px 40px;
    text-align: center;
    border-right: 1px solid #eee;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.combo-contact__left::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('assets/gallery/lexus.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.20;
    z-index: 0;
}

.combo-contact__left > * {
    position: relative;
    z-index: 1;
}

.combo-contact__phone-title {
    font-family: var(--font-secondary);
    font-size: 28px;
    margin: 0 0 10px 0;
    color: var(--color-primary-red);
    text-transform: uppercase;
}
.combo-contact__phone-title a {
    color: inherit;
    text-decoration: none;
}

.combo-contact__phone-desc {
    font-size: 15px;
    margin: 0 0 22px 0;
    color: var(--color-text-dark);
    text-shadow:
        -1px -1px 0 #fff, 1px -1px 0 #fff,
        -1px 1px 0 #fff, 1px 1px 0 #fff,
        0 0 8px rgba(255, 255, 255, 0.85);
}

.combo-contact__icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 28px;
}
.combo-contact__icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.combo-contact__icons a:hover {
    transform: translateY(-3px);
}

/* Right side — form */
.combo-contact__right {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.combo-contact__form-title {
    font-family: var(--font-secondary);
    font-size: 24px;
    color: var(--color-primary-red);
    margin: 0 0 8px 0;
    text-align: center;
    text-transform: uppercase;
}

.combo-contact__form-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    margin: 0 0 24px 0;
}

.combo-contact__fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 18px;
}

.combo-contact__form .contact-form__submit {
    margin-top: 4px;
}

/* Responsive */
@media (max-width: 900px) {
    .combo-contact__inner {
        grid-template-columns: 1fr;
    }
    .combo-contact__left {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 40px 25px;
    }
    .combo-contact__right {
        padding: 32px 25px;
    }
}

@media (max-width: 576px) {
    .combo-contact__phone-title {
        font-size: 24px;
    }
    .combo-contact__form-title {
        font-size: 20px;
    }
}

/* ==========================================
   CONTACT BLOCK: 2 cards top + 1 card full width
   ========================================== */

.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
}

.contact-card {
    padding: 32px 32px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    text-align: left;
    background: #fff;
    border-radius: 20px;
    border: 1.5px solid rgba(206, 53, 60, 0.45);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--color-primary-red);
    transition: width 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(206, 53, 60, 0.08);
}

.contact-card:hover::after {
    width: 100%;
}

.contact-card--call,
.contact-card--msg {
    border: 1px solid rgba(0, 0, 0, 0.08);
}

/* Form card: full width, red border only */
.contact-card--form {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 48px;
    background: #fff;
    border: 1.5px solid rgba(206, 53, 60, 0.45);
    box-shadow: none;
}

.contact-card--form:hover {
    transform: none;
    box-shadow: none;
    border-color: rgba(206, 53, 60, 0.45);
}

.contact-card--form::after {
    display: none;
}

.contact-card__call-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
    gap: 6px;
}

.contact-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.contact-card__icon {
    color: var(--color-primary-red);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-card__title {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-dark);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

.contact-card__title iconify-icon {
    color: var(--color-primary-red);
}

.contact-card__phone {
    font-family: var(--font-secondary);
    font-size: 19px;
    font-weight: 700;
    color: var(--color-primary-red);
    text-decoration: none;
    letter-spacing: 0.01em;
    transition: opacity 0.2s;
    margin-bottom: 2px;
    white-space: nowrap;
}

.contact-card__phone:hover { opacity: 0.8; }

.contact-card__hint {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
}

/* Round messenger icons */
.contact-card__round-icons {
    display: flex;
    gap: 14px;
    margin-top: 14px;
    justify-content: center;
}

.round-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f2f2f2;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
}

.round-icon:hover {
    transform: translateY(-3px);
    background: #e4e4e4;
}

/* Messenger brand colors */
.round-icon--telegram { background: rgba(42, 171, 238, 0.12); border-color: rgba(42, 171, 238, 0.35); }
.round-icon--telegram:hover { background: rgba(42, 171, 238, 0.22); }
.round-icon--whatsapp { background: rgba(37, 211, 102, 0.12); border-color: rgba(37, 211, 102, 0.35); }
.round-icon--whatsapp:hover { background: rgba(37, 211, 102, 0.22); }
.round-icon--viber { background: rgba(115, 96, 242, 0.12); border-color: rgba(115, 96, 242, 0.35); }
.round-icon--viber:hover { background: rgba(115, 96, 242, 0.22); }

/* Call row: title + phone pill in one line */
.contact-card__call-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.contact-card__call-row .contact-card__title,
.contact-card__msg-row .contact-card__title {
    margin-bottom: 0;
}

.contact-card__phone-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.contact-card__phone-hint {
    font-size: 11px;
    color: #999;
    margin-top: 2px;
}

/* Msg row: title + messenger icons in one line */
.contact-card__msg-row {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
}

.contact-card__round-icons--inline {
    margin-top: 0;
    justify-content: space-around;
    flex: 1;
    gap: 0;
}

.contact-card__round-icons--inline .round-icon {
    width: 44px;
    height: 44px;
}


.contact-card__form-title {
    font-family: var(--font-secondary);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary-red);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.contact-card__form-subtitle {
    font-size: 14px;
    color: #666666;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 20px;
}

.contact-card--form .contact-form {
    width: 100%;
    text-align: left;
}

/* Two inputs side by side */
.contact-form__two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 10px;
}

.contact-card--form .contact-form__group {
    margin-bottom: 10px;
}

.contact-card--form .contact-form__textarea { resize: none; }

/* Centered submit button */
.contact-form__submit-wrap {
    display: flex;
    justify-content: center;
    margin-top: 6px;
}

.contact-card--form .contact-form__submit {
    max-width: 300px;
    width: 100%;
    border-radius: 8px;
    margin: 0;
}

/* Compact consent */
.contact-form__consent--compact {
    margin: 10px 0 12px;
}

.contact-form__consent--compact .contact-form__consent-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Responsive: tablet and below */
@media (max-width: 860px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card--form {
        grid-column: 1;
        padding: 32px 20px;
    }

    .contact-form__two-col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   QUICK REQUEST FORM (TOP)
   ========================================== */
.quick-form-section {
    padding: 100px 0;
    padding-bottom: 60px;
    background: #FAFAFA;
    position: relative;
}

.quick-form-wrap {
    max-width: 640px;
    margin: 0 auto;
}

@media (max-width: 860px) {
    .quick-form-wrap {
        max-width: 100%;
    }
}