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

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

html, body {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
    html, body {
        scroll-behavior: smooth;
    }
}

/* Отступ для фиксированной навигации при плавном скролле */
@supports (scroll-behavior: smooth) {
    html {
        scroll-padding-top: 100px;
    }
}

@font-face {
    font-family: 'VAG World Bold';
    src: url('assets/fonts/vag_world_bold.woff2') format('woff2'),
        url('assets/fonts/vag_world_bold.woff') format('woff'),
        url('assets/fonts/vag_world_bold.ttf') format('truetype'),
        url('assets/fonts/vag_world_bold.eot?#iefix') format('embedded-opentype'),
        url('assets/fonts/vag_world_bold.eot') format('eot'),
        url('assets/fonts/vag_world_bold.svg#vag_world_bold') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'FluffyFont';
    src: url('assets/FluffyFont/fluffyfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    
    --primary-color: #dc2626;
    --primary-dark: #b91c1c;
    --secondary-color: #ef4444;
    --wood-accent: #dc2626;
    --text-dark: #0a0a0a;
    --text-light: #a0a0a0;
    --bg-light: #1a1a1a;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.7);

    --gradient-primary: linear-gradient(135deg, #dc2626 0%, #ef4444 100%);
    --gradient-wood: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    --radius-lg: 0px;
    --radius-md: 0px;
    --radius-sm: 0px;

    --bg-primary: #000000;
    --bg-secondary: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --card-bg: #0a0a0a;
    --navbar-bg: rgba(0, 0, 0, 0.8);
    --footer-bg: #000000;
    --footer-text: #ffffff;
    --border-color: rgba(255, 255, 255, 0.1);
    --light-accent: rgba(220, 38, 38, 0.1);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    overflow-x: clip;
}

.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}

.reading-progress-bar {
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}

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

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
}

body:has(.catalog-page-section) .navbar,
.catalog-page-section ~ .navbar {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5) !important;
    border-bottom: 1px solid var(--border-color) !important;
}

body:has(.catalog-page-section) .navbar,
.catalog-page-section ~ .navbar {
    background: rgba(0, 0, 0, 0.95) !important;
}

body:has(.catalog-page-section) .navbar-bottom,
.catalog-page-section ~ .navbar .navbar-bottom {
    background: transparent !important;
    border-top: 1px solid var(--border-color) !important;
}

body:has(.catalog-page-section) .navbar-bottom,
.catalog-page-section ~ .navbar .navbar-bottom {
    background: transparent !important;
}

body:has(.catalog-page-section) .navbar-top,
.catalog-page-section ~ .navbar .navbar-top {
    border-bottom: 1px solid var(--border-color) !important;
}

body:has(.catalog-page-section) .navbar-top,
.catalog-page-section ~ .navbar .navbar-top {
    border-bottom: 1px solid var(--border-color) !important;
}

body:has(.catalog-page-section) .nav-menu a,
.catalog-page-section ~ .navbar .nav-menu a {
    color: rgba(255, 255, 255, 0.8) !important;
}

body:has(.catalog-page-section) .address-text,
.catalog-page-section ~ .navbar .address-text {
    color: #ffffff !important;
}

body:has(.catalog-page-section) .address-hours,
.catalog-page-section ~ .navbar .address-hours {
    color: rgba(255, 255, 255, 0.5) !important;
}

body:has(.catalog-page-section) .phone-link,
.catalog-page-section ~ .navbar .phone-link {
    color: #ffffff !important;
}

body:has(.catalog-page-section) .phone-label,
.catalog-page-section ~ .navbar .phone-label {
    color: rgba(255, 255, 255, 0.8) !important;
}

body:has(.catalog-page-section) .hamburger span,
.catalog-page-section ~ .navbar .hamburger span {
    background: #ffffff !important;
}

.navbar-top {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    position: relative;
    overflow: visible;
}

.navbar-top-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: visible;
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 0 0 auto;
    overflow: visible;
    padding-left: 8px;
    padding-right: 8px;
    min-width: 72px;
}

/* На десктопе: скрыть hamburger, показать соцсети в navbar-left, скрыть старые абсолютно позиционированные */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }
    
    .navbar-left .navbar-social-icons {
        display: flex;
    }
    
    /* Скрыть старые абсолютно позиционированные соцсети */
    .navbar-top > .navbar-social-icons {
        display: none !important;
    }
}

.navbar-center {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
    position: relative;
}

.navbar-center .logo-img {
    width: 60px;
    height: 60px;
}

.navbar-center .phone-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    line-height: 1;
}

.navbar-center .phone-label {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    line-height: 1.2;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.navbar-center .phone-link {
    margin-top: 0;
    line-height: 1;
}

.navbar.scrolled .navbar-center .phone-label {
    color: var(--text-secondary);
}

.navbar.scrolled .navbar-center .phone-label {
    color: rgba(255, 255, 255, 0.8);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 0 0 auto;
    padding-right: 20px;
}

.navbar-address {
    text-align: right;
    margin-right: 1.5rem;
}

.navbar-social-icons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.navbar-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.7);
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 1px solid var(--border-color);
    background: transparent;
}

.navbar-social-icon:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.navbar.scrolled .navbar-social-icon {
    color: rgba(255, 255, 255, 0.7);
    border-color: var(--border-color);
    background: transparent;
}

.navbar.scrolled .navbar-social-icon:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.navbar.scrolled .navbar-social-icon {
    color: rgba(255, 255, 255, 0.7);
    border-color: var(--border-color);
    background: transparent;
}

.navbar.scrolled .navbar-social-icon:hover {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.address-text {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.5px;
}

.navbar.scrolled .address-text {
    color: #ffffff;
}

.navbar.scrolled .address-text {
    color: #ffffff;
}

.address-hours {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin: 0;
    margin-top: 0.25rem;
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.navbar.scrolled .address-hours {
    color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .address-hours {
    color: rgba(255, 255, 255, 0.5);
}

.navbar-bottom {
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    background: transparent;
    display: block;
}

.navbar.scrolled .navbar-bottom {
    background: transparent;
}

.navbar.scrolled .navbar-bottom {
    background: transparent;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.phone-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    line-height: 1;
}

.phone-label {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    white-space: nowrap;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    margin-bottom: 0;
    line-height: 1.2;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.navbar.scrolled .phone-label {
    color: var(--text-primary);
    text-shadow: none;
}

.navbar.scrolled .phone-label {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.phone-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-weight: 300;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    text-shadow: none;
    margin-top: 0;
    line-height: 1;
}

.navbar.scrolled .phone-link {
    color: #ffffff;
    text-shadow: none;
}

.navbar.scrolled .phone-link {
    color: #ffffff;
    text-shadow: none;
}

.phone-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.phone-text {
    display: inline-block;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
    padding: 18px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    min-width: 60px;
    min-height: 60px;
    overflow: visible;
    box-sizing: border-box;
    position: relative;
    z-index: 1001;
    margin: 0;
    -webkit-tap-highlight-color: transparent;
}

@media (min-width: 769px) {
    .hamburger {
        pointer-events: none;
        opacity: 0.3;
        cursor: not-allowed;
    }
    
    .sidebar-menu,
    .sidebar-overlay {
        display: none !important;
    }
}

.hamburger:hover:not(.active) {
    transform: scale(1.1);
    background: rgba(220, 38, 38, 0.1);
}

.hamburger:active:not(.active) {
    transform: scale(0.95);
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: #ffffff !important;
    transition: all 0.3s ease;
    border-radius: 0;
    display: block;
    position: relative;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    transform-origin: center center;
    margin: 0;
    background: #ffffff !important;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
    background: #ffffff !important;
}

.hamburger.active span:nth-child(3) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    transform-origin: center center;
    margin: 0;
    background: #ffffff !important;
}

.hamburger.active {
    transform: scale(0.9);
    background: rgba(220, 38, 38, 0.2);
    pointer-events: auto;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease;
}

.hamburger.active:active {
    transform: scale(0.8) !important;
    background: rgba(220, 38, 38, 0.3) !important;
}

.hamburger.active:hover {
    transform: scale(0.92);
}

.hamburger.active span {
    background: #ffffff !important;
}

.navbar.scrolled .hamburger span {
    background: #ffffff;
}

.navbar.scrolled .hamburger span {
    background: #ffffff;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    white-space: nowrap;
    line-height: 1;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 0.75rem);
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.75rem);
    height: 1px;
    background: var(--primary-color);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.nav-menu a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu > a:not(:last-child)::after,
.nav-menu > .nav-dropdown:not(:last-child)::after {
    content: '•';
    margin-left: 1.75rem;
    color: rgba(255, 255, 255, 0.2);
    font-weight: 300;
    font-size: 0.7rem;
}

.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.nav-dropdown.active .nav-dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    margin-top: 0.5rem;
    background: var(--bg-secondary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    padding: 0.5rem 0;
    border: 1px solid var(--border-color);
}

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

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    position: relative;
    opacity: 0;
    transform: translateY(-10px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.navbar.scrolled .nav-dropdown-menu a {
    color: var(--text-primary);
}

.nav-dropdown.active .nav-dropdown-menu a {
    animation: slideInMenuItem 0.3s ease forwards;
}

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

.nav-dropdown.active .nav-dropdown-menu a:nth-child(1) {
    animation-delay: 0.05s;
}

.nav-dropdown.active .nav-dropdown-menu a:nth-child(2) {
    animation-delay: 0.1s;
}

.nav-dropdown.active .nav-dropdown-menu a:nth-child(3) {
    animation-delay: 0.15s;
}

.nav-dropdown.active .nav-dropdown-menu a:nth-child(4) {
    animation-delay: 0.2s;
}

.nav-dropdown-menu a::before {
    display: none;
}

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

.nav-dropdown-menu a:hover {
    background: var(--light-accent);
    color: var(--text-primary);
}

.navbar:not(.scrolled) .nav-dropdown-menu {
    background: var(--bg-secondary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.navbar:not(.scrolled) .nav-dropdown-menu {
    background: var(--bg-secondary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-dropdown-menu {
    background: var(--bg-secondary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-color);
}

.navbar.scrolled .nav-dropdown-menu {
    background: var(--bg-secondary);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.navbar.scrolled .nav-menu a:not(:last-child)::after,
.navbar.scrolled .nav-menu > .nav-dropdown:not(:last-child)::after {
    color: var(--text-secondary);
}

.navbar.scrolled .nav-menu a:not(:last-child)::after,
.navbar.scrolled .nav-menu > .nav-dropdown:not(:last-child)::after {
    color: rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .nav-menu a {
    color: var(--text-primary);
}

.navbar.scrolled .nav-menu a {
    color: rgba(255, 255, 255, 0.9);
}

.nav-menu a:hover {
    color: var(--primary-color) !important;
}

.nav-menu a:hover {
    color: var(--primary-color) !important;
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-color) !important;
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--primary-color) !important;
}

.hero {
    height: 100vh;
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    background: #000000;
}

body.video-mode-active .hero {
    height: 100vh;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/images/q0sxJLWvCP-2.png') center center / cover no-repeat;
    background-position: center 20%;
    z-index: 0;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hero-background-video {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    object-fit: cover;
    z-index: 1;
    opacity: 1;
    transition: opacity 0.5s ease;
    pointer-events: none;
    filter: blur(5px) brightness(0.6);
    /* Обеспечиваем отображение poster */
    background-color: #000;
}

/* Poster должен быть виден до загрузки видео */
.hero-background-video:not([src]) {
    background-image: url('assets/poster.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero.video-mode .hero-background-image {
    opacity: 0;
}

.hero.video-mode .hero-background-video {
    opacity: 1;
}

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

.hero.video-mode .hero-overlay {
    background: rgba(0, 0, 0, 0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 2rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 1.2em;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid transparent;
}

.typing-cursor {
    display: inline-block;
    animation: blink 1s infinite;
    font-weight: 300;
    color: var(--primary-color);
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.typing-animation {
    animation: typing 3s steps(40, end) forwards;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

.hero-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
    opacity: 0.6;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 300;
}

.hero.video-mode .hero-subtitle {
    display: none;
}

.hero-countries-icons {
    display: none;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero.video-mode .hero-countries-icons {
    display: flex;
    margin-top: 2rem;
}

.hero-country-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.hero-country-icon:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-countries-icons {
        gap: 15px;
    }
    
    .hero-country-icon {
        width: 48px;
        height: 48px;
    }

    .featured-cars-section .section-title {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .featured-cars-section .section-subtitle {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .featured-car-card {
        opacity: 1 !important;
        transform: none !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    }
}

.hero-divider-line {
    width: 200px;
    height: 4px;
    background: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

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

.hero.video-mode .hero-buttons {
    margin-top: 1rem;
}

.hero-gallery-button {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.hero-features-list {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 2;
    display: none;
    flex-direction: column;
    gap: 8px;
    max-width: 500px;
    text-align: right;
}

.hero.video-mode .hero-features-list {
    display: flex;
}

.hero-feature-item {
    padding: 0;
    margin: 0;
}

.hero-feature-text {
    box-sizing: border-box;
    color: #ffffff;
    direction: ltr;
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    text-align: right;
    text-transform: none;
    unicode-bidi: isolate;
    word-spacing: 0px;
    -webkit-font-smoothing: antialiased;
}

.hero-feature-highlight {
    color: var(--primary-color);
}

.hero-company-text {
    position: absolute;
    top: 200px;
    left: 40px;
    box-sizing: border-box;
    color: #ffffff;
    direction: ltr;
    display: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.4;
    margin: 0;
    padding: 0;
    text-align: left;
    text-transform: none;
    unicode-bidi: isolate;
    word-spacing: 0px;
    -webkit-font-smoothing: antialiased;
    max-width: 500px;
    z-index: 2;
}

.hero.video-mode .hero-company-text {
    display: block;
}

.hero-company-name {
    color: #ffffff;
    font-size: inherit;
    font-weight: inherit;
    text-transform: uppercase;
    letter-spacing: inherit;
}

.hero-text-highlight {
    color: #ffffff;
}

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

    .why-us-header {
        padding: 0 10px;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-company-text {
        font-size: 1.4rem;
        max-width: 300px;
        left: 20px;
        top: 150px !important;
    }
}

@media (max-width: 480px) {
    .hero-company-text {
        font-size: 1.1rem;
        max-width: 250px;
        left: 15px;
        top: 130px !important;
    }
    
    .hero-countries-icons {
        margin-top: 3rem !important;
        margin-bottom: 1rem;
    }
}

@media (max-width: 375px) {
    .hero-company-text {
        font-size: 1rem;
        max-width: 220px;
        left: 15px;
        top: 120px !important;
        line-height: 1.3;
    }
    
    .hero-countries-icons {
        margin-top: 3.5rem !important;
        margin-bottom: 1rem;
        gap: 10px;
    }
    
    .hero-country-icon {
        width: 40px;
        height: 40px;
    }
    
    .scroll-indicator span {
        width: 20px;
        height: 35px;
        border-width: 1.5px;
    }
    
    .scroll-indicator span::before {
        width: 4px;
        height: 7px;
        top: 8px;
    }
    
    .scroll-indicator {
        bottom: 120px !important;
    }
    
    /* Секция новости - центрирование */
    .news-section .container {
        align-items: center;
        text-align: center;
        padding: 0 10px;
    }
    
    .news-section .section-title {
        text-align: center;
        width: 100%;
    }
    
    /* Секция "от заявки до получения" - текст не обрезается */
    .how-we-work-2-text-content {
        padding: 0 10px !important;
        box-sizing: border-box;
    }
    
    .how-we-work-2-title {
        font-size: clamp(1rem, 4vw, 1.5rem) !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        letter-spacing: 2px !important;
    }
    
    .how-we-work-2-description {
        font-size: clamp(0.65rem, 3vw, 1rem) !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        max-width: 100%;
        letter-spacing: 2px !important;
    }
    
    /* Телефон в секции отчетов - не накладывается на 3 пункт */
    .new-section-after-faq .report-item:nth-child(3) {
        position: relative;
        z-index: 1;
        margin-bottom: 250px !important;
    }
    
    .new-section-after-faq .reports-phone-wrapper {
        z-index: 0;
        bottom: -200px !important;
    }
}

.hero.video-mode .hero-title {
    display: none;
}

body.video-mode-active .countries-section {
    display: none;
}

@media (max-width: 1024px) {
    .hero-features-list {
        right: 40px;
        max-width: 400px;
        bottom: 40px;
    }
    
    .hero-feature-text {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .hero-features-list {
        right: 20px;
        max-width: 300px;
        bottom: 30px;
    }
    
    .hero-feature-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-features-list {
        right: 15px;
        max-width: 250px;
        bottom: 20px;
    }
    
    .hero-feature-text {
        font-size: 1rem;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 300px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 2;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.hero.video-mode ~ * .scroll-indicator,
body.video-mode-active .scroll-indicator {
    bottom: 150px;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: white;
    border-radius: 3px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid var(--primary-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: transparent;
    color: var(--primary-color);
}

.btn-primary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.3);
}

.btn-primary,
.featured-news .btn-primary {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--primary-color) !important;
}

.consultation-banner .btn-primary {
    background: #ffffff !important;
    color: #ea3d3f !important;
    border: none !important;
}

.btn-primary:hover,
.featured-news .btn-primary:hover {
    background: var(--primary-color) !important;
    color: #ffffff !important;
}

.hero .btn-primary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2);
}

.hero .btn-primary {
    background: transparent !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.hero .btn-primary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.2) !important;
}

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

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

section {
    padding: 120px 0;
    scroll-margin-top: 80px;
    background: #000000;
}

.section-title {
    text-align: left;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 3rem;
    color: var(--text-primary);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0;
    text-transform: uppercase;
    line-height: 1.2;
    display: inline-block;
}

.section-title::after {
    display: none;
}

.countries-section {
    background: var(--bg-secondary);
    padding-top: 120px;
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    overflow: visible;
}

.country-card {
    background: rgba(10, 14, 26, 0.55);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    flex-direction: column;
    overflow: visible;
    position: relative;
}

.country-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.country-flag {
    font-size: 4rem;
    margin-bottom: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.country-flag img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.country-card h3 {
    font-size: 1.35rem;
    margin-bottom: 14px;
    color: #ffffff;
}

.country-card p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.country-features {
    list-style: none;
    text-align: left;
    margin-bottom: 22px;
    flex-grow: 1;
    overflow: visible;
    position: relative;
}

.country-features li {
    padding: 7px 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.country-card .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
    margin-top: auto;
    align-self: center;
    width: fit-content;
}

.tooltip-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding: 10px;
    background: rgba(220, 38, 38, 0.1);
    border-left: 3px solid var(--primary-color);
    margin-bottom: 15px;
    border-radius: 5px;
    display: none;
}

.tooltip-item {
    position: relative;
    cursor: help;
    transition: color 0.2s ease;
}

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

.tooltip-item::after {
    content: attr(data-tooltip);
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-10px);
    background: rgba(17, 24, 39, 0.98);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    line-height: 1.5;
    white-space: normal;
    width: 300px;
    max-width: calc(100vw - 40px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    text-align: left;
    word-wrap: break-word;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.tooltip-item::before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: rgba(17, 24, 39, 0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1001;
}

.tooltip-item:hover::after,
.tooltip-item:hover::before {
    opacity: 1;
    pointer-events: auto;
}

.country-card:last-child .tooltip-item::after,
.country-card:nth-child(3) .tooltip-item::after {
    left: auto;
    right: 0;
    transform: translateX(0) translateY(-10px);
}

.country-card:last-child .tooltip-item::before,
.country-card:nth-child(3) .tooltip-item::before {
    left: auto;
    right: 20px;
    transform: translateX(0) translateY(-2px);
}

.country-card:first-child .tooltip-item::after {
    left: 0;
    right: auto;
    transform: translateX(0) translateY(-10px);
}

.country-card:first-child .tooltip-item::before {
    left: 20px;
    right: auto;
    transform: translateX(0) translateY(-2px);
}

.tooltip-item::after {
    background: rgba(255, 255, 255, 0.95);
    color: #111827;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.tooltip-item::before {
    border-top-color: rgba(255, 255, 255, 0.95);
}

@media (max-width: 768px) {
    .tooltip-item::after {
        width: 250px;
        font-size: 0.8rem;
        padding: 10px 14px;
    }

    .tooltip-item::after {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-10px) !important;
    }
    
    .tooltip-item::before {
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) translateY(-2px) !important;
    }
}

.consultation-banner {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    max-width: 100vw;
}

.new-section-after-faq {
    background: var(--bg-secondary);
    height: 1000px !important;
    min-height: 1000px !important;
    padding: 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
    margin-top: 120px;
}

.new-section-after-faq .container {
    position: relative;
    padding-left: 0;
    height: 100%;
}

.new-section-after-faq-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    gap: 20px;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
}

.new-section-after-faq .section-title {
    position: relative;
    width: 70%;
    text-align: center;
    color: var(--text-primary);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    line-height: 1.2;
    margin: 0 auto;
    left: 0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 0;
}

.new-section-after-faq .reports-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 0;
    width: 100%;
    padding: 150px 20px 20px 20px;
    margin: 0;
    position: relative;
    z-index: 1;
    align-items: start;
}

.new-section-after-faq .report-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding: 40px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.new-section-after-faq .report-item:nth-child(3),
.new-section-after-faq .report-item:nth-child(4) {
    border-bottom: none;
}

.new-section-after-faq .report-item-number {
    font-size: 6rem;
    font-weight: 300;
    color: rgba(200, 200, 200, 0.5);
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
    min-width: 80px;
}

.new-section-after-faq .report-item-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.new-section-after-faq .report-item-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.new-section-after-faq .report-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.new-section-after-faq .report-item-list li {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.new-section-after-faq .reports-phone-wrapper {
    position: absolute;
    right: 10%;
    bottom: 60px;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    overflow: visible;
    padding-right: 0;
    transform: translateY(30%);
}

.new-section-after-faq .reports-phone-wrapper .phone-mockup {
    position: relative;
    margin: 0;
    width: 280px;
    height: 600px;
    background: #000000;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.new-section-after-faq .reports-phone-wrapper .phone-time {
    font-size: 0.7rem;
    top: 8px;
    left: 20px;
    transform: none;
}

.new-section-after-faq .reports-phone-wrapper .phone-contact-name {
    font-size: 0.8rem;
}

.new-section-after-faq .reports-phone-wrapper .phone-contact-avatar {
    width: 28px;
    height: 28px;
}

.new-section-after-faq .reports-phone-wrapper .phone-message-bubble {
    padding: 8px 12px;
    font-size: 0.75rem;
    max-width: 80%;
}

.new-section-after-faq .reports-phone-wrapper .phone-message-avatar img {
    width: 24px;
    height: 24px;
}

.new-section-after-faq .phone-screen {
    background: #1a1a1a;
}

.new-section-after-faq .phone-header {
    background: #1a1a1a;
    color: #ffffff;
}

.new-section-after-faq .phone-time {
    color: #ffffff;
}

.new-section-after-faq .phone-dynamic-island {
    background: #000;
}

.new-section-after-faq .phone-contact-header {
    background: #2a2a2a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.new-section-after-faq .phone-contact-name {
    color: #ffffff;
}

.new-section-after-faq .phone-messages-container {
    background: #1a1a1a;
}

.new-section-after-faq .phone-message-bubble-green {
    background: #34c759;
    color: #ffffff;
}

.new-section-after-faq .phone-message-bubble-blue {
    background: #007aff;
    color: #ffffff;
}

.new-section-after-faq .phone-file-attachment {
    color: #ffffff;
}

.reports-red {
    color: #ea3d3f;
}

.reports-details {
    width: 70%;
    margin: 40px 0 0 -30%;
    position: relative;
}

.reports-details-title {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 30px 0;
    text-align: left;
}

.reports-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.report-detail-item {
    position: relative;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 25px 30px 25px 30px;
    margin-left: 100px;
    max-width: 600px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.report-detail-number {
    position: absolute;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-primary);
    line-height: 1;
    z-index: 1;
    opacity: 0.25;
    pointer-events: none;
    width: 60px;
    text-align: right;
}

.report-detail-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.report-detail-title {
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 400;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.report-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-detail-list li {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.report-detail-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--text-secondary);
}

.new-section-after-faq .reports-phone-wrapper .phone-photo-item {
    width: 50px;
    height: 50px;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 4px;
}

.new-section-after-faq .reports-phone-wrapper .phone-photos-grid {
    gap: 2px !important;
    margin-top: 8px;
    display: grid !important;
    grid-template-columns: repeat(2, 50px) !important;
    width: auto !important;
}

.new-section-after-faq .reports-phone-wrapper .phone-file-icon {
    width: 18px;
    height: 18px;
}

.new-section-after-faq .reports-phone-wrapper .phone-file-name {
    font-size: 0.7rem;
}

@media (max-width: 768px) {
    .new-section-after-faq {
        height: 1400px !important;
        min-height: 1400px !important;
        margin-top: 80px;
    }
    
    .new-section-after-faq-content {
        justify-content: flex-start;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    
    .new-section-after-faq .reports-phone-wrapper {
        position: absolute;
        right: 50%;
        bottom: -200px;
        transform: translateX(50%);
        left: auto;
    }
    
    .new-section-after-faq .reports-phone-wrapper .phone-mockup {
        width: 280px;
        height: 600px;
    }
    
    .new-section-after-faq .section-title {
        width: 90%;
        margin: 0 auto;
    }
    
    .reports-details {
        width: 90%;
        margin: 30px 0 100px 0;
    }
    
    .report-detail-item {
        padding: 20px 25px 20px 25px;
        margin-left: 85px;
        max-width: 500px;
        gap: 15px;
    }
    
    .report-detail-number {
        font-size: 3rem;
        left: -85px;
        width: 50px;
    }
}

@media (max-width: 480px) {
    /* Картинки в карточках каталога - одинаковый обрез снизу */
    .featured-car-image {
        height: 280px !important;
        object-fit: cover !important;
        object-position: center top !important;
        /* Убираем возможные переопределения */
        max-height: none !important;
        width: auto !important;
    }
    
    /* Секция новости - центрирование */
    .news-section .container {
        align-items: center;
        text-align: center;
        padding: 0 20px;
        box-sizing: border-box;
    }
    
    .news-section .section-title {
        justify-self: center;
    }
    
    /* Секция "от заявки до получения" - текст не обрезается */
    .how-we-work-2-text-content {
        padding: 0 15px !important;
        box-sizing: border-box;
        overflow-wrap: break-word;
        word-wrap: break-word;
        max-width: 100%;
    }
    
    .how-we-work-2-section .container {
        padding: 0 10px !important;
        box-sizing: border-box;
        max-width: 100%;
        overflow: hidden;
    }
    
    /* Телефон в секции отчетов - не накладывается на 3 пункт */
    .new-section-after-faq .report-item:nth-child(3) {
        position: relative;
        z-index: 1;
        margin-bottom: 200px !important;
    }
    
    .new-section-after-faq .reports-phone-wrapper {
        z-index: 0;
        bottom: -150px;
    }
    
    /* Секция "Бесплатная консультация" - анимация на мобильных */
    .consultation-image-wrapper {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .new-section-after-faq {
        height: 1400px !important;
        min-height: 1400px !important;
        margin-top: 60px;
    }
    
    .new-section-after-faq-content {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .new-section-after-faq .reports-phone-wrapper .phone-mockup {
        width: 280px;
        height: 600px;
    }
    
    .reports-details {
        width: 95%;
        margin: 20px 0 80px 0;
    }
    
    .report-detail-item {
        padding: 18px 20px 18px 20px;
        margin-left: 70px;
        max-width: 100%;
        gap: 12px;
    }
    
    .report-detail-number {
        font-size: 2.5rem;
        left: -70px;
        width: 45px;
    }
}

.consultation-banner .container {
    position: relative;
    overflow: visible;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.consultation-content {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 2;
    min-height: 200px;
    height: 100%;
    flex: 1;
}

.consultation-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    padding-right: 40px;
}

/* Начальное состояние для анимации заголовка */
.consultation-banner:not(.animated) .consultation-text h2 {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
}

/* Элегантное раскрытие для заголовка */
@keyframes revealText {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
    }
}

.consultation-banner.animated .consultation-text h2 {
    animation: revealText 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.consultation-text {
    color: white;
}

.consultation-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    display: block;
    overflow: visible;
    z-index: 1;
    background-image: url('assets/images/911.webp');
    background-size: contain;
    background-position: left center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}

.consultation-image-wrapper.animate {
    opacity: 1;
    transform: translateX(0);
}

@media (min-width: 1240px) {
    .consultation-image-wrapper {
        right: calc(-1 * ((100vw - 1200px) / 2));
        width: calc(40% + ((100vw - 1200px) / 2));
    }
}

.consultation-text h2 {
    color: var(--text-primary);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.consultation-text p {
    color: var(--text-secondary);
    font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.consultation-banner .btn-primary {
    background: transparent;
    color: var(--text-primary);
    padding: 12px 30px;
    font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    font-weight: 300;
    white-space: nowrap;
    border: 1px solid var(--border-color);
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.consultation-banner .btn-primary:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-color: var(--text-primary);
    transform: translateY(-2px);
}

.consultation-banner .btn-primary {
    background: transparent !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border-color) !important;
    position: relative;
    overflow: hidden;
}

.consultation-banner .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    transition: left 0.5s ease;
}

.consultation-banner .btn-primary:hover::before {
    left: 100%;
}

.consultation-banner .btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--text-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.consultation-banner .btn-primary:hover::after {
    opacity: 1;
    animation: borderPulse 1.5s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.4);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(220, 38, 38, 0.2);
    }
}

.consultation-banner .btn-primary:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--text-primary) !important;
    border-color: var(--text-primary) !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.advantage-banner {
    background: var(--bg-primary);
    padding: 60px 0;
    position: relative;
    overflow: visible;
    max-width: 100vw;
    clip-path: none;
}

.advantage-banner .container {
    position: relative;
    overflow: visible;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    clip-path: none;
}

.advantage-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.advantage-content {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 10;
    min-height: 200px;
    height: 100%;
    flex: 1;
    justify-content: flex-end;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.advantage-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.advantage-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    padding-left: 40px;
    margin-left: auto;
}

.advantage-text {
    color: var(--text-primary);
}

.advantage-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    z-index: 0;
    padding: 40px;
}

@media (min-width: 1240px) {
    .advantage-image-wrapper {
        left: calc(-1 * ((100vw - 1200px) / 2));
        width: calc(40% + ((100vw - 1200px) / 2));
    }
}

.advantage-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #ea3d3f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -100px;
    overflow: visible;
    z-index: 0;
    max-width: 100%;
}

@media (min-width: 1600px) {
    .advantage-image-wrapper {
        left: max(calc(-1 * ((100vw - 1200px) / 2)), -200px);
        width: min(calc(40% + ((100vw - 1200px) / 2)), 600px);
        max-width: 600px;
    }
    
    .advantage-circle {
        width: clamp(500px, 40vw, 600px);
        height: clamp(500px, 40vw, 600px);
    }
    
    .advantage-image {
        width: 140%;
        height: 140%;
        max-width: 840px;
        max-height: 840px;
        margin-left: clamp(50px, 8vw, 150px);
    }
}

@media (min-width: 1920px) {
    .advantage-image-wrapper {
        left: max(calc(-1 * ((100vw - 1200px) / 2)), -250px);
        width: min(calc(40% + ((100vw - 1200px) / 2)), 700px);
        max-width: 700px;
    }
    
    .advantage-circle {
        width: clamp(500px, 35vw, 700px);
        height: clamp(500px, 35vw, 700px);
    }
    
    .advantage-image {
        max-width: 980px;
        max-height: 980px;
        margin-left: clamp(50px, 10vw, 200px);
    }
}

/* Секция "Партнерам" - адаптация для больших экранов */
@media (min-width: 1600px) {
    .partners-content {
        max-width: 1400px;
        margin: 0 auto;
    }
    
    .partners-image-circle {
        width: clamp(600px, 45vw, 700px);
        height: clamp(600px, 45vw, 700px);
        margin-right: clamp(-350px, -22.5vw, -300px);
    }
    
    .partners-image {
        width: 110%;
        height: 110%;
    }
}

@media (min-width: 1920px) {
    .partners-content {
        max-width: 1600px;
        margin: 0 auto;
    }
    
    .partners-image-circle {
        width: clamp(600px, 40vw, 800px);
        height: clamp(600px, 40vw, 800px);
        margin-right: clamp(-400px, -20vw, -350px);
    }
    
    .partners-image {
        width: 110%;
        height: 110%;
    }
}

/* Секция "От заявки до получения" - адаптация для больших экранов */
@media (min-width: 1600px) {
    .how-we-work-2-image-wrapper {
        left: max(calc(-1 * ((100vw - 1200px) / 2)), -200px);
        width: min(calc(100% + ((100vw - 1200px) / 2)), 800px);
    }
    
    .how-we-work-2-circle {
        width: clamp(500px, 40vw, 600px);
        height: clamp(500px, 40vw, 600px);
    }
    
    .how-we-work-2-image {
        max-width: 840px;
        max-height: 840px;
        margin-left: calc(-450px * (clamp(500px, 40vw, 600px) / 500px));
    }
}

@media (min-width: 1920px) {
    .how-we-work-2-image-wrapper {
        left: max(calc(-1 * ((100vw - 1200px) / 2)), -250px);
        width: min(calc(100% + ((100vw - 1200px) / 2)), 900px);
    }
    
    .how-we-work-2-circle {
        width: clamp(500px, 35vw, 700px);
        height: clamp(500px, 35vw, 700px);
    }
    
    .how-we-work-2-image {
        max-width: 980px;
        max-height: 980px;
        margin-left: calc(-540px * (clamp(500px, 35vw, 700px) / 500px));
    }
}

/* Секция "Бесплатная консультация" - адаптация для больших экранов */
@media (min-width: 1600px) {
    .consultation-banner {
        max-width: 100vw;
    }
    
    .consultation-image-wrapper {
        right: max(calc(-1 * ((100vw - 1200px) / 2)), -200px);
        width: min(calc(40% + ((100vw - 1200px) / 2)), 800px);
        max-width: 600px;
    }
}

@media (min-width: 1920px) {
    .consultation-image-wrapper {
        right: max(calc(-1 * ((100vw - 1200px) / 2)), -250px);
        width: min(calc(40% + ((100vw - 1200px) / 2)), 900px);
        max-width: 700px;
    }
}

.advantage-image {
    width: 140%;
    height: 140%;
    object-fit: contain;
    object-position: left center;
    display: block;
    position: absolute;
    margin-left: 100px;
    z-index: 0;
}

.advantage-text h2 {
    color: var(--text-primary);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.advantage-percent {
    color: #ea3d3f;
}

.advantage-text p {
    color: var(--text-secondary);
    font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@media (max-width: 968px) {
    .advantage-banner {
        display: grid;
        grid-template-rows: auto 1fr;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .advantage-banner .container {
        order: 1;
        transform: translateY(-30px);
    }
    
    .advantage-image-wrapper {
        order: 2;
        position: relative;
        width: 100%;
        height: 300px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow: visible;
        margin-top: 0;
    }
    
    .advantage-content {
        flex-direction: column;
        text-align: center;
    }
    
    .advantage-text-wrapper {
        width: 100%;
        padding-left: 0;
        margin-bottom: 40px;
        margin-top: 0;
    }
    
    .advantage-circle {
        margin-left: -250px;
        width: 400px;
        height: 400px;
    }
    
    .advantage-image {
        margin-left: 50px;
    }
    
    .advantage-text h2 {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .advantage-text p {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
}

@media (max-width: 480px) {
    .advantage-banner {
        padding: 20px 0 40px 0;
    }
    
    .advantage-banner .container {
        transform: translateY(-30px);
    }
    
    .advantage-circle {
        margin-left: -200px;
        width: 350px;
        height: 350px;
        box-shadow: none;
        filter: none;
    }
    
    .advantage-image {
        margin-left: 30px;
    }
    
    .advantage-text-wrapper {
        margin-top: 0;
        padding-left: 15px;
        margin-bottom: 40px;
    }
    
    .advantage-image-wrapper {
        margin-top: 20px;
    }
    
    .advantage-text h2 {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .advantage-text p {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
}

.k5-circle-section {
    padding: 80px 0 180px 0;
    position: relative;
    overflow: visible;
    background: var(--bg-primary);
    min-height: 400px;
}

.k5-circle-section .container {
    position: relative;
    overflow: visible;
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

.k5-content {
    display: flex;
    align-items: stretch;
    position: relative;
    z-index: 10;
    min-height: 200px;
    height: 100%;
    flex: 1;
    justify-content: flex-start;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.k5-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.k5-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 50%;
    padding-right: 40px;
}

.k5-text {
    color: var(--text-primary);
}

.k5-text h2 {
    color: var(--text-primary);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.k5-dream-text {
    color: #ea3d3f;
}

.k5-text p {
    color: var(--text-secondary);
    font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    line-height: 1.2;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.k5-circle-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
    z-index: 0;
    padding: 40px;
}

@media (min-width: 1240px) {
    .k5-circle-wrapper {
        right: calc(-1 * ((100vw - 1200px) / 2));
        width: calc(40% + ((100vw - 1200px) / 2));
    }
}

.k5-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #ea3d3f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-right: -250px;
    overflow: visible;
    z-index: 0;
}

.k5-image {
    width: 140%;
    height: 140%;
    object-fit: contain;
    object-position: left center;
    display: block;
    position: absolute;
    transform: scaleX(-1);
    margin-left: -250px;
    top: 0px;
    z-index: 0;
}

@media (max-width: 968px) {
    .k5-content {
        flex-direction: column;
        text-align: center;
    }
    
    .k5-text-wrapper {
        width: 100%;
        padding-right: 0;
        order: 1;
    }
    
    .k5-text h2 {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .k5-text p {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
    
    .k5-circle-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        overflow: visible;
    }
    
    .k5-circle {
        width: 400px;
        height: 400px;
        margin-right: -400px;
        position: relative;
    }
}

@media (max-width: 480px) {
    .k5-circle-section {
        padding: 40px 0;
    }
    
    .k5-text h2 {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .k5-text p {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
    
    .k5-circle {
        width: 350px;
        height: 350px;
        margin-right: -350px;
    }
}

.new-section {
    background: var(--bg-secondary);
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.new-section .container {
    position: relative;
    padding-left: 0;
}

.new-section-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    gap: 20px;
    position: relative;
}

.parallelogram-indicators {
    display: flex;
    gap: 12px;
    position: relative;
    left: -80px;
    margin-bottom: 10px;
    justify-content: center;
    width: 50%;
}

.new-section-sound-control {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    left: -80px;
    margin-top: 15px;
    width: 50%;
    justify-content: center;
}

.sound-label {
    font-size: 1rem;
    color: var(--text-secondary);
    text-transform: lowercase;
    letter-spacing: 1px;
}

.parallelogram-sound-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
    padding: 0;
    width: auto;
    height: auto;
}

.parallelogram-sound-btn:hover {
    color: var(--text-primary);
    transform: scale(1.1);
}

.parallelogram-sound-btn .sound-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.parallelogram-sound-btn.sound-enabled .sound-off {
    display: none;
}

.parallelogram-sound-btn.sound-enabled .sound-on {
    display: block !important;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator-dot.active {
    background: #ffffff;
    transform: scale(1.3);
}

.indicator-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.new-section-text {
    position: relative;
    width: 50%;
    text-align: left;
    color: var(--text-primary);
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    line-height: 1.2;
    margin: 0;
    left: -80px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.new-section-parallelograms {
    position: absolute;
    right: -20px;
    top: -100px;
    bottom: -100px;
    width: 50%;
    height: calc(100% + 200px);
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    padding-right: 40px;
    z-index: 1;
}

.parallelogram {
    width: 200px;
    height: 100%;
    min-height: 100%;
    background: #000000;
    border: 1px solid #000000;
    transform: skew(-20deg);
    position: relative;
    flex-shrink: 0;
    margin-left: -50px;
    align-self: stretch;
    cursor: pointer;
    z-index: 1;
    transition: transform 0.3s ease, z-index 0.3s ease, filter 0.3s ease;
    transform-origin: right center;
    overflow: hidden;
}

.parallelogram:first-child {
    margin-left: 0;
}

.parallelogram.active {
    z-index: 10;
    transform: skew(-20deg) scale(1.5);
    transform-origin: right center;
    filter: none;
}

.parallelogram:not(.active) {
    filter: blur(2px) grayscale(100%);
}

.parallelogram video {
    width: 180%;
    height: 140%;
    object-fit: cover;
    object-position: center;
    transform: skew(20deg);
    transform-origin: center;
    display: block;
    margin-left: -30%;
    margin-top: -20%;
    transition: margin-left 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.parallelogram.active video {
    width: 170%;
    height: 130%;
    margin-left: -30%;
}

.parallelogram:not(.active) video {
    width: 220%;
    height: 160%;
    margin-left: -60%;
}

@media (max-width: 968px) {
    .consultation-content {
        flex-direction: column;
        text-align: center;
    }
    
    .consultation-text-wrapper {
        width: 100%;
        padding-right: 0;
        order: 1;
    }
    
    .consultation-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        order: 2;
        /* Убираем анимацию на мобильных */
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .consultation-text h2 {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .consultation-text p {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
    
    .consultation-banner .btn-primary {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .consultation-banner {
        padding: 40px 0;
    }
    
    .consultation-text h2 {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .consultation-text p {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
}

.catalog-section {
    display: none;
    background: var(--bg-primary);
    padding: 100px 0;
}

.section-subtitle {
    text-align: left;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
    line-height: 1.8;
    letter-spacing: 0.5px;
    max-width: 600px;
}

.cars-carousel-container {
    position: relative;
    width: 100%;
    max-width: 2400px;
    margin: 0 auto;
    padding: 20px 0;
}

.cars-carousel-box {
    overflow-x: hidden;
    overflow-y: visible;
    border-radius: 15px;
    position: relative;
    padding-top: 80px;
    padding-bottom: 40px;
    margin: 0 auto;
    width: 100%;
}

.cars-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
    padding-right: 0;
}

.car-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 38, 38, 0.9);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-nav:hover {
    background: rgba(220, 38, 38, 1);
    transform: translateY(-50%) scale(1.1);
}

.car-nav-left {
    left: -70px;
}

.car-nav-right {
    right: -70px;
}

.car-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.car-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(220, 38, 38, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.car-dot.active {
    background: var(--gradient-primary);
    transform: scale(1.3);
}

.floating-marquee-1 {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    
    margin-top: -100px;
    margin-bottom: -10px;
    display: flex;
}

.floating-marquee-content-1 {
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
    
    animation: marqueeScroll1 40s linear infinite;
    
    padding: 40px 0 25px 0;
}

.floating-marquee-content-1 span {
    
    color: rgba(17, 24, 39, 0.3);
    
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 10px;
    
    padding: 0 30px;
}

.floating-marquee-content-1 span {
    color: rgba(255, 255, 255, 0.5);
}

@keyframes marqueeScroll1 {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.floating-marquee-2 {
    width: 100%;
    overflow: hidden;
    background: transparent;
    padding: 0;
    margin: 0;
    position: relative;
    
    margin-top: -70px;
    margin-bottom: 0px;
    display: flex;
}

.floating-marquee-content-2 {
    display: flex;
    white-space: nowrap;
    flex-shrink: 0;
    
    animation: marqueeScroll2 40s linear infinite;
    
    padding: 40px 0 25px 0;
}

.floating-marquee-content-2 span {
    
    color: rgba(17, 24, 39, 0.3);
    
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 10px;
    
    padding: 0 40px;
}

.floating-marquee-content-2 span {
    color: rgba(255, 255, 255, 0.5);
}

@keyframes marqueeScroll2 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

.car-card {
    background: var(--card-bg);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease;
    width: 340px;
    min-height: 500px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.car-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--text-light);
}

.car-image-real {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: center center;
    background: var(--bg-light);
    border-radius: 0;
}

.car-image-real.vertical {
    object-position: center center;
}

.car-photos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
    width: 100%;
    height: 240px;
    background: var(--bg-light);
    overflow: hidden;
}

.car-grid-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    background: var(--bg-light);
}

.car-grid-placeholder {
    width: 100%;
    height: 100%;
    background: var(--bg-light);
}

.car-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-top: 1px solid var(--border-color);
}

.car-title-wrapper {
    margin-bottom: 20px;
}

.car-brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.car-model {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.car-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.3;
}

.car-specs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.car-specs-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
    justify-content: space-between;
}

.car-spec-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    flex: 1;
}

.car-spec-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    max-width: 24px;
    max-height: 24px;
    flex-shrink: 0;
    object-fit: contain;
    filter: opacity(0.6) grayscale(100%);
    display: block;
    margin: 0;
    padding: 0;
}

.car-spec-item img[src="assets/icons/icons8-calendar-96.png"] {
    width: 26px;
    height: 26px;
    min-width: 26px;
    min-height: 26px;
    max-width: 26px;
    max-height: 26px;
}

.car-spec-icon {
    filter: brightness(0) invert(0.6) opacity(0.8);
}

.car-spec-item img[src="assets/icons/icons8-calendar-96.png"] {
    filter: brightness(0) invert(0.6) opacity(0.8);
}

.car-spec-divider-vertical {
    width: 1px;
    height: 40px;
    background: var(--text-secondary);
    opacity: 0.2;
    margin: 0 15px;
    flex-shrink: 0;
}

.car-spec-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-align: center;
}

.car-year {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.car-mileage {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.forwarded-badge {
    background: var(--primary-color) !important;
    color: white !important;
    font-weight: 500;
}

.forwarded-info {
    margin-top: 20px;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.forwarded-info h3 {
    margin: 0 0 10px 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.forwarded-info p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.car-photos-gallery {
    position: relative;
}

.photo-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
    justify-content: center;
}

.thumbnail {
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail:hover {
    border-color: var(--primary-color);
    opacity: 0.8;
}

.car-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    margin-top: auto;
    white-space: nowrap;
    min-width: fit-content;
}

.car-added-date {
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.car-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.car-features li {
    padding: 4px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.car-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
}

.car-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.car-actions .btn {
    flex: 1;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.9rem;
}

.car-actions .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

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

.car-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--primary-color);
    border-radius: 0;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.car-details-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.car-details-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.car-details-btn:hover .car-details-arrow {
    transform: translateX(4px);
}

.news-section {
    background: var(--bg-primary);
    padding: 120px 0;
}

.empty-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.why-us-section {
    min-height: auto;
    padding: 120px 0 80px 0;
    background: #000000;
    position: relative;
    overflow: visible;
    margin-bottom: 0;
}

.why-us-section .container {
    position: relative;
    overflow: visible;
}

.why-us-top-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 10;
}

.why-us-header {
    text-align: left;
    position: relative;
    z-index: 2;
    margin-bottom: 4rem;
}

.why-us-header .section-title {
    margin-bottom: 0;
}

.why-us-advantages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem 2rem;
    row-gap: 3rem;
    position: relative;
    z-index: 2;
}

.why-us-advantage-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    padding: 1.5rem;
    padding-top: 3rem;
    border-radius: 0;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.why-us-advantage-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.why-us-advantage-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.why-us-advantage-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(234, 61, 63, 0.5);
    font-family: 'FluffyFont', 'Arial', sans-serif;
    line-height: 1;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.why-us-advantage-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid var(--border-color);
    clip-path: inset(0 0 50% 0);
    pointer-events: none;
}

.why-us-advantage-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    width: 100%;
}

.why-us-advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    text-align: center;
}

.why-us-advantage-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.why-us-circle-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    overflow: visible;
    z-index: 1;
    pointer-events: none;
    flex-shrink: 0;
}

@media (min-width: 1240px) {
    .why-us-circle-wrapper {
        margin-right: calc(-1 * ((100vw - 1200px) / 2));
    }
}

.why-us-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #ea3d3f;
    position: relative;
    margin-right: -200px;
    margin-top: -50px;
    overflow: visible;
    z-index: 0;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.why-us-circle.animate-in {
    opacity: 1;
    transform: scale(1);
}

.why-us-question-mark {
    font-size: 8rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    padding-top: 0;
    margin-top: 0;
    flex-shrink: 0;
    white-space: nowrap;
    align-self: stretch;
}

.why-us-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    margin-bottom: 0;
    padding-bottom: 0;
}

.why-us-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-right: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
}

.why-us-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s ease, box-shadow 0.3s ease, opacity 0.6s ease;
    min-height: 300px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-100px);
    overflow: hidden;
    position: relative;
}

.why-us-card::after {
    display: none;
}

.why-us-card::before {
    display: none;
}

.why-us-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.why-us-card.animate-out {
    opacity: 0;
    transform: translateX(-100px);
}

.why-us-card.animate-in:hover {
    transform: translateX(0) translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.why-us-card-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
    align-items: center;
    position: relative;
    z-index: 2;
}

.why-us-card-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1; 
}

.why-us-card-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1.3;
}

.why-us-card-text p {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.why-us-card-image {
    position: relative;
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
}

.why-us-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-us-card-bg-image {
    position: absolute;
    top: 65%;
    right: -240px;
    transform: translateY(-50%) scaleX(-1); 
    width: 90%;
    height: 750px;
    object-fit: contain;
    object-position: center;
    opacity: 0.7;
    z-index: 0; 
    pointer-events: none;
    border-radius: 0 20px 20px 0;
    overflow: hidden;
    display: none;
}

.why-us-card-bg-image {
    opacity: 0.7;
}

.why-us-card:nth-child(1) {
    background-image: url('auto/Без названия (1).webp');
}

.why-us-card:nth-child(2) {
    background-image: url('auto/Без названия (1) (1).webp');
}

.why-us-card:nth-child(3) {
    background-image: url('auto/Без названия (1) (2).webp');
}

.why-us-card:nth-child(4) {
    background-image: url('auto/Без названия (1) (8).webp');
}

.why-us-card:nth-child(5) {
    background-image: url('auto/Без названия (1) (9).webp');
}

.why-us-card:nth-child(6) {
    background-image: url('auto/Без названия (1) (10).webp');
}

.why-us-card:nth-child(7) {
    background-image: url('auto/Без названия (1).webp');
}

.why-us-card:nth-child(8) {
    background-image: url('auto/Без названия (1) (1).webp');
}

.why-us-card-number {
    position: absolute;
    top: -100px;
    right: 0;
    bottom: 0;
    font-size: 24rem;
    font-weight: normal;
    color: rgba(255, 255, 255, 0.3);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
    pointer-events: none;
    font-family: 'FluffyFont', 'Arial', sans-serif;
    line-height: 1;
    z-index: 1; 
}

.why-us-card-number {
    color: rgba(255, 255, 255, 0.3);
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.4);
}

.why-us-card:nth-child(2) .why-us-card-number {
    top: -72px;
}

.why-us-card:nth-child(1) .why-us-card-number {
    top: -59px;
}

.why-us-card:nth-child(3) .why-us-card-number {
    top: -87px;
}

.why-us-card:nth-child(4) .why-us-card-number {
    top: -87px;
}

.why-us-card:nth-child(5) .why-us-card-number,
.why-us-card:nth-child(6) .why-us-card-number {
    top: -87px;
}

.why-us-card:nth-child(7) .why-us-card-number {
    top: -59px;
}

.why-us-card:nth-child(8) .why-us-card-number {
    top: -74px;
}

.why-us-title {
    position: sticky;
    top: 20vh;
    transform: none;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    align-self: start;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
}

.why-us-title-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 0.3em;
    position: relative;
}

.why-us-title-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
    position: relative;
}

.why-us-title-why {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    white-space: nowrap;
    text-align: left;
}

.why-us-title-we {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    margin-left: 0;
    margin-top: 0;
    white-space: nowrap;
    position: relative;
    text-align: left;
    align-self: flex-end;
}

.why-us-title-question {
    font-size: 12rem;
    font-weight: 900;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-block;
    margin-left: 0.2em;
    vertical-align: top;
    margin-top: -0.3em;
    position: relative;
    top: -0.2em;
}

.why-us-countries-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.why-us-country-icon {
    width: 64px;
    height: 64px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.why-us-country-icon:hover {
    transform: scale(1.1);
}

.why-us-description {
    margin-top: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 500px;
    text-align: center;
    font-weight: 400;
    transform: translateX(-6rem);
}

.featured-cars-section {
    padding: 80px 0 100px 0;
    background: var(--bg-primary);
        margin-top: 0;
    }
    
.featured-cars-section .section-title {
    text-align: center;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.featured-cars-section .section-title.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.featured-cars-section .section-subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition-delay: 0.2s;
}

.featured-cars-section .section-subtitle.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.featured-cars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
}

.featured-car-card {
    background: var(--card-bg);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.featured-car-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.featured-car-card.animate-in:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.15);
}

.featured-car-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #000000;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 400;
    z-index: 2;
    box-shadow: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid #ffffff;
}

.featured-car-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-radius: 0;
    transition: transform 0.3s ease;
    background: var(--bg-secondary);
    filter: grayscale(20%) brightness(0.9);
}

.featured-car-card:hover .featured-car-image {
    transform: scale(1.02);
}

.featured-car-content {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    text-align: left;
    flex-grow: 1;
    background: #0a0a0a;
}

.featured-car-title {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-cars-grid .featured-car-card:nth-child(4) .featured-car-title {
    white-space: nowrap;
    overflow: visible;
}

.featured-car-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.featured-car-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    margin: 8px 0;
}

.featured-car-stat {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.featured-car-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.featured-car-btn {
    background: transparent;
    color: var(--primary-color);
    padding: 14px 28px;
    border-radius: 0;
    border: 1px solid var(--primary-color);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: none;
    width: 100%;
    justify-content: center;
    margin-top: auto;
    white-space: nowrap;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.featured-car-btn:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.featured-car-btn .btn-arrow {
    transition: transform 0.3s ease;
}

.featured-car-btn:hover .btn-arrow {
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .featured-cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 640px) {
    .featured-cars-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

.featured-news {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                0 0 0 2px rgba(220, 38, 38, 0.2),
                0 0 20px rgba(220, 38, 38, 0.15),
                0 0 40px rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
}

.featured-news:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 
                0 0 0 2px rgba(220, 38, 38, 0.4),
                0 0 30px rgba(220, 38, 38, 0.25),
                0 0 60px rgba(220, 38, 38, 0.15);
    border-color: rgba(220, 38, 38, 0.5);
}

.featured-news {
    background: #0a0e1a;
}

.news-marquee {
    width: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
    padding: 20px 0;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.news-marquee {
    background: var(--bg-secondary);
}

.news-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: newsMarqueeScroll 20s linear infinite;
}

.news-marquee-content span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    padding: 0 60px;
    text-transform: uppercase;
}

.news-marquee-content span {
    color: rgba(255, 255, 255, 0.3);
}

@keyframes newsMarqueeScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .news-marquee {
        padding: 15px 0;
        margin-top: 60px;
    }
    
    .news-marquee-content span {
        font-size: 18px;
        letter-spacing: 6px;
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .news-marquee {
        padding: 12px 0;
        margin-top: 60px;
    }
    
    .news-marquee-content span {
        font-size: 16px;
        letter-spacing: 4px;
        padding: 0 30px;
    }
}

.reports-marquee {
    width: 100%;
    overflow: hidden;
    background: var(--bg-secondary);
    padding: 20px 0;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reports-marquee {
    background: var(--bg-secondary);
}

.reports-marquee-content {
    display: flex;
    white-space: nowrap;
    animation: newsMarqueeScroll 20s linear infinite;
}

.reports-marquee-content span {
    color: rgba(255, 255, 255, 0.3);
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    padding: 0 60px;
    text-transform: uppercase;
}

.reports-marquee-content span {
    color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .reports-marquee {
        padding: 15px 0;
        margin-top: 15px;
    }
    
    .reports-marquee-content span {
        font-size: 18px;
        letter-spacing: 6px;
        padding: 0 40px;
    }
}

@media (max-width: 480px) {
    .reports-marquee {
        padding: 12px 0;
        margin-top: 15px;
    }
    
    .reports-marquee-content span {
        font-size: 16px;
        letter-spacing: 4px;
        padding: 0 30px;
    }
}

.news-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-left: 0;
    position: relative;
    margin-top: 0;
    margin-bottom: -30px;
    grid-column: 1 / -1;
}

.news-section .container {
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.news-section .section-title {
    grid-column: 1;
    text-align: center;
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
    justify-self: center;
}

.news-left {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: fit-content;
    min-height: 100vh;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

.news-main-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 2rem;
    width: 100%;
    margin-top: -0.5rem;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.news-main-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.news-text-content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
    opacity: 1;
    transform: translateX(0);
    transition: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-text-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.news-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.news-red {
    color: var(--primary-color);
}

.news-video {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border: 1px solid var(--border-color);
}

.news-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    border-radius: 15px;
}

.news-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    letter-spacing: 0.3px;
}

.news-info {
    display: flex;
    gap: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.news-date {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
}

.news-sidebar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
    margin-top: -10rem;
}

.news-sidebar-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.news-small-card {
    background: var(--bg-secondary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: none;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, border-color 0.3s ease, opacity 0.6s ease;
    cursor: pointer;
    opacity: 0;
    transform: translateX(100px);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    position: relative;
}

.news-small-card.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.news-small-card.animate-in:hover {
    transform: translateY(-3px);
    border-color: var(--primary-color);
}

.news-small-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    border-radius: 15px 15px 0 0;
}

.news-small-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px 15px 0 0;
}

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

.news-small-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 60%, rgba(0, 0, 0, 0.3) 75%, rgba(0, 0, 0, 0.6) 85%, rgba(0, 0, 0, 0.85) 92%, rgba(0, 0, 0, 0.95) 100%);
    pointer-events: none;
}

.news-small-card-content {
    padding: 1.5rem;
    padding-top: 0;
    padding-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: transparent;
    justify-content: flex-end;
}

.news-small-title {
    font-size: 0.95rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.news-small-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
}

.news-small-card-half {
    width: 100%;
}

.featured-news-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-pin-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(95%) saturate(7500%) hue-rotate(345deg) brightness(0.9);
}

.featured-news-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.featured-news-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0 0 25px 0;
}

.featured-news-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    border: none;
    margin-right: 8px;
    vertical-align: middle;
}

.icon-badge img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.featured-news-video {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.featured-news-video video {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 968px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-left: 20px;
    }
    
    .news-main-card {
        margin-left: 0;
        padding-left: 0;
    }
    
    .news-main-text-wrapper {
        margin-left: 0;
        padding-left: 0;
    }
    
    .news-main-title {
        font-size: 1.6rem;
    }
    
    .news-main-description {
        font-size: 1rem;
    }
    
    .news-sidebar-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .news-small-card-image {
        height: 220px;
    }
    
    .news-small-title {
        font-size: 1rem;
        color: white;
    }
    
    .featured-news-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-news-title {
        font-size: 1.6rem;
    }
    
    .featured-news-description {
        font-size: 1rem;
    }
    
    .featured-news {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .news-small-card-image {
        height: 200px;
    }
    
    .news-small-card-content {
        padding: 1.2rem;
        padding-top: 0;
    }
    
    .news-small-title {
        font-size: 0.9rem;
        color: white;
    }
    
    .news-section .container {
        padding-left: 20px;
    }
    
    .news-layout {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 0;
    }
    
    .news-left {
        position: relative;
        top: 0;
        min-height: 300px;
    }
    
    .news-title {
        font-size: 1.8rem;
    }
    
    .news-video {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .featured-news {
        padding: 20px 15px;
    }
    
    .featured-news-title {
        font-size: 1.3rem;
    }
    
    .featured-news-info {
        flex-direction: column;
        gap: 10px;
    }
}

.news-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 40px;
    position: relative;
}

.news-container {
    flex: 1;
    position: relative;
}

.news-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    scrollbar-width: none; 
    -ms-overflow-style: none; 
}

.news-grid::-webkit-scrollbar {
    display: none; 
}

.news-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex: 0 0 500px; 
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    padding: 25px;
    border: 2px solid rgba(220, 38, 38, 0.1);
}

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

.news-content {
    display: flex;
    flex-direction: column;
}

.news-card .news-content {
    padding: 0;
}

.news-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.news-meta {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: auto;
    padding-top: 20px;
    flex-wrap: wrap;
}

.news-meta .btn {
    margin: 0;
    padding: 10px 20px;
    text-decoration: none;
}

.news-date {
    color: #ffffff;
    font-weight: 500;
}

.news-image {
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.news-image img,
.news-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content .featured-badge {
    margin-bottom: 15px;
}

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

.news-nav {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow);
    flex-shrink: 0;
}

.news-nav:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.news-nav:active {
    transform: scale(0.95);
}

.news-nav:disabled {
    background: var(--text-light);
    cursor: not-allowed;
    opacity: 0.5;
}

.news-nav:disabled:hover {
    transform: scale(1);
}

@media (max-width: 768px) {
    .news-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .news-slider-wrapper {
        gap: 10px;
    }
    
    .news-card {
        flex: 0 0 calc(100vw - 100px);
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .news-title {
        font-size: 1.3rem;
    }
    
    .news-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .news-card {
        padding: 20px 15px;
    }
    
    .news-title {
        font-size: 1.1rem;
    }
    
    .news-meta {
        flex-direction: column;
        gap: 10px;
    }
}

.file-label {
    display: block;
    padding: 15px 20px;
    border: 2px dashed var(--primary-color);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
    margin-bottom: 10px;
}

.file-label:hover {
    background: var(--primary-color);
    color: white;
}

.file-text {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.file-label:hover .file-text {
    color: white;
}

.image-preview {
    position: relative;
    margin-top: 15px;
    text-align: center;
}

.image-preview img {
    max-width: 100%;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.btn-remove-image {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-remove-image:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.car-details-modal {
    max-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
}

.car-details-content {
    display: flex;
    height: 100vh;
    width: 100vw;
    position: relative;
    align-items: center;
    justify-content: center;
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.car-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 2px solid var(--primary-color);
    flex-shrink: 0;
}

.car-details-header h2 {
    color: var(--text-primary);
    font-size: 1.8rem;
    margin: 0;
}

.car-details-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.car-photos-gallery {
    position: relative;
    width: 90%;
    height: 90%;
    max-width: 1400px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    opacity: 1;
    transform: none;
}

.photo-main-container {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    max-height: 70vh;
    flex-shrink: 0;
}

.main-photo {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.photo-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.photo-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.prev-photo {
    left: 20px;
}

.next-photo {
    right: 20px;
}

.photo-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 15px;
    flex-wrap: wrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 10px 0;
    flex-shrink: 0;
}

.photo-thumbnails .thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.photo-thumbnails .thumbnail:hover {
    opacity: 1;
    transform: scale(1.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.photo-thumbnails .thumbnail.active {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.photo-counter {
    position: relative;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 20px;
    color: white;
    font-weight: 600;
    z-index: 10;
    flex-shrink: 0;
}

.photo-close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.photo-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.car-photos-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.no-photos {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-secondary);
}

.no-photos .car-image {
    font-size: 6rem;
    margin-bottom: 20px;
}

.no-photos p {
    font-size: 1.2rem;
}

.car-image-large {
    width: 100%;
    height: 300px;
    background: var(--bg-light);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.main-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 15px;
}

.photo-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.car-details-specs {
    background: var(--bg-secondary);
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--bg-light);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--text-primary);
}

.spec-value {
    color: var(--text-secondary);
    font-weight: 500;
}

.car-details-features {
    margin-bottom: 20px;
}

.car-details-features h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.car-details-features ul {
    list-style: none;
    padding: 0;
}

.car-details-features li {
    background: var(--bg-secondary);
    padding: 10px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    color: var(--text-secondary);
    border-left: 4px solid var(--primary-color);
}

.car-details-description {
    margin-bottom: 20px;
}

.car-details-description h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.car-details-description p {
    color: var(--text-secondary);
    line-height: 1.6;
    background: var(--bg-secondary);
    padding: 15px;
    border-radius: 10px;
}

.car-details-actions {
    margin-top: 20px;
    text-align: center;
}

.car-details-actions .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.car-details-info h2 {
    color: var(--text-primary);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.car-details-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

.meta-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 15px;
    background: var(--bg-light);
    border-radius: 8px;
}

.meta-label {
    font-weight: 600;
    color: var(--text-secondary);
}

.car-details-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
    padding: 15px;
    background: var(--bg-light);
    border-radius: 10px;
}

.car-details-features {
    margin-bottom: 25px;
}

.car-details-features h3 {
    color: var(--text-primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.car-details-features ul {
    list-style: none;
    padding: 0;
}

.car-details-features li {
    padding: 8px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--bg-light);
}

.car-details-features li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 8px;
}

.car-details-description {
    margin-bottom: 25px;
}

.car-details-description h3 {
    color: var(--text-primary);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.car-details-description p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.car-details-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.car-details-actions .btn {
    flex: 1;
    min-width: 150px;
    text-align: center;
}

@media (max-width: 768px) {
    .car-details-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .car-details-image {
        position: static;
    }
    
    .car-image-large {
        height: 200px;
        font-size: 3rem;
    }
    
    .car-details-meta {
        grid-template-columns: 1fr;
    }
    
    .car-details-actions {
        flex-direction: column;
    }
    
    .car-details-actions .btn {
        flex: none;
    }
}

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

.service-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.2), 0 0 0 1px rgba(220, 38, 38, 0.1);
    border-color: rgba(220, 38, 38, 0.3);
}

.service-card:hover::before {
    width: 400px;
    height: 400px;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.about-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.about-section .section-title {
    color: var(--white);
}

.about-section .section-title::after {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 100%);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.advantages {
    display: grid;
    gap: 25px;
}

.advantage-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.advantage-icon {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.advantage-item p {
    opacity: 0.9;
}

.reviews-section {
    background: var(--bg-primary);
    padding: 80px 0;
}

.reviews-tabs {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 40px 0 30px 0;
}

.review-tab {
    background: var(--card-bg);
    border: 2px solid transparent;
    color: var(--text-primary);
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-tab span {
    font-size: 1.3rem;
}

.review-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.2);
}

.review-tab.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.reviews-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.reviews-box {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    background: var(--card-bg);
    border: 1px solid rgba(220, 38, 38, 0.1);
}

.reviews-box::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    animation: reviewProgress 5s linear infinite;
    z-index: 10;
}

.reviews-box:hover::after {
    animation-play-state: paused;
}

@keyframes reviewProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.review-dots {
    position: absolute;
    top: 15px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.review-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-secondary);
    opacity: 0.3;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot:hover {
    opacity: 0.6;
    transform: scale(1.2);
}

.review-dot.active {
    background: var(--primary-color);
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

.reviews-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-item {
    min-width: 100%;
    padding: 40px;
    box-sizing: border-box;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    gap: 15px;
    flex: 1;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    flex-shrink: 0;
}

.review-author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 5px 0;
    color: var(--text-primary);
}

.review-author-info p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.review-rating {
    display: flex;
    align-items: center;
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    letter-spacing: 2px;
    display: inline-flex;
    gap: 3px;
}

.stars span {
    display: inline-block;
    animation: starAppear 0.3s ease forwards;
    opacity: 0;
    transform: scale(0) rotate(-180deg);
}

.stars span:nth-child(1) { animation-delay: 0.1s; }
.stars span:nth-child(2) { animation-delay: 0.2s; }
.stars span:nth-child(3) { animation-delay: 0.3s; }
.stars span:nth-child(4) { animation-delay: 0.4s; }
.stars span:nth-child(5) { animation-delay: 0.5s; }

@keyframes starAppear {
    0% {
        opacity: 0;
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
}

.stars span:hover {
    animation: starPulse 0.5s ease infinite;
}

@keyframes starPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
    }
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
    font-style: italic;
}

.review-footer {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.review-date {
    opacity: 0.8;
}

.review-location {
    display: flex;
    align-items: center;
}

.location-icon {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    vertical-align: middle;
}

.videos-container {
    margin-top: 50px;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.video-item {
    background: var(--card-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(220, 38, 38, 0.2);
}

.video-item::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(220, 38, 38, 0.8);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    text-indent: 3px;
}

.video-item:hover::after {
    opacity: 1;
}

.video-wrapper {
    position: relative;
    padding-bottom: 177.78%; 
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-wrapper video,
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    pointer-events: none;
}

.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.video-modal-close {
    position: relative;
    top: auto;
    right: auto;
    background: rgba(220, 38, 38, 0.9);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    z-index: 10001;
    flex-shrink: 0;
}

.video-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--primary-color);
}

.video-modal video {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
}

.gallery-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.gallery-modal-container {
    position: relative;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    max-width: 1200px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    z-index: 10001;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gallery-modal-container {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.gallery-modal-header h2 {
    font-size: 2rem;
    color: white;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery-modal-close {
    background: rgba(220, 38, 38, 0.9);
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
    flex-shrink: 0;
}

.gallery-modal-close:hover {
    transform: rotate(90deg) scale(1.1);
    background: var(--primary-color);
}

.gallery-tabs {
    display: flex;
    gap: 10px;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.gallery-tab {
    padding: 12px 30px;
    border: 2px solid var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-tab:hover {
    background: rgba(220, 38, 38, 0.3);
    transform: translateY(-2px);
}

.gallery-tab.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.5);
}

.gallery-content {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
}

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

.gallery-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0) 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.gallery-item:hover::before {
    opacity: 1;
}

.client-photo .gallery-item-image {
    width: 100%;
    padding-bottom: 100%; 
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.client-photo .gallery-item-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-image {
    width: 100%;
    padding-bottom: 177.78%; 
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.gallery-item-image::after {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    background: rgba(220, 38, 38, 0.9);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
    text-indent: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover .gallery-item-image::after {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 6px 30px rgba(220, 38, 38, 0.7);
}

.gallery-item-image video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-photo .gallery-item-image::after {
    display: none;
}

.client-photo {
    cursor: default;
}

.gallery-item:has(.gallery-item-content):not(:has(.gallery-item-image)) {
    cursor: default;
}

.gallery-item-content {
    padding: 20px;
    position: relative;
    z-index: 1;
}

.gallery-item-name {
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 8px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.gallery-item-car {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.gallery-item-rating {
    margin-top: 10px;
    margin-bottom: 12px;
    color: #fbbf24;
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.gallery-item-content p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6 !important;
}

@media (max-width: 768px) {
    .reviews-tabs {
        flex-direction: column;
        gap: 10px;
        margin: 30px 0 20px 0;
    }
    
    .review-tab {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .video-item::after {
        width: 50px;
        height: 50px;
        font-size: 2rem;
    }
    
    .video-modal-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .video-modal-close {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        order: -1;
    }
    
    .video-modal video {
        max-height: 70vh;
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-modal-content {
        max-width: 95vw;
    }
    
    .video-modal-close {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }
    
    .gallery-modal-container {
        width: 95%;
        max-height: 95vh;
    }
    
    .gallery-modal-header {
        padding: 20px;
    }
    
    .gallery-modal-header h2 {
        font-size: 1.5rem;
    }
    
    .gallery-modal-close {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .gallery-tabs {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }
    
    .gallery-tab {
        width: 100%;
        padding: 10px 20px;
    }
    
    .gallery-content {
        padding: 15px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
}

.review-nav {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.review-nav:active {
    transform: scale(0.95);
}

.review-nav-left {
    order: 1;
}

.reviews-box {
    order: 2;
}

.review-nav-right {
    order: 3;
}

@media (max-width: 768px) {
    .reviews-container {
        gap: 10px;
    }
    
    .review-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .review-item {
        padding: 30px 20px;
    }
    
    .review-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-rating {
        align-self: flex-start;
    }
}

@media (max-width: 480px) {
    .reviews-box {
        border-radius: 15px;
    }
    
    .review-item {
        padding: 25px 15px;
    }
    
    .review-text {
        font-size: 0.95rem;
    }
    
    .review-footer {
        flex-direction: column;
        gap: 8px;
    }
}

.faq-section {
    padding: 80px 0 40px 0;
    background: var(--bg-primary);
}

.faq-section .container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    margin: 0;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    position: relative;
    padding: 20px 30px;
    background: #ffffff;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.faq-item {
    background: var(--card-bg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    align-items: flex-start;
    text-align: left;
    padding-top: 15px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.faq-question:hover {
    opacity: 0.8;
}

.faq-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.3;
    text-align: left;
}

.faq-text {
    color: var(--text-primary);
}

.faq-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ea3d3f;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 6px rgba(234, 61, 63, 0.3);
}

.faq-icon-circle {
    background: #ea3d3f;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #ffffff;
    transition: transform 0.3s ease;
    line-height: 1;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
}

.faq-item.active .faq-icon {
    transform: translate(-50%, -50%) rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 12px 0 0 0;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 10px 0;
    font-size: 1.15rem;
}

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

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 20px;
    }
    
    .faq-item {
        padding: 18px 20px;
        flex-direction: row;
        align-items: flex-start;
        gap: 15px;
        position: relative;
    }
    
    .faq-content {
        width: 100%;
        padding-top: 0;
        padding-right: 50px;
        flex: 1;
    }
    
    .faq-text {
        font-size: 1rem;
        line-height: 1.4;
    }
    
    .faq-icon-circle {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
        position: absolute;
        top: 18px;
        right: 20px;
    }
    
    .faq-icon {
        font-size: 1.3rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 15px 0 0 0;
        max-height: 2000px;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin: 0 0 12px 0;
        color: var(--text-secondary);
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .faq-answer p:last-child {
        margin-bottom: 0;
    }
}

.contact-section {
    padding: 40px 0 80px 0;
    background: var(--bg-primary);
}

.contact-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    align-items: stretch;
}

.contact-info-card {
    background: var(--bg-secondary);
    border-radius: 0;
    padding: 40px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.contact-info-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex: 1;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-icon-circle {
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
}

.contact-info-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
}

.contact-info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-info-main {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.contact-info-text .contact-info-main + .contact-info-main {
    margin-top: 4px;
}

.contact-request-btn {
    margin-top: auto;
    padding: 16px 24px;
    background: var(--primary-color);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.contact-request-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.contact-request-btn svg {
    width: 16px;
    height: 16px;
}

.contact-map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    background: var(--card-bg);
}

.contact-map-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
    display: block;
}

@media (max-width: 1200px) {
    .contact-map-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-card {
        order: 2;
    }
    
    .contact-map-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-title {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .contact-info-content {
        gap: 20px;
    }
    
    .contact-request-btn {
        padding: 14px 20px;
        font-size: 0.95rem;
    }
    
    #map {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .contact-info-title {
        font-size: 1.3rem;
    }
    
    .contact-info-main {
        font-size: 0.95rem;
    }
    
    .contact-info-sub {
        font-size: 0.85rem;
    }
    
    .contact-map-container iframe {
        height: 350px;
    }
    
    .map-info {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }
    
    .map-link {
        width: 100%;
        justify-content: center;
    }
    
    .map-title {
        font-size: 1.3rem;
    }
    
    .map-section {
        margin-top: 40px;
        padding-top: 40px;
    }
}

@media (max-width: 480px) {
    #map {
        height: 250px;
    }
    
    .map-section {
        margin-top: 30px;
        padding-top: 30px;
    }
    
    .map-wrapper {
        padding: 15px;
    }
}

.footer {
    background: #000000;
    color: #ffffff;
    padding: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    padding: 60px 0;
}

.footer-top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-logo-section {
    flex-shrink: 0;
}

.footer-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.footer-phone-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    line-height: 1;
}

.footer-phone-label {
    font-size: clamp(0.7rem, 1.2vw, 0.85rem);
    color: var(--footer-text);
    font-weight: 400;
    white-space: nowrap;
    margin-bottom: 0;
    line-height: 1.2;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.footer-phone-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--footer-text);
    font-weight: 300;
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    margin-top: 0;
    line-height: 1;
}

.footer-phone-link:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.footer-phone-link:hover .footer-phone-text {
    color: var(--primary-color);
}

.footer-phone-text {
    display: inline-block;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex: 1;
    justify-content: center;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    transition: color 0.3s ease;
    white-space: nowrap;
    opacity: 0.8;
    letter-spacing: 1px;
}

.footer-nav-link:hover {
    color: #ea3d3f;
    opacity: 1;
}

.footer-divider {
    height: 1px;
    background: var(--bg-secondary);
    width: 100%;
}

.footer-bottom {
    padding: 20px 0;
    background: var(--footer-bg);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: var(--footer-text);
    font-size: 0.875rem;
    margin: 0;
    opacity: 0.8;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.footer-developer-text {
    color: var(--footer-text);
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-developer-link {
    color: var(--footer-text);
    font-size: 0.875rem;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-developer-link:hover {
    color: #ea3d3f;
}

.footer-links-bottom {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-link {
    color: var(--footer-text);
    font-size: 0.875rem;
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-link:hover {
    color: #ea3d3f;
    opacity: 1;
}

@media (max-width: 768px) {
    .navbar-top-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .navbar-center {
        order: 3;
        width: 100%;
        justify-content: center;
        left: 0 !important;
    }
    
    .navbar-left {
        order: 1;
    }
    
    .navbar-right {
        order: 2;
        flex: 1;
        justify-content: flex-end;
    }
    
    .navbar-address {
        text-align: right;
    }
    
    .address-text,
    .address-hours {
        font-size: 0.8rem;
    }

    .navbar-center .logo-img {
        width: 50px;
        height: 50px;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .phone-link {
        padding: 0;
    }

    .phone-text {
        font-size: clamp(0.95rem, 2.5vw, 1.2rem);
    }

    .hamburger {
        display: flex;
        margin-right: 0;
    }
    
    .navbar-left .navbar-social-icons {
        display: none !important;
    }

    .nav-menu {
        display: none;
    }
    
    .logo-section {
        flex: 1;
    }

    .color-toggle {
        margin-left: 5px;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 1.5rem;
    }
    
    .typing-text {
        white-space: normal;
        text-align: center;
        word-break: break-word;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: clamp(1.75rem, 4vw, 2.5rem);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-wrapper {
        gap: 0.5rem;
    }

    .logo-img {
        width: 45px;
        height: 45px;
    }

    .phone-link {
        gap: 4px;
    }

    .phone-text {
        font-size: clamp(0.85rem, 2vw, 1rem);
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .hamburger {
        padding: 16px;
        width: 56px;
        height: 56px;
        min-width: 56px;
        min-height: 56px;
        overflow: visible;
        box-sizing: border-box;
        position: relative;
        z-index: 1001;
        margin: 0;
    }

    .hamburger span {
        width: 20px;
    }
    
    .hamburger.active span:nth-child(1) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        transform-origin: center center;
        margin: 0;
        background: #ffffff !important;
    }
    
    .hamburger.active span:nth-child(3) {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
        transform-origin: center center;
        margin: 0;
        background: #ffffff !important;
    }
    
    .hamburger.active {
        transform: scale(0.9);
        background: rgba(220, 38, 38, 0.2);
    }
    
    .hamburger.active {
        transform: scale(0.9);
        background: rgba(220, 38, 38, 0.2);
        pointer-events: auto;
        cursor: pointer;
        transition: transform 0.15s ease, background 0.15s ease;
    }
    
    .hamburger.active:active {
        transform: scale(0.8) !important;
        background: rgba(220, 38, 38, 0.3) !important;
    }
    
    .hamburger.active:hover {
        transform: scale(0.92);
    }

    .hero-title {
        font-size: 1.2rem;
    }
    
    .typing-text {
        white-space: normal;
        text-align: center;
        word-break: break-word;
    }

    .container {
        padding: 0 15px;
    }

    section {
        padding: 50px 0;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
}

#carDetailsModal {
    background: rgba(0, 0, 0, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    transition: none !important;
}

#carDetailsModal.active {
    opacity: 1;
    visibility: visible;
}

#carDetailsModal .modal-content {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    max-width: 100vw !important;
    width: 100vw !important;
    max-height: 100vh !important;
    height: 100vh !important;
    transform: none !important;
}

.car-photos-gallery .main-photo {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .car-photos-gallery {
        width: 100% !important;
        height: 100% !important;
        max-width: 100vw !important;
        max-height: 100vh !important;
        padding: 10px !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .photo-main-container {
        max-height: 60vh !important;
        width: auto !important;
        max-width: calc(100% - 100px) !important;
        margin: 0 auto 10px !important;
        padding: 0 50px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .main-photo {
        max-width: 100% !important;
        max-height: 60vh !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }
    
    .photo-nav {
        width: 40px !important;
        height: 40px !important;
        font-size: 20px !important;
    }
    
    .prev-photo {
        left: 5px !important;
    }
    
    .next-photo {
        right: 5px !important;
    }
    
    .photo-thumbnails {
        margin-top: 10px !important;
        padding: 5px 0 !important;
        gap: 8px !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    
    .photo-thumbnails .thumbnail {
        width: 60px !important;
        height: 60px !important;
        flex-shrink: 0;
    }
    
    .photo-counter {
        margin-top: 10px !important;
        padding: 8px 16px !important;
        font-size: 0.9rem !important;
    }
    
    .photo-close {
        top: 10px !important;
        right: 10px !important;
        width: 40px !important;
        height: 40px !important;
        font-size: 24px !important;
    }
}

@media (max-width: 480px) {
    .car-photos-gallery {
        padding: 5px !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .photo-main-container {
        max-height: 55vh !important;
        max-width: calc(100% - 90px) !important;
        padding: 0 45px !important;
    }
    
    .main-photo {
        max-height: 55vh !important;
        max-width: 100% !important;
        width: auto !important;
        border-radius: 10px !important;
    }
    
    .photo-nav {
        width: 35px !important;
        height: 35px !important;
        font-size: 18px !important;
    }
    
    .prev-photo {
        left: 5px !important;
    }
    
    .next-photo {
        right: 5px !important;
    }
    
    .photo-thumbnails {
        gap: 6px !important;
        margin-top: 8px !important;
    }
    
    .photo-thumbnails .thumbnail {
        width: 50px !important;
        height: 50px !important;
    }
    
    .photo-counter {
        padding: 6px 12px !important;
        font-size: 0.85rem !important;
        margin-top: 8px !important;
    }
    
    .photo-close {
        top: 5px !important;
        right: 5px !important;
        width: 35px !important;
        height: 35px !important;
        font-size: 20px !important;
    }
}

@media (max-width: 360px) {
    .car-photos-gallery {
        justify-content: center !important;
        align-items: center !important;
    }
    
    .photo-main-container {
        max-height: 50vh !important;
        max-width: calc(100% - 80px) !important;
        padding: 0 40px !important;
    }
    
    .main-photo {
        max-height: 50vh !important;
        max-width: 100% !important;
        width: auto !important;
    }
    
    .photo-nav {
        width: 30px !important;
        height: 30px !important;
        font-size: 16px !important;
    }
    
    .photo-thumbnails .thumbnail {
        width: 45px !important;
        height: 45px !important;
    }
    
    .photo-counter {
        font-size: 0.8rem !important;
        padding: 5px 10px !important;
    }
    
    .photo-close {
        width: 30px !important;
        height: 30px !important;
        font-size: 18px !important;
    }
}

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

.modal-content {
    background: #0a0a0a;
    border-radius: 0;
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    position: relative;
}

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

#carDetailsModal .modal-content {
    transform: none !important;
    transition: none !important;
}

.modal-content h2 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-description {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 1rem;
    line-height: 1.5;
}

.consultation-form {
    text-align: left;
}

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

.consultation-form input,
.consultation-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
    background: #0a0a0a;
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.consultation-form button {
    width: 100%;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 16px 24px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.consultation-form button:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

/* Auto-popup Consultation Modal */
.auto-consultation-modal {
    max-width: 900px;
    width: 90%;
    background: #0a0a0a;
    border-radius: 0;
    border: 1px solid var(--border-color);
    padding: 40px;
    text-align: left;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    position: relative;
    overflow: visible;
}

/* Consultation Modal (вертикальный, узкий) */
#consultationModal .auto-consultation-modal {
    max-width: 500px;
    width: 90%;
    padding: 40px 0;
    text-align: center;
}

#consultationModal .auto-consultation-flags {
    justify-content: center;
    padding: 0 40px;
}

#consultationModal .auto-consultation-modal h2 {
    padding: 0 40px;
}

#consultationModal .auto-consultation-modal .modal-description {
    padding: 0 40px;
    margin-bottom: 25px;
}

#consultationModal .auto-consultation-wrapper {
    flex-direction: column;
    gap: 0;
    margin-top: 20px;
    padding: 0 40px;
}

#consultationModal .auto-consultation-left {
    flex: 1;
    text-align: center;
}

#consultationModal .auto-consultation-image {
    display: none;
}

.auto-consultation-flags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 0;
}

.auto-consultation-flags .country-icon {
    width: 48px;
    height: 48px;
    display: block;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.auto-consultation-flags .country-icon:hover {
    transform: scale(1.15);
}

.auto-consultation-modal h2 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0;
}

.auto-consultation-modal .modal-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 0;
}

.auto-consultation-image {
    margin-top: auto;
    padding-top: 20px;
}

.auto-consultation-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.auto-consultation-image:hover img {
    opacity: 0.5;
}

.auto-consultation-wrapper {
    display: flex;
    flex-direction: row;
    gap: 50px;
    align-items: flex-start;
    text-align: left;
    margin-top: 30px;
    padding: 0;
}

.auto-consultation-left {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

.auto-consultation-right {
    flex: 1;
    min-width: 300px;
    width: 100%;
}

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

.auto-consultation-form .form-group {
    margin: 0;
}

.auto-consultation-form input,
.auto-consultation-form textarea,
.auto-consultation-form select {
    width: 100%;
    padding: 16px;
    border: 1px solid var(--border-color);
    border-radius: 0;
    background: #000000;
    color: #ffffff;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.auto-consultation-form input:focus,
.auto-consultation-form textarea:focus,
.auto-consultation-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
    background: #0a0a0a;
}

.auto-consultation-form input::placeholder,
.auto-consultation-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.auto-consultation-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
    color: #ffffff;
}

.auto-consultation-form select:invalid {
    color: rgba(255, 255, 255, 0.4);
}

.auto-consultation-form select option {
    background: #000000;
    color: #ffffff;
}

.phone-group {
    position: relative;
}

.phone-input-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #000000;
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.phone-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 1px var(--primary-color);
    background: #0a0a0a;
}

.phone-flag {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.phone-input-wrapper input {
    border: none;
    padding: 16px 0;
    background: transparent;
    flex: 1;
    color: #ffffff;
    font-family: inherit;
    letter-spacing: 0.5px;
}

.phone-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.5px;
}

.phone-input-wrapper input:focus {
    outline: none;
    box-shadow: none;
}

.btn-auto-submit {
    width: 100%;
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 16px 24px;
    border-radius: 0;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    margin-top: 10px;
    box-shadow: none;
}

.btn-auto-submit:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 10px 0 0 0;
    line-height: 1.4;
    font-family: inherit;
}

.auto-consultation-modal .modal-close-btn {
    color: rgba(255, 255, 255, 0.6);
    background: none;
    border-radius: 0;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
}

.auto-consultation-modal .modal-close-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: rotate(90deg);
}

@media (max-width: 968px) {
    .auto-consultation-modal {
        max-width: 95%;
        padding: 30px 20px;
    }
    
    .auto-consultation-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    
    .auto-consultation-left {
        flex: 1;
        text-align: center;
    }
    
    .auto-consultation-flags {
        justify-content: center;
    }
    
    .auto-consultation-image {
        margin-top: 20px;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .auto-consultation-modal {
        width: 95%;
        max-width: 95%;
        padding: 25px 15px;
    }
    
    .auto-consultation-flags {
        gap: 10px;
        margin-bottom: 15px;
    }
    
    .auto-consultation-flags .country-icon {
        width: 36px;
        height: 36px;
    }
    
    .auto-consultation-modal h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    
    .auto-consultation-modal .modal-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.4;
    }
    
    .auto-consultation-wrapper {
        gap: 20px;
        margin-top: 15px;
    }
    
    .auto-consultation-left {
        flex: 1;
    }
    
    .auto-consultation-right {
        min-width: 100%;
    }
    
    .auto-consultation-form {
        gap: 15px;
    }
    
    .auto-consultation-form input,
    .auto-consultation-form textarea {
        padding: 14px;
        font-size: 0.9rem;
    }
    
    .btn-auto-submit {
        padding: 14px 20px;
        font-size: 0.85rem;
    }
    
    .form-disclaimer {
        font-size: 0.7rem;
        margin-top: 8px;
    }
    
    .auto-consultation-image {
        margin-top: 15px;
        padding-top: 0;
    }
    
    .auto-consultation-image img {
        opacity: 0.2;
    }
}

@media (max-width: 480px) {
    .auto-consultation-modal {
        width: 100%;
        max-width: 100%;
        padding: 20px 12px;
        margin: 0;
        border-radius: 0;
    }
    
    .auto-consultation-flags {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .auto-consultation-flags .country-icon {
        width: 32px;
        height: 32px;
    }
    
    .auto-consultation-modal h2 {
        font-size: 1.1rem;
        margin-bottom: 8px;
        letter-spacing: 0.5px;
    }
    
    .auto-consultation-modal .modal-description {
        font-size: 0.75rem;
        margin-bottom: 12px;
    }
    
    .auto-consultation-wrapper {
        gap: 15px;
        margin-top: 12px;
    }
    
    .auto-consultation-form {
        gap: 12px;
    }
    
    .auto-consultation-form input,
    .auto-consultation-form textarea {
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .btn-auto-submit {
        padding: 12px 18px;
        font-size: 0.8rem;
    }
    
    .form-disclaimer {
        font-size: 0.65rem;
        margin-top: 6px;
    }
    
    .auto-consultation-image {
        display: none; /* Скрываем изображение на очень маленьких экранах */
    }
}

.modal-content p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

.modal-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.modal-buttons .btn {
    flex: 1;
    min-width: 150px;
    padding: 15px 30px;
    text-decoration: none;
    font-size: 1.1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

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

.btn-call svg {
    fill: white;
    flex-shrink: 0;
}

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

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.modal-close {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--primary-color);
    padding: 10px 30px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-color);
    color: white;
}

@media (max-width: 480px) {
    .modal-content {
        padding: 30px 20px;
    }

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

    .modal-buttons .btn {
        width: 100%;
        min-width: unset;
    }
}

.floating-telegram {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0088cc 0%, #00a8e6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 136, 204, 0.4);
    z-index: 1000;
    transition: bottom 0.4s ease;
    text-decoration: none;
}

.floating-telegram svg {
    fill: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    position: relative;
    z-index: 10;
}

.floating-telegram .pulse-ring {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(0, 136, 204, 0.6);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.floating-telegram .pulse-ring:nth-child(2) {
    animation-delay: 0.67s;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.floating-telegram:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 136, 204, 0.6);
}

@media (max-width: 768px) {
    .floating-telegram {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .floating-telegram.raised {
        bottom: 140px;
    }
    
    .floating-telegram svg {
        width: 28px;
        height: 28px;
    }
    
    .floating-telegram .pulse-ring {
        width: 55px;
        height: 55px;
    }
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.sidebar-menu {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    max-height: 0;
    background: #000000;
    z-index: 1002;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: none;
}

.sidebar-menu.active {
    max-height: 500px;
    opacity: 1;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    padding: 1rem 0;
}

.sidebar-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
}

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

.sidebar-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 2.5rem;
}

.sidebar-dropdown {
    width: 100%;
    position: relative;
}

.sidebar-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.sidebar-dropdown-arrow {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: auto;
}

.sidebar-dropdown.active .sidebar-dropdown-arrow {
    transform: rotate(180deg);
}

.sidebar-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.sidebar-dropdown.active .sidebar-dropdown-menu {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
}

.sidebar-dropdown-link {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.75rem 2rem 0.75rem 3.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.sidebar-dropdown-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 4rem;
}

.sidebar-dropdown-link:last-child {
    border-bottom: none;
}

@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .navbar-bottom {
        display: none;
}

    .sidebar-menu {
        display: block;
        top: 100px;
    }
}

@media (max-width: 480px) {
    .sidebar-nav-link {
        font-size: 1.2rem;
    }
}

.about-section {
    position: relative;
    overflow: hidden;
}

.marquee-container {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 120px;
    font-weight: 900;
    color: var(--text-primary);
    opacity: 0.05;
    padding: 0 80px;
    letter-spacing: 20px;
    text-transform: uppercase;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .marquee-content span {
        font-size: 60px;
        padding: 0 40px;
        letter-spacing: 10px;
    }
}

@media (max-width: 480px) {
    .marquee-content span {
        font-size: 40px;
        padding: 0 30px;
        letter-spacing: 5px;
    }
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.loyalty-section {
    background: var(--bg-primary);
    padding: 80px 0 90px 0 !important;
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0 !important;
    
}

.loyalty-section .container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.loyalty-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 1;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.loyalty-content-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 30px 40px;
    align-items: start;
}

.partners-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    max-width: 100%;
}

.partners-left {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    margin-bottom: 0;
    padding-bottom: 0;
}

.partners-left.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.partners-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.partners-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.partners-left.animate-in .partners-item:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.partners-left.animate-in .partners-item:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.partners-left.animate-in .partners-item:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

.partners-item-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transform: scale(0);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    opacity: 0;
}

.partners-left.animate-in .partners-item:nth-child(1) .partners-item-icon {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.3s;
}

.partners-left.animate-in .partners-item:nth-child(2) .partners-item-icon {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.5s;
}

.partners-left.animate-in .partners-item:nth-child(3) .partners-item-icon {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.7s;
}

.partners-item-icon svg {
    width: 20px;
    height: 20px;
}

.partners-item-content {
    flex: 1;
}

.partners-item-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 10px 0;
}

.partners-item-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.partners-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.partners-right.animate-in {
    opacity: 1;
    transform: translateX(0) scale(1);
    transition-delay: 0.3s;
}

.partners-button-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.partners-image-circle {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: #ea3d3f;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(220, 38, 38, 0.3);
    position: relative;
    overflow: visible;
    margin-right: -300px;
    margin-bottom: 0;
}

.partners-image {
    width: 110%;
    height: 110%;
    object-fit: contain;
    object-position: left center;
    transform: scaleX(-1);
    margin-left: -115px;
}

.loyalty-benefits {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.loyalty-benefit-card {
    background: var(--card-bg);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 320px;
    min-height: 280px;
}

.loyalty-benefit-card {
    background: #1a1f2e;
    border: 2px solid rgba(220, 38, 38, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(220, 38, 38, 0.1);
}

.loyalty-benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.loyalty-benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg),
                0 0 20px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.3);
}

.loyalty-benefit-card:hover::before {
    transform: scaleX(1);
}

.loyalty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 12px;
    box-shadow: 0 6px 15px rgba(220, 38, 38, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.loyalty-benefit-card:hover .loyalty-icon {
    transform: scale(1.1) rotate(5deg);
}

.loyalty-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
}

.loyalty-benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 10px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.loyalty-discount {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-color);
    margin: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.loyalty-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.loyalty-explanation-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.loyalty-explanation-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.loyalty-explanation-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.loyalty-form-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg),
                0 0 0 2px rgba(220, 38, 38, 0.1),
                0 0 30px rgba(220, 38, 38, 0.1);
    border: 2px solid rgba(220, 38, 38, 0.2);
    transition: all 0.3s ease;
}

.loyalty-form-card {
    background: #1a1f2e;
    border: 2px solid rgba(220, 38, 38, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6),
                0 0 0 2px rgba(220, 38, 38, 0.2),
                0 0 40px rgba(220, 38, 38, 0.15);
}

.loyalty-form-card:hover {
    box-shadow: var(--shadow-lg),
                0 0 0 2px rgba(220, 38, 38, 0.3),
                0 0 40px rgba(220, 38, 38, 0.2);
    border-color: rgba(220, 38, 38, 0.4);
}

.loyalty-form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.loyalty-form-card > p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

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

.loyalty-form input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.loyalty-form input {
    border-color: #374151;
    background: var(--bg-primary);
}

.loyalty-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.loyalty-form .btn {
    width: 100%;
    margin-top: 10px;
}

.loyalty-form .btn-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color);
}

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

.loyalty-form .btn-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.loyalty-form .btn-primary:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

.loyalty-info {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid var(--bg-secondary);
}

.loyalty-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.5;
}

.loyalty-info p:last-child {
    margin-bottom: 0;
}

.loyalty-info-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
    object-fit: contain;
    opacity: 0.8;
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(1352%) hue-rotate(346deg) brightness(92%) contrast(86%);
}

@media (max-width: 968px) {
    .partners-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .partners-right {
        order: -1;
    }
    
    .partners-image-circle {
        width: 450px;
        height: 450px;
        margin-right: -225px;
    }
    
    .partners-right {
        justify-content: flex-end;
    }
    
    .loyalty-wrapper {
        gap: 40px;
    }
    
    .loyalty-content-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .loyalty-form-wrapper {
        position: static;
    }
}

@media (max-width: 768px) {
    .loyalty-section {
        padding: 30px 0 0 0 !important;
    }
    
    .loyalty-wrapper {
        gap: 30px;
    }
    
    .partners-content {
        gap: 30px;
    }
    
    .partners-image-circle {
        width: 350px;
        height: 350px;
        margin-right: -175px;
    }
    
    .partners-right {
        justify-content: flex-end;
    }
    
    .partners-item {
        gap: 15px;
    }
    
    .partners-item-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
        min-height: 35px;
    }
    
    .partners-item-content h3 {
        font-size: 1.15rem;
    }
    
    .partners-item-content p {
        font-size: 0.95rem;
    }
    
    .loyalty-form-card {
        padding: 30px 20px;
    }
    
    .loyalty-icon img {
        width: 48px;
        height: 48px;
    }
    
    .loyalty-discount {
        font-size: 1.75rem;
    }
}

.how-we-work-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    display: none;
}

.how-we-work-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 180px; 
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 15px; 
    row-gap: 80px; 
    position: relative;
    margin-bottom: 60px;
    margin-top: 40px; 
}

.process-step:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
}

.process-step:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.process-step:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}

.process-step:nth-child(4) {
    grid-column: 3; 
    grid-row: 2;
}

.process-step:nth-child(5) {
    grid-column: 2;
    grid-row: 2;
}

.process-step:nth-child(6) {
    grid-column: 1; 
    grid-row: 2;
}

.process-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
}

.process-step:nth-child(1),
.process-step:nth-child(2),
.process-step:nth-child(3) {
    flex-direction: column-reverse; 
    justify-content: flex-end; 
    margin-top: -40px; 
}

.process-step:nth-child(4),
.process-step:nth-child(5),
.process-step:nth-child(6) {
    flex-direction: column; 
    justify-content: flex-start; 
}

.process-step {
    gap: 0; 
}

.process-step:nth-child(1) .step-content,
.process-step:nth-child(2) .step-content,
.process-step:nth-child(3) .step-content {
    margin-bottom: 30px !important; 
    margin-top: 0;
}

.process-step:nth-child(4) .step-content,
.process-step:nth-child(5) .step-content,
.process-step:nth-child(6) .step-content {
    margin-top: 30px !important; 
    margin-bottom: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0; 
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0; 
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--card-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0; 
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0; 
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-color);
}

.process-step:nth-child(1) .step-icon,
.process-step:nth-child(2) .step-icon,
.process-step:nth-child(3) .step-icon {
    margin-bottom: 40px !important; 
    margin-top: 0;
}

.process-step:nth-child(4) .step-icon,
.process-step:nth-child(5) .step-icon,
.process-step:nth-child(6) .step-icon {
    margin-top: 40px !important; 
    margin-bottom: 0;
}

.step-icon img {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
    
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(7471%) hue-rotate(0deg) brightness(95%) contrast(86%);
}

.step-icon img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(95%) saturate(7471%) hue-rotate(0deg) brightness(95%) contrast(86%);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    margin-top: 0;
}

.process-step:nth-child(1) .step-content h3,
.process-step:nth-child(2) .step-content h3,
.process-step:nth-child(3) .step-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
}

.process-step:nth-child(4) .step-content h3,
.process-step:nth-child(5) .step-content h3,
.process-step:nth-child(6) .step-content h3 {
    margin-top: 15px;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.step-connector {
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.process-step:nth-child(1) .step-connector {
    display: block;
    top: auto;
    bottom: 30px; 
    right: -15px;
    left: auto;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(1.5px); 
}

.process-step:nth-child(2) .step-connector {
    display: block;
    top: auto;
    bottom: 30px; 
    right: -15px;
    left: auto;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(1.5px);
}

.process-step:nth-child(5) .step-connector {
    display: block !important;
    top: 30px; 
    left: -30px; 
    right: auto;
    bottom: auto;
    width: 30px;
    height: 3px;
    background: linear-gradient(270deg, var(--primary-color), var(--secondary-color)); 
    transform: translateY(-1.5px); 
    z-index: 1;
}

.process-step:nth-child(6) .step-connector {
    display: none;
}

.process-step:nth-child(5)::after {
    content: '';
    position: absolute;
    top: 30px; 
    right: -15px;
    bottom: auto;
    left: auto;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: translateY(-1.5px); 
    z-index: 1;
}

.process-step:nth-child(6) .step-connector {
    display: none;
}

.process-step:nth-child(4) .step-connector {
    display: none;
}

.process-step:nth-child(3) .step-connector {
    display: block;
    position: absolute;
    top: 100%; 
    bottom: auto;
    left: 50%;
    right: auto;
    width: 3px;
    height: 30px; 
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%) translateY(calc(40px - 15px)); 
    z-index: 1;
}

.process-step:last-child .step-connector {
    display: none;
}

.process-cta {
    text-align: center;
    margin-top: 40px;
}

.process-cta .btn-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border: 2px solid var(--primary-color);
}

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

.process-cta .btn-primary {
    background: var(--primary-color) !important;
    color: var(--white) !important;
}

.process-cta .btn-primary:hover {
    background: var(--primary-dark) !important;
    color: var(--white) !important;
}

@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process-step:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }
    
    .step-connector {
        display: none;
    }
    
    .process-step:nth-child(2n) .step-connector {
        display: none;
    }
}

@media (max-width: 768px) {
    .how-we-work-section {
        padding: 60px 0;
    }
    
    .how-we-work-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon img {
        width: 40px;
        height: 40px;
    }
    
    .step-content h3 {
        font-size: 1.1rem;
    }
    
    .step-content p {
        font-size: 0.95rem;
    }
}

.how-we-work-2-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    margin-top: 60px;
    overflow-x: visible;
    overflow-y: visible;
}

.how-we-work-2-section .container {
    padding-left: 0;
    padding-right: 20px;
    overflow-x: visible;
    overflow-y: visible;
}

.how-we-work-2-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-left: 0;
    position: relative;
    overflow-x: visible;
    overflow-y: visible;
}

.how-we-work-2-left {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    height: fit-content;
    min-height: 100vh;
    overflow: visible;
    z-index: 0;
    pointer-events: none;
}

.how-we-work-2-text-content {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    width: 100%;
    margin-top: 80px;
    margin-left: -30px;
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.how-we-work-2-text-content.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.how-we-work-2-title {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 300;
    color: var(--text-primary);
    margin: 0 0 20px 0;
    line-height: 1.2;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.how-we-work-2-red {
    color: #ea3d3f;
}

.how-we-work-2-description {
    font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    color: var(--text-secondary);
    line-height: 1.2;
    margin: 0 0 30px 0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.how-we-work-2-btn {
    margin-top: 20px;
    margin-left: 200px;
    background: #ea3d3f;
    color: white;
    border: none;
}

.how-we-work-2-btn:hover {
    background: #d32e30;
    color: white;
}

.how-we-work-2-image-wrapper {
    position: absolute;
    top: 120px;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: visible;
    z-index: 0;
    padding: 40px;
    pointer-events: none;
}

@media (min-width: 1240px) {
    .how-we-work-2-image-wrapper {
        margin-left: calc(-1 * ((100vw - 1200px) / 2));
        padding-left: calc(40px + ((100vw - 1200px) / 2));
    }
}

.how-we-work-2-circle {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #ea3d3f;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -450px;
    overflow: visible;
    z-index: 0;
}

.how-we-work-2-image {
    width: 140%;
    height: 140%;
    object-fit: contain;
    object-position: left center;
    display: block;
    position: absolute;
    margin-left: 450px;
    z-index: 0;
}

.how-we-work-2-right {
    position: relative;
    z-index: 1;
    background: transparent;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.how-we-work-2-right.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.process-cards-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding: 40px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
}

.process-card:last-child {
    border-bottom: none;
}

.process-card {
    border-bottom-color: rgba(150, 150, 150, 0.3);
}

.process-card-number {
    font-size: 6rem;
    font-weight: 300;
    color: rgba(200, 200, 200, 0.5);
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
    min-width: 80px;
}

.process-card-number {
    color: rgba(200, 200, 200, 0.5);
}

.process-card-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.process-card-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.process-card-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .how-we-work-2-wrapper {
        gap: 40px;
    }
    
    .how-we-work-2-title {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .how-we-work-2-description {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
    
    .how-we-work-2-circle {
        width: 450px;
        height: 450px;
    }
    
    .process-card-number {
        font-size: 5rem;
        min-width: 70px;
    }
    
    .process-card-text {
        max-width: 450px;
    }
    
    .process-card-text h3 {
        font-size: 1.5rem;
    }
    
    .process-card-text p {
        font-size: 1.1rem;
    }
}

@media (max-width: 1024px) {
    .how-we-work-2-section .container {
        padding-left: 20px;
    }
    
    .how-we-work-2-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-left: 0;
    }
    
    .how-we-work-2-right {
        margin-top: 60px;
    }
    
    .how-we-work-2-left {
        position: relative;
        top: 0;
        min-height: 400px;
    }
    
    .how-we-work-2-title {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
    }
    
    .how-we-work-2-description {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
    }
    
    .how-we-work-2-image-wrapper {
        margin-left: 0;
        padding-left: 0;
        justify-content: flex-start;
        overflow: visible;
    }
    
    .how-we-work-2-circle {
        width: 400px;
        height: 400px;
        margin-left: -50%;
    }
    
    .how-we-work-2-image {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .how-we-work-2-section {
        padding: 60px 0;
    }
    
    .how-we-work-2-left {
        min-height: 300px;
        align-items: center;
    }
    
    .how-we-work-2-text-content {
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 80px;
        text-align: center;
        width: 100%;
        padding: 0 20px;
    }
    
    .how-we-work-2-title {
        font-size: clamp(1.2rem, 2.5vw, 2rem);
        text-align: center;
    }
    
    .how-we-work-2-description {
        font-size: clamp(0.7rem, 1.4vw, 1.2rem);
        text-align: center;
    }
    
    .how-we-work-2-image-wrapper {
        padding: 20px;
        padding-left: 0;
        justify-content: flex-start;
        overflow: visible;
    }
    
    .how-we-work-2-circle {
        width: 300px;
        height: 300px;
        margin-left: -50%;
    }
    
    .how-we-work-2-image {
        margin-left: 0;
    }
    
    .how-we-work-2-right {
        margin-top: 60px;
    }
    
    .process-card {
        padding: 30px 0;
        gap: 20px;
    }

    .process-card-number {
        font-size: 4rem;
        min-width: 60px;
    }
    
    .process-card-text {
        max-width: 100%;
    }
    
    .process-card-text h3 {
        font-size: 1.4rem;
    }
    
    .process-card-text p {
        font-size: 1.05rem;
    }
}

.price-categories-section {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.price-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.price-card {
    background: var(--card-bg);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-height: 600px;
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.price-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: url('Снимок экрана 2025-11-15 в 05.07.00-Photoroom.png');
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px 20px 0 0;
}

.price-card-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4)) 
            drop-shadow(0 5px 10px rgba(0, 0, 0, 0.3))
            drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
    position: relative;
}

.price-card:hover .price-card-image img {
    transform: scale(1.05) translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5)) 
            drop-shadow(0 8px 15px rgba(0, 0, 0, 0.4))
            drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
}

.price-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: var(--card-bg);
    border-radius: 0 0 20px 20px;
}

.price-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    text-align: center;
}

.price-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.price-card-features li {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    padding-left: 25px;
    position: relative;
}

.price-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .price-categories-section {
        padding: 60px 0;
    }
    
    .price-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .price-card {
        min-height: 550px;
    }
    
    .price-card-image-wrapper {
        height: 300px;
    }

    .price-card-content {
        padding: 25px;
    }
    
    .price-card-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .price-card-features {
        gap: 10px;
    }
    
    .price-card-features li {
        font-size: 0.95rem;
    }
}

.reports-section {
    background: var(--bg-secondary);
    padding: 220px 0 220px 0;
    position: relative;
    border-top: 1px solid var(--border-color) !important;
    border-bottom: 1px solid var(--border-color) !important;
    overflow: hidden;
    margin-top: -150px !important;
    margin-bottom: 0;
    z-index: 2;
}

.reports-section .container {
    position: relative;
    padding-left: 0 !important;
    padding-right: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    margin: -100px auto 0 auto !important;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 0;
}

.reports-title {
    position: absolute;
    top: -50px;
    left: 0;
    width: auto;
    max-width: 60%;
    text-align: left;
    color: var(--text-primary);
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
    margin: 0;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reports-phone-wrapper {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    overflow: visible;
    padding-right: 0;
    transform: translateY(20%);
}

.reports-phone-wrapper .phone-mockup {
    position: relative;
    margin: 0;
    width: 280px;
    height: 600px;
}

.reports-phone-wrapper .phone-time {
    font-size: 0.7rem;
    top: 8px;
    left: 20px;
    transform: none;
}

.reports-phone-wrapper .phone-contact-name {
    font-size: 0.8rem;
}

.reports-phone-wrapper .phone-contact-avatar {
    width: 28px;
    height: 28px;
}

.reports-phone-wrapper .phone-message-bubble {
    padding: 8px 12px;
    font-size: 0.75rem;
    max-width: 80%;
}

.reports-phone-wrapper .phone-message-avatar img {
    width: 24px;
    height: 24px;
}

.reports-phone-wrapper .phone-photo-item {
    width: 50px;
    height: 50px;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 4px;
}

.reports-phone-wrapper .phone-photos-grid {
    gap: 3px !important;
    margin-top: 8px;
    display: grid !important;
    grid-template-columns: repeat(2, 50px) !important;
    width: auto !important;
}

.reports-phone-wrapper .phone-file-icon {
    width: 18px;
    height: 18px;
}

.reports-phone-wrapper .phone-file-name {
    font-size: 0.7rem;
}

.reports-section .container {
    position: relative;
    padding-left: 0;
    padding-right: 0;
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 auto !important;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 5%;
    padding-top: 30px;
}

.reports-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    gap: 20px;
    position: relative;
    width: 50%;
    padding-left: 0;
    margin-left: 0;
    max-width: 100%;
}

.reports-title {
    position: relative;
    width: auto;
    max-width: 60%;
    text-align: left;
    color: var(--text-primary);
    font-size: clamp(1rem, 2vw, 1.5rem);
    line-height: 1.2;
    margin: 0;
    padding-left: 0;
    left: 0;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.reports-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 15px;
    width: 100%;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0;
}

.report-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.report-item-number {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    min-width: 50px;
}

.report-item-content {
    flex: 1;
}

.report-item-title {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.report-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-item-list li {
    color: var(--text-secondary);
    font-size: clamp(0.8rem, 1.3vw, 0.95rem);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.report-item-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.reports-phone-wrapper {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: auto;
    height: auto;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    z-index: 1;
    overflow: visible;
    padding-right: 0;
    transform: translateY(20%);
}

@media (max-width: 968px) {
    .reports-section {
        padding: 80px 0;
    }
    
    .reports-content {
        width: 100%;
        padding-left: 20px;
        gap: 30px;
    }
    
    .reports-title {
        width: 100% !important;
        left: 0 !important;
        text-align: center;
        padding: 0 20px;
        font-size: clamp(1rem, 4vw, 1.5rem);
        letter-spacing: 2px;
    }
    
    .reports-phone-wrapper {
        position: relative;
        right: auto;
        top: auto;
        bottom: auto;
        width: 100%;
        height: auto;
        padding: 40px 20px;
        margin-top: 40px;
        justify-content: center;
    }
    
    .phone-mockup {
        width: 220px;
        height: 470px;
    }
}

@media (max-width: 480px) {
    .reports-section {
        padding: 60px 0;
    }
    
    .reports-content {
        padding-left: 15px;
        gap: 20px;
    }
    
    .reports-title {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
        letter-spacing: 1px;
        padding: 0 15px;
    }
    
    .reports-phone-wrapper {
        padding: 30px 15px;
        margin-top: 30px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 385px;
    }
}

.reports-phone-container,
.reports-cards-wrapper {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reports-phone-container.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.reports-cards-wrapper.animate-in {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
}

.report-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.report-card:nth-child(1).animate-in {
    transition-delay: 0.5s;
}

.report-card:nth-child(2).animate-in {
    transition-delay: 0.7s;
}

.report-card:nth-child(3).animate-in {
    transition-delay: 0.9s;
}

.report-card:nth-child(4).animate-in {
    transition-delay: 1.1s;
}

.reports-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.reports-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reports-cards-wrapper {
    width: 100%;
}

.reports-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.report-card {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    position: relative;
    padding: 40px 0;
    background: transparent;
    border: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(200, 200, 200, 0.3);
    transition: none;
}

.report-card:last-child {
    border-bottom: none;
}

.report-card {
    border-bottom-color: rgba(150, 150, 150, 0.3);
}

.report-icon {
    display: none; 
}

.report-card-number {
    font-size: 6rem;
    font-weight: 300;
    color: rgba(200, 200, 200, 0.5);
    line-height: 1;
    flex-shrink: 0;
    font-family: 'Arial', sans-serif;
    min-width: 80px;
}

.report-card-number {
    color: rgba(200, 200, 200, 0.5);
}

.report-icon svg {
    width: 24px;
    height: 24px;
}

.report-card-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    max-width: 500px;
}

.report-item-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.report-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-item-list li {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
    margin: 0;
}

.report-item-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.report-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    padding: 10px 8px;
    background: var(--primary-color);
    border-radius: 20px;
    transition: background 0.3s ease, transform 0.2s ease;
    text-align: center;
}

.report-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    text-decoration: none;
}

.phone-mockup {
    width: 280px;
    height: 600px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    pointer-events: auto;
    margin: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.reports-phone-wrapper .phone-mockup {
    position: relative;
    margin: 0;
    width: 280px;
    height: 600px;
}

.reports-phone-wrapper .phone-time {
    font-size: 0.7rem;
    top: 8px;
    left: 20px;
    transform: none;
}

.reports-phone-wrapper .phone-contact-name {
    font-size: 0.8rem;
}

.reports-phone-wrapper .phone-contact-avatar {
    width: 28px;
    height: 28px;
}

.reports-phone-wrapper .phone-message-bubble {
    padding: 8px 12px;
    font-size: 0.75rem;
    max-width: 80%;
}

.reports-phone-wrapper .phone-message-avatar img {
    width: 24px;
    height: 24px;
}

.reports-phone-wrapper .phone-photo-item {
    width: 50px;
    height: 50px;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 4px;
}

.reports-phone-wrapper .phone-photos-grid {
    gap: 3px !important;
    margin-top: 8px;
    display: grid !important;
    grid-template-columns: repeat(2, 50px) !important;
    width: auto !important;
}

.reports-phone-wrapper .phone-file-icon {
    width: 18px;
    height: 18px;
}

.reports-phone-wrapper .phone-file-name {
    font-size: 0.7rem;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
}

.phone-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px 20px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #000;
    background: #ffffff;
    position: relative;
}

.phone-time {
    color: #000;
    z-index: 2;
    position: absolute;
    left: 20px;
    top: 8px;
    height: 30px;
    display: flex;
    align-items: center;
}

.phone-dynamic-island {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: #000;
    border-radius: 15px;
    z-index: 1;
}

.phone-contact-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f0f0f0;
    border-bottom: 1px solid #e0e0e0;
    margin-top: 20px;
    position: relative;
}

.phone-contact-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.phone-contact-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
    display: inline-flex;
    align-items: center;
}

.phone-online-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34c759;
    position: relative;
    margin-left: 6px;
    animation: pulse-online 2s ease-in-out infinite;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone-online-indicator::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #34c759;
    opacity: 0.6;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes pulse-glow {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

.phone-messages-container {
    flex: 1;
    padding: 16px;
    background: #e5e5ea;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-message {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.phone-message-left {
    justify-content: flex-start;
}

.phone-message-right {
    justify-content: flex-end;
}

.phone-message-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.phone-message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-message-bubble {
    border-radius: 18px;
    padding: 10px 14px;
    max-width: 75%;
    word-wrap: break-word;
}

.phone-message-bubble-green {
    background: #34c759;
    color: #ffffff;
    border-bottom-left-radius: 4px;
}

.phone-message-bubble-blue {
    background: #007aff;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.phone-message-bubble p {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.phone-photos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin-top: 8px;
    width: 100%;
}

.phone-photo-item {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.phone-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.phone-photo-blurred {
    position: relative;
}

.phone-photo-blurred img {
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.phone-photo-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.phone-file-attachment {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #ffffff;
}

.phone-file-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    opacity: 0.9;
}

.phone-file-name {
    font-size: 0.9rem;
    font-weight: 500;
    word-break: break-all;
}

@media (max-width: 1200px) {
    .reports-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .reports-phone-container {
        order: 1;
        padding: 0;
    }
    
    .reports-cards-wrapper {
        order: 2;
    }
    
    .reports-cards-grid {
        gap: 0;
    }
    
    .reports-phone-container {
        order: 1;
        padding: 0;
    }
    
    .reports-cards-wrapper {
        order: 2;
    }
    
    .reports-cards-grid {
        gap: 0;
    }
    
    .reports-phone-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        padding: 0;
    }
    
    .phone-mockup {
        width: 240px;
        height: 520px;
    }
}

@media (max-width: 768px) {
    .reports-section {
        padding: 60px 0;
    }
    
    .reports-header {
        margin-bottom: 40px;
    }
    
    .reports-title {
        font-size: 1.8rem;
    }
    
    .reports-subtitle {
        font-size: 1.3rem;
    }
    
    .reports-content {
        gap: 40px;
    }
    
    .reports-cards-grid {
        gap: 0;
    }
    
    .report-card {
        padding: 30px 0;
    }
    
    .report-card-number {
        font-size: 4rem;
        min-width: 60px;
    }
    
    .report-card-content {
        max-width: 100%;
    }
    
    .report-item-title {
        font-size: 1.3rem;
    }
    
    .report-item-list li {
        font-size: 1rem;
    }
    
    .reports-column {
        gap: 30px;
    }
    
    .report-item-title {
        font-size: 1.1rem;
    }
    
    .report-item-list li {
        font-size: 0.95rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 440px;
    }
    
    .phone-message-bubble p {
        font-size: 0.8rem;
    }
    
    .phone-photos-grid {
        gap: 3px;
    }
    
    .phone-photo-count {
        font-size: 1rem;
    }
}

.trust-section {
    padding: 80px 0 10px 0;
    background: var(--bg-primary);
    position: relative;
    display: none; 
}

.trust-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 350px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        var(--bg-primary) 40%,
        var(--bg-primary) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 250px);
    gap: 20px;
    margin-top: 50px;
}

.trust-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 1;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    opacity: 1;
}

.trust-item.size-1 {
    grid-row: span 1;
    grid-column: span 1;
}

.trust-item.size-2 {
    grid-row: span 2;
    grid-column: span 1;
}

.trust-item.size-3 {
    grid-row: span 1;
    grid-column: span 2;
}

.trust-item.size-4 {
    grid-row: span 2;
    grid-column: span 2;
}

.trust-review {
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.trust-review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.trust-review-info h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 1rem;
}

.trust-review-info p {
    margin: 5px 0 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.trust-review-text {
    color: var(--text-primary);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
    overflow: visible;
    display: block;
}

.trust-review-rating {
    margin-top: 15px;
    color: #fbbf24;
    font-size: 1.1rem;
}

.trust-media {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trust-item:hover .trust-media img {
    transform: scale(1.05);
}

.trust-video {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.trust-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trust-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.trust-item:hover .trust-video-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.trust-video-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-video-play {
    transform: scale(1.1);
    background: white;
}

@media (max-width: 1200px) {
    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 15px;
    }
    
    .trust-item.size-3,
    .trust-item.size-4 {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .trust-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .trust-item.size-2,
    .trust-item.size-3,
    .trust-item.size-4 {
        grid-row: span 1;
        grid-column: span 1;
    }
}

.trust-section-2 {
    padding: 80px 0 60px 0;
    background: var(--bg-primary);
    position: relative;
    z-index: 1;
}

.trust-section-2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, 
        transparent 0%,
        transparent 60%,
        var(--bg-primary) 80%,
        var(--bg-primary) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.trust-grid-2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 20px;
    margin-top: 50px;
}

.trust-item-2 {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    opacity: 1;
    
    grid-row: span 1;
    grid-column: span 1;
}

.trust-item-2:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    opacity: 1;
}

.trust-item-2.size-1 {
    grid-row: span 1;
    grid-column: span 1;
}

.trust-item-2.size-2 {
    grid-row: span 2;
    grid-column: span 1;
}

.trust-media-2 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.trust-media-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.trust-item-2:hover .trust-media-2 img {
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .trust-grid-2 {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 220px;
    }
}

@media (max-width: 768px) {
    .trust-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .trust-grid-2 {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .trust-item-2.size-2 {
        grid-row: span 1;
        grid-column: span 1;
    }
}

.achievement-badge {
    position: fixed;
    bottom: 20px;
    left: 0;
    width: auto;
    max-width: 600px;
    background: #0088cc;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    border: none;
    transition: transform 0.4s ease;
    opacity: 0;
    transform: translateX(-100%);
    pointer-events: none;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.achievement-badge.show {
    animation: slideInFromLeft 0.4s ease-out forwards;
    pointer-events: auto;
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.achievement-badge {
    background: #0088cc;
}

.achievement-close {
    width: 28px;
    height: 28px;
    border: none;
    background: transparent;
    color: #ffffff;
    border-radius: 0;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
    margin-left: 10px;
}

.achievement-close:hover {
    opacity: 0.7;
}

.achievement-close:hover {
    background: transparent;
    color: var(--primary-color);
    transform: rotate(90deg);
}

.telegram-promo-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100%;
}

.telegram-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.telegram-icon-circle svg {
    color: #0088cc;
    width: 20px;
    height: 20px;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 24px rgba(0, 136, 204, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 32px rgba(0, 136, 204, 0.6);
    }
}

.telegram-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    margin: 0 16px;
}

.telegram-promo-text {
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    letter-spacing: 0.2px;
}

.telegram-subscribe-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 18px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    border: 1px solid #ffffff;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    height: 32px;
}

.telegram-subscribe-btn span {
    color: #ffffff;
    font-weight: 500;
}

.telegram-subscribe-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.telegram-subscribe-btn:hover span {
    color: #ffffff;
}

.telegram-subscribe-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.telegram-subscribe-btn:hover::before {
    left: 100%;
}

.telegram-subscribe-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 136, 204, 0.6);
}

.telegram-subscribe-btn:active {
    transform: translateY(-1px);
}

.telegram-subscribe-btn svg {
    flex-shrink: 0;
}

.achievement-badge.hidden {
    animation: slideOutToLeft 0.4s ease forwards;
}

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .achievement-badge {
        bottom: 20px;
        left: 0;
        max-width: 90%;
        padding: 10px 16px;
        min-height: 45px;
    }
    
    .telegram-promo-content {
        gap: 12px;
    }
    
    .telegram-icon-circle {
        width: 32px;
        height: 32px;
    }
    
    .telegram-icon-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .telegram-text-wrapper {
        margin: 0 12px;
    }
    
    .telegram-promo-text {
        font-size: 12px;
    }
    
    .telegram-subscribe-btn {
        font-size: 11px;
        padding: 5px 14px;
        height: 28px;
    }
    
    .achievement-close {
        width: 24px;
        height: 24px;
        font-size: 20px;
        margin-left: 8px;
    }
}

@media (max-width: 480px) {
    .achievement-badge {
        bottom: 15px;
        left: 0;
        max-width: 95%;
        padding: 8px 12px;
        min-height: 42px;
    }
    
    .telegram-promo-content {
        gap: 10px;
    }
    
    .telegram-icon-circle {
        width: 28px;
        height: 28px;
    }
    
    .telegram-icon-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .telegram-text-wrapper {
        margin: 0 8px;
    }
    
    .telegram-promo-text {
        font-size: 11px;
    }
    
    .telegram-subscribe-btn {
        font-size: 10px;
        padding: 4px 12px;
        height: 26px;
    }
    
    .achievement-close {
        width: 22px;
        height: 22px;
        font-size: 18px;
        margin-left: 6px;
    }
}

@media (max-width: 968px) {
    .cars-carousel-container {
        padding: 20px 50px;
    }
    
    .car-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    
    .why-us-advantages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        row-gap: 2rem;
        padding: 0 10px;
    }
    
    .why-us-advantage-item {
        padding: 1.5rem;
        padding-top: 2.5rem;
        min-height: auto;
    }
    
    .why-us-advantage-number {
        font-size: 2rem;
        width: 50px;
        height: 50px;
        top: -25px;
    }
    
    .why-us-advantage-number::before {
        width: 50px;
        height: 50px;
    }
    
    .why-us-advantage-title {
        font-size: 1.2rem;
    }
    
    .why-us-advantage-description {
        font-size: 0.9rem;
    }
    
    .why-us-section {
        padding: 60px 0 40px 0;
    }
    
    .why-us-header {
        padding: 0 10px;
        margin-bottom: 2rem;
    }

    .advantage-banner {
        display: grid;
        grid-template-rows: auto 1fr;
        padding-top: 20px;
        padding-bottom: 40px;
    }
    
    .advantage-banner .container {
        order: 1;
        transform: translateY(-30px);
    }
    
    .advantage-image-wrapper {
        order: 2;
        position: relative;
        justify-content: flex-start;
        overflow: visible;
        width: 100%;
        margin-top: 0;
    }
    
    .advantage-content {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .advantage-text-wrapper {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        margin-top: 0;
        margin-bottom: 40px;
    }
    
    .advantage-circle {
        margin-left: -250px;
        width: 400px;
        height: 400px;
        box-shadow: none;
        filter: none;
    }
    
    .advantage-image {
        margin-left: 50px;
    }

    .news-section .container {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .news-section .section-title {
        grid-column: 1;
        margin-bottom: 2rem;
    }
    
    .news-layout {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .news-left {
        position: relative;
        top: 0;
        min-height: auto;
        width: 100%;
    }
    
    .news-main-card {
        padding: 1.5rem;
        margin-top: 0;
    }
    
    .news-text-content {
        gap: 1rem;
    }
    
    .news-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    
    .news-video {
        height: 200px;
    }
    
    .news-video video {
        object-fit: contain;
    }
    
    .news-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .news-sidebar-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 0;
        width: 100%;
    }
    
    .news-sidebar-column {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    .news-small-card {
        border-radius: 12px;
        aspect-ratio: 1;
        display: flex;
        flex-direction: column;
    }
    
    .news-small-card-image {
        height: auto;
        flex: 1;
        border-radius: 12px 12px 0 0;
    }
    
    .news-small-card-image img {
        border-radius: 12px 12px 0 0;
    }
    
    .news-small-card-content {
        position: absolute;
        bottom: 0;
        padding: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 1rem;
        background: transparent;
        border-radius: 0 0 12px 12px;
        justify-content: flex-end;
    }
    
    .news-small-title {
        font-size: 0.85rem;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .navbar-top {
        padding: 0.8rem 0;
    }
    
    .navbar-top-wrapper {
        justify-content: space-between;
    }
    
    .navbar-left {
        justify-content: flex-start;
    }
    
    .navbar-center {
        justify-content: flex-end;
        left: 0;
        flex: 1;
        gap: 0.8rem;
    }
    
    .navbar-center .logo-img {
        order: 2;
        width: 60px;
        height: 60px;
    }
    
    .navbar-center .phone-wrapper {
        order: 1;
        margin-right: 0;
    }
    
    .navbar-center .phone-label {
        font-size: 0.8rem;
    }
    
    .navbar-center .phone-link {
        font-size: clamp(1.25rem, 2.3vw, 1.6rem);
    }
    
    .navbar-left {
        align-items: center;
    }
    
    .hamburger {
        align-self: center;
    }
    
    .navbar-right {
        display: none;
    }
    
    .navbar-social-icons {
        display: none;
    }
    
    .cars-carousel-container {
        padding: 20px 40px;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-top: -15px;
        margin-bottom: 30px;
    }
    
    .car-card {
        width: 280px;
        min-height: 500px;
    }
    
    .car-photos-grid {
        height: 200px;
    }
    
    .car-image-real {
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }
    
    .car-image-real.vertical {
        object-position: center center;
    }
    
    .car-photos-grid {
        height: 200px;
        overflow: hidden;
    }
    
    .car-grid-photo {
        object-fit: cover;
        object-position: center bottom;
    }
    
    .car-content {
        padding: 20px;
    }
    
    .car-title-wrapper {
        margin-bottom: 16px;
    }
    
    .car-brand {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
    
    .car-model {
        font-size: 1rem;
    }
    
    .car-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }
    
    .car-specs-list {
        gap: 0;
        margin-bottom: 16px;
    }
    
    .car-spec-divider-vertical {
        height: 35px;
        margin: 0 10px;
    }
    
    .car-spec-icon {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        max-width: 20px;
        max-height: 20px;
    }
    
    .car-spec-item img[src="assets/icons/icons8-calendar-96.png"] {
        width: 22px;
        height: 22px;
        min-width: 22px;
        min-height: 22px;
        max-width: 22px;
        max-height: 22px;
    }
    
    .car-spec-text {
        font-size: 0.85rem;
    }
    
    .car-price {
        font-size: 1.3rem;
        margin-bottom: 16px;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .car-details-btn {
        padding: 10px 16px;
        font-size: 0.95rem;
    }
    
    .car-nav {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    
    .car-dots {
        margin-bottom: 15px;
    }

    .featured-car-image {
        height: 350px !important;
        object-fit: cover !important;
        object-position: center top;
    }
    
    .featured-car-card {
        min-height: 600px;
        opacity: 1 !important;
        transform: none !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    }
    
    .featured-cars-section .section-title {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .featured-cars-section .section-subtitle {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .car-dot {
        width: 10px;
        height: 10px;
    }
    
    .floating-marquee-1 {
        margin-top: -50px;
        margin-bottom: 15px;
    }

    .floating-marquee-2 {
        margin-top: 15px;
        margin-bottom: 0px;
    }
    
    .floating-marquee-content-1,
    .floating-marquee-content-2 {
        padding: 35px 0 20px 0;
    }
    
    .floating-marquee-content-1 span,
    .floating-marquee-content-2 span {
        font-size: 26px;
        letter-spacing: 8px;
        padding: 0 30px;
    }
}

@media (max-width: 480px) {
    .catalog-page-section {
        padding: 100px 0 40px;
    }
    
    .catalog-page-section .section-title {
        font-size: clamp(1.1rem, 5vw, 1.5rem);
        padding: 0 15px;
    }
    
    .catalog-page-section .breadcrumb {
        font-size: 0.75rem;
        padding: 0 15px;
    }
    
    .catalog-grid {
        padding: 0 15px;
        gap: 1.2rem;
    }
    
    .cars-carousel-container {
        padding: 20px 35px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .car-card {
        width: 280px;
        min-height: 500px;
    }
    
    .car-photos-grid {
        height: 200px;
    }
    
    .car-image-real {
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }
    
    .car-image-real.vertical {
        object-position: center center;
    }
    
    .car-photos-grid {
        height: 200px;
        overflow: hidden;
    }
    
    .car-grid-photo {
        object-fit: cover;
        object-position: center bottom;
    }

    .featured-car-image {
        height: 380px !important;
        object-fit: cover !important;
        object-position: center top;
    }
    
    .featured-car-card {
        min-height: 650px;
        opacity: 1 !important;
        transform: none !important;
        transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease !important;
    }
    
    .featured-cars-section .section-title {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .featured-cars-section .section-subtitle {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    .car-content {
        padding: 18px;
    }
    
    .car-title-wrapper {
        margin-bottom: 14px;
    }
    
    .car-brand {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .car-model {
        font-size: 0.95rem;
    }
    
    .car-title {
        font-size: 1.1rem;
        margin-bottom: 14px;
    }
    
    .car-specs-list {
        gap: 0;
        margin-bottom: 14px;
    }
    
    .car-spec-divider-vertical {
        height: 30px;
        margin: 0 8px;
    }
    
    .car-spec-icon {
        width: 18px;
        height: 18px;
        min-width: 18px;
        min-height: 18px;
        max-width: 18px;
        max-height: 18px;
    }
    
    .car-spec-item img[src="assets/icons/icons8-calendar-96.png"] {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
        max-width: 20px;
        max-height: 20px;
    }
    
    .car-spec-text {
        font-size: 0.8rem;
    }
    
    .car-price {
        font-size: 1.2rem;
        margin-bottom: 14px;
        white-space: nowrap;
        min-width: fit-content;
    }
    
    .car-details-btn {
        padding: 9px 14px;
        font-size: 0.9rem;
    }
    
    .car-details-arrow {
        width: 18px;
        height: 18px;
    }
    
    .car-nav {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }
    
    .car-nav-left {
        left: -5px;
    }
    
    .car-nav-right {
        right: -5px;
    }
    
    .car-dot {
        width: 8px;
        height: 8px;
    }
    
    .floating-marquee-1 {
        margin-top: -40px;
        margin-bottom: 15px;
    }

    .floating-marquee-2 {
        margin-top: -50px;
        margin-bottom: 0px;
    }
    
    .floating-marquee-content-1,
    .floating-marquee-content-2 {
        padding: 30px 0 18px 0;
    }
    
    .floating-marquee-content-1 span,
    .floating-marquee-content-2 span {
        font-size: 22px;
        letter-spacing: 6px;
        padding: 0 25px;
    }
    
    .footer-top-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-logo-section {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .footer-logo-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        width: 100%;
        justify-content: flex-start;
        gap: 15px;
    }

    .footer-bottom-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-developer {
        flex-wrap: wrap;
    }

    .footer-links-bottom {
        flex-direction: column;
        gap: 10px;
    }
    
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--text-primary);
    visibility: visible;
    opacity: 1;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: left;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

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

.breadcrumb a.breadcrumb-current {
    color: var(--primary-color) !important;
}

.breadcrumb a.breadcrumb-current:hover {
    color: var(--primary-dark) !important;
}

.breadcrumb-separator {
    color: var(--text-light);
    margin: 0 4px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
}

.breadcrumb-current {
    color: var(--primary-color);
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    cursor: pointer;
}

.breadcrumb-current:hover {
    color: var(--primary-dark);
}

.catalog-page-section {
    padding: 220px 0 100px;
    background: #000000;
    margin-top: 0;
}

.catalog-page-section .section-title {
    margin-top: 0;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
    display: block;
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    white-space: nowrap;
}

.catalog-page-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #ffffff;
    opacity: 0.3;
    display: block !important;
}

.catalog-page-section .breadcrumb {
    margin-bottom: 3rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 40px;
}

@media (max-width: 1200px) {
    .catalog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.catalog-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.catalog-empty p {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.catalog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-btn {
    padding: 10px 20px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'VAG World Bold', sans-serif;
}

.pagination-btn:hover:not(.disabled) {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pagination-number {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'VAG World Bold', sans-serif;
}

.pagination-number:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.pagination-number.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    cursor: default;
}

.pagination-dots {
    color: var(--text-light);
    padding: 0 4px;
}

@media (max-width: 768px) {
    .catalog-page-section {
        padding: 120px 0 60px;
    }
    
    .catalog-page-section .section-title {
        white-space: normal;
        text-align: center;
        font-size: clamp(1.2rem, 4vw, 1.8rem);
        padding: 0 20px;
        line-height: 1.3;
        word-wrap: break-word;
    }
    
    .catalog-page-section .breadcrumb {
        text-align: center;
        padding: 0 20px;
        font-size: 0.8rem;
    }
    
    .catalog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        justify-items: center;
        padding: 0 20px;
    }
    
    .breadcrumb-container {
        padding: 15px 0;
    }
    
    .pagination-controls {
        gap: 8px;
    }
    
    .pagination-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .pagination-number {
        min-width: 36px;
        height: 36px;
        padding: 0 8px;
        font-size: 0.85rem;
    }
}

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

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

@media (max-width: 768px) {
    
    .new-section {
        padding: 60px 0;
        overflow: visible;
    }
    
    .new-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .new-section-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .new-section-text {
        width: 100% !important;
        left: 0 !important;
        text-align: center;
        padding: 0 20px;
        font-size: clamp(1rem, 4vw, 1.5rem);
        letter-spacing: 2px;
    }
    
    .parallelogram-indicators {
        left: 0 !important;
        width: 100% !important;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .new-section-sound-control {
        left: 0 !important;
        width: 100% !important;
        justify-content: center;
        margin-top: 20px;
    }
    
    .new-section-parallelograms {
        position: relative !important;
        right: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: auto !important;
        padding: 20px 15px;
        display: flex !important;
        flex-direction: row !important;
        gap: 10px;
        justify-content: stretch;
        flex-wrap: nowrap;
    }
    
    .parallelogram {
        flex: 1 1 0 !important;
        width: auto !important;
        height: 250px !important;
        min-height: 250px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        transform: none !important;
        border-radius: 12px;
    }
    
    .parallelogram:first-child {
        margin-left: 0 !important;
    }
    
    .parallelogram.active {
        transform: scale(1.3) !important;
        z-index: 10;
    }
    
    .parallelogram video {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        transform: none !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        border-radius: 12px;
    }
    
    .parallelogram.active video {
        width: 100% !important;
        height: 100% !important;
        margin-left: 0 !important;
    }
    
    .parallelogram:not(.active) video {
        width: 100% !important;
        height: 100% !important;
        margin-left: 0 !important;
        opacity: 1 !important;
    }
    
    .parallelogram:not(.active) {
        background: transparent !important;
    }

    .consultation-banner {
        padding: 60px 0;
    }
    
    .consultation-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .consultation-text-wrapper {
        width: 100% !important;
        padding-right: 0 !important;
        padding: 0 20px;
    }
    
    .consultation-image-wrapper {
        position: relative !important;
        width: 100% !important;
        height: 300px !important;
        margin-top: 30px;
        background-position: center center;
        background-size: cover;
    }
    
    .consultation-text h2 {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
        text-align: center;
    }
    
    .consultation-text p {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        text-align: center;
    }
    
    .consultation-banner .btn-primary {
        width: 100%;
        margin: 0 auto;
        display: block;
    }

    .hero {
        min-height: 500px;
        padding: 100px 20px 60px;
    }
    
    .hero-content {
        padding: 0 20px;
    }

    .cars-carousel-container {
        padding: 30px 20px;
    }
    
    .car-card {
        min-width: 280px;
        width: 280px;
        min-height: 500px;
    }
    
    .car-image-real {
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }
    
    .car-image-real.vertical {
        object-position: center center;
    }
    
    .car-photos-grid {
        height: 200px;
        overflow: hidden;
    }
    
    .car-grid-photo {
        object-fit: cover;
        object-position: center bottom;
    }
    
    .car-photos-grid {
        height: 200px;
    }

    .featured-car-image {
        height: 400px !important;
        object-fit: cover !important;
        object-position: center top;
    }
    
    .featured-car-card {
        min-height: 700px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .countries-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .process-step {
        width: 100% !important;
        max-width: 100%;
    }
    
    .step-connector {
        display: none !important;
    }

    .k5-circle-wrapper {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        overflow: visible;
    }
    
    .k5-circle {
        margin-right: -80%;
    }

    .footer-top-content {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 0 20px;
    }
    
    .footer-logo-section {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .footer-logo-wrapper {
        align-items: center;
    }
    
    .footer-phone-wrapper {
        align-items: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 0 20px;
    }

    .news-section {
        padding: 60px 0;
    }
    
    .news-layout {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px;
    }
    
    .news-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card {
        width: 100%;
        max-width: 100%;
    }

    .reports-section {
        padding: 60px 0;
    }
    
    .reports-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .faq-section {
        padding: 60px 0;
    }
    
    .faq-container {
        padding: 0 20px;
    }

    .loyalty-section {
        padding: 60px 0;
    }
    
    .loyalty-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .loyalty-form-card {
        padding: 30px 20px;
        margin: 0 20px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .news-marquee,
    .reports-marquee {
        padding: 15px 0;
    }
    
    .news-marquee-content span,
    .reports-marquee-content span {
        font-size: clamp(14px, 3vw, 18px);
        padding: 0 20px;
    }

    .modal-content {
        width: 90%;
        max-width: 90%;
        margin: 20px;
        padding: 30px 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .modal-buttons .btn {
        width: 100%;
    }

    .sidebar {
        width: 100%;
        max-width: 100%;
    }

    .car-details-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .car-details-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .car-details-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .new-section {
        padding: 40px 0;
    }
    
    .new-section-text {
        font-size: clamp(0.9rem, 5vw, 1.2rem);
        letter-spacing: 1px;
        padding: 0 15px;
    }
    
    .new-section-parallelograms {
        display: flex !important;
        flex-direction: row !important;
        padding: 20px 15px !important;
        gap: 8px;
    }
    
    .parallelogram {
        flex: 1 1 0 !important;
        width: auto !important;
        height: 220px !important;
        min-height: 220px !important;
        margin-left: 0 !important;
        transform: none !important;
        border-radius: 12px;
    }
    
    .parallelogram.active {
        transform: scale(1.3) !important;
        z-index: 10;
    }
    
    .parallelogram video {
        transform: none !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        border-radius: 12px;
    }
    
    .parallelogram:not(.active) {
        background: transparent !important;
    }
    
    .parallelogram:not(.active) video {
        opacity: 1 !important;
    }

    .consultation-banner {
        padding: 40px 0;
    }
    
    .consultation-image-wrapper {
        height: 200px !important;
    }
    
    .consultation-text h2 {
        font-size: clamp(1rem, 6vw, 1.5rem);
        letter-spacing: 2px;
    }

    .hero {
        min-height: 400px;
        padding: 80px 15px 40px;
    }
    
    .hero-title {
        font-size: clamp(1.2rem, 6vw, 1.8rem);
    }

    .navbar-address {
        font-size: 0.7rem;
    }
    
    .address-text,
    .address-hours {
        font-size: 0.7rem;
    }
    
    .phone-label {
        font-size: 0.75rem;
    }
    
    .phone-text {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

    .car-card {
        min-width: 280px;
        width: 280px;
        min-height: 500px;
    }
    
    .car-image-real {
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }
    
    .car-image-real.vertical {
        object-position: center center;
    }
    
    .car-photos-grid {
        height: 200px;
        overflow: hidden;
    }
    
    .car-grid-photo {
        object-fit: cover;
        object-position: center bottom;
    }
    
    .car-photos-grid {
        height: 200px;
    }

    .featured-car-image {
        height: 400px !important;
        object-fit: cover !important;
        object-position: center top;
    }
    
    .featured-car-card {
        min-height: 700px;
    }
    
    .car-content {
        padding: 15px;
    }

    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        padding: 0 15px;
    }
    
    .section-subtitle {
        font-size: clamp(0.85rem, 3vw, 1rem);
        padding: 0 15px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .footer-nav-link {
        font-size: 0.75rem;
    }
    
    .footer-copyright,
    .footer-developer-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 360px) {
    .catalog-page-section {
        padding: 90px 0 40px;
    }
    
    .catalog-page-section .section-title {
        font-size: clamp(1rem, 5vw, 1.3rem);
        padding: 0 10px;
    }
    
    .catalog-page-section .breadcrumb {
        font-size: 0.7rem;
        padding: 0 10px;
    }
    
    .catalog-grid {
        padding: 0 10px;
        gap: 1rem;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .faq-grid {
        padding: 0 10px;
        gap: 10px;
    }
    
    .faq-item {
        padding: 14px 16px;
        gap: 10px;
        flex-direction: row;
    }
    
    .faq-content {
        padding-right: 45px;
    }
    
    .faq-text {
        font-size: 0.9rem;
        line-height: 1.3;
    }
    
    .faq-icon-circle {
        width: 30px;
        height: 30px;
        top: 14px;
        right: 16px;
    }
    
    .faq-icon {
        font-size: 1.1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 10px 0 0 0;
    }
    
    .faq-answer p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin: 0 0 8px 0;
    }
    
    .new-section-text {
        font-size: 0.9rem;
        letter-spacing: 0.5px;
    }
    
    .new-section-parallelograms {
        display: flex !important;
        flex-direction: row !important;
        padding: 20px 10px !important;
        gap: 6px;
    }
    
    .parallelogram {
        flex: 1 1 0 !important;
        width: auto !important;
        height: 200px !important;
        min-height: 200px !important;
        margin-left: 0 !important;
        transform: none !important;
        border-radius: 12px;
    }
    
    .parallelogram.active {
        transform: scale(1.3) !important;
        z-index: 10;
    }
    
    .parallelogram video {
        transform: none !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        border-radius: 12px;
    }
    
    .parallelogram:not(.active) {
        background: transparent !important;
    }
    
    .parallelogram:not(.active) video {
        opacity: 1 !important;
    }
    
    .car-card {
        min-width: 280px;
        width: 280px;
        min-height: 500px;
    }
    
    .car-image-real {
        height: 200px;
        object-fit: cover;
        object-position: center center;
    }
    
    .car-image-real.vertical {
        object-position: center center;
    }
    
    .car-photos-grid {
        height: 200px;
        overflow: hidden;
    }
    
    .car-grid-photo {
        object-fit: cover;
        object-position: center bottom;
    }
    
    .car-photos-grid {
        height: 200px;
    }

    .featured-car-image {
        height: 380px !important;
        object-fit: cover !important;
        object-position: center top;
    }
    
    .featured-car-card {
        min-height: 650px;
    }
    
    .hero-title {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    right: 0;
    width: auto;
    max-width: 600px;
    background: #1a1a1a;
    padding: 12px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    border: none;
    transition: transform 0.4s ease;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    min-height: 50px;
    display: flex;
    align-items: center;
}

.cookie-consent.show {
    animation: slideInFromRight 0.4s ease-out forwards;
    pointer-events: auto;
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.cookie-consent-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 0;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    height: 100%;
}

.cookie-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cookie-icon-circle svg {
    color: #1a1a1a;
    width: 20px;
    height: 20px;
}

.cookie-consent-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    margin: 0 16px;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    line-height: 1.4;
    letter-spacing: 0.2px;
    font-family: 'Roboto', Arial, sans-serif;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 18px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    border: 1px solid #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    height: 32px;
    font-family: 'Roboto', Arial, sans-serif;
}

.cookie-btn span {
    color: #ffffff;
    font-weight: 500;
}

.cookie-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
}

.cookie-btn:hover span {
    color: #ffffff;
}

.cookie-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cookie-btn:hover::before {
    left: 100%;
}

.cookie-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.6);
}

.cookie-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .cookie-consent {
        max-width: 95%;
        padding: 10px 15px;
    }
    
    .cookie-consent-content {
        gap: 12px;
    }
    
    .cookie-icon-circle {
        width: 32px;
        height: 32px;
    }
    
    .cookie-icon-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .cookie-consent-text {
        margin: 0 12px;
    }
    
    .cookie-consent-text p {
        font-size: 12px;
    }
    
    .cookie-consent-buttons {
        gap: 8px;
    }
    
    .cookie-btn {
        font-size: 11px;
        padding: 5px 14px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .cookie-consent {
        max-width: 100%;
        right: 0;
        bottom: 0;
    }
    
    .cookie-consent-content {
        gap: 10px;
    }
    
    .cookie-icon-circle {
        width: 28px;
        height: 28px;
    }
    
    .cookie-icon-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .cookie-consent-text {
        margin: 0 8px;
    }
    
    .cookie-consent-text p {
        font-size: 11px;
    }
    
    .cookie-btn {
        font-size: 10px;
        padding: 4px 12px;
        height: 26px;
    }
}

