/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-bg: #0a0a0a;
    --color-bg-secondary: #1a1a1a;
    --color-bg-card: #1f1f1f;
    --color-text: #ffffff;
    --color-text-secondary: #b0b0b0;
    --color-accent: #ff8c00;
    --color-border: rgba(255, 255, 255, 0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
}

.nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
}

.brand-subtitle {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--color-text-secondary);
}

.nav-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-accent);
}

.nav-language {
    display: flex;
    gap: 8px;
}

.lang-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--color-border);
}

.lang-btn.active {
    background-color: var(--color-accent);
    color: #000;
    border-color: var(--color-accent);
}

.lang-btn:hover:not(.active) {
    background-color: rgba(255, 140, 0, 0.1);
    border-color: var(--color-accent);
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 90px);
    padding: 60px 40px 80px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 80px;
    align-items: start;
}

.hero-left {
    padding-top: 40px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    background-color: transparent;
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 30px;
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 88px;
    line-height: 0.95;
    margin-bottom: 32px;
    letter-spacing: 1px;
}

.title-line {
    display: block;
    color: #ffffff;
}

.title-line.highlight {
    color: var(--color-accent);
}

.hero-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.btn {
    padding: 18px 32px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: #ff9d1f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
}

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

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 700px;
}

.stat-card {
    padding: 28px 24px;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: 8px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--color-accent);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
}

/* Work On Card */
.work-on-card {
    background: linear-gradient(135deg, #1f1f1f 0%, #1a1a1a 100%);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 40px;
    position: sticky;
    top: 120px;
}

.work-on-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.work-on-list {
    list-style: none;
    margin-bottom: 32px;
}

.work-on-item {
    padding: 16px 20px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--color-text);
    position: relative;
    padding-left: 44px;
    transition: all 0.3s ease;
}

.work-on-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
}

.work-on-item:hover {
    background-color: rgba(255, 140, 0, 0.05);
    border-color: rgba(255, 140, 0, 0.3);
    transform: translateX(4px);
}

.quote {
    padding: 24px;
    background-color: rgba(0, 0, 0, 0.3);
    border-left: 3px solid var(--color-accent);
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-text-secondary);
    font-style: italic;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .hero-right {
        max-width: 600px;
    }
    
    .work-on-card {
        position: relative;
        top: 0;
    }
}

/* ── Lang strip — always visible ── */
.lang-strip {
    display: none; /* hidden — lang switcher moved inline to nav */
}

/* ── Inline lang switcher inside nav ── */
.nav-lang-inline {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 16px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.12);
}

/* On desktop, nav-menu is a flex row — lang switcher sits at the end */
.nav-menu {
    align-items: center;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 8px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.03);
}

.lang-pill .lang-flag {
    font-size: 16px;
    line-height: 1;
}

.lang-pill--active {
    background: rgba(255, 145, 0, 0.12);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.lang-pill:hover:not(.lang-pill--active) {
    border-color: rgba(255,255,255,0.3);
    color: rgba(255,255,255,0.8);
    background: rgba(255,255,255,0.06);
}

/* ── Burger (hidden on desktop) ── */
.burger-btn {
    display: none;
}

/* ── Hide old nav-language on all screen sizes ── */
.nav-language {
    display: none !important;
}

@media (max-width: 768px) {

    .nav {
        padding: 14px 20px;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }

    /* Burger button */
    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        cursor: pointer;
        z-index: 1300;
        background: none;
        border: none;
        padding: 0;
        flex-shrink: 0;
    }

    .burger-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Full-screen menu overlay — starts below header */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #060606;
        z-index: 1200;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 20px 0 60px;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }

    .nav-menu::before { display: none; }
    .nav-menu::after  { display: none; }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu .nav-link {
        font-size: 32px;
        font-family: 'Bebas Neue', sans-serif;
        letter-spacing: 3px;
        color: rgba(255,255,255,0.85);
        text-decoration: none;
        transition: color 0.2s;
        padding: 14px 40px;
        width: 100%;
        text-align: center;
        display: block;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        color: var(--color-accent);
    }

    /* Lang inline — hide from header bar on mobile, lives inside the open menu */
    .nav-lang-inline {
        display: none;
    }

    /* Inside open menu overlay, show lang switcher */
    .nav-menu.open .nav-lang-inline,
    .nav-menu .nav-lang-inline {
        display: flex;
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        margin-top: 8px;
        justify-content: center;
    }

    .nav-menu .lang-pill {
        font-size: 14px;
        padding: 8px 18px 8px 12px;
        border-radius: 10px;
    }

    .nav-menu .lang-pill .lang-flag {
        font-size: 20px;
    }

    /* Floating ears — управляются из contact-form.css */

    /* Hero */
    .hero {
        padding: 40px 20px;
    }

    .hero-title {
        font-size: 56px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .nav-link {
        font-size: 13px;
    }

    .hero-title {
        font-size: 44px;
    }

    /* floating btn handled in contact-form.css */
}

@media (max-width: 375px) {
    /* floating btn handled in contact-form.css */
}

/* Footer Styles */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid var(--color-border);
    padding: 60px 40px 32px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 40px;
    height: 40px;
}

.footer-brand-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-accent);
}

.footer-brand-subtitle {
    font-size: 11px;
    color: var(--color-text-secondary);
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.footer-link:hover {
    color: var(--color-accent);
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social-icon {
    font-size: 13px;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-social-icon:hover {
    color: var(--color-accent);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-right {
        flex-direction: column;
        gap: 16px;
    }
}

/* Interactive Work-On Buttons */
.work-on-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.work-on-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.15);
    border-radius: 8px;
    text-decoration: none;
    color: var(--color-text);
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.work-on-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.08), transparent);
    transition: left 0.4s ease;
}

.work-on-btn:hover::before {
    left: 100%;
}

.work-on-btn:hover {
    background: rgba(255, 140, 0, 0.08);
    border-color: rgba(255, 140, 0, 0.4);
    transform: translateX(4px);
    color: #ffffff;
}

.work-on-btn:active {
    transform: translateX(6px) scale(0.98);
}

.work-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-accent);
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(255, 140, 0, 0.5);
    transition: all 0.3s ease;
}

.work-on-btn:hover .work-dot {
    box-shadow: 0 0 12px rgba(255, 140, 0, 0.8);
    transform: scale(1.3);
}

.work-text {
    flex: 1;
}

/* Hide old list style if exists */
.work-on-list {
    display: none;
}

@media (max-width: 768px) {
    .work-on-btn {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .work-dot {
        width: 7px;
        height: 7px;
    }
}

/* Training Process Section */
.training-process {
    padding: 80px 40px;
    background: linear-gradient(135deg, #0f0f0f 0%, #0a0a0a 100%);
}

.training-process-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.training-process-text {
    flex: 1;
}

.process-title {
    font-family: var(--font-display);
    font-size: 48px;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.process-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 48px;
}

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

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--color-accent);
    color: #000;
    font-size: 24px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}

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

.training-process-photo {
    position: relative;
}

.process-photo {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid var(--color-accent);
    box-shadow: 0 16px 48px rgba(255, 140, 0, 0.2);
}

@media (max-width: 1024px) {
    .training-process-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .training-process-photo {
        order: -1;
    }
    
    .process-photo {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .training-process {
        padding: 60px 20px;
    }
    
    .process-title {
        font-size: 36px;
    }
    
    .process-description {
        font-size: 16px;
    }
    
    .process-photo {
        height: 300px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
}

/* Article Preview Section */
.article-preview {
    padding: 80px 40px;
    background: linear-gradient(135deg, rgba(60, 30, 10, 0.15) 0%, rgba(40, 20, 5, 0.1) 100%);
}

.article-preview-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 450px;
    gap: 60px;
    align-items: center;
}

.article-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-accent);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.article-preview-title {
    font-family: var(--font-display);
    font-size: 42px;
    letter-spacing: 2px;
    color: var(--color-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.article-preview-excerpt {
    font-size: 17px;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.article-read-more {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.article-read-more:hover {
    background: var(--color-accent);
    color: #000;
    transform: translateX(4px);
}

.article-preview-photo {
    position: relative;
}

.article-photo {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 0, 0.3);
    transition: all 0.3s ease;
}

.article-photo:hover {
    border-color: var(--color-accent);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.2);
}

@media (max-width: 1024px) {
    .article-preview-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .article-photo {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .article-preview {
        padding: 60px 20px;
    }
    
    .article-preview-title {
        font-size: 32px;
    }
    
    .article-preview-excerpt {
        font-size: 15px;
    }
    
    .article-photo {
        height: 300px;
    }
}
/* Updated Footer Styles */
.footer {
    background-color: #0a0a0a;
    border-top: 1px solid var(--color-border);
    padding: 60px 40px 32px;
    margin-top: 80px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-brand-block {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-logo {
    width: 50px;
    height: 50px;
}

.footer-brand-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.footer-brand-subtitle {
    font-size: 12px;
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

.contact-label {
    font-size: 12px;
    color: #888;
    margin: 8px 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    font-size: 16px;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--color-accent);
}

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

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-accent);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.social-link:hover {
    color: #ff9d1f;
    transform: translateX(4px);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.arvion-link {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.arvion-link:hover {
    color: #ff9d1f;
}

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

@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-brand-block {
        flex-direction: column;
        text-align: center;
    }
}

/* FULLSCREEN MOBILE MENU */
.burger-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.burger-menu.active {
    display: flex;
    opacity: 1;
}

.burger-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.burger-menu a {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    color: var(--color-text);
    text-decoration: none;
    transition: color 0.3s ease;
}

.burger-menu a:hover {
    color: var(--color-accent);
}

/* КРЕСТИК */
.burger-btn {
    width: 30px;
    height: 30px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10000;
}

.burger-btn span {
    width: 100%;
    height: 2px;
    background: var(--color-accent);
    transition: all 0.3s ease;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

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

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

/* ПЕРЕКЛЮЧАТЕЛЬ ПОД ХЭДЕРОМ */
.mobile-lang-bar {
    display: none;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    padding: 12px 0;
    justify-content: center;
    gap: 12px;
    position: sticky;
    top: 70px;
    z-index: 900;
}

.mobile-lang-link {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 20px;
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.mobile-lang-link--active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #000;
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .mobile-lang-bar {
        display: flex;
    }
    
    .nav-lang-inline {
        display: none !important;
    }
}

/* FULLSCREEN BURGER MENU - FIXED */
.burger-menu {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(10px) !important;
    z-index: 99999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 0.3s ease, visibility 0.3s ease !important;
}

.burger-menu.active {
    opacity: 1 !important;
    visibility: visible !important;
}

.burger-menu nav {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 32px !important;
}

.burger-menu nav a {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 32px !important;
    letter-spacing: 2px !important;
    color: #fff !important;
    text-decoration: none !important;
    transition: color 0.3s ease !important;
}

.burger-menu nav a:hover {
    color: #ff8c00 !important;
}

/* BURGER BUTTON - FIXED */
.burger-btn {
    position: relative !important;
    width: 30px !important;
    height: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 0 !important;
    z-index: 100000 !important;
}

.burger-btn span {
    display: block !important;
    width: 100% !important;
    height: 2px !important;
    background: #ff8c00 !important;
    transition: all 0.3s ease !important;
}

.burger-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px) !important;
}

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

.burger-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px) !important;
}

@media (min-width: 769px) {
    .burger-btn {
        display: none !important;
    }
    .burger-menu {
        display: none !important;
    }
}

/* FIX: Header above menu */
.header {
    z-index: 100000 !important;
}

/* FIX: Burger menu UNDER header */
.burger-menu {
    padding-top: 100px !important;
}

/* FIX: Hide header when menu is active */
body:has(.burger-menu.active) .header .logo,
body:has(.burger-menu.active) .header .nav-lang-inline {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* KEEP burger button visible */
body:has(.burger-menu.active) .burger-btn {
    opacity: 1 !important;
    pointer-events: all !important;
}

/* FULLSCREEN MENU - СКРЫВАЕМ ВЕСЬ ХЭДЕР */
.burger-menu.active ~ .header,
body:has(.burger-menu.active) .header {
    opacity: 0 !important;
    pointer-events: none !important;
}

/* НО КРЕСТИК ОСТАЁТСЯ */
.burger-menu.active ~ .header .burger-btn,
body:has(.burger-menu.active) .header .burger-btn {
    opacity: 1 !important;
    pointer-events: all !important;
    z-index: 100001 !important;
}

/* Меню на весь экран от самого верха */
.burger-menu {
    padding-top: 0 !important;
}

.burger-menu.active {
    padding-top: 0 !important;
}

/* КНОПКА ЗАКРЫТИЯ ВНУТРИ МЕНЮ */
.burger-close {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    width: 40px !important;
    height: 40px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    z-index: 100002 !important;
    padding: 0 !important;
}

.burger-close span {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 30px !important;
    height: 2px !important;
    background: #ff8c00 !important;
}

.burger-close span:nth-child(1) {
    transform: translate(-50%, -50%) rotate(45deg) !important;
}

.burger-close span:nth-child(2) {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
}

.mobile-lang-bar {
}



/* Compact Reviews CTA Section */
.reviews-cta-compact {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.05) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(255, 140, 0, 0.15);
    border-bottom: 1px solid rgba(255, 140, 0, 0.15);
}

.reviews-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.reviews-cta-content {
    text-align: center;
}

.reviews-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.stars {
    font-size: 24px;
    line-height: 1;
}

.rating-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.reviews-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    letter-spacing: 1px;
    color: #fff;
    margin: 0 0 28px;
}

.review-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #ff8c00;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

.review-btn-primary:hover {
    background: #ff9d1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.4);
}

@media (max-width: 768px) {
    .reviews-cta-title {
        font-size: 28px;
    }
    
    .review-btn-primary {
        font-size: 15px;
        padding: 14px 28px;
    }
}

/* Real Reviews Section */
.reviews-real-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.03) 0%, rgba(0, 0, 0, 0) 100%);
    border-top: 1px solid rgba(255, 140, 0, 0.15);
}

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

.reviews-real-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    color: #ff8c00;
    text-align: center;
    margin-bottom: 16px;
}

.reviews-real-intro {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 50px;
}

/* ── REVIEWS CAROUSEL ── */
.reviews-carousel {
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

.review-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: 12px;
    padding: 28px;
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.review-item:hover {
    border-color: rgba(255, 140, 0, 0.45);
    background: rgba(255, 255, 255, 0.03);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff8c00, #ff6a00);
    color: #000;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-family: 'Inter', sans-serif;
    margin-top: 2px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,140,0,0.12);
    border: 1px solid rgba(255,140,0,0.3);
    color: #ff8c00;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 2;
}
.carousel-btn:hover { background: rgba(255,140,0,0.25); }
.carousel-prev { left: -48px; }
.carousel-next { right: -48px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}
.carousel-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
}
.carousel-dot.active {
    background: #ff8c00;
    transform: scale(1.3);
}

@media (max-width: 900px) {
    .review-item { flex: 0 0 calc(50% - 12px); }
    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
}

@media (max-width: 600px) {
    .review-item { flex: 0 0 calc(100% - 0px); }
    .carousel-prev { left: 4px; }
    .carousel-next { right: 4px; }
}

.review-author {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.review-stars {
    color: #ff8c00;
    font-size: 14px;
    margin-bottom: 12px;
}

.review-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.review-cta {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
}

.review-cta-text {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #fff;
    margin-bottom: 20px;
}

.review-button {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: #ff8c00;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.3);
}

.review-button:hover {
    background: #ff9d1f;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 140, 0, 0.4);
}

@media (max-width: 768px) {
    .reviews-real-title {
        font-size: 32px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* Reviews Rating Display */
.reviews-rating-display {
    text-align: center;
    margin-bottom: 50px;
    padding: 30px;
    background: rgba(255, 140, 0, 0.05);
    border-radius: 8px;
}

.rating-stars-large {
    font-size: 32px;
    margin-bottom: 12px;
}

.rating-score {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.98);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: flex;
    opacity: 1;
}

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

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #ff8c00;
    font-size: 40px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-nav,
.mobile-menu-content nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.mobile-nav-link {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    letter-spacing: 1px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #ff8c00;
}

/* Show burger only on mobile */
.burger-btn {
    display: none;
}

@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
}

/* Hide desktop menu on mobile */
@media (max-width: 768px) {
    .nav-menu {
        display: none !important;
    }
    
    .burger-btn {
        display: flex !important;
    }
}

/* Mobile Language Bar - Static under header */
.mobile-lang-bar {
    display: none;
    position: static;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(255, 140, 0, 0.2);
    padding: 10px 0;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 768px) {
    .mobile-lang-bar {
        display: flex;
    }
}

.mobile-lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 140, 0, 0.3);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-lang-btn.active {
    background: rgba(255, 140, 0, 0.15);
    border-color: #ff8c00;
    color: #ff8c00;
}

.mobile-lang-btn:hover {
    background: rgba(255, 140, 0, 0.1);
    border-color: #ff8c00;
    transform: translateY(-1px);
}

.mobile-lang-btn .lang-flag {
    font-size: 18px;
    line-height: 1;
}
