/* ============================================
   INSIDE AUTO - Premium Design 2025
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
    /* Colors - Amber Orange Premium Palette */
    --primary: #c65d00;
    --primary-light: #e07800;
    --primary-dark: #a34e00;
    --primary-glow: rgba(198, 93, 0, 0.4);

    --accent: #ff7a00;
    --accent-light: #ff9933;
    --accent-glow: rgba(255, 122, 0, 0.35);

    --success: #22c55e;
    --warning: #eab308;

    --dark: #0a0a0f;
    --dark-100: #111118;
    --dark-200: #1a1a24;
    --dark-300: #252532;

    --light: #ffffff;
    --light-100: #f8fafc;
    --light-200: #e2e8f0;
    --gray: #64748b;
    --gray-light: #94a3b8;

    /* Gradients */
    --gradient-main: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark) 0%, var(--dark-100) 100%);
    --gradient-card: linear-gradient(145deg, var(--dark-200) 0%, var(--dark-100) 100%);
    --gradient-glow: linear-gradient(135deg, var(--primary-glow) 0%, var(--accent-glow) 100%);

    /* Typography */
    --font: 'Montserrat', -apple-system, sans-serif;

    /* Sizing */
    --container: 1200px;
    --header-height: 64px;

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px var(--primary-glow);

    /* Transitions */
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--light);
    background: var(--dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

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

input,
select,
textarea {
    font-family: inherit;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PRELOADER - GTA San Andreas Style
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 50%, #000000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out, visibility 0.5s;
    overflow: hidden;
}

.preloader::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(198, 93, 0, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(198, 93, 0, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* 3 Tilted Panels Container */
.preloader__panels {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    padding: 60px 40px;
}

.preloader__panel {
    flex: 1;
    max-width: 280px;
    height: 70vh;
    max-height: 500px;
    overflow: hidden;
    border: 4px solid #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    opacity: 0;
    transform: translateX(-100px) rotate(-5deg);
}

.preloader__panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(0.3) saturate(1.2);
}

/* Panel 1 - Left tilted trapezoid */
.preloader__panel--1 {
    clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
    transform: translateX(-100px) rotate(-3deg);
    animation: panelSlide1 0.8s ease-out 0.5s forwards;
    z-index: 1;
}

/* Panel 2 - Center trapezoid */
.preloader__panel--2 {
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    transform: translateY(100px) rotate(0deg);
    animation: panelSlide2 0.8s ease-out 1.2s forwards;
    z-index: 3;
    max-width: 320px;
}

/* Panel 3 - Right tilted trapezoid */
.preloader__panel--3 {
    clip-path: polygon(0% 0%, 85% 0%, 100% 100%, 15% 100%);
    transform: translateX(100px) rotate(3deg);
    animation: panelSlide3 0.8s ease-out 1.9s forwards;
    z-index: 2;
}

@keyframes panelSlide1 {
    to {
        opacity: 1;
        transform: translateX(0) rotate(-3deg);
    }
}

@keyframes panelSlide2 {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes panelSlide3 {
    to {
        opacity: 1;
        transform: translateX(0) rotate(3deg);
    }
}

/* Center Logos - GTA Style */
.preloader__logos {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
    opacity: 0;
    animation: logosAppear 0.8s ease-out 3s forwards;
}

.preloader__logo-top {
    width: 380px;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.9));
    margin-bottom: -20px;
}

.preloader__logo-bottom {
    width: 320px;
    height: auto;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.9));
    mix-blend-mode: lighten;
    margin-top: -15px;
}

@keyframes logosAppear {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* GTA Style Bottom Bar */
.preloader__bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 40px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
}

.preloader__bar-container {
    width: 100%;
    height: 20px;
    background: #1a1a1a;
    border: 2px solid #333;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.preloader__bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg,
            var(--primary-dark) 0%,
            var(--primary) 50%,
            var(--accent) 100%);
    animation: loadingBar 5.5s ease-out forwards;
    position: relative;
}

.preloader__bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, transparent 100%);
}

.preloader__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.preloader__text {
    color: var(--gray-light);
    font-size: 12px;
    font-weight: 500;
}

.preloader__percent {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
}

@keyframes loadingBar {
    0% {
        width: 0%;
    }

    10% {
        width: 15%;
    }

    30% {
        width: 35%;
    }

    50% {
        width: 55%;
    }

    70% {
        width: 75%;
    }

    90% {
        width: 92%;
    }

    100% {
        width: 100%;
    }
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px var(--primary-glow));
    }

    100% {
        filter: drop-shadow(0 0 40px var(--primary-glow)) brightness(1.1);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo__icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo__icon svg {
    width: 24px;
    height: 24px;
    color: var(--light);
}

.logo__name {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.02em;
    display: block;
}

.logo__tagline {
    font-size: 11px;
    color: var(--gray-light);
    font-weight: 500;
}

.logo__img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.nav__link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: transparent;
    white-space: nowrap;
}

.nav__link:hover {
    color: var(--primary);
    background: rgba(198, 93, 0, 0.15);
}

.nav__link--accent {
    background: var(--gradient-main);
    color: var(--light) !important;
    font-weight: 700;
}

.nav__link--accent:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px var(--primary-glow);
}

/* Header Right */
.header__right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background: var(--dark-200);
    border-radius: var(--radius-full);
    transition: var(--transition);
    margin-top: 6px;
}

.header__phone:hover {
    background: var(--dark-300);
}

.header__phone-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header__phone-icon svg {
    width: 16px;
    height: 16px;
    color: var(--light);
}

.header__phone-label {
    font-size: 10px;
    color: var(--gray-light);
    display: block;
    line-height: 1;
}

.header__phone-number {
    font-size: 13px;
    font-weight: 700;
}

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.burger span {
    width: 100%;
    height: 2px;
    background: var(--light);
    border-radius: 2px;
    transition: var(--transition);
}

.burger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100dvh;
        /* Force full viewport height */
        background: rgba(0, 0, 0, 0.9) !important;
        backdrop-filter: blur(10px);
        padding: calc(var(--header-height) + 32px) 24px 32px;
        transform: translateX(100%);
        transition: var(--transition);
        z-index: 1001;
        /* Above header */
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    /* Ensure burger is visible above menu */
    .burger {
        position: relative;
        z-index: 1002;
    }

    .nav.active {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 32px;
        justify-content: center;
        height: 100%;
        padding-bottom: 80px;
        /* shift up visually */
    }

    .nav__link {
        width: 100%;
        text-align: center;
        background: transparent;
        border: none;
        margin: 0;
        font-size: 28px;
        font-weight: 900;
        letter-spacing: 0.02em;
        padding: 10px;
    }

    .header__phone {
        display: none;
    }

    .burger {
        display: flex;
    }
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 40px) 0 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(10, 10, 15, 0.95) 0%,
            rgba(10, 10, 15, 0.7) 50%,
            rgba(10, 10, 15, 0.4) 100%);
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__content {
    max-width: 600px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--dark-200);
    border: 1px solid var(--dark-300);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero__badge-icon {
    font-size: 16px;
}

.hero__title {
    font-size: clamp(36px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__text {
    font-size: 18px;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    width: 100%;
    /* Occupy full width of container */
    text-align: center;
    /* Center text within that width */
    /* Explicit center alignment */
    -webkit-text-fill-color: transparent;
    color: transparent;
    margin: 0;
    padding: 0;
    line-height: 1.2;
}

.hero__stat-label {
    font-size: 13px;
    color: var(--gray-light);
    display: block;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
    transform: translateX(-5px);
    /* Visual correction for alignment */
}

/* Hero Scroll */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 12px;
    animation: bounce 2s infinite;
}

.hero__scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.hero__scroll-wheel {
    width: 3px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(8px);
    }
}

@keyframes scroll {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(4px);
    }
}

@media (max-width: 768px) {
    .hero__buttons {
        flex-direction: column;
    }

    .hero__stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero__scroll {
        display: none;
    }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition);
}

.btn--primary {
    background: var(--gradient-main);
    color: var(--light);
    box-shadow: 0 8px 24px var(--primary-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px var(--primary-glow);
}

.btn--primary:hover svg {
    transform: translateX(4px);
}

.btn--outline {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--dark-300);
}

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

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

/* ============================================
   SECTION STYLES
   ============================================ */
.section-header {
    margin-bottom: 48px;
}

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

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 16px;
    color: var(--gray-light);
    max-width: 500px;
}

.section-header--center .section-desc {
    margin: 0 auto;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
    padding: 100px 0;
    background: var(--dark-100);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-card {
    background: linear-gradient(145deg, var(--dark-200) 0%, var(--dark-100) 100%);
    border: 2px solid var(--dark-300);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover::before,
.service-card.active::before {
    opacity: 1;
}

.service-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px var(--primary-glow);
}

.service-card.active {
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px var(--primary-glow);
}

.service-card__header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px;
    cursor: pointer;
    transition: background 0.3s;
}

.service-card__header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.service-card__icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px var(--primary-glow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover .service-card__icon {
    transform: scale(1.05);
    box-shadow: 0 12px 32px var(--primary-glow);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--light);
}

.service-card__icon svg {
    width: 28px;
    height: 28px;
    color: var(--light);
}

.service-card__info {
    flex: 1;
}

.service-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    transition: color 0.3s;
}

.service-card:hover .service-card__title {
    color: var(--primary-light);
}

.service-card__count {
    font-size: 14px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 6px;
}

.service-card__count::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}

.service-card__toggle {
    width: 44px;
    height: 44px;
    background: var(--dark-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card__toggle:hover {
    border-color: var(--primary);
}

.service-card__toggle svg {
    width: 22px;
    height: 22px;
    color: var(--gray-light);
    transition: transform 0.4s, color 0.3s;
}

.service-card.active .service-card__toggle svg {
    transform: rotate(180deg);
}

.service-card.active .service-card__toggle {
    background: var(--gradient-main);
    border-color: transparent;
}

.service-card.active .service-card__toggle svg {
    color: var(--light);
}

.service-card__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, transparent 100%);
}

.service-card.active .service-card__body {
    max-height: 5000px;
    /* Increased from 2000px to fit long lists */
}

.service-list {
    padding: 28px 28px 60px 28px;
    /* Increased bottom padding to 60px */
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--dark-200);
    font-size: 14px;
    transition: background 0.2s;
    border-radius: var(--radius-sm);
}

.service-list li:hover {
    background: var(--dark-300);
}

.service-list li span {
    color: var(--light-200);
    flex: 1;
    padding-right: 16px;
}

.service-list li strong {
    color: var(--accent);
    font-weight: 700;
    white-space: nowrap;
    font-size: 15px;
}

.service-card__brands {
    display: flex;
    gap: 10px;
    padding: 0 28px 28px;
    flex-wrap: wrap;
}

.service-card__brands span {
    padding: 8px 16px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    color: var(--light);
}

@media (max-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr;
    }

    .service-card__brands {
        padding: 0 16px 16px;
        gap: 8px;
    }

    .service-card__brands span {
        padding: 6px 12px;
        font-size: 11px;
    }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.about::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1);
    /* No zoom */
    z-index: 0;
}

.about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    /* 95% opacity */
    z-index: 1;
}

.about>* {
    position: relative;
    z-index: 2;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__images {
    position: relative;
}

.about__image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about__image:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.about__image:hover img {
    transform: scale(1.05);
}

.about__image--main {
    aspect-ratio: 4/3;
}

.about__image--secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 200px;
    height: 150px;
    border: 4px solid var(--dark);
    animation: floatSecondary 4s ease-in-out infinite;
}

@keyframes floatSecondary {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.about__experience {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    animation: pulseExperience 3s ease-in-out infinite;
}

@keyframes pulseExperience {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px var(--primary-glow);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px var(--primary-glow), 0 0 80px var(--primary-glow);
    }
}

.about__experience-number {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.about__experience-text {
    font-size: 12px;
    font-weight: 600;
}

.about__text {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

.about__feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--dark-100);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-300);
    transition: var(--transition);
}

.about__feature:hover {
    border-color: var(--primary);
    transform: translateX(8px);
}

.about__feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--light);
}

.about__feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.about__feature p {
    font-size: 14px;
    color: var(--gray-light);
}

@media (max-width: 1024px) {
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__image--secondary {
        right: 20px;
        bottom: -20px;
    }

    .about__experience {
        left: 20px;
        top: 20px;
        width: 100px;
        height: 100px;
    }

    .about__experience-number {
        font-size: 18px;
    }
}

/* ============================================
   PROMO
   ============================================ */
.promo {
    padding: 100px 0;
    background: var(--dark-100);
}

.promo__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.promo-card {
    background: var(--gradient-card);
    border: 1px solid var(--dark-300);
    border-radius: var(--radius-xl);
    padding: 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.promo-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
}

.promo-card--featured {
    background: var(--gradient-main);
    border: none;
}

.promo-card--featured .promo-card__badge {
    background: rgba(0, 0, 0, 0.2);
}

.promo-card--featured .promo-card__desc {
    color: rgba(255, 255, 255, 0.9);
}

.promo-card--featured .promo-card__date {
    color: rgba(255, 255, 255, 0.7);
}

.promo-card--featured .promo-card__btn {
    background: var(--light);
    color: var(--dark);
}

.promo-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 6px 12px;
    background: var(--dark-300);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
}

.promo-card__discount {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 8px;
}

.promo-card__icon {
    width: 64px;
    height: 64px;
    background: var(--dark-300);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.promo-card__icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.promo-card__title {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.promo-card__desc {
    font-size: 14px;
    color: var(--gray-light);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
}

.promo-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-card__date {
    font-size: 12px;
    color: var(--gray);
}

.promo-card__btn {
    padding: 10px 20px;
    background: var(--gradient-main);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    transition: var(--transition);
}

.promo-card__btn:hover {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .promo__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: transparent;
}

.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../assets/images/hero.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px);
    transform: scale(1);
    /* No zoom */
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 15, 0.95);
    /* 95% opacity */
    z-index: 1;
}

.contact>* {
    position: relative;
    z-index: 2;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact__subtitle {
    font-size: 16px;
    color: var(--gray-light);
    margin-bottom: 32px;
}

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

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

.form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-light);
}

.form-input {
    padding: 16px 20px;
    background: var(--dark-100);
    border: 2px solid var(--dark-300);
    border-radius: var(--radius-lg);
    color: var(--light);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder {
    color: var(--gray);
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 20px;
}

.form-select option {
    background: var(--dark-100);
    color: var(--white);
    padding: 12px;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__map {
    flex: 1;
    min-height: 250px;
    background: var(--dark-100);
    border-radius: var(--radius-xl);
    overflow: hidden;
    position: relative;
}

.contact__map--small {
    min-height: 180px;
    max-height: 220px;
}

.contact__map iframe {
    position: absolute;
    inset: 0;
}

.contact__map-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact__map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 24px;
}

.contact__map-placeholder svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.contact__map-placeholder span {
    font-size: 14px;
    color: var(--gray-light);
}

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

.contact__detail {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--dark-100);
    border-radius: var(--radius-lg);
    border: 1px solid var(--dark-300);
    transition: var(--transition);
}

.contact__detail:hover {
    border-color: var(--primary);
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail-icon svg {
    width: 20px;
    height: 20px;
    color: var(--light);
}

.contact__detail-label {
    font-size: 12px;
    color: var(--gray);
    display: block;
}

.contact__detail-value {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-100);
    padding: 32px 0 16px;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.5fr;
    gap: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--dark-300);
    align-items: start;
}

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

.footer__socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.footer__social {
    width: 36px;
    height: 36px;
    background: var(--dark-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer__social svg {
    width: 16px;
    height: 16px;
}

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

.footer__title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 14px;
    color: var(--gray-light);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--primary);
    padding-left: 8px;
}

.footer__contact p {
    font-size: 14px;
    color: var(--gray-light);
    margin-bottom: 8px;
}

.footer__phone {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: var(--light);
    margin-top: 12px;
    transition: var(--transition);
}

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

.footer__bottom {
    padding: 16px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 13px;
    color: var(--gray);
}

.footer__legal {
    font-size: 11px !important;
}

@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer__top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__socials {
        justify-content: center;
    }

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

/* ============================================
   FLOATING CTA
   ============================================ */
.floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 100;
}

.floating-cta__btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    background: var(--gradient-main);
    color: var(--light);
    box-shadow: 0 8px 32px var(--primary-glow);
}

.floating-cta__btn svg {
    width: 28px;
    height: 28px;
    position: relative;
    z-index: 2;
}

.floating-cta__btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px var(--primary-glow);
}

.floating-cta__pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-ring 2s infinite;
    z-index: 1;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta__btn {
        width: 60px;
        height: 60px;
    }
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
}

.modal__content {
    position: relative;
    background: var(--dark-100);
    border: 1px solid var(--dark-300);
    border-radius: var(--radius-2xl);
    padding: 48px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: scale(0.9) translateY(20px);
    transition: var(--transition);
}

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

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--dark-300);
    border-radius: 50%;
    color: var(--gray-light);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal__close:hover {
    background: var(--primary);
    color: var(--light);
}

.modal__icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 12px 32px rgba(34, 197, 94, 0.3);
}

.modal__icon svg {
    width: 40px;
    height: 40px;
    color: var(--light);
}

.modal__title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.modal__text {
    color: var(--gray-light);
}

/* ============================================
   LOGO LIGHT
   ============================================ */
.logo--light .logo__icon {
    background: var(--dark-300);
}

/* ============================================
   SUBTLE ANIMATIONS
   ============================================ */
/* Floating animation for icons */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Pulse animation for CTA buttons */
@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px var(--primary-glow);
    }

    50% {
        box-shadow: 0 4px 40px var(--primary-glow), 0 0 60px var(--primary-glow);
    }
}

/* Apply floating to service icons on hover */
.service-card:hover .service-card__icon {
    animation: float 2s ease-in-out infinite;
}

/* Apply floating to about feature icons */
.about-feature__icon {
    animation: float 3s ease-in-out infinite;
}

.about-feature:nth-child(2) .about-feature__icon {
    animation-delay: 0.5s;
}

.about-feature:nth-child(3) .about-feature__icon {
    animation-delay: 1s;
}

/* Floating call button pulse on hover */
.floating-cta__call:hover {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Hero image subtle zoom */
.hero__bg-img {
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

/* Smooth section fade in */
.section-header,
.service-card,
.promo-card,
.about-feature,
.contact__form-wrapper,
.contact__info {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.section-header.visible,
.service-card.visible,
.promo-card.visible,
.about-feature.visible,
.contact__form-wrapper.visible,
.contact__info.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.service-card:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card:nth-child(4) {
    transition-delay: 0.4s;
}

/* Button hover lift effect */
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--primary-glow);
}

/* Card hover glow */
.service-card:hover,
.promo-card:hover {
    box-shadow: 0 0 40px rgba(198, 93, 0, 0.15);
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 1024px)
   ============================================ */
@media (max-width: 1024px) {

    /* Preloader */
    .preloader__panels {
        padding: 40px 20px;
    }

    .preloader__panel {
        max-width: 220px;
        height: 50vh;
        max-height: 400px;
    }

    .preloader__logo-top {
        width: 280px;
    }

    .preloader__logo-bottom {
        width: 240px;
    }

    /* Header - tablet only hides phone text */
    .header__phone-text {
        display: none;
    }

    .header__phone {
        padding: 10px;
    }

    /* Hero */
    .hero__stats {
        gap: 30px;
    }

    .hero__stat-number {
        font-size: 28px;
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about__image--secondary {
        right: 20px;
        bottom: -30px;
        width: 160px;
        height: 120px;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 48px;
        /* Further decrease height */
    }

    .header {
        height: var(--header-height);
        display: flex;
        align-items: center;
        padding-top: 4px;
        /* Reduced from 8px to raise content */
    }

    .header__inner {
        align-items: center;
        padding-top: 0;
        /* Removed extra padding */
    }

    /* Preloader */
    .preloader__panels {
        flex-direction: column;
        padding: 80px 20px;
        gap: 10px;
    }

    .preloader__panel {
        max-width: 100%;
        width: 80%;
        height: 25vh;
        max-height: 200px;
    }

    .preloader__panel--1 {
        clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
        transform: translateX(-50px) rotate(-2deg);
    }

    .preloader__panel--2 {
        clip-path: polygon(5% 0%, 95% 0%, 100% 100%, 0% 100%);
    }

    .preloader__panel--3 {
        clip-path: polygon(0% 0%, 95% 0%, 100% 100%, 5% 100%);
        transform: translateX(50px) rotate(2deg);
    }

    @keyframes panelSlide1 {
        to {
            opacity: 1;
            transform: translateX(0) rotate(-2deg);
        }
    }

    @keyframes panelSlide3 {
        to {
            opacity: 1;
            transform: translateX(0) rotate(2deg);
        }
    }

    .preloader__logos {
        top: 45%;
        /* Moved up for better mobile positioning */
    }

    .preloader__logo-top {
        width: 275px !important;
        /* Reduced by another 20% from 344px */
        max-width: none !important;
        flex-shrink: 0;
    }

    .preloader__logo-bottom {
        width: 237px !important;
        /* Reduced by another 20% from 296px */
        max-width: none !important;
        flex-shrink: 0;
        margin-top: -5px;
        /* Moved up closer to top logo */
    }

    .preloader__bottom {
        padding: 20px;
    }

    .preloader__bar-container {
        height: 16px;
    }

    /* Header */
    .logo__img {
        height: 44px;
    }

    .header__phone-icon {
        width: 36px;
        height: 36px;
    }

    /* Hero */
    .hero {
        min-height: 100vh;
        padding-top: calc(var(--header-height) + 40px);
    }

    .hero__title {
        font-size: 32px;
        line-height: 1.2;
    }

    .hero__subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .hero__buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero__buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 24px;
        min-height: 48px;
        font-size: 14px;
    }

    .hero__buttons .btn--outline {
        background: rgba(20, 20, 25, 0.9);
        border-color: var(--primary);
    }

    .hero__stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
        justify-content: space-between;
    }

    .hero__stat {
        text-align: center;
        flex: 1;
        min-width: 80px;
    }

    .hero__stat-number {
        font-size: 22px;
    }

    .hero__stat-label {
        font-size: 11px;
        text-align: center;
    }

    .hero__scroll {
        display: none;
    }

    /* Section */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section__title {
        font-size: 28px;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card__header {
        padding: 16px;
    }

    .service-card__icon {
        width: 48px;
        height: 48px;
    }

    .service-card__title {
        font-size: 18px;
    }

    .service-card__brands {
        padding: 0 16px 16px;
        gap: 8px;
    }

    .service-card__brands span {
        padding: 6px 12px;
        font-size: 11px;
    }

    .service-list {
        padding: 16px;
    }

    /* About */
    .about__experience {
        width: 100px;
        height: 100px;
        top: -15px;
        left: -10px;
    }

    .about__experience-number {
        font-size: 18px;
    }

    .about__experience-text {
        font-size: 10px;
    }

    .about__image--secondary {
        width: 140px;
        height: 100px;
        right: 10px;
        bottom: -20px;
    }

    .about-features {
        gap: 20px;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
    }

    /* Promo */
    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-card {
        padding: 24px;
    }

    .promo-card__discount {
        font-size: 36px;
    }

    /* Contact */
    .contact__form {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact__details {
        gap: 16px;
    }

    .contact__map--small {
        min-height: 150px;
        max-height: 180px;
    }

    /* Footer - Compact */
    .footer {
        padding: 30px 0 15px;
    }

    /* Better alignment for hero stats */
    .hero__stats {
        flex-direction: row;
        gap: 16px;
        justify-content: space-between;
    }

    .hero__stat {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero__stat-label {
        margin-top: 4px;
        width: 100%;
        text-align: center;
    }

    /* Footer - Compact */
    .footer {
        padding: 30px 0 15px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer__brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    /* Keep logo hidden on mobile as requested previously? 
       Wait, user said "не удалил лого... и наоборот с каждой строки все сделал давай... в две строки".
       User wants logo BACK? "не удалил лого ... и наоборот". 
       "не удалил лого в мобильной версии" -> "didn't remove logo in mobile version".
       Wait, looking at screenshot 1 (uploaded_image_0_1766695375397.png), the logo IS THERE.
       The user said "не удалил лого ... и наоборот".
       Maybe they mean "You didn't remove the logo as I asked" OR "I want it removed".
       Let's look at previous prompt: "скрин 1 = выровни тут все и из подвала удали логотип в мобильной версии" (remove logo).
       My previous action added `.footer__brand .logo { display: none; }`.
       Now user says "не удалил лого". 
       Maybe my CSS didn't work because of specificity or HTML structure?
       Let's check HTML.
    */
    .footer__brand .logo {
        display: none !important;
    }

    .footer__social {
        justify-content: center;
        gap: 12px;
        margin-bottom: 20px;
    }

    .footer__social a {
        width: 32px;
        height: 32px;
    }

    .footer__links h4 {
        font-size: 14px;
        margin-bottom: 8px;
        color: var(--light);
        opacity: 0.8;
    }

    /* Specific 2-column grid for links as requested */
    .footer__links ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px 24px;
        margin-bottom: 20px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .footer__links li {
        font-size: 13px;
        line-height: 1.4;
        white-space: nowrap;
        color: var(--gray-light);
    }

    .footer__links li:nth-child(odd) {
        text-align: right;
    }

    .footer__links li:nth-child(even) {
        text-align: left;
    }

    .footer__contact {
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 0;
    }

    .footer__contact h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .footer__contact p {
        font-size: 12px;
        line-height: 1.4;
        margin-bottom: 4px;
        color: var(--gray-light);
    }

    .footer__phone {
        display: inline-block;
        font-weight: 700;
        font-size: 16px;
        color: var(--light);
        margin-top: 8px;
    }

    .footer__bottom {
        padding-top: 15px;
        margin-top: 20px;
        flex-direction: column;
        gap: 8px;
    }

    .footer__copyright,
    .footer__legal {
        font-size: 10px;
        line-height: 1.3;
        color: var(--gray);
    }

    /* Floating CTA */
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta__call {
        width: 56px;
        height: 56px;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    /* Preloader */
    .preloader__logo-top {
        width: 160px;
    }

    .preloader__logo-bottom {
        width: 140px;
    }

    .preloader__text {
        font-size: 10px;
    }

    .preloader__percent {
        font-size: 12px;
    }

    /* Hero */
    .hero__title {
        font-size: 26px;
    }

    .hero__tag {
        font-size: 11px;
        padding: 6px 12px;
    }

    /* Services */
    .service-card__icon {
        width: 40px;
        height: 40px;
    }

    .service-card__icon svg {
        width: 20px;
        height: 20px;
    }

    /* About */
    .about__experience {
        width: 80px;
        height: 80px;
    }

    .about__experience-number {
        font-size: 16px;
    }

    .about__image--secondary {
        width: 120px;
        height: 90px;
    }

    /* Promo */
    .promo-card__title {
        font-size: 18px;
    }

    .promo-card__discount {
        font-size: 32px;
    }

    /* Contact */
    .contact__form {
        padding: 20px;
    }

    .contact__title {
        font-size: 20px;
    }
}