@font-face {
    font-family: "DrukTextWideCyr";
    src: url("../fonts/druktextwidecyr-medium.eot");
    /* IE 9 Compatibility Mode */
    src: url("../fonts/druktextwidecyr-medium.eot?#iefix") format("embedded-opentype"),
        /* IE < 9 */
        url("../fonts/druktextwidecyr-medium.woff2") format("woff2"),
        /* Super Modern Browsers */
        url("../fonts/druktextwidecyr-medium.woff") format("woff"),
        /* Firefox >= 3.6, any other modern browser */
        url("../fonts/druktextwidecyr-medium.ttf") format("truetype"),
        /* Safari, Android, iOS */
        url("../fonts/druktextwidecyr-medium.svg#druktextwidecyr-medium") format("svg");
    /* Chrome < 4, Legacy iOS */
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}

body {
    font-family: "Ubuntu", "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: var(--text-primary);
    background-color: var(--darker-grey);
    background-image: 
        radial-gradient(ellipse at 20% 0%, rgba(230, 14, 25, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 100%, rgba(230, 14, 25, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", "DrukTextWideCyr", sans-serif;
    font-optical-sizing: auto;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 {
    font-size: 60px;
}

h2 {
    font-size: 50px;
}

p mark {
    background-color: var(--primary-green);
    color: #fff;
    padding: 2px 5px;
    border-radius: 4px;
}

input::placeholder {
    color: #838383 !important;
}

:root,
[data-bs-theme="light"] {
    --bs-dark: #0d0d0f;
    --bs-body-color: #f6f6f6;
    --bs-body-bg: #151518;
    --bs-highlight-color: #e60e19;
    --bs-danger: #e60e19;
    --primary-red: #e60e19;
    --primary-green: #e60e19;
    --primary-green-light: #ff333e;
    --primary-red-light: #ff333e;
    --dark-grey: #1a1a1c;
    --darker-grey: #0d0d0f;
    --card-bg: #1e1e22;
    --card-bg-hover: #252529;
    --glass-bg: rgba(30, 30, 34, 0.9);
    --glass-border: rgba(255, 255, 255, 0.08);
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --text-muted: #6c6c70;
    --card-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.4);
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --section-padding: 80px 0;
    --section-padding-lg: 120px 0;
}

/* ========================================= */
/* Unified Design System                     */
/* ========================================= */

.section-main {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section-main--lg {
    padding: var(--section-padding-lg);
}

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

.section-header--center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.section-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.section-title span {
    color: var(--primary-red);
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--primary-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 20px;
    line-height: 1.6;
}

/* Unified Card Style */
.u-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.u-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 14, 25, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    background: var(--card-bg-hover);
}

/* ========================================= */
/* Dynamic Loading Animations (Scroll Reveal) */
/* ========================================= */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transition-delay: var(--reveal-delay, 0s);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.active,
.reveal-right.active {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.active {
    opacity: 1;
    transform: scale(1);
}

.table {
    --bs-table-bg: none;
    --bs-table-color-type: #f6f6f6;
    --bs-table-bg-type: initial;
    --bs-table-color-state: #f6f6f6;
    --bs-table-bg-state: initial;
    --bs-table-color: #f6f6f6;
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-emphasis-color);
    --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
    --bs-table-active-color: var(--bs-emphasis-color);
    --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
    --bs-table-hover-color: var(--bs-emphasis-color);
    --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}

.btn {
    font-size: 16px;
    font-weight: 600;
    font-family: "Manrope", sans-serif;
    padding: 14px 32px;
    border-radius: var(--border-radius-md);
    border: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-danger {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--primary-green);
    --bs-btn-border-color: var(--primary-green);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--primary-green-light);
    --bs-btn-hover-border-color: var(--primary-green-light);
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-light) 100%);
    box-shadow: 0 4px 15px rgba(230, 14, 25, 0.3);
}

.btn-danger:hover {
    box-shadow: 0 8px 25px rgba(230, 14, 25, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    --bs-btn-color: #1a1a1c;
    --bs-btn-bg: rgba(0, 0, 0, 0.05);
    --bs-btn-hover-bg: #fff;
    --bs-btn-hover-color: var(--primary-green);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.btn-secondary:hover {
    background: #fff !important;
    color: var(--primary-green) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.pagination {
    --bs-pagination-padding-x: 0.75rem;
    --bs-pagination-padding-y: 0.375rem;
    --bs-pagination-font-size: 1rem;
    --bs-pagination-color: #000;
    --bs-pagination-bg: #e60e19;
    --bs-pagination-border-width: var(--bs-border-width);
    --bs-pagination-border-color: #000;
    --bs-pagination-border-radius: var(--bs-border-radius);
    --bs-pagination-hover-color: #f6f6f6;
    --bs-pagination-hover-bg: var(--bs-tertiary-bg);
    --bs-pagination-hover-border-color: var(--bs-border-color);
    --bs-pagination-focus-color: var(--bs-link-hover-color);
    --bs-pagination-focus-bg: var(--bs-secondary-bg);
    --bs-pagination-focus-box-shadow: 0 0 0 0.25rem rgba(0, 0, 0, 0.25);
    --bs-pagination-active-color: #fff;
    --bs-pagination-active-bg: var(--primary-green);
    --bs-pagination-active-border-color: var(--primary-green);
    --bs-pagination-disabled-color: var(--bs-secondary-color);
    --bs-pagination-disabled-bg: var(--bs-secondary-bg);
    --bs-pagination-disabled-border-color: var(--bs-border-color);
    display: flex;
    padding-left: 0;
    list-style: none;
}

/* header {
    position: relative;
} */

header .logo {
    width: 130px;
}

.navbar {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 95%;
    max-width: 1400px;
    background: rgba(20, 20, 24, 0.85) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.4);
}

.navbar .logo-img {
    /* filter: brightness(0.2); */
    /* Make the white logo dark for light theme */
    transition: all 0.3s ease;
}

/* Header scrolled state - full width dark background */
.header-scrolled .navbar {
    top: 0;
    width: 100vw;
    max-width: 100vw;
    border-radius: 0;
    background: rgba(13, 13, 15, 0.98) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 8px 0;
}

.header-scrolled .navbar .container {
    max-width: 1400px;
}

.navbar.scrolled {
    top: 0;
    width: 100%;
    border-radius: 0;
    background: rgba(13, 13, 15, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-pills-container {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-pill {
    background: transparent;
    color: var(--text-secondary);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.btn-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.btn-order {
    background: var(--primary-green);
    color: #fff;
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
}

.btn-burger {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary) !important;
    border-radius: 12px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.btn-burger:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-burger i {
    color: var(--primary-red) !important;
    font-size: 18px !important;
}

.header-phones-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header-info-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.header-info-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

.header-info-pill i {
    color: var(--primary-red);
    font-size: 14px;
}

/* .hero {
    position: relative;
    height: 80vh;
    overflow: hidden;
    filter: brightness(0.5);
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
} */

/* Removed redundant dark gradient */

.navbar i {
    color: var(--primary-green);
    font-size: 22px;
}

footer i {
    color: var(--primary-green);
    font-size: 22px;
}

.navbar-nav {
    gap: 10px;
    /* Расстояние между пунктами меню */
}

header .dropdown-menu {
    background-color: rgb(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    /* Размытие фона за элементом */
    -webkit-backdrop-filter: blur(5px);
    /* Для поддержки в Safari */
    border: 0;
}

header .dropdown-menu .dropdown-item {
    color: #f6f6f6;
}

/* Hero Redesign */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--darker-grey) 0%, var(--dark-grey) 100%);
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 20%, rgba(230, 14, 25, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(230, 14, 25, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.hero-content .subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-tag {
    background: #f0f0f0;
    color: #404047;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 14px;
    display: inline-block;
    margin-bottom: 20px;
    border: 1px solid #ddd;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

/* Hero Export Cards */
.hero-export-cards {
    display: flex;
    gap: 16px;
    flex-wrap: nowrap;
}

.export-card {
    background: rgba(30, 30, 34, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    flex: 1;
    min-width: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.export-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(230, 14, 25, 0.4);
}

.export-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.export-card-header h4 {
    font-size: 18px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.export-flag {
    width: 50px;
    height: 35px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.export-flag svg {
    width: 100%;
    height: 100%;
    display: block;
}

.export-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.export-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.export-features li:last-child {
    margin-bottom: 0;
}

.export-features .accent {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

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

    .export-card {
        max-width: 100%;
    }
}

.flag-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.flag-icon:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.flag-icon svg {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.hero-visual {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #262628;
    position: relative;
    height: 100%;
    min-height: 400px;
}

/* Dark overlay for video */
.hero-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.25) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 30px;
}

.hero-visual img,
.hero-visual video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.breadcrumb a {
    color: #f6f6f6;
    text-decoration: none;
}

/* .text-cap {
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: normal;
    font-style: normal;
    color: #f6f6f6;
} */


section svg {
    width: 45px;
    border-radius: 5px;
}

.bg-dark {
    background-color: var(--dark-grey) !important;
    color: #fff;
}

.bg-grey {
    background-color: #262628 !important;
    color: #f6f6f6;
}

.bg-light {
    background-color: var(--darker-grey) !important;
    background: linear-gradient(180deg, var(--darker-grey) 0%, #151518 100%) !important;
    color: var(--text-primary) !important;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

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

.glass-card {
    background: rgba(30, 30, 34, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    border-radius: 24px;
}

.bg-grey {
    background: var(--dark-grey) !important;
    color: var(--text-primary);
}

.bg-white {
    background: var(--darker-grey) !important;
    color: var(--text-primary);
}

#about .card {
    border: 0;
}

#advantages .card {
    background: linear-gradient(145deg, rgba(30, 30, 34, 0.95) 0%, rgba(20, 20, 24, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

#advantages .card h2 {
    color: var(--text-primary);
}

#advantages .card p {
    color: var(--text-secondary);
}

#advantages .card mark {
    background-color: var(--primary-red);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
}

#catalogs .card {
    border: 0;
}

#steps .card {
    background-color: none;
    border: 1px solid #000;
}

#socials .card {
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

#socials .card a {
    color: #e60e19;
    text-decoration: none;
}

#socials .card:hover {
    border-color: #e60e19;
    cursor: pointer;
}

#socials .card hr {
    transition: width 0.3s ease;
    width: 100%;
    margin: 20px auto;
    transform-origin: center;
}

#socials .card:hover hr {
    width: 80%;
}

#reviews .card {
    background-color: none;
    border: 1px solid #000;
}

#reviews .card i {
    color: gold;
}

#places .card {
    border: 1px solid transparent;
    transition: border-color 0.3s ease;
}

#places .card a {
    color: #e60e19;
    text-decoration: none;
}

#places .card:hover {
    border-color: #e60e19;
    cursor: pointer;
}

#places .card hr {
    transition: width 0.3s ease;
    width: 100%;
    margin: 20px auto;
    transform-origin: center;
}

#places .card:hover hr {
    width: 80%;
}

#catalog {
    padding: 30px 0px;
}

.pt-6 {
    padding-top: 80px !important;
}

#catalog .card {
    background-color: none;
    border: 1px solid #000;
}

#catalog .card {
    border: 0;
}

#catalog select {
    background-color: #1d1d1d;
    color: #838383;
    border: 1px solid #303030;
}

#catalog input {
    background-color: #1d1d1d;
    color: #838383;
    border: 1px solid #303030;
}

#catalog .dropdown-menu {
    background-color: rgb(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    /* Размытие фона за элементом */
    -webkit-backdrop-filter: blur(5px);
    /* Для поддержки в Safari */
}

#catalog .dropdown-menu .dropdown-item {
    color: #f6f6f6;
}

#catalog .dropdown-menu {
    max-height: 300px !important;
    margin-bottom: 10px;
    padding: 0;
}

#catalog .dropdown-menu .inner {
    max-height: 230px !important;
}

#catalog .dropdown-menu {
    max-width: 300px !important;
    overflow-x: auto !important;
}

#catalog ul.dropdown-menu {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

#catalog .d-flex {
    gap: 10px;
}

#catalog td {
    padding: 0.5rem 0;
}

.input-group-text {
    background-color: #1d1d1d;
    color: #838383;
    border: 1px solid #303030;
}

/* Mobile Menu Styling */
.navbar-collapse {
    border-radius: 0 0 24px 24px;
    margin-top: 10px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    border-top: none;
}

.navbar-nav .nav-link {
    padding: 12px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 12px;
    margin-bottom: 5px;
}

.navbar-nav .nav-link:hover {
    background: rgba(230, 14, 25, 0.05);
    color: var(--primary-green) !important;
    padding-left: 25px;
}

/* Layout refinements */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 1200px) {
    .navbar .logo-img {
        width: 120px !important;
    }
}

@media (max-width: 991px) {
    .navbar {
        top: 10px;
        padding: 8px 0;
    }

    .navbar .logo-img {
        width: 110px !important;
    }
}

.carousel {
    height: 500px;
}

.carousel-caption {
    top: 9.25rem;
}

.carousel-caption .btn {
    margin-left: 0;
    margin-top: 20px;
}


h1 {
    font-size: 32px;
}

h2 {
    font-size: 28px;
}

/* Улучшение вида крестика */
.modal-header .btn-close {
    filter: invert(0) brightness(100%);
    transition: opacity 0.3s ease;
    margin: -0.5rem -0.5rem -0.5rem auto;
    /* Позиционирование */
}

.modal-header .btn-close:hover {
    opacity: 0.75;
}

/* Убираем стандартный крестик Bootstrap */
.modal-header .btn-close::after {
    display: none;
}

/* Альтернативный вариант с Font Awesome */
.modal-header .btn-close.fa-times {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.25rem;
    background: none;
    opacity: 1;
}

.pagination .page-item .page-link {
    height: 40px;
    /* Фиксированная высота */
    min-width: 40px;
    /* Минимальная ширина (для цифр) */
    display: flex;
    align-items: center;
    /* Вертикальное выравнивание содержимого */
    justify-content: center;
    /* Горизонтальное выравнивание */
}

/* Иконки Font Awesome */
.pagination .page-link i {
    line-height: 1;
    /* Убирает лишний отступ у иконок */
}

.form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 16px;
    padding-right: 2.5rem !important;
}

.bootstrap-select .dropdown-toggle::after {
    content: "" !important;
    border: none !important;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='%23333' d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    margin-right: 0.5rem;
}

/* Стили для иконки доставки */
.delivery-icon {
    transition: width 0.3s ease;
}

/* Мобильная версия (≤768px) */
@media (max-width: 768px) {
    .delivery-icon {
        width: 150px !important;
    }

    /* Иконки машин в карточках каталогов */
    .car-icon {
        margin-top: 80px !important;
    }

    .car-icon .position-absolute {
        top: -50px !important;
    }

    .car-icon img {
        width: 60% !important;
    }
}

/* ========================= */
/* Catalog Slider Styles     */
/* ========================= */

.catalog-tabs-wrapper {
    display: flex;
    justify-content: flex-start;
}

.catalog-tabs {
    display: inline-flex;
    background: var(--card-bg);
    border-radius: 50px;
    padding: 5px;
    gap: 5px;
    border: 1px solid var(--glass-border);
}

.catalog-tab {
    padding: 12px 40px;
    border: none;
    background: transparent;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Manrope", sans-serif;
}

.catalog-tab:hover {
    color: var(--text-primary);
}

.catalog-tab.active {
    background: linear-gradient(135deg, #e60e19 0%, #ff333e 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 14, 25, 0.3);
}

.catalog-slider-container {
    position: relative;
}

.catalog-country-panel {
    display: none;
    position: relative;
}

.catalog-country-panel.active {
    display: block;
}

.catalog-slider-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 20px 0;
}

.car-slide {
    width: 100%;
    transition: all 0.3s ease;
}

/* Car Card Styles */
.car-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.car-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-red);
}

.car-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #2a2a2e 0%, #1e1e22 100%);
}

.car-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
}

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

.car-card-image .no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #555;
    font-size: 48px;
}

.car-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.car-badges .badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.car-badges .badge-new {
    background: #4CAF50;
    color: #fff;
}

.car-badges .badge-year {
    background: rgba(30, 30, 34, 0.95);
    color: #fff;
    border: 1px solid var(--glass-border);
}

.car-card-body {
    padding: 16px;
}

.car-price {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
    font-family: "Manrope", sans-serif;
}

.car-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    min-height: 36px;
}

.car-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}

.car-specs span {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.car-specs i {
    font-size: 10px;
    color: #666;
}

.car-mileage {
    font-size: 12px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.car-mileage i {
    font-size: 11px;
    color: #666;
}

/* Slider Navigation - hidden on desktop */
.slider-nav {
    display: none;
}

/* Catalog Link */
.catalog-link {
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
}

.catalog-more-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 0;
}

.catalog-more-link:hover {
    color: var(--primary-red);
}

.catalog-more-link i {
    transition: transform 0.3s ease;
}

.catalog-more-link:hover i {
    transform: translateX(5px);
}

/* Empty Card */
.car-card.empty-card {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Responsive for Catalog */
@media (max-width: 991px) {
    .catalog-slider-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .catalog-tabs {
        width: 100%;
        justify-content: center;
    }

    .catalog-tab {
        padding: 10px 20px;
        font-size: 14px;
    }

    .catalog-slider-items {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 15px 0;
    }

    .car-card {
        width: 100%;
    }

    .car-card-image {
        aspect-ratio: 16/10;
        width: 100%;
    }

    .car-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .car-price {
        font-size: 20px;
    }

    .car-name {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .catalog-tab {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ===== About Section - О нашей компании ===== */
.about-section {
    padding: var(--section-padding);
}

.about-content {
    padding-right: 40px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1c;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-text {
    margin-bottom: 40px;
}

.about-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

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

/* Social Links Section */
.about-socials {
    margin-top: 32px;
}

.socials-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1c;
    margin-bottom: 20px;
}

.social-buttons {
    display: flex;
    flex-direction: row;
    gap: 12px;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #333;
    color: #fff;
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
}

.social-btn:hover {
    background: #444;
    color: #fff;
    transform: translateX(5px);
    /* border-color: var(--primary-green); */
}

.social-btn i {
    font-size: 18px;
    width: 24px;
    text-align: center;
    color: #fff !important;
}

.social-btn span {
    font-weight: 500;
}

/* Team Photo Wrapper */
.about-image-wrapper {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
}

/* Mobile Responsive for About Section */
@media (max-width: 991px) {
    .about-content {
        padding-right: 0;
    }

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

    .about-image-wrapper {
        min-height: 300px;
    }
}

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

    .about-title {
        font-size: 24px;
    }

    .about-text p {
        font-size: 14px;
    }

    .socials-title {
        font-size: 18px;
    }

    .social-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .about-image-wrapper {
        min-height: 250px;
        margin-top: 20px;
    }
}

/* ===== Why Us Section - Наши преимущества ===== */
.why-us-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #1a1a1c 0%, #0d0d0e 100%);
    color: #fff;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-us-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
}

.why-us-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.why-us-title .text-accent {
    color: var(--primary-green);
}

.why-us-grid {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.why-us-item {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.why-us-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 1px solid rgba(230, 14, 25, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-us-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.why-us-item:hover .why-us-icon {
    border-color: var(--primary-green);
    background: rgba(230, 14, 25, 0.1);
    transform: scale(1.05);
}

.why-us-item-title {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.why-us-item-text {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.why-us-divider {
    width: 1px;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.15) 50%, transparent 100%);
    flex-shrink: 0;
    align-self: center;
}

/* Responsive for Why Us Section */
@media (max-width: 1200px) {
    .why-us-title {
        font-size: 30px;
    }

    .why-us-item-title {
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .why-us-grid {
        flex-wrap: wrap;
    }

    .why-us-item {
        flex: 0 0 calc(50% - 20px);
    }

    .why-us-divider {
        display: none;
    }

    .why-us-title {
        font-size: 26px;
    }
}

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

    .why-us-header {
        margin-bottom: 40px;
    }

    .why-us-title {
        font-size: 22px;
    }

    .why-us-title br {
        display: none;
    }

    .why-us-grid {
        flex-direction: column;
        gap: 30px;
    }

    .why-us-item {
        flex: 1;
        width: 100%;
    }

    .why-us-icon {
        width: 56px;
        height: 56px;
    }

    .why-us-icon i {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .why-us-title {
        font-size: 18px;
    }

    .why-us-item-title {
        font-size: 14px;
    }

    .why-us-item-text {
        font-size: 13px;
    }
}

/* ===== Request Form Section - Оставить заявку ===== */
.request-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, var(--darker-grey) 0%, #151518 100%);
}

.request-card {
    display: flex;
    background: linear-gradient(145deg, rgba(30, 30, 34, 0.95) 0%, rgba(20, 20, 24, 0.98) 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.request-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light), var(--primary-red));
}

.request-card__image {
    flex: 0 0 40%;
    max-width: 40%;
    min-height: 300px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 30, 34, 1) 0%, rgba(20, 20, 24, 1) 100%);
}

.request-card__image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.request-card__content {
    flex: 1;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
}

.request-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.request-card__title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.request-card__quick-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.request-card__quick-btn:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(230, 14, 25, 0.1);
}

.request-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.request-form__fields {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.request-form__group {
    flex: 1;
}

.request-form__input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.request-form__input::placeholder {
    color: var(--text-muted);
}

.request-form__input:focus {
    outline: none;
    border-color: var(--primary-red);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(230, 14, 25, 0.15);
}

.request-form__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.request-form__consent {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    flex: 1;
}

.request-form__consent input[type="checkbox"] {
    display: none;
}

.request-form__consent .checkmark {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 2px;
    background: rgba(255, 255, 255, 0.05);
}

.request-form__consent input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.request-form__consent input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    color: #fff;
    font-size: 12px;
    font-weight: bold;
}

.request-form__consent:hover .checkmark {
    border-color: var(--primary-red);
}

.consent-text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

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

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

.request-form__submit {
    padding: 16px 36px;
    background: linear-gradient(135deg, var(--primary-red) 0%, #c40d16 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 8px 25px rgba(230, 14, 25, 0.3);
}

.request-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(230, 14, 25, 0.4);
}

.request-form__submit:active {
    transform: translateY(0);
}

/* Responsive for Request Section */
@media (max-width: 991px) {
    .request-card {
        flex-direction: column;
    }

    .request-card__image {
        flex: none;
        max-width: 100%;
        min-height: 200px;
        max-height: 250px;
    }
    
    .request-card__image img {
        width: auto;
        max-width: 100%;
        height: auto;
        max-height: 250px;
    }

    .request-card__content {
        padding: 30px;
    }

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

    .request-form__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .request-form__submit {
        width: 100%;
        text-align: center;
    }
}

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

    .request-card__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .request-card__title {
        font-size: 24px;
    }

    .request-card__content {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .request-card {
        border-radius: 16px;
    }

    .request-card__image {
        min-height: 150px;
        max-height: 200px;
    }
    
    .request-card__image img {
        max-height: 200px;
    }

    .request-card__title {
        font-size: 20px;
    }

    .request-form__input {
        padding: 14px 16px;
        font-size: 14px;
    }

    .request-form__submit {
        padding: 14px 24px;
        font-size: 14px;
    }

    .consent-text {
        font-size: 12px;
    }
}

/* ===== How To Buy Section - Как купить автомобиль ===== */
.how-to-buy-section {
    padding: var(--section-padding);
    background: var(--dark-grey);
}

.how-to-buy__title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 60px;
    text-align: center;
}

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

.step-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 32px 28px;
    border: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red) 0%, #ff4757 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 14, 25, 0.3);
}

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

.step-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.step-card__info {
    flex: 1;
}

.step-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.35;
}

.step-card__text {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

.step-card__number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(145deg, var(--primary-red) 0%, #d00c15 100%);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(230, 14, 25, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-card__number {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 15px 35px rgba(230, 14, 25, 0.5);
}

.step-card__icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: auto;
}

.step-card__icon i {
    font-size: 42px;
    color: var(--primary-red);
    opacity: 0.3;
    transition: all 0.4s ease;
}

.step-card:hover .step-card__icon i {
    opacity: 1;
    transform: scale(1.1);
}

/* Responsive for How To Buy Section */
@media (max-width: 991px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-to-buy__title {
        font-size: 28px;
        margin-bottom: 40px;
    }
}

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

    .how-to-buy__title {
        font-size: 24px;
        margin-bottom: 30px;
    }

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

    .step-card {
        min-height: auto;
        padding: 24px;
    }

    .step-card__title {
        font-size: 16px;
    }

    .step-card__icon i {
        font-size: 36px;
    }

    .step-card__number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .how-to-buy__title {
        font-size: 20px;
    }

    .step-card {
        padding: 20px;
    }

    .step-card__text {
        font-size: 13px;
    }
}

/* ===== Reviews Section - Отзывы клиентов ===== */
.reviews-section {
    padding: var(--section-padding);
    background: var(--dark-grey);
}

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

.reviews-title {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.reviews-badges {
    display: flex;
    gap: 16px;
}

.review-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    transition: all 0.3s ease;
}

.review-badge:hover {
    border-color: transparent;
    transform: translateY(-2px);
}

.review-badge .badge-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.review-badge--2gis .badge-icon {
    background: linear-gradient(135deg, #2db400 0%, #1a8c00 100%);
}

.review-badge--yandex .badge-icon {
    background: linear-gradient(135deg, #fc3f1d 0%, #e6361a 100%);
}

.review-badge .badge-text {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.review-badge:hover .badge-text {
    color: #fff;
}

.review-badge--2gis:hover {
    background: rgba(45, 180, 0, 0.15);
    border-color: rgba(45, 180, 0, 0.3);
}

.review-badge--yandex:hover {
    background: rgba(252, 63, 29, 0.15);
    border-color: rgba(252, 63, 29, 0.3);
}

.reviews-slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.reviews-nav {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    background: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-secondary);
}

.reviews-nav:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(230, 14, 25, 0.1);
}

.reviews-slider {
    display: flex;
    gap: 24px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 320px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.review-card:hover {
    border-color: rgba(230, 14, 25, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-card__logo {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fc3f1d 0%, #e6361a 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.review-card__info {
    flex: 1;
}

.review-card__name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
}

.review-card__stars {
    display: flex;
    gap: 3px;
}

.review-card__stars i {
    font-size: 14px;
    color: #ffa500;
}

.review-card__text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.review-card__text p {
    margin: 0;
}

/* Responsive for Reviews Section */
@media (max-width: 991px) {
    .reviews-slider {
        flex-direction: column;
        gap: 16px;
    }

    .reviews-nav {
        display: none;
    }

    .reviews-slider-wrapper {
        gap: 0;
    }
}

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

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .reviews-title {
        font-size: 24px;
    }

    .reviews-badges {
        flex-wrap: wrap;
    }

    .review-badge {
        padding: 6px 12px;
    }

    .review-badge .badge-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    .review-badge .badge-text {
        font-size: 12px;
    }
}

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

    .review-card {
        padding: 20px;
    }

    .review-card__name {
        font-size: 14px;
    }

    .review-card__text {
        font-size: 13px;
    }
}

/* ===== Contacts Section - Наши контакты ===== */
.contacts-section {
    padding: 80px 0;
    background: var(--dark-grey);
}

.contacts-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

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

.contact-label {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.contact-value:hover {
    color: var(--primary-red);
}

.contact-socials {
    display: flex;
    gap: 12px;
}

.contact-social {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social--telegram {
    background: linear-gradient(135deg, #2aabee 0%, #229ed9 100%);
}

.contact-social--whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-social--instagram {
    background: linear-gradient(135deg, #f09433 0%, #bc1888 50%, #cc2366 100%);
}

.contact-social--youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.contact-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contacts-map {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contacts-map iframe {
    display: block;
}

/* ===== Extended Footer ===== */
.extended-footer {
    padding: 60px 0 30px;
    background: #1a1a1c;
    border-top: 1px solid var(--glass-border);
}

.footer-main {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col {
    flex: 1;
    min-width: 150px;
}

.footer-col--brand {
    flex: 2;
    min-width: 250px;
}

.footer-col--contact {
    flex: 1.5;
    min-width: 200px;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-company-info {
    margin-bottom: 16px;
}

.footer-company-info p {
    margin: 0;
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-address p {
    margin: 0;
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 10px;
}

.footer-menu a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: var(--primary-red);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.footer-phone,
.footer-email {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
}

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

.footer-social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--primary-red);
    border-color: var(--primary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 14, 25, 0.4);
}

.footer-social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.footer-social-btn i {
    font-size: 18px;
}

.footer-social-btn--telegram:hover {
    background: #2aabee;
    border-color: #2aabee;
}

.footer-social-btn--instagram:hover {
    background: linear-gradient(135deg, #f09433 0%, #bc1888 50%, #cc2366 100%);
    border-color: #bc1888;
}

.footer-social-btn:hover {
    transform: translateY(-2px);
}

/* Footer Buttons */
.footer-buttons {
    display: flex;
    gap: 20px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-btn {
    flex: 1;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-btn--outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.footer-btn--outline:hover {
    background: #fff;
    color: #1a1a1c;
}

.footer-btn--primary {
    background: var(--primary-red);
    border: 2px solid var(--primary-red);
    color: #fff;
}

.footer-btn--primary:hover {
    background: #c00b14;
    border-color: #c00b14;
    box-shadow: 0 6px 20px rgba(230, 14, 25, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
}

.footer-copyright a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

.footer-sitemap {
    font-size: 13px;
    color: var(--primary-red);
    text-decoration: none;
}

.footer-sitemap:hover {
    text-decoration: underline;
}

.footer-recaptcha {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-recaptcha p {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.footer-recaptcha a {
    color: var(--primary-red);
    text-decoration: none;
}

.footer-recaptcha a:hover {
    text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 991px) {
    .footer-main {
        gap: 20px;
    }
    
    .footer-col {
        min-width: 140px;
    }
    
    .footer-col--brand {
        flex: 100%;
        min-width: 100%;
    }
}

@media (max-width: 767px) {
    .footer-main {
        flex-direction: column;
    }
    
    .footer-col {
        min-width: 100%;
    }
    
    .footer-buttons {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.footer-action-btn {
    display: block;
    padding: 16px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-action-btn--outline:hover {
    background: var(--text-primary);
    color: var(--darker-grey);
}

.footer-action-btn--primary {
    background: linear-gradient(135deg, var(--primary-red) 0%, #c00b14 100%);
    border: 2px solid var(--primary-red);
    color: #fff;
}

/* ============================================= */
/* Новые секции из презентации - Dark Theme     */
/* ============================================= */

/* Country Section Header */
.country-header {
    text-align: center;
    margin-bottom: 60px;
}

.country-title {
    font-size: 72px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0;
    background: linear-gradient(180deg, var(--primary-red) 0%, #ff4444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(230, 14, 25, 0.3);
}

.country-subtitle {
    font-size: 16px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 10px;
}

/* Expenses Block */
.expenses-block {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    text-align: center;
    padding: 20px;
    margin-bottom: 10px;
}

.expenses-title {
    font-size: 28px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.expenses-value {
    font-size: 24px;
    color: var(--text-secondary);
}

.expenses-value span {
    color: var(--primary-red);
    font-weight: 700;
}

/* Korea Extra Block */
.korea-extra-block {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.korea-extra-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(230, 14, 25, 0.1) 0%, rgba(230, 14, 25, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 14, 25, 0.2);
}

.korea-extra-icon i {
    font-size: 22px;
    color: var(--primary-red);
}

.korea-extra-content h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    margin: 0 0 5px 0;
}

.korea-extra-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.4;
}

/* Advantages Grid - Presentation Style */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 992px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.advantage-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    padding: 20px 15px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(230, 14, 25, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-icon {
    width: 80px;
    min-width: 80px;
    height: 80px;
    min-height: 80px;
    flex-shrink: 0;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(230, 14, 25, 0.1) 0%, rgba(230, 14, 25, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(230, 14, 25, 0.2);
}

.advantage-icon i {
    font-size: 32px;
    color: var(--primary-red);
}

.advantage-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(14%) sepia(95%) saturate(6932%) hue-rotate(355deg) brightness(92%) contrast(94%);
}

.advantage-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

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

/* 3-этапная проверка */
.verification-section {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--glass-border);
    padding: 20px;
}

.verification-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.verification-title span {
    color: var(--primary-red);
}

.verification-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.verification-section {
    background: var(--card-bg);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid var(--glass-border);
}

.verification-title {
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.verification-title span {
    color: var(--primary-red);
}

/* Timeline Container */
.verification-timeline {
    display: flex;
    align-items: stretch;
    position: relative;
}

/* Vertical Line */
.verification-line {
    position: relative;
    width: 4px;
    min-height: 100%;
    background: linear-gradient(180deg, var(--primary-red) 0%, rgba(230, 14, 25, 0.3) 100%);
    margin-right: 25px;
    flex-shrink: 0;
    border-radius: 4px;
    align-self: stretch;
}

/* Moving Dot */
.verification-dot {
    position: absolute;
    left: 50%;
    top: 25px;
    transform: translateX(-50%);
    width: 16px;
    height: 16px;
    background: var(--primary-red);
    border-radius: 50%;
    border: 3px solid var(--card-bg);
    box-shadow: 0 0 0 3px var(--primary-red), 0 0 20px rgba(230, 14, 25, 0.6);
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.verification-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 7px;
    height: 7px;
    background: #fff;
    border-radius: 50%;
}

/* Pulse animation for dot */
.verification-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 15px;
    height: 15px;
    background: transparent;
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    animation: dotPulse 2s ease-out infinite;
}

@keyframes dotPulse {
    0% {
        width: 15px;
        height: 15px;
        opacity: 1;
    }
    100% {
        width: 35px;
        height: 35px;
        opacity: 0;
    }
}

/* Steps Container */
.verification-steps {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.verification-step {
    padding: 20px 25px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.verification-step:last-child {
    margin-bottom: 0;
}

.verification-step:hover {
    background: rgba(230, 14, 25, 0.08);
    border-color: rgba(230, 14, 25, 0.2);
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(230, 14, 25, 0.15);
}

.verification-step-number {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    padding: 4px 12px;
    background: rgba(230, 14, 25, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.verification-step:hover .verification-step-number {
    background: var(--primary-red);
    color: #fff;
}

.verification-step-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.verification-step:hover .verification-step-text {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .verification-section {
        padding: 25px;
    }
    
    .verification-line {
        margin-right: 15px;
    }
    
    .verification-step {
        padding: 15px;
    }
}

/* VAT Return Card - Beautiful Design */
.vat-card {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 15px;
    background: 
        radial-gradient(ellipse at 30% 0%, rgba(255, 80, 80, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(180, 0, 20, 0.8) 0%, transparent 50%),
        linear-gradient(180deg, #dc1a28 0%, #8b0000 50%, #2a0505 100%);
    box-shadow: 
        0 25px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 100, 100, 0.3);
}

/* Glow effect behind card */
.vat-card__bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(255, 50, 50, 0.3) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Floating particles/sparkles */
.vat-card__particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.vat-card__particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #ffd700 0%, rgba(255, 180, 50, 0.8) 50%, transparent 100%);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    box-shadow: 0 0 6px 2px rgba(255, 200, 50, 0.6);
}

.vat-card__particles span:nth-child(1) { top: 15%; right: 20%; animation-delay: 0s; }
.vat-card__particles span:nth-child(2) { top: 25%; right: 35%; animation-delay: 0.3s; width: 3px; height: 3px; }
.vat-card__particles span:nth-child(3) { top: 40%; right: 15%; animation-delay: 0.6s; }
.vat-card__particles span:nth-child(4) { top: 55%; right: 28%; animation-delay: 0.9s; width: 5px; height: 5px; }
.vat-card__particles span:nth-child(5) { top: 70%; right: 40%; animation-delay: 1.2s; width: 3px; height: 3px; }
.vat-card__particles span:nth-child(6) { top: 20%; right: 50%; animation-delay: 1.5s; }
.vat-card__particles span:nth-child(7) { top: 35%; right: 10%; animation-delay: 1.8s; width: 4px; height: 4px; }
.vat-card__particles span:nth-child(8) { top: 60%; right: 5%; animation-delay: 2.1s; }
.vat-card__particles span:nth-child(9) { top: 80%; right: 20%; animation-delay: 2.4s; width: 3px; height: 3px; }
.vat-card__particles span:nth-child(10) { top: 10%; right: 8%; animation-delay: 2.7s; }

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* Content layer */
.vat-card__content {
    position: relative;
    padding: 20px 15px 15px;
    z-index: 3;
}

/* Title */
.vat-card__title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Text block */
.vat-card__text {
    margin-bottom: 12px;
}

.vat-card__lead {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.4;
}

.vat-card__percent {
    font-size: 32px;
    font-weight: 900;
    color: #fff;
    display: inline-block;
    vertical-align: middle;
    margin: 0 3px;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.vat-card__big-percent {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    margin: 5px 0 8px;
    line-height: 1;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.vat-card__sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
    margin: 0;
}

/* Button */
.vat-card__btn {
    position: relative;
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, 
        rgba(255, 100, 100, 0.4) 0%, 
        rgba(180, 30, 30, 0.6) 100%);
    border: 2px solid rgba(255, 150, 80, 0.6);
    box-shadow: 
        0 0 30px rgba(255, 100, 50, 0.4),
        0 0 60px rgba(255, 50, 30, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.vat-card__btn-text {
    position: relative;
    z-index: 2;
}

.vat-card__btn-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 200, 100, 0.3) 50%, 
        transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.vat-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 0 40px rgba(255, 100, 50, 0.6),
        0 0 80px rgba(255, 50, 30, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    color: #fff;
    border-color: rgba(255, 180, 100, 0.8);
}

.vat-card__btn:hover .vat-card__btn-glow {
    opacity: 1;
    animation: btnGlowMove 1.5s ease-in-out infinite;
}

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

.vat-card__btn:active {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 576px) {
    .vat-card {
        min-height: 380px;
    }
    
    .vat-card__content {
        min-height: 380px;
        padding: 22px 20px 20px;
    }
    
    .vat-card__title {
        font-size: 22px;
    }
    
    .vat-card__percent {
        font-size: 36px;
    }
    
    .vat-card__big-percent {
        font-size: 56px;
    }
    
    .vat-card__visual {
        width: 85%;
        right: -20px;
    }
    
    .vat-card__btn {
        padding: 14px 20px;
        font-size: 14px;
    }
}

/* Special Equipment Section */
.equipment-header {
    text-align: center;
    margin-bottom: 60px;
}

.equipment-title {
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.equipment-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.equipment-categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .equipment-categories {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .equipment-categories {
        grid-template-columns: 1fr;
    }
}

.equipment-category {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease;
}

.equipment-category:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
}

.equipment-category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(230, 14, 25, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-category-icon i {
    font-size: 24px;
    color: var(--primary-red);
}

.equipment-category-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.4;
}

/* ========================================= */
/* NEW Equipment Section - Спецтехника      */
/* ========================================= */

.equipment-section-new {
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(0, 0, 0, 0.4) 0%, transparent 50%),
        var(--darker-grey);
    border-top: 1px solid var(--glass-border);
}

.equipment-new-header {
    text-align: center;
    margin-bottom: 40px;
}

.equipment-new-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    text-transform: lowercase;
    line-height: 1.2;
    margin-bottom: 10px;
}

.equipment-new-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-transform: lowercase;
}

/* Categories Row */
.equipment-new-categories {
    margin-bottom: 50px;
}

.equipment-new-label {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.equipment-new-icons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
}

.equipment-new-item {
    text-align: center;
    flex: 1;
}

.equipment-new-icon-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-new-icon-circle {
    width: 80px;
    height: 80px;
    background: rgba(230, 14, 25, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.equipment-new-icon-circle i {
    font-size: 32px;
    color: var(--primary-red);
}

.equipment-new-item:hover .equipment-new-icon-circle {
    background: var(--primary-red);
    transform: scale(1.1);
}

.equipment-new-item:hover .equipment-new-icon-circle i {
    color: #fff;
}

.equipment-new-icon-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.equipment-new-icon-fallback {
    width: 80px;
    height: 80px;
    background: rgba(230, 14, 25, 0.1);
    border: 2px solid var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-new-icon-fallback i {
    font-size: 32px;
    color: var(--primary-red);
}

.equipment-new-item p {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-primary);
    line-height: 1.4;
    margin: 0;
}

.equipment-new-item p span {
    font-weight: 400;
    color: var(--text-secondary);
}

.equipment-new-countries {
    text-align: center;
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.equipment-new-countries strong {
    color: var(--primary-red);
}

/* Main Content: Cost + Image */
.equipment-new-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 1px solid var(--glass-border);
}

.equipment-new-left {
    flex: 1;
    max-width: 50%;
}

.equipment-cost-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 10px 0;
    text-transform: uppercase;
}

.equipment-cost-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 25px 0;
    line-height: 1.3;
}

.equipment-cost-subtitle .text-red {
    color: var(--primary-red);
    font-style: italic;
}

.equipment-cost-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.equipment-cost-list li {
    font-size: 14px;
    color: var(--text-primary);
    padding: 8px 0;
    display: flex;
    gap: 10px;
    text-transform: uppercase;
}

.equipment-cost-list li span {
    color: var(--primary-red);
    font-weight: 700;
}

.equipment-cost-note {
    background: rgba(230, 14, 25, 0.1);
    border: 1px solid rgba(230, 14, 25, 0.3);
    border-radius: 12px;
    padding: 15px 20px;
}

.equipment-cost-note p {
    font-size: 12px;
    text-transform: uppercase;
    margin: 0;
    line-height: 1.5;
}

.equipment-cost-note p:first-child {
    color: var(--text-secondary);
}

.equipment-cost-note .text-red {
    color: var(--primary-red);
    font-weight: 700;
}

.equipment-new-right {
    flex: 1;
    max-width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.equipment-excavator-placeholder {
    width: 100%;
    height: 400px;
    background: var(--card-bg);
    border: 2px dashed var(--glass-border);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.equipment-excavator-placeholder i {
    font-size: 64px;
    color: var(--text-muted);
}

.equipment-excavator-placeholder p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.equipment-excavator-image {
    width: 100%;
    max-width: 600px;
}

.equipment-excavator-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* Responsive */
@media (max-width: 992px) {
    .equipment-new-icons {
        flex-wrap: wrap;
    }
    
    .equipment-new-item {
        flex: 0 0 calc(50% - 10px);
    }
    
    .equipment-new-content {
        flex-direction: column;
    }
    
    .equipment-new-right {
        order: -1;
    }
    
    .equipment-excavator-placeholder {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .equipment-new-title {
        font-size: 28px;
    }
    
    .equipment-new-label {
        font-size: 22px;
    }
    
    .equipment-cost-title {
        font-size: 32px;
    }
    
    .equipment-cost-subtitle {
        font-size: 18px;
    }
    
    .equipment-new-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .equipment-new-icon-circle {
        width: 55px;
        height: 55px;
    }
    
    .equipment-new-icon-circle i {
        font-size: 22px;
    }
    
    /* Hide excavator images on mobile */
    .equipment-excavator-image,
    .equipment-excavator-placeholder,
    .equipment-new-right,
    .work-formats-image {
        display: none !important;
    }
    
    /* Center and align content on mobile */
    .equipment-new-content {
        text-align: center;
    }
    
    .equipment-new-left {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .equipment-cost-list {
        text-align: left;
    }
    
    .equipment-cost-note {
        text-align: center;
    }
    
    /* Work formats section alignment */
    .work-formats-row {
        flex-direction: column;
    }
    
    .work-formats-content {
        width: 100%;
        text-align: center;
    }
    
    .work-formats-list {
        text-align: left;
        padding-left: 20px;
    }
    
    .work-formats-title,
    .work-formats-subtitle,
    .work-formats-format-title {
        text-align: center;
    }
}

/* Responsibility Grid */
.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 992px) {
    .responsibility-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .responsibility-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.responsibility-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 15px;
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.responsibility-icon:hover {
    border-color: var(--primary-red);
    background: rgba(230, 14, 25, 0.1);
}

.responsibility-icon i {
    font-size: 28px;
    color: var(--primary-red);
}

.responsibility-title {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
    line-height: 1.4;
}

/* ========================================= */
/* Work Formats Section - Форматы работы    */
/* ========================================= */

.work-formats-section {
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        var(--darker-grey);
    border-top: 1px solid var(--glass-border);
}

.work-formats-row {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.work-formats-image {
    flex: 1;
    max-width: 550px;
}

.work-formats-img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    object-fit: contain;
}

.work-formats-placeholder {
    width: 100%;
    height: 400px;
    background: var(--card-bg);
    border: 2px dashed var(--glass-border);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.work-formats-placeholder i {
    font-size: 64px;
    color: var(--text-muted);
}

.work-formats-placeholder p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}

.work-formats-content {
    flex: 1;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.work-formats-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--text-primary);
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.work-formats-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0 0 30px 0;
    text-transform: uppercase;
}

.work-formats-format-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0 0 20px 0;
}

.work-formats-list {
    list-style: none;
    padding: 0;
    text-align: right;
    margin: 0;
}

.work-formats-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 10px 0;
    text-transform: uppercase;
    border-bottom: 1px solid var(--glass-border);
}

.work-formats-list li:last-child {
    border-bottom: none;
}

.work-formats-list li strong {
    color: var(--primary-red);
}

/* Full Responsibility Section */
.full-responsibility {
    text-align: center;
    padding-top: 60px;
    border-top: 1px solid var(--glass-border);
}

.responsibility-main-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary-red);
    margin: 0 0 10px 0;
    text-transform: uppercase;
    font-style: italic;
}

.responsibility-main-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0 0 50px 0;
    text-transform: uppercase;
}

.responsibility-icons-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.responsibility-icon-item {
    text-align: center;
}

.responsibility-icon-circle {
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-red);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    transition: all 0.3s ease;
}

.responsibility-icon-circle:hover {
    background: rgba(230, 14, 25, 0.1);
    transform: translateY(-5px);
}

.responsibility-icon-circle i {
    font-size: 40px;
    color: var(--primary-red);
}

.responsibility-icon-item p {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
}

.responsibility-bottom-note {
    background: rgba(230, 14, 25, 0.15);
    border: 1px solid rgba(230, 14, 25, 0.3);
    border-radius: 12px;
    padding: 20px 30px;
    display: inline-block;
}

.responsibility-bottom-note p {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    line-height: 1.6;
    margin: 0;
}

.responsibility-bottom-note strong {
    color: var(--text-primary);
}

/* Responsive for Work Formats */
@media (max-width: 992px) {
    .work-formats-row {
        flex-direction: column;
    }
    
    .work-formats-image {
        max-width: 100%;
        order: -1;
    }
    
    .work-formats-placeholder {
        height: 300px;
    }
    
    .responsibility-icons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .responsibility-main-title {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .work-formats-title {
        font-size: 28px;
    }
    
    .work-formats-format-title {
        font-size: 20px;
    }
    
    .responsibility-icons-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .responsibility-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .responsibility-icon-circle i {
        font-size: 32px;
    }
    
    .responsibility-bottom-note {
        padding: 15px 20px;
    }
    
    .responsibility-bottom-note p {
        font-size: 11px;
    }
}

/* Korea Car Showcase - Animated */
.korea-car-showcase {
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 30px;
    overflow: visible;
}

.korea-car-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.korea-car-image {
    position: relative;
    max-width: 550px;
    width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transform: translateX(-150%);
    opacity: 0;
    transition: none;
    margin-bottom: -50px;
}

.korea-car-showcase.active .korea-car-image {
    animation: carDriveIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes carDriveIn {
    0% {
        transform: translateX(-150%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    70% {
        transform: translateX(5%);
    }
    85% {
        transform: translateX(-2%);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Glow effect under car */
.korea-car-glow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(230, 14, 25, 0.3) 0%, transparent 70%);
    opacity: 0;
    z-index: 1;
}

.korea-car-showcase.active .korea-car-glow {
    animation: glowFadeIn 1s ease-out 0.8s forwards;
}

@keyframes glowFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* Reflection effect */
.korea-car-reflection {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 400px;
    height: 80px;
    background: linear-gradient(to bottom, rgba(230, 14, 25, 0.1), transparent);
    opacity: 0;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
}

.korea-car-showcase.active .korea-car-reflection {
    animation: reflectionFadeIn 0.5s ease-out 1.2s forwards;
}

@keyframes reflectionFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .korea-car-showcase {
        height: 140px;
    }
    
    .korea-car-image {
        max-width: 350px;
    }
    
    .korea-car-glow {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .korea-car-showcase {
        height: 100px;
    }
    
    .korea-car-image {
        max-width: 260px;
    }
}

/* China Car Showcase - Animated */
.china-car-showcase {
    position: relative;
    width: 100%;
    height: 220px;
    margin-top: 30px;
    overflow: visible;
}

.china-car-track {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.china-car-image {
    position: relative;
    max-width: 550px;
    width: 100%;
    height: auto;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transform: translateX(-150%);
    opacity: 0;
    transition: none;
    margin-bottom: -50px;
}

.china-car-showcase.active .china-car-image {
    animation: chinaCarDriveIn 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes chinaCarDriveIn {
    0% {
        transform: translateX(-150%);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    70% {
        transform: translateX(5%);
    }
    85% {
        transform: translateX(-2%);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Glow effect under car */
.china-car-glow {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 80px;
    background: radial-gradient(ellipse at center, rgba(230, 14, 25, 0.3) 0%, transparent 70%);
    opacity: 0;
    z-index: 1;
}

.china-car-showcase.active .china-car-glow {
    animation: chinaGlowFadeIn 1s ease-out 0.8s forwards;
}

@keyframes chinaGlowFadeIn {
    0% {
        opacity: 0;
        transform: translateX(-50%) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1);
    }
}

/* Responsive for China Car */
@media (max-width: 768px) {
    .china-car-showcase {
        height: 160px;
    }
    
    .china-car-image {
        max-width: 400px;
    }
    
    .china-car-glow {
        width: 300px;
    }
}

@media (max-width: 480px) {
    .china-car-showcase {
        height: 120px;
    }
    
    .china-car-image {
        max-width: 300px;
    }
}

/* Info Cards Row */
.info-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 15px;
}

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

.info-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    padding: 18px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: rgba(230, 14, 25, 0.3);
}

.info-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(230, 14, 25, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-card-icon i {
    font-size: 20px;
    color: var(--primary-red);
}

.info-card-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-card-content p {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.footer-action-btn--primary:hover {
    box-shadow: 0 8px 25px rgba(230, 14, 25, 0.4);
    transform: translateY(-2px);
}

/* Responsive for Contacts & Footer */
@media (max-width: 991px) {
    .contacts-section {
        padding: 60px 0;
    }

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

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 20px;
    }

    .contacts-title {
        font-size: 24px;
    }

    .contact-socials {
        justify-content: flex-start;
    }
}

@media (max-width: 480px) {
    .contact-social {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }
}

/* ============================================
   News Section Styles
   ============================================ */

.news-section {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, transparent 100%);
}

.news-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.news-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(230, 14, 25, 0.3);
}

.news-card__image {
    display: block;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.news-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 14, 25, 0.1) 0%, rgba(30, 30, 30, 0.8) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.news-card__placeholder i {
    font-size: 3rem;
    color: var(--accent-color);
    opacity: 0.5;
}

.news-card__placeholder span {
    font-size: 0.85rem;
    opacity: 0.5;
}

.news-card:hover .news-card__placeholder {
    background: linear-gradient(135deg, rgba(230, 14, 25, 0.2) 0%, rgba(30, 30, 30, 0.9) 100%);
}

.news-card:hover .news-card__placeholder i {
    opacity: 0.8;
    transform: scale(1.1);
}

.news-card__category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(3, 3, 3, 0.8);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-card__body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.news-card__meta i {
    margin-right: 5px;
    opacity: 0.7;
}

.news-card__title {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
}

.news-card__title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-card__title a:hover {
    color: var(--accent-color);
}

.news-card__excerpt {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-card__link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: auto;
}

.news-card__link:hover {
    color: #ff4444;
    gap: 12px;
}

.news-card__link i {
    transition: transform 0.2s ease;
}

.news-card__link:hover i {
    transform: translateX(4px);
}

/* News Section Responsive */
@media (max-width: 991px) {
    .news-card__title {
        font-size: 1rem;
    }
    
    .news-card__excerpt {
        font-size: 0.85rem;
    }
}

@media (max-width: 767px) {
    .news-section .row > div {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .news-card__placeholder i {
        font-size: 2.5rem;
    }
}

/* ========================================= */
/* Mobile Fullscreen Menu                    */
/* ========================================= */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 380px;
    height: 100%;
    background: linear-gradient(180deg, #0d0d0f 0%, #151518 100%);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(230, 14, 25, 0.2);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.mobile-menu-nav {
    flex: 1;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: auto;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border: 1px solid transparent;
}

.mobile-menu-link i {
    width: 24px;
    font-size: 18px;
    color: var(--primary-red);
    text-align: center;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(230, 14, 25, 0.1);
    border-color: rgba(230, 14, 25, 0.2);
    color: #fff;
    transform: translateX(5px);
}

.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 0;
}

.mobile-menu-phone i {
    color: var(--primary-red);
    font-size: 20px;
}

.mobile-menu-socials {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

.mobile-social-link {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-link:hover {
    background: rgba(230, 14, 25, 0.2);
    border-color: var(--primary-red);
    color: var(--primary-red);
    transform: translateY(-3px);
}

/* ========================================= */
/* Mobile Specific Styles                    */
/* ========================================= */

@media (max-width: 991px) {
    /* Hide hero video on mobile */
    .hero-visual,
    .hero-video,
    #heroVideo {
        display: none !important;
    }
    
    /* Expand hero content to full width */
    .hero-section .col-lg-5 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-section .col-lg-7 {
        display: none;
    }
    
    /* Section spacing for mobile */
    .section-main {
        padding: 50px 0;
    }
    
    .section-main--lg {
        padding: 70px 0;
    }
    
    /* Add visual dividers between sections */
    #china-section,
    #korea-section {
        margin-top: 30px;
        padding-top: 50px;
    }
    
    /* Container padding on mobile */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 767px) {
    /* More aggressive spacing on small screens */
    .section-main {
        padding: 40px 0;
    }
    
    .section-main--lg {
        padding: 60px 0;
    }
    
    .hero-section {
        padding-top: 100px !important;
    }
    
    /* Section headers smaller on mobile */
    .section-title {
        font-size: 28px;
    }
    
    .country-title {
        font-size: 36px !important;
    }
    
    /* Add spacing between content blocks */
    .expenses-block,
    .verification-section,
    .vat-card {
        margin-bottom: 25px;
    }
    
    .advantages-grid {
        gap: 12px;
    }
    
    /* Hero export cards spacing */
    .hero-export-cards {
        gap: 15px;
        margin-top: 30px !important;
    }
}

/* ========================================= */
/* Advantages Slider for Mobile             */
/* ========================================= */

@media (max-width: 767px) {
    .advantages-grid {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 10px 5px 25px 5px;
        margin: 0 -15px;
        gap: 15px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .advantages-grid::-webkit-scrollbar {
        display: none;
    }
    
    .advantages-grid .advantage-card {
        flex: 0 0 280px;
        min-width: 280px;
        scroll-snap-align: center;
        margin: 0;
    }
    
    .advantages-grid .advantage-card:first-child {
        margin-left: 15px;
    }
    
    .advantages-grid .advantage-card:last-child {
        margin-right: 15px;
    }
    
    /* Add scroll indicators */
    .section-header--advantages::after {
        content: 'Листайте →';
        display: block;
        font-size: 12px;
        color: var(--text-muted);
        margin-top: 10px;
        text-align: center;
    }
    
    /* Style cards in slider */
    .advantage-card {
        background: linear-gradient(145deg, var(--card-bg) 0%, rgba(30, 30, 34, 0.8) 100%);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
    
    .advantage-icon {
        width: 70px;
        min-width: 70px;
        height: 70px;
        min-height: 70px;
        margin-bottom: 15px;
    }
    
    .advantage-icon i {
        font-size: 28px;
    }
    
    .advantage-title {
        font-size: 13px;
    }
    
    .advantage-text {
        font-size: 12px;
    }
}

/* Slider scroll indicator dots */
.advantages-slider-dots {
    display: none;
}

@media (max-width: 767px) {
    .advantages-slider-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
    }
    
    .advantages-slider-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .advantages-slider-dot.active {
        background: var(--primary-red);
        width: 24px;
        border-radius: 4px;
    }
}

/* ========================================= */
/* Car Detail Page Styles - Dark Theme      */
/* ========================================= */

/* Catalog section top padding for navbar */
#catalog.pt-6,
#catalog.bg-dark.pt-6 {
    padding-top: 120px !important;
}

/* Form controls on car detail pages */
#catalog .form-control,
.contact_form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 12px 16px;
    transition: all 0.3s ease;
}

#catalog .form-control::placeholder,
.contact_form .form-control::placeholder {
    color: var(--text-muted);
}

#catalog .form-control:focus,
.contact_form .form-control:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 14, 25, 0.15);
    outline: none;
}

/* Car info section styling */
#catalog .tm-catalog-item__param {
    color: var(--text-muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

#catalog .col-lg-6 p,
#catalog .col-6 p {
    color: var(--text-primary);
    font-weight: 500;
}

/* Contact form card on car page */
#catalog .card.bg-grey {
    background: linear-gradient(145deg, rgba(30, 30, 34, 0.95) 0%, rgba(20, 20, 24, 0.98) 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--border-radius-lg);
    position: relative;
    overflow: hidden;
}

#catalog .card.bg-grey::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-red-light), var(--primary-red));
}

#catalog .card.bg-grey h4 {
    color: var(--text-primary);
}

/* Prices section styling */
#catalog .prices {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    padding: 20px;
    margin-top: 15px;
}

#catalog .prices h6 {
    color: var(--text-primary);
}

#catalog .prices p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

#catalog .prices .text-danger {
    color: var(--primary-red) !important;
    font-weight: 600;
}

#catalog .prices-kurs {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
}

/* Breadcrumb styling for dark theme */
#catalog .breadcrumb {
    background: transparent;
    padding: 0;
}

#catalog .breadcrumb-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}

#catalog .breadcrumb-item a:hover {
    color: var(--primary-red);
}

#catalog .breadcrumb-item.active {
    color: var(--text-muted);
}

#catalog .breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-muted);
}

/* Alert styling for dark theme */
#catalog .alert-warning {
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

/* Show prices link */
#catalog .show-prices {
    color: var(--primary-red) !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

#catalog .show-prices:hover {
    opacity: 0.8;
}

/* HR styling */
#catalog hr {
    border-color: rgba(255, 255, 255, 0.1);
    opacity: 1;
}

/* Date text styling */
#catalog .text-muted {
    color: var(--text-secondary) !important;
}

/* Fotorama gallery dark theme */
.fotorama__thumb-border {
    border-color: var(--primary-red) !important;
}

.fotorama__nav-wrap {
    margin-top: 10px;
}

/* Form select styling */
#catalog .form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-radius: 12px;
    padding: 12px 16px;
}

#catalog .form-select:focus {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(230, 14, 25, 0.15);
}

#catalog .form-select option {
    background: var(--card-bg);
    color: var(--text-primary);
}

/* ============================================
   About Section - О нашей компании
   ============================================ */
.about-section {
    background: var(--bg-dark);
}

.about-description {
    margin-top: 24px;
}

.about-description p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-services {
    color: var(--text-muted) !important;
    font-size: 14px;
}

.about-follow {
    margin-top: 32px;
}

.about-follow-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
}

.about-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: var(--glass-bg);
    color: var(--white);
}

.about-social-btn i {
    font-size: 18px;
}

.about-social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.about-social-btn--telegram {
    border-color: rgba(0, 136, 204, 0.3);
}

.about-social-btn--telegram:hover {
    background: rgba(0, 136, 204, 0.2);
    border-color: #0088cc;
    color: #fff;
}

.about-social-btn--telegram i {
    color: #0088cc;
}

.about-social-btn--instagram {
    border-color: rgba(225, 48, 108, 0.3);
}

.about-social-btn--instagram:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: #E1306C;
    color: #fff;
}

.about-social-btn--instagram i {
    color: #E1306C;
}

.about-social-btn--phone {
    border-color: rgba(37, 211, 102, 0.3);
}

.about-social-btn--phone:hover {
    background: rgba(37, 211, 102, 0.2);
    border-color: #25d366;
    color: #fff;
}

.about-social-btn--phone i {
    color: #25d366;
}

.about-team-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.about-team-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mobile responsiveness for About Section */
@media (max-width: 991px) {
    .about-social-buttons {
        flex-direction: column;
    }
    
    .about-social-btn {
        justify-content: center;
    }
    
    .about-team-image {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .about-description p {
        font-size: 14px;
    }
    
    .about-follow-title {
        font-size: 18px;
    }
    
    .about-social-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

/* ==========================================
   BENEFITS SECTION - 4 Card Grid
   ========================================== */
.benefits-section {
    padding: var(--section-padding);
    background: var(--darker-grey);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.benefit-card {
    background: var(--card-bg);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--glass-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: rgba(230, 14, 25, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefit-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-card__subtitle {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.benefit-card__text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Card 1: Prices Form */
.benefit-card--form {
    background: linear-gradient(180deg, #2a2a2e 0%, #1e1e22 100%);
}

.benefit-card--form .benefit-card__title {
    color: #fff;
    text-align: center;
}

.benefit-card--form .benefit-card__subtitle {
    color: var(--text-secondary);
    text-align: center;
    font-size: 12px;
}

/* Car wrapper with floating prices */
.benefit-car-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    margin: 16px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-car-image {
    max-width: 85%;
    max-height: 220px;
    position: relative;
    z-index: 1;
}

.benefit-price-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f5f5f5;
    border-radius: 16px;
    padding: 6px 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.benefit-price-tag i {
    color: #e60e19;
    font-size: 14px;
}

.benefit-price-tag span {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.benefit-price-tag--left {
    top: 10px;
    left: 0;
}

.benefit-price-tag--right {
    top: 10px;
    right: 0;
}

.benefit-price-tag--highlight {
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.benefit-price-tag--highlight span {
    color: #fff;
}

.benefit-price-tag--highlight i {
    color: #fff;
}

.benefit-form {
    margin-top: auto;
}

.benefit-form__group {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 4px;
    margin-bottom: 12px;
}

.benefit-form__input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 10px 12px;
    font-size: 14px;
    color: #333;
}

.benefit-form__input:focus {
    outline: none;
}

.benefit-form__mic {
    background: transparent;
    border: none;
    padding: 8px 12px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.benefit-form__mic:hover {
    color: var(--primary-red);
}

.benefit-form__submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #e10600 0%, #b80500 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.benefit-form__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 6, 0, 0.4);
}

/* Card 2: Offices */
.benefit-card--offices {
    background-image: url('../images/china-koreya.png');
    background-size: contain;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-color: #1a1a1c;
}

@media (max-width: 768px) {
    .benefit-card--offices {
        background-image: none;
    }
}

.benefit-card--offices .benefit-card__title {
    color: #fff;
    text-align: center;
    margin-bottom: 15px;
}

.benefit-card--offices .offices-text {
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.offices-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.offices-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 14, 25, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(230, 14, 25, 0.4);
}

.offices-feature i {
    color: var(--primary-red);
    font-size: 14px;
}

.offices-feature span {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
}

.office-locations {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.office-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.office-item__image {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.office-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.office-item__image i {
    font-size: 24px;
    color: #4CAF50;
}

.office-item__badge {
    position: absolute;
    top: -4px;
    left: 44px;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.office-item__badge--china {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.office-item__badge--korea {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.office-item__address {
    font-size: 11px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Card 3: Service */
.benefit-card--service {
    background-image: url('../images/punkt.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.benefit-card--service .benefit-card__title {
    color: #fff;
}

.benefit-card--service .benefit-card__text {
    color: rgba(255, 255, 255, 0.9);
}

.service-image {
    position: relative;
    margin-top: auto;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-top: 20px;
}

.service-image img {
    max-width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.service-gears {
    position: absolute;
    right: 10px;
    top: 10px;
}

.service-gears .gear-1 {
    font-size: 40px;
    color: rgba(255, 255, 255, 0.3);
    animation: rotate 8s linear infinite;
}

.service-gears .gear-2 {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.2);
    margin-left: -10px;
    animation: rotate-reverse 6s linear infinite;
}

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

@keyframes rotate-reverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* Service Drops Animation */
.service-drops {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.service-drop {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    padding: 10px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    animation: dropIn 0.6s ease-out forwards;
    animation-delay: var(--drop-delay, 0s);
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.service-drop:hover {
    background: rgba(230, 14, 25, 0.5);
    border-color: rgba(230, 14, 25, 0.6);
    transform: translateY(-3px) scale(1.05);
}

.service-drop i {
    color: var(--primary-red);
    font-size: 14px;
}

@keyframes dropIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    60% {
        opacity: 1;
        transform: translateY(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card 4: Social */
.benefit-card--social {
    background: var(--card-bg);
}

.social-stats {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
}

.social-stat {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-stat__number {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 4px;
}

.social-stat__label {
    font-size: 11px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.social-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.social-benefit {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(230, 14, 25, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(230, 14, 25, 0.3);
    font-size: 12px;
    color: #fff;
    animation: pulse-benefit 2s ease-in-out infinite;
    animation-delay: calc(var(--i, 0) * 0.3s);
}

.social-benefit:nth-child(1) { --i: 0; }
.social-benefit:nth-child(2) { --i: 1; }
.social-benefit:nth-child(3) { --i: 2; }

.social-benefit i {
    color: var(--primary-red);
    font-size: 12px;
}

@keyframes pulse-benefit {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(230, 14, 25, 0);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 10px 2px rgba(230, 14, 25, 0.2);
    }
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.social-link i {
    font-size: 20px;
}

.social-link--instagram {
    background: linear-gradient(135deg, #833AB4 0%, #E1306C 50%, #F77737 100%);
    color: #fff;
}

.social-link--instagram:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
    color: #fff;
}

.social-link--telegram {
    background: linear-gradient(135deg, #0088cc 0%, #0077b5 100%);
    color: #fff;
}

.social-link--telegram:hover {
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
    color: #fff;
}

/* Benefits Section Responsive */
@media (max-width: 1199px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .benefit-card {
        padding: 20px;
    }
    
    .benefit-card__title {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefit-prices {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .benefit-price-tag {
        padding: 6px 10px;
    }
    
    .benefit-price-tag span {
        font-size: 12px;
    }
}

/* ============================================= */
/* MOBILE ADAPTATION - Unified Title Sizes      */
/* ============================================= */

/* Unified section title sizes for mobile - all titles same size */
@media (max-width: 767px) {
    /* Main country titles (КИТАЙ, КОРЕЯ) - unified size */
    .country-title {
        font-size: clamp(32px, 10vw, 48px) !important;
        letter-spacing: 0.05em;
    }
    
    /* Section headers like "НАШИ ПРЕИМУЩЕСТВА", "НАШИ ВОЗМОЖНОСТИ" */
    .section-header--advantages h3,
    .section-header h3 {
        font-size: clamp(18px, 5vw, 24px) !important;
        letter-spacing: 0.1em !important;
        line-height: 1.3 !important;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Expenses titles */
    .expenses-title {
        font-size: clamp(18px, 5vw, 24px) !important;
    }
    
    /* Expenses values - adaptive */
    .expenses-value {
        font-size: clamp(16px, 4vw, 20px) !important;
    }
    
    .expenses-value span {
        font-size: inherit;
    }
    
    /* Verification section title */
    .verification-title {
        font-size: clamp(16px, 4.5vw, 20px) !important;
        line-height: 1.3;
    }
    
    /* VAT card title */
    .vat-card__title {
        font-size: clamp(16px, 4vw, 20px) !important;
    }
    
    /* Equipment section */
    .equipment-new-title {
        font-size: clamp(22px, 6vw, 32px) !important;
        line-height: 1.2;
    }
    
    .equipment-cost-title {
        font-size: clamp(24px, 7vw, 36px) !important;
    }
    
    .equipment-cost-subtitle {
        font-size: clamp(14px, 4vw, 18px) !important;
        line-height: 1.4;
    }
    
    /* Work formats section */
    .work-formats-title {
        font-size: clamp(22px, 6vw, 32px) !important;
    }
    
    .responsibility-main-title {
        font-size: clamp(18px, 5vw, 26px) !important;
        line-height: 1.3;
    }
    
    /* Request form section */
    .request-card__title {
        font-size: clamp(20px, 6vw, 28px) !important;
    }
    
    /* News section */
    .news-section .section-title {
        font-size: clamp(22px, 6vw, 32px) !important;
    }
    
    /* Benefits section */
    .benefit-card__title {
        font-size: clamp(14px, 4vw, 18px) !important;
    }
    
    /* About section */
    .about-section .section-title {
        font-size: clamp(22px, 6vw, 32px) !important;
    }
    
    /* Contacts section */
    .contacts-section .section-title {
        font-size: clamp(22px, 6vw, 32px) !important;
    }
}

/* ============================================= */
/* MOBILE ADAPTATION - Text Adaptive in Blocks  */
/* ============================================= */

@media (max-width: 767px) {
    /* Prevent text overflow in all cards */
    .advantage-card,
    .info-card,
    .export-card,
    .benefit-card,
    .vat-card,
    .expenses-block,
    .verification-section {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Advantage card text */
    .advantage-title {
        font-size: clamp(11px, 3.2vw, 14px) !important;
        line-height: 1.4;
        max-width: 100%;
    }
    
    .advantage-text {
        font-size: clamp(10px, 3vw, 12px) !important;
        line-height: 1.5;
    }
    
    /* Info card text */
    .info-card-content h4 {
        font-size: clamp(12px, 3.5vw, 14px) !important;
    }
    
    .info-card-content p {
        font-size: clamp(11px, 3vw, 13px) !important;
    }
    
    /* Verification steps text */
    .verification-step-text {
        font-size: clamp(12px, 3.5vw, 14px) !important;
    }
    
    .verification-step-number {
        font-size: clamp(10px, 2.8vw, 12px) !important;
        padding: 3px 10px;
    }
    
    /* Export card text */
    .export-card h4 {
        font-size: clamp(14px, 4vw, 18px) !important;
    }
    
    .export-features li {
        font-size: clamp(12px, 3.5vw, 14px) !important;
    }
    
    /* Equipment section text */
    .equipment-new-item p {
        font-size: clamp(10px, 2.8vw, 12px) !important;
    }
    
    .equipment-cost-list li {
        font-size: clamp(11px, 3vw, 13px) !important;
    }
    
    .equipment-cost-note p {
        font-size: clamp(10px, 2.8vw, 12px) !important;
    }
    
    /* Responsibilty icons text */
    .responsibility-icon-item p {
        font-size: clamp(10px, 2.8vw, 12px) !important;
        line-height: 1.3;
    }
    
    /* Work formats text */
    .work-formats-subtitle {
        font-size: clamp(12px, 3.5vw, 14px) !important;
        line-height: 1.4;
    }
    
    .work-formats-list li {
        font-size: clamp(12px, 3.5vw, 14px) !important;
    }
    
    /* Footer text */
    .footer-menu a {
        font-size: clamp(12px, 3.5vw, 14px) !important;
    }
}

/* ============================================= */
/* MOBILE ADAPTATION - Improved Layout          */
/* ============================================= */

@media (max-width: 767px) {
    /* Country header spacing */
    .country-header {
        margin-bottom: 30px;
    }
    
    /* Expenses block compact */
    .expenses-block {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    /* Info cards row - vertical stack */
    .info-cards-row {
        grid-template-columns: 1fr !important;
        gap: 12px;
    }
    
    .info-card {
        padding: 15px;
        gap: 12px;
    }
    
    .info-card-icon {
        width: 40px;
        min-width: 40px;
        height: 40px;
    }
    
    .info-card-icon i {
        font-size: 16px;
    }
    
    /* Verification section compact */
    .verification-section {
        padding: 20px 15px;
    }
    
    .verification-line {
        margin-right: 12px;
    }
    
    .verification-step {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    /* VAT card compact */
    .vat-card {
        padding: 20px;
    }
    
    .vat-card__big-percent {
        font-size: clamp(36px, 12vw, 56px) !important;
    }
    
    .vat-card__lead {
        font-size: clamp(12px, 3.5vw, 14px) !important;
    }
    
    .vat-card__percent {
        font-size: clamp(16px, 5vw, 22px) !important;
    }
    
    .vat-card__sub {
        font-size: clamp(10px, 2.8vw, 12px) !important;
    }
    
    /* Advantages grid for Korea - 2 columns on mobile */
    #koreaAdvantagesSlider {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* Section padding reduction */
    .section-main {
        padding: 50px 0;
    }
    
    /* Hero section adjustments */
    .hero-section h1 {
        font-size: clamp(28px, 8vw, 38px) !important;
    }
    
    .hero-section .subtitle {
        font-size: clamp(14px, 4vw, 16px) !important;
    }
    
    .hero-badge span {
        font-size: clamp(10px, 3vw, 12px) !important;
        padding: 6px 14px !important;
    }
    
    /* Hero buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/* Extra small screens */
@media (max-width: 400px) {
    /* Even smaller fonts for very small screens */
    .country-title {
        font-size: 28px !important;
    }
    
    .section-header--advantages h3,
    .section-header h3 {
        font-size: 16px !important;
        letter-spacing: 0.05em !important;
    }
    
    .advantage-card {
        padding: 15px 10px;
    }
    
    .advantage-icon {
        width: 60px;
        min-width: 60px;
        height: 60px;
        min-height: 60px;
    }
    
    .advantage-icon i {
        font-size: 24px;
    }
    
    /* Korea advantages - single column on very small screens */
    #koreaAdvantagesSlider {
        grid-template-columns: 1fr !important;
    }
    
    /* Equipment icons smaller */
    .equipment-new-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .equipment-new-icon-circle {
        width: 45px;
        height: 45px;
    }
    
    .equipment-new-icon-circle i {
        font-size: 18px;
    }
    
    /* Responsibility icons */
    .responsibility-icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .responsibility-icons-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
    }
}

/* ============================================= */
/* NEW RESPONSIVE UTILITY CLASSES               */
/* ============================================= */

/* Hero section title */
.hero-main-title {
    font-size: 42px;
    line-height: 1.1;
    text-transform: uppercase;
}

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

/* Hero subtitle */
.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

/* Section advantages title - unified across sections */
.section-advantages-title {
    font-size: 28px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white, #ffffff);
    margin: 0;
}

/* Expenses value large variant */
.expenses-value--large {
    font-size: 32px;
}

/* Responsive adjustments for new classes */
@media (max-width: 767px) {
    .hero-main-title {
        font-size: clamp(26px, 7vw, 36px) !important;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 4vw, 16px) !important;
    }
    
    .section-advantages-title {
        font-size: clamp(16px, 4.5vw, 22px) !important;
        letter-spacing: 0.15em !important;
        line-height: 1.3;
    }
    
    .expenses-value--large {
        font-size: clamp(22px, 6vw, 28px) !important;
    }
}

@media (max-width: 400px) {
    .hero-main-title {
        font-size: 24px !important;
    }
    
    .section-advantages-title {
        font-size: 14px !important;
        letter-spacing: 0.1em !important;
    }
    
    .expenses-value--large {
        font-size: 20px !important;
    }
}