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

/* Disable zoom on desktop */
html {
    zoom: 1;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    zoom: 1;
    transform-origin: 0 0;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
}

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #6b7280;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-card: #334155;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --border-color: #475569;
    --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

.logo-text {
    background: linear-gradient(135deg, #f8fafc 0%, #2563eb 50%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: logo-shimmer 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.logo:hover .logo-text {
    background: linear-gradient(135deg, #2563eb 0%, #8b5cf6 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation-duration: 1.5s;
}

.logo-icon {
    color: #fbbf24;
    animation: icon-pulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    animation-duration: 1s;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
    transform: scale(1.1);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Hamburger Button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    gap: 4px;
    padding: 8px;
}

.hamburger-btn:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

.hamburger-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-primary);
    border-left: 1px solid var(--border-color);
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    order: 1;
}

.mobile-menu-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    gap: 16px;
}

.mobile-menu-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.mobile-menu-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-lang-switcher {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: flex-start;
    margin: 0;
    padding: 0;
}

.close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    color: var(--text-secondary);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.close-btn:hover {
    background: var(--bg-card);
    color: var(--text-primary);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.2s ease;
    font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: none;
}

.nav-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.mobile-lang-switcher {
    margin: 0;
    padding: 0;
    border: none;
}

.mobile-lang-switcher .lang-label {
    display: none;
}

.lang-label {
    display: block;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lang-buttons {
    display: flex;
    background: var(--bg-secondary);
    border-radius: 6px;
    padding: 3px;
    border: 1px solid var(--border-color);
    width: fit-content;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-secondary);
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 12px;
    font-weight: 600;
    min-width: 36px;
}

.lang-btn.active,
.lang-btn:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero {
    padding: 120px 0 60px;
    background: radial-gradient(ellipse at top, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
}

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

.btn-secondary:hover {
    background: var(--bg-card);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* Phone Mockup Section */
.phone-mockup-section {
    padding: 40px 0 120px;
    background: var(--bg-primary);
    overflow: hidden;
    position: relative;
}

.main-mockup-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 680px;
    z-index: 2;
    margin-top: 20px;
    padding-bottom: 80px; /* Компенсируем высоту точек */
}

.main-phone-mockup {
    position: relative;
    z-index: 100;
    max-width: 400px;
    width: 100%;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mockup-slide {
    position: absolute;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 30px 60px rgba(37, 99, 235, 0.4));
    opacity: 0;
    display: none;
    z-index: 200;
}

.mockup-slide.active {
    opacity: 1;
    display: block;
}

.main-phone-mockup:hover .mockup-slide.active {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}



.mockup-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 300;
    animation: dots-pulse 3s ease-in-out infinite;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    border: 2px solid rgba(37, 99, 235, 0.3);
}

.mockup-dot:not(.active) {
    animation: dot-hint 4s ease-in-out infinite;
}

.mockup-dot.active {
    background: var(--primary-color);
    opacity: 1;
    transform: scale(1.3);
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.6);
    border-color: var(--primary-color);
}

.mockup-dot:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Подсказка о свайпе */
.swipe-hint {
    display: none;
}

/* Animated Background */
.animated-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    width: 80px;
    height: 80px;
    opacity: 0.6;
    animation: float-left-right 10s infinite linear;
    animation-delay: var(--delay);
    z-index: 5;
}

/* First group - moving right */
.floating-icon:nth-child(1),
.floating-icon:nth-child(3),
.floating-icon:nth-child(5),
.floating-icon:nth-child(7) {
    animation-name: float-left-right;
    left: -100px;
}

/* Second group - moving left */
.floating-icon:nth-child(2),
.floating-icon:nth-child(4),
.floating-icon:nth-child(6),
.floating-icon:nth-child(8) {
    animation-name: float-right-left;
    right: -100px;
}

.floating-icon:nth-child(1) { top: 10%; }
.floating-icon:nth-child(2) { top: 20%; }
.floating-icon:nth-child(3) { top: 35%; }
.floating-icon:nth-child(4) { top: 50%; }
.floating-icon:nth-child(5) { top: 65%; }
.floating-icon:nth-child(6) { top: 80%; }
.floating-icon:nth-child(7) { top: 25%; }
.floating-icon:nth-child(8) { top: 70%; }

.floating-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

@keyframes float-left-right {
    0% {
        transform: translateX(-100px) translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(calc(100vw + 100px)) translateY(-20px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes float-right-left {
    0% {
        transform: translateX(100px) translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(calc(-100vw - 100px)) translateY(-20px) rotate(-360deg);
        opacity: 0;
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.section-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.challenge,
.solution,
.decentralized {
    padding: 100px 0;
}

.challenge {
    background: rgba(239, 68, 68, 0.05);
}

.solution {
    background: rgba(34, 197, 94, 0.05);
}

.decentralized {
    background: rgba(168, 85, 247, 0.05);
}

/* Features */
.features {
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Audience */
.audience {
    padding: 100px 0;
    background: rgba(37, 99, 235, 0.05);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.audience-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.audience-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* CTA */
.cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(168, 85, 247, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 30%, #334155 70%, #1e293b 100%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.05) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(168, 85, 247, 0.03) 50%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.cta > .container {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    padding: 30px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.footer-content {
    text-align: center;
    width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

/* Планшеты */
@media (max-width: 1024px) and (min-width: 769px) {
    .main-phone-mockup {
        max-width: 380px;
        height: 580px;
    }
    
    .main-mockup-container {
        min-height: 580px;
        padding-bottom: 70px;
    }
    
    .mockup-dots {
        bottom: 15px;
        gap: 11px;
    }
    
    .mockup-dot {
        width: 11px;
        height: 11px;
    }
    
    .floating-icon {
        width: 75px;
        height: 75px;
    }
}

/* Мобильные устройства */
@media (max-width: 768px) {
    .mobile-menu {
        max-width: 100%;
    }
    
    .mobile-menu-content {
        padding: 16px;
    }
    
    .nav-link {
        padding: 14px 16px;
        font-size: 15px;
    }
    
    .hero {
        padding: 120px 0 40px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .features-grid,
    .audience-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .nav {
        padding: 0.75rem 0;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    /* Phone mockup responsive */
    .phone-mockup-section {
        padding: 60px 0 100px;
    }
    
    .main-mockup-container {
        min-height: 560px;
        margin-top: 40px;
        padding-bottom: 60px;
    }
    
    .main-phone-mockup {
        max-width: 320px;
        height: 480px;
    }
    
    .mockup-dots {
        bottom: 10px;
        gap: 10px;
    }
    
    .mockup-dot {
        width: 10px;
        height: 10px;
    }
    
    .floating-icon {
        width: 50px;
        height: 50px;
    }
    
    .floating-icon:nth-child(1) { top: 15%; }
    .floating-icon:nth-child(2) { top: 30%; }
    .floating-icon:nth-child(3) { top: 45%; }
    .floating-icon:nth-child(4) { top: 60%; }
    .floating-icon:nth-child(5) { top: 75%; }
    .floating-icon:nth-child(6) { top: 90%; }
    .floating-icon:nth-child(7) { top: 20%; }
    .floating-icon:nth-child(8) { top: 80%; }
    
    .swipe-hint {
        bottom: -65px;
        font-size: 11px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .audience-card {
        padding: 1.5rem;
    }
    
    /* Phone mockup ultra-responsive */
    .phone-mockup-section {
        padding: 50px 0 80px;
    }
    
    .main-phone-mockup {
        max-width: 280px;
        height: 420px;
    }
    
    .main-mockup-container {
        min-height: 500px;
        margin-top: 30px;
        padding-bottom: 50px;
    }
    
    .mockup-dots {
        bottom: 5px;
        gap: 8px;
    }
    
    .mockup-dot {
        width: 8px;
        height: 8px;
    }
    
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .swipe-hint {
        bottom: -55px;
        font-size: 10px;
        padding: 5px 10px;
    }
}

/* Очень маленькие экраны */
@media (max-width: 360px) {
    .hero {
        padding: 90px 0 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .phone-mockup-section {
        padding: 40px 0 50px;
    }
    
    .main-phone-mockup {
        max-width: 260px;
        height: 390px;
    }
    
    .main-mockup-container {
        min-height: 390px;
        margin-top: 20px;
        padding-bottom: 40px;
    }
    
    .mockup-dots {
        bottom: 0px;
        gap: 6px;
    }
    
    .mockup-dot {
        width: 7px;
        height: 7px;
    }
    
    .swipe-hint {
        bottom: -45px;
        font-size: 9px;
        padding: 4px 8px;
    }
    
    .floating-icon {
        width: 40px;
        height: 40px;
    }
}

/* Roadmap Timeline Styles */
.roadmap-timeline {
    padding: 40px 0 100px;
    background: var(--bg-primary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--border-color);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 50px;
}

.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 50px;
}

.timeline-marker {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--bg-secondary);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--text-secondary);
    z-index: 10;
    top: 30px;
}

.timeline-item:first-child .timeline-marker {
    top: 0;
}

.timeline-item:nth-child(odd) .timeline-marker {
    right: -25px;
}

.timeline-item:nth-child(even) .timeline-marker {
    left: -25px;
}

.timeline-item.completed .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.timeline-item.active .timeline-marker {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 0 25px rgba(37, 99, 235, 0.5);
    animation: pulse-glow 2s ease-in-out infinite;
}

.timeline-content {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.timeline-date {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.timeline-content h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.timeline-content p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.timeline-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.feature-tag {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* Team Styles */
.team-section {
    padding: 0 0 100px;
    margin-top: -40px;
    background: var(--bg-primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 40px;
    justify-items: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.team-member {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.team-member:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.team-member:nth-child(2) {
    margin-top: 20px;
}

.member-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: var(--bg-card);
    border: 3px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.team-member:hover .avatar-placeholder {
    border-color: var(--primary-color);
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary-color);
    transform: scale(1.05);
}

.member-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    color: var(--text-primary);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex: 1;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: auto;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.values-section {
    padding: 100px 0;
    background: rgba(37, 99, 235, 0.05);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--text-primary);
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* FAQ Styles */
.faq-section {
    padding: 20px 0 80px;
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 24px;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.2s ease;
}

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

.faq-question.active {
    color: var(--primary-color);
    background: rgba(37, 99, 235, 0.05);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer p {
    padding: 16px 24px 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for new pages */
@media (max-width: 768px) {
    .roadmap-timeline {
        padding: 20px 0 60px;
    }
    
    .team-section {
        padding: 20px 0 60px;
    }
    
    .faq-section {
        padding: 20px 0 60px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 60px !important;
        padding-right: 0 !important;
    }
    
    .timeline-marker {
        left: 0px !important;
        right: auto !important;
        width: 40px;
        height: 40px;
        font-size: 14px;
        top: 20px;
    }
    
    .timeline-content {
        padding: 20px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 24px;
        max-width: 100%;
    }
    
    .team-member {
        padding: 24px 20px;
        max-width: 100%;
        min-height: auto;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        margin-top: 30px;
    }
    
    .faq-list {
        margin-top: 30px;
    }
    
    .faq-question {
        padding: 20px;
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 12px 20px 20px;
    }
    
    .mobile-lang-switcher {
        margin: 0;
        padding: 0;
    }
    
    .nav-link {
        padding: 12px 16px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .roadmap-timeline {
        padding: 15px 0 40px;
    }
    
    .team-section {
        padding: 15px 0 40px;
    }
    
    .faq-section {
        padding: 15px 0 40px;
    }
    
    .timeline-content {
        padding: 16px;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    .team-member {
        padding: 16px 12px;
    }
    
    .member-avatar {
        margin-bottom: 18px;
    }
    
    .avatar-placeholder {
        width: 70px;
        height: 70px;
    }
    
    .member-info h3 {
        font-size: 1.2rem;
    }
    
    .member-role {
        font-size: 0.9rem;
    }
    
    .member-bio {
        font-size: 0.9rem;
    }
    
    .value-card {
        padding: 24px 16px;
    }
    
    .faq-question {
        padding: 16px;
        font-size: 0.95rem;
    }
    
    .faq-answer p {
        padding: 10px 16px 16px;
        font-size: 0.9rem;
    }
    
    .team-grid {
        margin-top: 20px;
        gap: 20px;
    }
    
    .values-grid {
        margin-top: 20px;
    }
    
    .faq-list {
        margin-top: 20px;
    }
    
    .mobile-lang-switcher {
        margin-top: 0;
        padding-top: 0;
    }
    
    .mobile-menu-header {
        gap: 12px;
        margin-bottom: 30px;
        padding-bottom: 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logo-shimmer {
    0% {
        background-position: -200% 0;
    }
    50% {
        background-position: 0% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes icon-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.4));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
    }
}

@keyframes pulse-glow {
    0% {
        transform: scale(1.2);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }
    50% {
        transform: scale(1.4);
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
    }
    100% {
        transform: scale(1.2);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

@keyframes dots-pulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

@keyframes dot-hint {
    0%, 90%, 100% {
        background: var(--text-muted);
        transform: scale(1);
        box-shadow: none;
    }
    45%, 55% {
        background: var(--primary-color);
        transform: scale(1.15);
        box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
    }
}

.hero-content,
.feature-card,
.audience-card {
    animation: fadeInUp 0.8s ease-out;
}
