:root {
    --vtc-red: rgb(118, 40, 40);
    --vtc-dark-blue: rgb(41, 53, 79);
    --vtc-red-light: rgb(150, 70, 70);
    --vtc-dark-blue-light: rgb(61, 73, 99);
    --text-light: #f3f4f6;
    --text-gray: #9ca3af;
    --text-dark: #1f2937;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #111827;
    color: var(--text-light);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.navbar {
    background-color: var(--vtc-dark-blue);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
}

.logo:hover {
    transform: scale(1.05);
    background-color: rgba(118, 40, 40, 0.2);
    box-shadow: 0 0 15px rgba(118, 40, 40, 0.3);
}

.logo:active {
    transform: scale(0.98);
}

.logo-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--vtc-red);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    border-color: white;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.logo-icon {
    width: 45px;
    height: 45px;
    background-color: var(--vtc-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: white;
    display: none;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    color: var(--vtc-red);
    text-shadow: 0 0 8px rgba(118, 40, 40, 0.5);
}

.nav-links {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: all 0.2s;
}

.nav-link:hover {
    background-color: var(--vtc-red);
    color: white;
}

.nav-link.active {
    background-color: var(--vtc-red);
    color: white;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.hero-overlay {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 120rem;
    z-index: -5;
    filter: blur(40px);
}

.hero-wave {
    width: 100%;
    aspect-ratio: 2000/520;
    background: linear-gradient(to right, var(--vtc-red), rgb(100, 30, 30), var(--vtc-dark-blue));
    opacity: 0.25;
    clip-path: polygon(0% 48%, 15% 46%, 30% 47%, 45% 49%, 60% 48%, 75% 46%, 90% 47%, 100% 49%, 100% 62%, 0% 62%);
}

.hero-glow {
    position: absolute;
    left: 52%;
    top: 48%;
    transform: translate(-50%, -50%);
    width: 22rem;
    height: 22rem;
    z-index: -5;
    filter: blur(40px);
}

.hero-glow-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(to right, var(--vtc-red), rgb(100, 50, 50), var(--vtc-dark-blue));
    opacity: 0.2;
}

.hero-content {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto;
    padding: 5rem 1rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title span {
    color: var(--vtc-red);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

/* ===== СЕКЦИЯ О КОМПАНИИ ===== */
.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.about-title-highlight {
    color: var(--vtc-red);
    display: block;
    margin-top: 0.5rem;
}

.about-text {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-text-italic {
    font-style: italic;
    font-size: 1.1rem;
}

/* ===== СПИСОК ПРЕИМУЩЕСТВ ===== */
.features-list {
    max-width: 36rem;
}

.feature-item {
    position: relative;
    padding-left: 2.2rem;
    margin-bottom: 1.5rem;
}

.feature-icon {
    position: absolute;
    left: 0;
    top: 0.25rem;
    color: var(--vtc-red);
    font-size: 1.2rem;
    width: 1.5rem;
}

.feature-title {
    font-weight: 600;
    color: white;
    display: inline;
}

.feature-description {
    color: var(--text-gray);
    display: inline;
}

/* ===== СЕКЦИЯ ПАРТНЕРОВ ===== */
.partners-section {
    background: linear-gradient(135deg, rgba(41, 53, 79, 0.9) 0%, rgba(118, 40, 40, 0.2) 100%);
    padding: 3rem 0;
    margin: 0;
}

.partners-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: white;
}

/* Сетка для логотипов партнеров */
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Карточка партнера - только кружок с логотипом */
.partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    width: 90px;
}

.partner-card:hover {
    transform: translateY(-5px);
}

/* Кружок для логотипа */
.partner-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--vtc-red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    overflow: hidden;
}

.partner-card:hover .partner-logo {
    background-color: rgba(118, 40, 40, 0.3);
    border-color: white;
    box-shadow: 0 0 15px rgba(118, 40, 40, 0.5);
}

/* Иконка внутри кружка */
.partner-logo i {
    font-size: 2rem;
    color: white;
}

/* Название партнера (под кружком) */
.partner-name {
    font-size: 0.8rem;
    color: var(--text-gray);
    text-align: center;
    margin-top: 0.3rem;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-name {
    color: white;
}

.partner-info {
    text-align: center;
    color: var(--text-gray);
    margin-top: 1.5rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    border: 1px dashed var(--vtc-red);
}

/* ===== МЕДИА-ЗАПРОСЫ ДЛЯ МОБИЛЬНЫХ УСТРОЙСТВ ===== */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--vtc-dark-blue);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .about-title {
        font-size: 1.8rem;
    }
}

	.social-link .fa-tiktok,
	.social-link .fa-telegram {
		transition: color 0.2s;
	}

	.social-link:hover .fa-tiktok {
		color: #00f2ea;
	}

	.social-link:hover .fa-telegram {
		color: #0088cc;
	}

/* ===== ПОДВАЛ (FOOTER) ===== */
.footer {
    background-color: var(--vtc-dark-blue);
    padding: 2.5rem 0 1.5rem 0;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: var(--text-gray);
    transition: color 0.2s;
    font-weight: 600;
}

.footer-link:hover {
    color: white;
    text-decoration: underline;
    text-decoration-color: var(--vtc-red);
    text-underline-offset: 4px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-link {
    color: var(--text-gray);
    font-size: 1.5rem;
    transition: color 0.2s;
}

.social-link:hover {
    color: var(--vtc-red);
}

.footer-copyright {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    font-weight: 400;
}

.developer-credit {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.developer-credit a {
    color: var(--vtc-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: white;
    text-decoration: underline;
    text-shadow: 0 0 5px rgba(118, 40, 40, 0.5);
}

.developer-credit i {
    color: var(--vtc-red);
    font-size: 0.8rem;
    margin: 0 2px;
    animation: heartBeat 1.5s ease infinite;
}

/* Анимация сердечка */
@keyframes heartBeat {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1);
    }
    75% {
        transform: scale(1.05);
    }
}

/* ===== СТРАНИЦА О НАС ===== */

/* Hero секция для внутренних страниц */
.page-hero {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 5rem 0;
    background-color: var(--vtc-dark-blue);
    text-align: center;
}

.page-hero-background {
    position: absolute;
    inset: 0;
    z-index: -10;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .page-hero-title {
        font-size: 3.5rem;
    }
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 36rem;
    margin: 0 auto;
}

/* Секция "О компании" */
.about-detailed {
    padding: 5rem 0;
}

.about-detailed-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 992px) {
    .about-detailed-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.about-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--vtc-red);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.about-content h3 span {
    color: var(--vtc-red);
}

.about-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Секция "Наши ценности" */
.values-section {
    background-color: var(--vtc-dark-blue);
    padding: 5rem 0;
}

.values-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.values-title span {
    color: var(--vtc-red);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.value-card {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 2rem 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border-bottom: 3px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(118, 40, 40, 0.3);
    border-bottom-color: var(--vtc-red);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--vtc-red);
    margin-bottom: 1.5rem;
}

.value-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Секция статистики */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(rgba(118, 40, 40, 0.1), rgba(41, 53, 79, 0.1));
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
}

@media (min-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--vtc-red);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Секция рекрутинга */
.recruitment-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--vtc-dark-blue) 0%, #0f172a 100%);
}

.recruitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 992px) {
    .recruitment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.recruitment-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.recruitment-content h2 span {
    color: var(--vtc-red);
}

.recruitment-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.requirements-list {
    margin-bottom: 2rem;
}

.requirement-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.requirement-item i {
    color: var(--vtc-red);
    font-size: 1.2rem;
    width: 1.5rem;
}

.recruitment-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 0.375rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--vtc-red);
    color: white;
}

.btn-primary:hover {
    background-color: var(--vtc-red-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 40, 40, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: white;
    border: 2px solid var(--vtc-red);
}

.btn-outline:hover {
    background-color: var(--vtc-red);
    transform: translateY(-2px);
}

.recruitment-image {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--vtc-red);
}

.recruitment-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Секция FAQ (Часто задаваемые вопросы) */
.faq-section {
    padding: 5rem 0;
}

.faq-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.faq-title span {
    color: var(--vtc-red);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
    overflow: hidden;
    border-left: 3px solid var(--vtc-red);
}

.faq-question {
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: rgba(118, 40, 40, 0.1);
}

.faq-question h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.faq-question i {
    color: var(--vtc-red);
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-answer.show {
    padding: 0 1.5rem 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* ===== СТРАНИЦА КОМАНДЫ ===== */

/* Секция команды */
.team-section {
    padding: 3rem 0 5rem 0;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .team-header h1 {
        font-size: 3.5rem;
    }
}

.team-header h1 span {
    color: var(--vtc-red);
    background: linear-gradient(135deg, var(--vtc-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Отделы команды */
.team-department {
    margin-bottom: 3rem;
}

.department-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.department-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
}

.department-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vtc-red), var(--vtc-dark-blue), transparent);
    border: none;
    margin-bottom: 1.5rem;
}

/* Сетка карточек команды */
.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Карточка участника команды */
.team-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    overflow: hidden;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--vtc-red);
    box-shadow: 0 10px 25px -5px rgba(118, 40, 40, 0.3);
    background-color: rgba(118, 40, 40, 0.1);
}

.team-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    overflow: hidden;
    border: 3px solid var(--vtc-red);
    box-shadow: 0 4px 10px rgba(118, 40, 40, 0.3);
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.team-role {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: white;
    margin-bottom: 0.75rem;
}

/* Заглушка для пустых отделов */
.team-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0.75rem;
    border: 2px dashed var(--vtc-dark-blue);
}

.team-placeholder p {
    color: var(--text-gray);
    font-size: 1rem;
}

.team-placeholder i {
    font-size: 3rem;
    color: var(--vtc-dark-blue);
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* ===== СЕКЦИЯ ИТОГОВ ВОДИТЕЛЕЙ ===== */
.stats-results-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(41, 53, 79, 0.9) 0%, rgba(118, 40, 40, 0.2) 100%);
    position: relative;
    overflow: hidden;
}

.stats-results-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--vtc-red), transparent);
}

.results-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.results-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.results-header h2 span {
    color: var(--vtc-red);
}

.results-header .month {
    font-size: 1.2rem;
    color: var(--text-gray);
    background-color: rgba(118, 40, 40, 0.2);
    display: inline-block;
    padding: 0.3rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid var(--vtc-red);
}

/* Сетка для трех категорий */
.results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .results-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Карточка категории */
.result-card {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid rgba(118, 40, 40, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.result-card:hover {
    border-color: var(--vtc-red);
    box-shadow: 0 15px 40px -10px rgba(118, 40, 40, 0.4);
    transform: translateY(-5px);
}

.result-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(118, 40, 40, 0.3);
}

.result-card-header i {
    font-size: 2rem;
    color: var(--vtc-red);
}

.result-card-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
}

.result-total {
    text-align: center;
    margin-bottom: 1.5rem;
    padding: 0.8rem;
    background-color: rgba(118, 40, 40, 0.2);
    border-radius: 0.5rem;
    border: 1px solid var(--vtc-red);
}

.result-total .total-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.result-total .total-label {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.result-total .rating {
    font-size: 1rem;
    color: #ffd700;
    margin-top: 0.3rem;
}

.result-total .rating i {
    color: #ffd700;
    margin-right: 0.3rem;
}

.result-total .rating span {
    color: white;
    font-weight: 600;
}

/* Список водителей */
.drivers-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.driver-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.driver-item:hover {
    background-color: rgba(118, 40, 40, 0.2);
}

.driver-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--vtc-red);
    flex-shrink: 0;
}

.driver-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.driver-avatar .avatar-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--vtc-dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.driver-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.driver-name {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
}

.driver-distance {
    color: var(--vtc-red);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Топ водитель (особый стиль) */
.driver-item.top-driver {
    background-color: rgba(118, 40, 40, 0.3);
    border: 1px solid gold;
    margin-bottom: 0.5rem;
}

.driver-item.top-driver .driver-name {
    font-weight: 700;
    color: gold;
}

.driver-item.top-driver .driver-distance {
    color: gold;
}

/* Примечание внизу */
.results-note {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 0.5rem;
}

.results-note i {
    color: var(--vtc-red);
    margin-right: 0.3rem;
}

/* ===== СЕЛЕКТОР ЯЗЫКА ===== */
.language-selector {
    display: flex;
    align-items: center;
    margin-left: 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 2rem;
    padding: 0.2rem;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-btn:hover {
    color: white;
    background-color: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    background-color: var(--vtc-red);
    color: white;
}

@media (max-width: 768px) {
    .language-selector {
        margin: 1rem 0 0 0;
        justify-content: center;
    }
    
    .nav-links.show .language-selector {
        display: flex;
    }
}

/* ===== СТРАНИЦА ГАЙДОВ ===== */
.guides-section {
    padding: 3rem 0 5rem 0;
}

.guides-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guides-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .guides-header h1 {
        font-size: 3.5rem;
    }
}

.guides-header h1 span {
    color: var(--vtc-red);
    background: linear-gradient(135deg, var(--vtc-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.guides-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Сетка гайдов */
.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .guides-grid {
        grid-template-columns: 1fr;
    }
}

/* Карточка гайда */
.guide-card {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(118, 40, 40, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.guide-card:hover {
    border-color: var(--vtc-red);
    box-shadow: 0 15px 40px -10px rgba(118, 40, 40, 0.4);
    transform: translateY(-5px);
}

.guide-card-header {
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.guide-card-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.5rem;
}

.guide-card-header h2 i {
    color: var(--vtc-red);
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

.guide-card-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Видео контейнер */
.video-container {
    position: relative;
    padding: 0 1.5rem 1.5rem 1.5rem;
    width: 100%;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 соотношение сторон */
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
    border: 2px solid var(--vtc-red);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Примечание для РФ */
.russia-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(118, 40, 40, 0.2);
    border-radius: 1rem;
    border-left: 4px solid var(--vtc-red);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.russia-note i {
    color: var(--vtc-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.russia-note h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.8rem;
}

.russia-note p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

.russia-note .highlight {
    color: var(--vtc-red);
    font-weight: 600;
}

/* Список рекомендаций */
.tips-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.tip-item {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    color: var(--text-gray);
    border: 1px solid rgba(118, 40, 40, 0.3);
}

.tip-item i {
    color: var(--vtc-red);
    margin-right: 0.3rem;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transform: translateY(6px);
}

.tip-item:hover {
    background-color: rgba(118, 40, 40, 0.3);
    color: white;
}

.btn-outline i {
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
}

/*transform только для иконок в tip-item */
.tip-item i {
    color: var(--vtc-red);
    margin-right: 0.3rem;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    transform: translateY(6px);
}

/* для иконки play в кнопке на странице гайдов */
.btn-outline .fa-play {
    transform: translateY(6px);
}

/* Исправление для иконки Discord */
.recruitment-buttons .btn-outline .fa-discord {
    transform: translateY(-2px);
}

/* ===== СТРАНИЦА ГАЛЕРЕИ ===== */
.gallery-section {
    padding: 3rem 0 5rem 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

.gallery-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .gallery-header h1 {
        font-size: 3.5rem;
    }
}

.gallery-header h1 span {
    color: var(--vtc-red);
    background: linear-gradient(135deg, var(--vtc-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gallery-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Сетка галереи */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Карточка галереи */
.gallery-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    image-rendering: crisp-edges; /* Для четкости */
}

.gallery-item:hover {
    transform: scale(1.03);
    border-color: var(--vtc-red);
    box-shadow: 0 10px 25px -5px rgba(118, 40, 40, 0.5);
    z-index: 5;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Оверлей с подписью (по желанию) */
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
    text-align: center;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* МОДАЛЬНОЕ ОКНО (LIGHTBOX) */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    position: relative;
    width: 90%;
    height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border: 3px solid var(--vtc-red);
    border-radius: 0.5rem;
    box-shadow: 0 0 30px rgba(118, 40, 40, 0.5);
}

/* Кнопки навигации */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(118, 40, 40, 0.5);
    transition: all 0.3s ease;
    z-index: 10001;
}

.modal-close:hover {
    background-color: var(--vtc-red);
    transform: scale(1.1);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 3rem;
    cursor: pointer;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(118, 40, 40, 0.5);
    transition: all 0.3s ease;
}

.modal-nav:hover {
    background-color: var(--vtc-red);
    transform: translateY(-50%) scale(1.1);
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

/* Индикатор текущего изображения */
.modal-counter {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1rem;
    background-color: rgba(118, 40, 40, 0.7);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    border: 1px solid var(--vtc-red);
}

/* Адаптивность для модального окна */
@media (max-width: 768px) {
    .modal-nav {
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }
    
    .modal-close {
        width: 40px;
        height: 40px;
        font-size: 2rem;
        top: 10px;
        right: 10px;
    }
}

/* ===== СТРАНИЦА НАШ СТИЛЬ ===== */
.style-section {
    padding: 3rem 0 5rem 0;
}

.style-header {
    text-align: center;
    margin-bottom: 3rem;
}

.style-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .style-header h1 {
        font-size: 3.5rem;
    }
}

.style-header h1 span {
    color: var(--vtc-red);
    background: linear-gradient(135deg, var(--vtc-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.style-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Сетка для страницы стиля */
.style-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 992px) {
    .style-grid {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

/* Карточка с информацией о покраске */
.paint-card {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(118, 40, 40, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.paint-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.paint-card h2 i {
    color: var(--vtc-red);
    margin-right: 0.5rem;
}

.paint-info {
    background-color: rgba(118, 40, 40, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--vtc-red);
}

.paint-info-item {
    display: flex;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.paint-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.paint-info-label {
    font-weight: 600;
    color: var(--vtc-red);
    width: 120px;
    flex-shrink: 0;
}

.paint-info-value {
    color: var(--text-gray);
}

/* Цветовые блоки */
.color-preview {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    margin-left: 0.5rem;
    vertical-align: middle;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.color-row {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 0.5rem;
}

.color-name {
    font-weight: 500;
    color: white;
    width: 80px;
}

.color-values {
    color: var(--text-gray);
    font-family: monospace;
    flex: 1;
}

.color-sample {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-left: 1rem;
}

/* Карточка с изображением грузовика */
.truck-card {
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(118, 40, 40, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.truck-card h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1.5rem;
    text-align: center;
}

.truck-card h2 i {
    color: var(--vtc-red);
    margin-right: 0.5rem;
}

/* Контейнер для изображения грузовика */
.truck-image-container {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    aspect-ratio: 16 / 9;
}

.truck-image-container:hover {
    transform: scale(1.02);
    border-color: var(--vtc-red);
    box-shadow: 0 15px 30px -5px rgba(118, 40, 40, 0.5);
}

.truck-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.truck-image-container:hover img {
    transform: scale(1.05);
}

/* Кнопки для скачивания */
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    background-color: var(--vtc-red);
    color: white;
    flex: 1;
    min-width: 200px;
}

.download-btn i {
    font-size: 1.2rem;
}

.download-btn:hover {
    background-color: var(--vtc-red-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(118, 40, 40, 0.4);
}

.download-btn:active {
    transform: translateY(-1px);
}

.download-btn.secondary {
    background-color: transparent;
    border: 2px solid var(--vtc-red);
}

.download-btn.secondary:hover {
    background-color: var(--vtc-red);
}

/* Секция с дополнительной информацией */
.style-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: rgba(118, 40, 40, 0.1);
    border-radius: 1rem;
    border-left: 4px solid var(--vtc-red);
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.style-note i {
    color: var(--vtc-red);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.style-note p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ===== СТРАНИЦЫ ПОЛИТИКИ (PRIVACY & TERMS) ===== */
.policy-section {
    padding: 3rem 0 5rem 0;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .policy-header h1 {
        font-size: 3.5rem;
    }
}

.policy-header h1 span {
    color: var(--vtc-red);
    background: linear-gradient(135deg, var(--vtc-red) 0%, #ff6b6b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
}

/* Контейнер для контента политики */
.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid rgba(118, 40, 40, 0.3);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

/* Заголовки внутри документа */
.policy-container h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--vtc-red);
    padding-bottom: 0.5rem;
}

.policy-container h2:first-of-type {
    margin-top: 0;
}

.policy-container h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: white;
    margin: 1.5rem 0 0.8rem 0;
}

.policy-container h3 i {
    color: var(--vtc-red);
    margin-right: 0.5rem;
}

.policy-container p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.policy-container strong {
    color: white;
    font-weight: 600;
}

.policy-container em {
    color: var(--vtc-red);
    font-style: italic;
}

/* Списки в политике */
.policy-container ul, 
.policy-container ol {
    margin: 1rem 0 1.5rem 2rem;
    color: var(--text-gray);
}

.policy-container li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-container li::marker {
    color: var(--vtc-red);
}

/* Блок с датой */
.policy-date {
    display: inline-block;
    background-color: rgba(118, 40, 40, 0.2);
    border: 1px solid var(--vtc-red);
    border-radius: 2rem;
    padding: 0.3rem 1.5rem;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-date i {
    color: var(--vtc-red);
    margin-right: 0.3rem;
}

/* Выделенные блоки */
.policy-highlight {
    background-color: rgba(118, 40, 40, 0.1);
    border-left: 4px solid var(--vtc-red);
    padding: 1.2rem;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.policy-highlight p:last-child {
    margin-bottom: 0;
}

.policy-highlight i {
    color: var(--vtc-red);
    margin-right: 0.5rem;
}

/* Контактная информация */
.policy-contact {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(118, 40, 40, 0.3);
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-top: 2rem;
    text-align: center;
}

.policy-contact p {
    margin-bottom: 0.5rem;
}

.policy-contact a {
    color: var(--vtc-red);
    font-weight: 600;
    transition: all 0.3s ease;
}

.policy-contact a:hover {
    color: white;
    text-decoration: underline;
}

/* Навигация между политиками */
.policy-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.policy-nav a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: transparent;
    border: 2px solid var(--vtc-red);
    color: white;
}

.policy-nav a i {
    color: var(--vtc-red);
    transition: all 0.3s ease;
}

.policy-nav a:hover {
    background-color: var(--vtc-red);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(118, 40, 40, 0.4);
}

.policy-nav a:hover i {
    color: white;
}

/* ===== МОБИЛЬНЫЕ УЛУЧШЕНИЯ ДЛЯ СТРАНИЦ ПОЛИТИКИ ===== */
@media (max-width: 768px) {
    /* Контейнер политики */
    .policy-container {
        padding: 1.5rem;
    }
    
    /* Заголовки */
    .policy-container h2 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
    
    .policy-container h3 {
        font-size: 1.2rem;
        word-wrap: break-word;
    }
    
    /* Текст и списки */
    .policy-container p,
    .policy-container li {
        font-size: 0.95rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Выделенные блоки */
    .policy-highlight {
        padding: 1rem;
        overflow-x: hidden;
    }
    
    .policy-highlight p {
        margin-left: 0 !important;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .policy-highlight strong {
        white-space: normal;
        word-wrap: break-word;
    }
    
    /* Длинные ссылки и email */
    .policy-highlight a,
    .policy-contact a {
        word-break: break-all;
        white-space: normal;
        display: inline-block;
        max-width: 100%;
    }
    
    /* Блок с общей информацией */
    .policy-highlight p:first-child {
        margin-bottom: 0.3rem;
    }
    
    .policy-highlight p:last-child {
        margin-left: 0 !important;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .policy-highlight p:last-child strong {
        display: inline-block;
        margin-right: 0.3rem;
    }
    
    /* Контактная информация */
    .policy-contact {
        padding: 1rem;
        text-align: left;
    }
    
    .policy-contact p {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
        margin-bottom: 1rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .policy-contact p i {
        margin-bottom: 0.2rem;
    }
    
    .policy-contact p strong {
        white-space: normal;
        word-wrap: break-word;
    }
    
    .policy-contact p a {
        word-break: break-all;
        white-space: normal;
        width: 100%;
    }
    
    /* Навигационные кнопки */
    .policy-nav {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }
    
    .policy-nav a {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
        text-align: center;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .policy-nav a i {
        flex-shrink: 0;
    }
    
    /* Блок с датой */
    .policy-date {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
        text-align: center;
        width: 100%;
        white-space: normal;
        word-wrap: break-word;
    }
    
   /* ===== ИСПРАВЛЕНИЯ ДЛЯ НАВБАРА НА МОБИЛЬНЫХ ===== */
@media (max-width: 768px) {
    /* Возвращаем исходное поведение навбара */
    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px; /* Возвращаем фиксированную высоту */
    }
    
    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.3rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.1rem;
        white-space: nowrap; /* Запрещаем перенос текста */
        max-width: 150px;
        overflow: hidden;
        text-overflow: ellipsis; /* Добавляем многоточие, если текст не влезает */
    }
    
    .mobile-menu-btn {
        display: block; /* Кнопка меню должна быть видна */
        margin-left: auto; /* Прижимаем к правому краю */
    }
    
    .nav-links {
        top: 70px;
    }
    
    .language-selector {
        margin: 0.5rem 0;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .policy-container {
        padding: 1rem;
    }
    
    .policy-container h2 {
        font-size: 1.3rem;
    }
    
    .policy-container h3 {
        font-size: 1.1rem;
    }
    
    .policy-highlight p {
        font-size: 0.9rem;
    }
    
    .policy-contact p {
        font-size: 0.9rem;
    }
    
    .logo-text {
        font-size: 1rem;
        max-width: 120px;
    }
    
    .logo-img {
        width: 35px;
        height: 35px;
    }
}

/* ===== УЛУЧШЕНИЯ ДЛЯ ПЕРЕНОСА ТЕКСТА НА СТРАНИЦАХ ПОЛИТИКИ ===== */
/* Перенос длинных слов в заголовках */
.policy-header h1,
.policy-header h1 span {
    word-break: break-word;
    hyphens: auto;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Для слова "конфиденциальности" и других длинных слов */
.policy-header h1 span {
    display: inline-block;
    max-width: 100%;
    word-break: break-all;
    hyphens: auto;
    line-height: 1.3;
}

/* Улучшения для блока с общей информацией */
.policy-highlight p {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.5rem;
}

.policy-highlight p i {
    flex-shrink: 0;
}

.policy-highlight p strong {
    white-space: nowrap;
    flex-shrink: 0;
}

.policy-highlight p span {
    color: var(--text-gray);
    white-space: nowrap;
}

/* Стили для email - чтобы он всегда был на отдельной строке на десктопе */
.policy-highlight p a {
    word-break: break-all;
    margin-left: 0;
    display: inline-block;
}

/* Десктоп версия - email на отдельной строке */
@media (min-width: 769px) {
    .policy-highlight p {
        display: flex;
        flex-wrap: wrap;
        align-items: baseline;
    }
    
    /* Заголовок "Общая информация" и первый span в одной строке */
    .policy-highlight p strong:first-of-type {
        margin-right: 0.3rem;
    }
    
    .policy-highlight p span {
        margin-right: 0.3rem;
    }
    
    /* Принудительно переносим "Контактный email" и саму почту на новую строку */
    .policy-highlight p strong:last-of-type {
        display: block;
        width: 100%;
        margin-top: 0.3rem;
        white-space: normal;
    }
    
    .policy-highlight p a {
        display: inline-block;
        margin-left: 0.3rem;
        white-space: nowrap;
        max-width: calc(100% - 120px);
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: middle;
    }
    
    /* Убираем лишний перенос, если места достаточно */
    .policy-highlight p a:hover {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        word-break: break-all;
    }
}

/* Мобильная версия */
@media (max-width: 768px) {
    .policy-highlight p {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .policy-highlight p i {
        margin-bottom: 0.2rem;
    }
    
    .policy-highlight p strong,
    .policy-highlight p span {
        white-space: normal;
        width: 100%;
    }
    
    .policy-highlight p a {
        width: 100%;
        word-break: break-all;
    }
    
    /* Специально для длинных слов в заголовке */
    .policy-header h1 {
        font-size: 2rem;
        word-break: break-all;
        hyphens: auto;
        line-height: 1.2;
    }
    
    .policy-header h1 span {
        font-size: inherit;
        word-break: break-all;
        display: inline;
    }
}

/* Для очень маленьких экранов */
@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 1.8rem;
    }
}
}

/* ИСПРАВЛЕНИЕ ДЛЯ КОНТАКТОВ */
@media (max-width: 768px) {
    .policy-contact p {
        display: block !important;
    }
    
    .policy-contact p i {
        float: left !important;
        margin-right: 0.5rem !important;
        margin-top: 0.2rem !important;
    }
    
    .policy-contact p strong {
        display: block !important;
        margin-left: 2rem !important;
        margin-bottom: 0.2rem !important;
    }
    
    .policy-contact p a {
        display: block !important;
        margin-left: 2rem !important;
        word-break: break-all !important;
    }
}