/* ============================================ */
/* WORTEX BETTING LANDING - UNIFIED STYLES     */
/* ============================================ */

/* ============================================ */
/* БАЗОВЫЕ СТИЛИ                               */
/* ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0D0D12;
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Animated Background */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

.bg-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 163, 0.2) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* ============================================ */
/* АНИМАЦИИ                                    */
/* ============================================ */

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse-button {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 163, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 255, 163, 0.6);
    }
}

/* ============================================ */
/* КНОПКИ                                      */
/* ============================================ */

.btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none !important;
    display: inline-block;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: #00FFA3 !important;
    color: #0D0D12 !important;
    box-shadow: 0 0 20px rgba(0, 255, 163, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 255, 163, 0.2);
    color: #0D0D12 !important;
}

.btn-secondary {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #FFFFFF !important;
}

.btn-secondary:hover {
    border-color: #00FFA3 !important;
    background: rgba(0, 255, 163, 0.05) !important;
    color: #FFFFFF !important;
}

.btn-large {
    padding: 16px 40px !important;
    font-size: 16px !important;
    border-radius: 12px !important;
}

/* ============================================ */
/* СЕКЦИИ - ОБЩИЕ СТИЛИ                        */
/* ============================================ */

.section-label {
    text-align: center;
    font-size: 13px;
    color: #00FFA3;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 600;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #B4B4C4;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* ============================================ */
/* HEADER                                      */
/* ============================================ */

header {
    position: sticky;
    top: 0;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
    animation: slideDown 0.6s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 40px;
}

.logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #FFFFFF !important;
    text-decoration: none !important;
    flex-shrink: 0;
}

.logo span {
    color: #00FFA3 !important;
}

/* Основное меню навигации */
.main-nav {
    flex: 1;
    max-width: 600px;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
}

.main-nav .nav-link {
    text-decoration: none;
    color: #B4B4C4;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 8px;
    display: block;
    position: relative;
    white-space: nowrap;
}

.main-nav .nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}

.main-nav .nav-link.active {
    color: #00FFA3;
    background: rgba(0, 255, 163, 0.1);
}

.main-nav .nav-link.active::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #00FFA3;
    border-radius: 1px;
}

/* Бургер-меню */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 4px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lang-btn {
    background: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    color: #B4B4C4 !important;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
    text-transform: uppercase;
    font-family: inherit;
    text-decoration: none !important;
    display: inline-block;
}

.lang-btn:hover {
    border-color: #00FFA3 !important;
    color: #00FFA3 !important;
}

.lang-btn.active {
    background: #00FFA3 !important;
    color: #0D0D12 !important;
    border-color: #00FFA3 !important;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.header-cta {
    display: flex;
    gap: 16px;
    align-items: center;
}

/* Trust Badge */
.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 255, 163, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #00FFA3;
    font-weight: 500;
    white-space: nowrap;
}

/* ============================================ */
/* HERO                                        */
/* ============================================ */

.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 32px;
    animation: slideUp 0.8s ease 0.2s backwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #00FFA3;
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease 0.3s backwards;
}

.hero h1 .gradient-text {
    background: linear-gradient(135deg, #00FFA3 0%, #00D4FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: #B4B4C4;
    max-width: 700px;
    margin: 0 auto 40px;
    animation: slideUp 0.8s ease 0.4s backwards;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease 0.5s backwards;
}

/* Social Proof */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    animation: slideUp 0.8s ease 0.6s backwards;
}

.proof-item {
    text-align: center;
}

.proof-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00FFA3;
    line-height: 1;
    margin-bottom: 8px;
}

.proof-label {
    font-size: 13px;
    color: #6E6E7E;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================ */
/* VIDEO SHOWREEL                              */
/* ============================================ */

.video-showreel {
    padding: 100px 0;
    background: #16161F;
}

.video-container {
    max-width: 1000px;
    margin: 0 auto 60px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.video-container:hover {
    border-color: #00FFA3;
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.2);
    transform: translateY(-4px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
    background: linear-gradient(135deg, #1C1C28 0%, #0D0D12 100%);
    cursor: pointer;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-container:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-container:hover .video-overlay {
    opacity: 1;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.2) 0%, rgba(0, 212, 255, 0.2) 100%);
}

.video-play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #00FFA3;
    border: 4px solid rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    animation: pulse-button 2s ease-in-out infinite;
    pointer-events: none;
}

.video-container:hover .video-play-btn {
    background: #00D4FF;
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 163, 0.8);
    animation: none;
}

.video-play-btn svg {
    width: 40px;
    height: 40px;
    fill: #0D0D12;
    margin-left: 4px;
}

.video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(13, 13, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Space Grotesk', monospace;
    font-size: 14px;
    font-weight: 600;
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    overflow: hidden;
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 20px 24px;
    background: rgba(255, 184, 0, 0.08);
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-radius: 12px;
}

.video-disclaimer svg {
    width: 24px;
    height: 24px;
    fill: #FFB800;
    flex-shrink: 0;
    margin-top: 2px;
}

.video-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #B4B4C4;
    margin: 0;
}

.video-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.video-stat {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(0, 255, 163, 0.05);
    border: 1px solid rgba(0, 255, 163, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.video-stat:hover {
    background: rgba(0, 255, 163, 0.08);
    border-color: rgba(0, 255, 163, 0.2);
    transform: translateY(-2px);
}

.stat-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 255, 163, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: #00FFA3;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00FFA3;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #B4B4C4;
    line-height: 1.4;
}

/* ============================================ */
/* PROBLEM/SOLUTION SECTION                    */
/* ============================================ */

.problem-section {
    padding: 100px 0;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.problem-card {
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: rgba(255, 184, 0, 0.3);
    transform: translateY(-4px);
}

.problem-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 184, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    fill: #FFB800;
}

.problem-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.problem-card p {
    color: #B4B4C4;
    font-size: 15px;
    line-height: 1.7;
}

.solution-box {
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 163, 0.2);
    border-radius: 20px;
    padding: 48px;
    text-align: center;
}

.solution-box h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
}

.solution-box p {
    font-size: 18px;
    color: #B4B4C4;
    margin-bottom: 32px;
}

/* ============================================ */
/* SERVICES SECTION                            */
/* ============================================ */

.services {
    padding: 100px 0;
    background: #16161F;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00FFA3, #00D4FF);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: #00FFA3;
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.15);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    fill: #00FFA3;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-card p {
    color: #B4B4C4;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 10px 0;
    color: #B4B4C4;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li::before {
    content: '\2713';
    color: #00FFA3;
    font-weight: bold;
    font-size: 16px;
}

/* ============================================ */
/* VOICE SHOWCASE                              */
/* ============================================ */

.voice-showcase {
    padding: 100px 0;
}

.language-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    justify-content: center;
    flex-wrap: wrap;
}

.lang-tab {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #B4B4C4;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lang-tab:hover {
    border-color: #00FFA3;
    background: rgba(0, 255, 163, 0.05);
    color: #00FFA3;
}

.lang-tab.active {
    background: #00FFA3;
    border-color: #00FFA3;
    color: #0D0D12;
}

.voice-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.voice-badge {
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

.badge-gender {
    background: rgba(0, 255, 163, 0.15);
    color: #00FFA3;
    border: 1px solid rgba(0, 255, 163, 0.3);
}

.badge-gender.female {
    background: rgba(0, 212, 255, 0.15);
    color: #00D4FF;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.badge-style {
    background: rgba(255, 255, 255, 0.05);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-purpose {
    background: rgba(255, 184, 0, 0.15);
    color: #FFB800;
    border: 1px solid rgba(255, 184, 0, 0.3);
}

.voice-description {
    font-size: 14px;
    color: #B4B4C4;
    margin-bottom: 16px;
    line-height: 1.6;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 0;
}

.voice-grid[data-language] {
    display: none;
}

.voice-grid[data-language].active {
    display: grid;
}

.voice-card {
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.voice-card:hover {
    border-color: #00FFA3;
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 255, 163, 0.1);
}

.custom-audio-player {
    background: #16161F;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    transition: all 0.3s ease;
}

.voice-card:hover .custom-audio-player {
    border-color: rgba(0, 255, 163, 0.2);
    background: rgba(0, 255, 163, 0.02);
}

.audio-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #00FFA3;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.play-btn:hover {
    background: #00D4FF;
    transform: scale(1.05);
}

.play-btn svg {
    width: 16px;
    height: 16px;
    fill: #0D0D12;
    margin-left: 2px;
}

.play-btn.playing svg {
    margin-left: 0;
}

.audio-time {
    display: flex;
    gap: 8px;
    font-size: 12px;
    color: #B4B4C4;
    margin-left: auto;
    font-family: 'Space Grotesk', monospace;
}

.time-divider {
    color: #6E6E7E;
}

.progress-container {
    position: relative;
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    cursor: pointer;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, #00FFA3 0%, #00D4FF 100%);
    border-radius: 3px;
    transition: width 0.1s linear;
}

.progress-handle {
    position: absolute;
    top: 50%;
    right: -6px;
    width: 12px;
    height: 12px;
    background: #00FFA3;
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.2s ease;
}

.progress-container:hover .progress-handle {
    opacity: 1;
}

.voice-card audio {
    display: none;
}

.voice-cta {
    text-align: center;
    padding: 48px 40px;
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.05) 0%, rgba(0, 212, 255, 0.05) 100%);
    border: 1px solid rgba(0, 255, 163, 0.1);
    border-radius: 20px;
    margin-top: 60px;
}

.voice-disclaimer {
    font-size: 15px;
    color: #B4B4C4;
    max-width: 700px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* ============================================ */
/* WHY US SECTION                              */
/* ============================================ */

.why-us {
    padding: 100px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: 32px 24px;
}

.why-icon {
    width: 72px;
    height: 72px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.why-icon svg {
    width: 36px;
    height: 36px;
    fill: #00FFA3;
}

.why-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.why-card p {
    color: #B4B4C4;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================ */
/* CASES SECTION                               */
/* ============================================ */

.cases {
    padding: 100px 0;
    background: #16161F;
}

.case-card {
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.case-card:hover {
    border-color: #00FFA3;
    box-shadow: 0 20px 60px rgba(0, 255, 163, 0.1);
}

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 24px;
}

.case-tag {
    display: inline-block;
    background: rgba(0, 255, 163, 0.15);
    color: #00FFA3;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.case-roi {
    text-align: right;
}

.roi-label {
    font-size: 13px;
    color: #6E6E7E;
    margin-bottom: 4px;
}

.roi-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #00FFA3;
}

.case-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    margin-bottom: 16px;
    font-weight: 700;
}

.case-description {
    color: #B4B4C4;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.case-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.metric {
    text-align: center;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #00FFA3;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 13px;
    color: #6E6E7E;
    text-transform: uppercase;
}

/* ============================================ */
/* GUARANTEES SECTION                          */
/* ============================================ */

.guarantees {
    padding: 100px 0;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.guarantee-card {
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.guarantee-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 255, 163, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.guarantee-icon svg {
    width: 32px;
    height: 32px;
    fill: #00FFA3;
}

.guarantee-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.guarantee-card p {
    color: #B4B4C4;
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================ */
/* TESTIMONIALS                                */
/* ============================================ */

.testimonials {
    padding: 100px 0;
    background: #16161F;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: #1C1C28;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px;
}

.stars {
    color: #FFB800;
    font-size: 18px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: #B4B4C4;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #00FFA3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #0D0D12;
}

.author-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.author-info p {
    font-size: 13px;
    color: #6E6E7E;
}

/* ============================================ */
/* CTA SECTION                                 */
/* ============================================ */

.cta-section {
    padding: 100px 0;
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 255, 163, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border: 1px solid rgba(0, 255, 163, 0.2);
    border-radius: 24px;
    padding: 80px 40px;
    max-width: 900px;
    margin: 0 auto;
}

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    color: #B4B4C4;
    margin-bottom: 40px;
}

/* ============================================ */
/* FOOTER                                      */
/* ============================================ */

footer {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #B4B4C4;
    font-size: 14px;
    line-height: 1.7;
}

.footer-contacts h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 8px;
    color: #B4B4C4 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: rgba(0, 255, 163, 0.05);
    border-color: #00FFA3;
    color: #00FFA3 !important;
    transform: translateX(4px);
}

.contact-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.contact-link span {
    font-size: 14px;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: #6E6E7E;
    font-size: 14px;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
    animation: slideUp 0.6s ease;
}

.sticky-cta .btn {
    box-shadow: 0 8px 32px rgba(0, 255, 163, 0.3);
    padding: 16px 32px;
}

/* ============================================ */
/* RESPONSIVE - HEADER                         */
/* ============================================ */

@media (max-width: 1100px) {
    .main-nav .nav-link {
        padding: 10px 12px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .header-content {
        gap: 20px;
    }

    .main-nav .nav-link {
        padding: 10px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .header-content {
        padding: 16px 0;
        flex-wrap: wrap;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 18, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        padding: 20px 24px;
        animation: slideDown 0.3s ease;
        max-width: none;
        flex: none;
        width: 100%;
        justify-content: flex-start;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }

    .main-nav .nav-link {
        padding: 14px 16px;
        font-size: 16px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.06);
    }

    .main-nav .nav-link.active {
        border-color: rgba(0, 255, 163, 0.3);
    }

    .menu-toggle {
        display: flex;
        order: 2;
    }

    .header-right {
        order: 3;
        width: 100%;
        justify-content: space-between;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        display: flex;
    }

    .trust-badge {
        display: none;
    }

    .logo {
        font-size: 20px;
        margin-right: auto;
        order: 1;
    }

    .header-cta {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        order: 3;
    }

    .header-cta .btn {
        flex: 1;
        text-align: center;
        max-width: 200px;
    }

    .lang-switcher {
        order: 1;
    }

    /* Sections */
    .hero {
        padding: 60px 0 40px;
    }

    .social-proof {
        gap: 32px;
    }

    .video-showreel,
    .problem-section,
    .services,
    .voice-showcase,
    .why-us,
    .cases,
    .guarantees,
    .testimonials,
    .cta-section {
        padding: 60px 0;
    }

    .video-play-btn {
        width: 70px;
        height: 70px;
        border: 3px solid rgba(255, 255, 255, 0.9);
    }

    .video-play-btn svg {
        width: 30px;
        height: 30px;
    }

    .video-disclaimer {
        margin: 0 0 32px;
        padding: 16px 20px;
    }

    .video-disclaimer svg {
        width: 20px;
        height: 20px;
    }

    .video-disclaimer p {
        font-size: 13px;
    }

    .video-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .video-stat {
        padding: 16px;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

    .stat-value {
        font-size: 24px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .language-tabs {
        gap: 6px;
        padding: 6px;
        margin-bottom: 32px;
    }

    .lang-tab {
        padding: 8px 14px;
        font-size: 13px;
    }

    .voice-grid {
        grid-template-columns: 1fr;
    }

    .voice-cta {
        padding: 32px 24px;
        margin-top: 40px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .case-header {
        flex-direction: column;
    }

    .case-roi {
        text-align: left;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sticky-cta {
        bottom: 16px;
        right: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .header-content {
        padding: 12px 0;
    }

    .main-nav {
        top: 60px;
        padding: 16px;
    }

    .logo {
        font-size: 18px;
    }

    .lang-switcher {
        gap: 4px;
    }

    .lang-btn {
        padding: 4px 8px;
        font-size: 12px;
    }

    .header-cta .btn {
        padding: 10px 16px;
        font-size: 13px;
    }

    .hero {
        padding: 40px 0 32px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .social-proof {
        gap: 24px;
    }

    .proof-item {
        flex: 0 0 100%;
    }

    .proof-number {
        font-size: 28px;
    }
}
