/* Дополнительные стили и анимации */

/* Анимации появления */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Плавная прокрутка */
html {
    scroll-behavior: smooth;
}

/* Навигация */
.site-header {
    background: transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
}

.site-header.scrolled {
    background: rgba(10, 10, 26, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link-modern {
    position: relative;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link-modern:hover {
    color: #fff;
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #7e22ce);
    border-radius: 1px;
    transition: width 0.3s ease;
}

.nav-link-modern:hover::after,
.nav-link-modern.active::after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(135deg, #4f46e5, #7e22ce);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    letter-spacing: -0.02em;
}

.nav-logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #4f46e5, #7e22ce);
    border-radius: 0.5rem;
    font-size: 0.9rem;
}

/* Мобильное меню оверлей */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.25rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #fff;
    padding-left: 0.5rem;
}

.mobile-nav-link i {
    width: 1.5rem;
    text-align: center;
    color: #6366f1;
    font-size: 1rem;
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
    z-index: 110;
}

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

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

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

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

/* Анимация для карточек услуг */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* ===== PREMIUM HERO SECTION ===== */

/* Background: deep mesh gradient */
.hero-wrapper {
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(88, 28, 135, 0.8) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(79, 70, 229, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(124, 58, 237, 0.4) 0%, transparent 60%),
        linear-gradient(160deg, #0a0118 0%, #140a2e 25%, #1e0a3a 50%, #0f0720 75%, #0a0118 100%);
    position: relative;
    overflow: hidden;
}

/* Particle canvas */
.hero-particles-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.3) 0%, transparent 70%);
    bottom: -5%;
    left: -5%;
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, 20px) scale(1.05); }
    66% { transform: translate(20px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(25px, -20px) scale(1.08); }
    66% { transform: translate(-15px, 25px) scale(0.92); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

/* Mesh grid overlay */
.hero-mesh-grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.04;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 30%, transparent 80%);
}

.hero-section {
    position: relative;
    z-index: 2;
}

/* Premium badge */
.hero-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.5rem 1.25rem 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(196, 181, 253, 1);
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.hero-badge-premium:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #a78bfa;
    border-radius: 50%;
    animation: badgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(167, 139, 250, 0.6);
}

@keyframes badgePulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 8px rgba(167, 139, 250, 0.6); }
    50% { opacity: 0.5; box-shadow: 0 0 16px rgba(167, 139, 250, 0.9); }
}

/* Premium title */
.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #818cf8 25%, #c084fc 50%, #e879f9 75%, #a78bfa 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Premium CTA buttons */
.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #4f46e5 0%, #7e22ce 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.875rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.3),
        0 8px 25px rgba(99, 102, 241, 0.35),
        0 2px 10px rgba(139, 92, 246, 0.2);
}

.hero-cta-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 0 1px rgba(139, 92, 246, 0.5),
        0 12px 35px rgba(99, 102, 241, 0.45),
        0 4px 15px rgba(139, 92, 246, 0.3),
        0 0 60px rgba(139, 92, 246, 0.15);
}

.hero-cta-primary:hover::before {
    opacity: 1;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0.875rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    transform: translateY(-1px);
}

/* Trust row */
.hero-trust-row {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    width: fit-content;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.hero-trust-icon {
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 0.5rem;
    font-size: 0.75rem;
}

.hero-trust-divider {
    width: 1px;
    height: 2rem;
    background: rgba(255, 255, 255, 0.1);
}

/* Hero image showcase */
.hero-image-col {
    display: flex;
    justify-content: center;
}

.hero-image-showcase {
    position: relative;
    max-width: 480px;
    width: 100%;
}

/* Glow rings */
.hero-glow-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-ring-1 {
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    border: 1px solid rgba(139, 92, 246, 0.15);
    animation: ringPulse 4s ease-in-out infinite;
}

.hero-glow-ring-2 {
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    border: 1px solid rgba(99, 102, 241, 0.08);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

@keyframes ringPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.03); opacity: 0.5; }
}

/* Premium image wrapper */
.hero-image-wrapper-premium {
    position: relative;
    z-index: 2;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 0 100px rgba(139, 92, 246, 0.2);
}

.hero-main-image {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero-image-wrapper-premium:hover .hero-main-image {
    transform: scale(1.03);
}

/* Floating glass cards */
.hero-float-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(15, 10, 30, 0.7);
    backdrop-filter: blur(20px) saturate(150%);
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.875rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-float-card-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.625rem;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.hero-float-card-revenue {
    bottom: 15%;
    left: -10%;
    animation: floatCard1 5s ease-in-out infinite;
}

.hero-float-card-games {
    top: 12%;
    right: -8%;
    animation: floatCard2 6s ease-in-out infinite;
}

@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(-0.5deg); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(0.5deg); }
}

/* Stats bar */
.hero-stats-bar {
    position: relative;
    z-index: 1;
    background:
        radial-gradient(ellipse 60% 100% at 30% 0%, rgba(88, 28, 135, 0.5) 0%, transparent 60%),
        radial-gradient(ellipse 40% 100% at 70% 100%, rgba(79, 70, 229, 0.3) 0%, transparent 60%),
        linear-gradient(160deg, #0f0720 0%, #140a2e 50%, #0a0118 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

/* Стили для кнопок */
.btn-primary {
    background: linear-gradient(135deg, #4f46e5, #7e22ce);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

/* Анимация для чисел */
.counter {
    transition: all 0.5s ease;
}

/* Стили для формы */
.form-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}


/* Product section — white background with decorative lines */
#product {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

#product::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Diagonal thin lines */
        repeating-linear-gradient(
            -30deg,
            transparent,
            transparent 80px,
            rgba(0, 0, 0, 0.04) 80px,
            rgba(0, 0, 0, 0.04) 81px
        ),
        repeating-linear-gradient(
            30deg,
            transparent,
            transparent 120px,
            rgba(0, 0, 0, 0.03) 120px,
            rgba(0, 0, 0, 0.03) 121px
        );
    pointer-events: none;
    z-index: 0;
}

#product::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Subtle horizontal lines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 60px,
            rgba(0, 0, 0, 0.03) 60px,
            rgba(0, 0, 0, 0.03) 61px
        ),
        /* Subtle vertical lines */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(0, 0, 0, 0.03) 60px,
            rgba(0, 0, 0, 0.03) 61px
        );
    pointer-events: none;
    z-index: 0;
}

#product > .container {
    position: relative;
    z-index: 1;
}

/* Benefits section */
.benefit-card-featured {
    transition: all 0.4s ease;
}

.benefit-card-featured:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.benefit-card {
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-6px);
}

/* Audience & Location cards */
.audience-card:hover,
.location-card:hover {
    transform: translateY(-4px);
}

/* Model section */
.model-section {
    background: #f8fafc;
    position: relative;
}

.model-step-card {
    transition: all 0.3s ease;
}

.model-step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(99, 102, 241, 0.2);
}

/* Параллакс эффект */
.parallax {
    transform: translateZ(0);
    will-change: transform;
}

/* Стили для загрузки */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #3b82f6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gallery section */
.gallery-section {
    background: linear-gradient(160deg, #0a0a1a 0%, #0d0b2e 40%, #1a0a2e 70%, #0f0a20 100%);
}

/* Bento grid: 2 columns, first item spans 2 rows */
.gallery-bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-card-large {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.08);
    filter: brightness(0.8);
}

/* Overlay with caption */
.gallery-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 40%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 2;
}

.gallery-card:hover .gallery-card-overlay {
    opacity: 1;
}

.gallery-card-overlay h3 {
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-card:hover .gallery-card-overlay h3 {
    transform: translateY(0);
}

.gallery-card-overlay p {
    transform: translateY(10px);
    transition: transform 0.4s ease 0.05s;
}

.gallery-card:hover .gallery-card-overlay p {
    transform: translateY(0);
}

.gallery-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.85), rgba(126, 34, 206, 0.85));
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 9999px;
    margin-bottom: 0.5rem;
    width: fit-content;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-card:hover .gallery-card-badge {
    transform: translateY(0);
}

/* Subtle border glow on hover */
.gallery-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 3;
    pointer-events: none;
    transition: border-color 0.4s ease;
}

.gallery-card:hover::before {
    border-color: rgba(99, 102, 241, 0.4);
}

/* Mobile: single column */
@media (max-width: 640px) {
    .gallery-bento {
        grid-template-columns: 1fr;
    }
    .gallery-card-large {
        grid-row: span 1;
        aspect-ratio: 4/3;
    }
    .gallery-card-overlay {
        opacity: 1;
    }
}

/* Contact section */
.contact-section {
    background: linear-gradient(160deg, #0a0a1a 0%, #0d0b2e 40%, #1a0a2e 70%, #0f0a20 100%);
}

.contact-info-card {
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

/* Start section steps */
.start-step {
    transition: all 0.3s ease;
}

.start-step:hover .start-step-icon {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(99, 102, 241, 0.15);
}

.start-step-icon {
    transition: all 0.3s ease;
}

/* FAQ section */
.faq-item {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.faq-item[open] {
    background: #fff;
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

.faq-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary::marker {
    display: none;
    content: '';
}

.faq-item[open] .faq-summary {
    color: #4f46e5;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 0.5rem;
    background: #e5e7eb;
    color: #6b7280;
    font-size: 0.75rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item[open] .faq-icon {
    background: linear-gradient(135deg, #4f46e5, #7e22ce);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem 1.25rem;
    color: #4b5563;
    font-size: 0.9rem;
    line-height: 1.7;
    animation: faqFadeIn 0.3s ease;
}

@keyframes faqFadeIn {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Адаптивность */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 6rem;
        padding-bottom: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .service-card {
        margin-bottom: 1rem;
    }

    .hero-stat-card {
        padding: 1rem;
    }

    .hero-trust-row {
        flex-wrap: wrap;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-trust-divider {
        display: none;
    }

    .hero-float-card-revenue {
        left: 0;
        bottom: 5%;
    }

    .hero-float-card-games {
        right: 0;
        top: 5%;
    }

    .hero-orb-1 { width: 300px; height: 300px; }
    .hero-orb-2 { width: 250px; height: 250px; }
    .hero-orb-3 { width: 200px; height: 200px; }

    .hero-glow-ring-1,
    .hero-glow-ring-2 {
        display: none;
    }
}

