/* ============================================
   🎨 OKAI LANDING — САЙТ (отдельно от кабинета!)
   ============================================ */

/* CSS Variables */
:root {
    --primary: #667eea;
    --primary-dark: #5568d3;
    --secondary: #764ba2;
    --accent: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
    
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-card: #ffffff;
    --text: #1e293b;
    --text-muted: #64748b;
    --border: #e2e8f0;
    
    --shadow: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
    
    --radius: 12px;
    --radius-lg: 20px;
    
    --header-height: 80px;
}

body.dark-theme {
    --bg: #0f172a;
    --bg-alt: #1e293b;
    --bg-card: #1e293b;
    --text: #f1f5f9;
    --text-muted: #94a3b8;
    --border: #334155;
}
body.dark-theme .site-mobile-btn span {

    background: #7c8493;
}
/* Reset */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background 0.3s, color 0.3s;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@media (max-width: 400px) {
    .hero-stats {
        flex-direction: row!important;
    }
}
/* ============================================
   🔝 HEADER (САЙТ)
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.dark-theme .site-header {
    background: rgba(15, 23, 42, 0.85);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.95);
    border-bottom-color: var(--border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

body.dark-theme .site-header.scrolled {
    background: rgba(15, 23, 42, 0.95);
}

.site-header.hidden {
    transform: translateY(-100%);
}

.site-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text);
    font-weight: 800;
    font-size: 1.5rem;
}

.site-logo-img {
    height: 60px;
    border-radius: 10px;
    transition: transform 0.3s;
}



.site-logo-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

/* Navigation */
.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
    position: relative;
}

.site-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transition: width 0.3s;
}

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

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

.site-nav-link-accent {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white !important;
    padding: 9px 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.2s;
}

.site-nav-link-accent::after {
    display: none;
}

.site-nav-link-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
    color: white !important;
}

/* Header Actions */
.site-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* Buttons */
.site-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.site-btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
}

.site-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
}

.site-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.5);
}

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

.site-btn-ghost:hover {
    background: var(--bg-alt);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.site-btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.site-btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Theme toggle */
.site-theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: var(--bg-alt);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    transition: all 0.2s;
}

.site-theme-toggle:hover {
    border-color: var(--primary);
    transform: rotate(15deg);
}

body.light-theme .theme-icon-dark,
body.dark-theme .theme-icon-light {
    display: none;
}

/* User Menu */
.site-user-menu {
    position: relative;
}

.site-user-btn {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 14px;
    border-radius: 50px;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.2s;
    color: var(--text);
}

.site-user-btn:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.site-user-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.site-user-name {
    font-weight: 600;
    font-size: 0.92rem;
}

.site-user-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: transform 0.2s;
}

.site-user-btn:hover .site-user-arrow {
    transform: translateY(1px);
}

.site-user-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 240px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.25s;
    overflow: hidden;
}

.site-user-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.site-dropdown-header {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    background: var(--bg-alt);
}

.site-dropdown-header strong {
    display: block;
    color: var(--text);
    font-size: 0.95rem;
}

.site-dropdown-header small {
    color: var(--text-muted);
    font-size: 0.82rem;
    display: block;
    margin-top: 2px;
}

.site-superadmin-badge {
    display: inline-block;
    margin-top: 6px;
    padding: 3px 9px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    font-size: 0.7rem;
    border-radius: 12px;
    font-weight: 700;
}

.site-dropdown-item {
    display: block;
    padding: 11px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
    transition: background 0.2s;
}

.site-dropdown-item:hover {
    background: var(--bg-alt);
    color: var(--primary);
}

.site-dropdown-item-danger {
    color: var(--danger);
}

.site-dropdown-item-danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.site-dropdown-divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 4px 0;
}

/* Mobile button */
.site-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    width: 42px;
    height: 42px;
    justify-content: center;
    align-items: center;
}

.site-mobile-btn span {
    width: 22px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

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

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

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

/* Mobile Overlay */
.site-mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    backdrop-filter: blur(5px);
}

.site-mobile-overlay.active {
    display: block;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Mobile Nav */
.site-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--bg-card);
    z-index: 999;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
    overflow-y: auto;
}

.site-mobile-nav.open {
    right: 0;
}

.site-mobile-nav-header {
    padding: 20px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-alt);
}

.site-mobile-close {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: background 0.2s;
}

.site-mobile-close:hover {
    background: var(--bg);
}

.site-mobile-nav-links {
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.site-mobile-nav-links a {
    padding: 12px 16px;
    color: var(--text);
    text-decoration: none;
    font-size: 0.98rem;
    border-radius: 10px;
    transition: background 0.2s;
}

.site-mobile-nav-links a:hover {
    background: var(--bg-alt);
}

.site-mobile-nav-links hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 8px 0;
}

/* ============================================
   🎯 HERO SECTION
   ============================================ */
.hero {
    margin-top: var(--header-height);
    min-height: calc(100vh - var(--header-height));
}

.hero-swiper {
    width: 100%;
    height: calc(100vh - var(--header-height));
    min-height: 600px;
}

.hero-slide {
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.hero-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(255,255,255,0.18);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 22px;
    letter-spacing: -1.5px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #fff, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    line-height: 1.6;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-buttons .site-btn-ghost {
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.hero-buttons .site-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    color: white;
}

.hero-stats {
    display: flex;
    gap: 45px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: left;
}

.hero-stat b {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-stat small {
    font-size: 0.88rem;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-placeholder {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    animation: float 6s ease-in-out infinite;
}

.hero-image-placeholder small {
    font-size: 1rem;
    opacity: 0.7;
    margin-top: 10px;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Swiper customization */
.swiper-button-next,
.swiper-button-prev {
    color: white !important;
    background: rgba(255,255,255,0.2);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.2s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255,255,255,0.35);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem !important;
    font-weight: bold;
}

.swiper-pagination-bullet {
    background: white !important;
    opacity: 0.5;
    width: 10px !important;
    height: 10px !important;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px !important;
    border-radius: 5px !important;
}

/* ============================================
   🎁 FREE SECTION
   ============================================ */
.free-section {
    padding: 70px 0;
    background: var(--bg-alt);
}

.free-banner {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    padding: 55px 45px;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.free-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.free-icon {
    font-size: 3.5rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.free-banner h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.free-banner > p {
    font-size: 1.1rem;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.free-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.free-item {
    background: rgba(255,255,255,0.15);
    padding: 18px 15px;
    border-radius: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.free-item:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.free-item-icon {
    font-size: 2.8rem;
}

.free-coming-soon {
    margin-top: 30px;
    padding: 15px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    font-size: 0.92rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   ⭐ FEATURES SECTION
   ============================================ */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 7px 18px;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.8px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--bg-card);
    padding: 38px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

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

.feature-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(102,126,234,0.1), rgba(118,75,162,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 22px;
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.65;
    font-size: 0.95rem;
}

/* ============================================
   🎯 HOW IT WORKS
   ============================================ */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-alt);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 35px;
    align-items: flex-start;
    background: var(--bg-card);
    padding: 35px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

.step:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateX(5px);
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 65px;
    bottom: -30px;
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.step-number {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================
   💰 PRICING
   ============================================ */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 6px 22px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
}

.pricing-header {
    text-align: center;
    margin-bottom: 28px;
}

.pricing-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.pricing-header h3 {
    font-size: 1.8rem;
    margin-bottom: 6px;
    font-weight: 800;
}

.pricing-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 22px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.price {
    font-size: 3.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: 1rem;
    margin-left: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.pricing-features li {
    padding: 9px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.pricing-features li b {
    color: var(--primary);
    font-size: 1.15rem;
    min-width: 24px;
}

.pricing-card .site-btn {
    width: 100%;
}

.pricing-note {
    text-align: center;
    padding: 22px;
    background: var(--bg-alt);
    border-radius: var(--radius);
    color: var(--text-muted);
    border: 1px dashed var(--border);
}

/* ============================================
   ❓ FAQ
   ============================================ */
.faq {
    padding: 100px 0;
    background: var(--bg-alt);
}

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

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

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

.faq-question {
    padding: 22px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.05rem;
    user-select: none;
    transition: color 0.2s;
}

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

.faq-arrow {
    transition: transform 0.3s;
    color: var(--primary);
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 25px 22px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   🚀 CTA
   ============================================ */
.cta {
    padding: 80px 0;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 65px 45px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1), transparent);
    border-radius: 50%;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
    z-index: 1;
}

.cta-box > p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.cta-box .site-btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

.cta-box .site-btn-primary:hover {
    background: #f1f5f9;
}

.cta-box .site-btn-ghost {
    color: white;
    border-color: rgba(255,255,255,0.4);
}

.cta-box .site-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.cta-box small {
    display: block;
    opacity: 0.85;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   🦶 FOOTER (САЙТ)
   ============================================ */
.site-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 70px 0 30px;
}

body.light-theme .site-footer {
    background: #0f172a;
    color: #cbd5e1;
}

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

.site-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 45px;
}

.site-footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: white;
    margin-bottom: 16px;
}

.site-footer-logo img {
   
    height: 60px;
    border-radius: 10px;
}

.site-footer-logo span {
    font-size: 1.5rem;
    font-weight: 800;
}

.site-footer-desc {
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 22px;
    color: #94a3b8;
}

.site-footer-socials {
    display: flex;
    gap: 10px;
}

.site-social-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.site-social-link:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.site-footer-col h4 {
    color: white;
    margin-bottom: 18px;
    font-size: 1.02rem;
    font-weight: 700;
}

.site-footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.92rem;
    transition: color 0.2s;
}

.site-footer-col a:hover {
    color: white;
    padding-left: 3px;
}

.site-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #64748b;
    flex-wrap: wrap;
    gap: 15px;
}

.site-footer-made {
    color: #94a3b8;
}

/* ============================================
   🎬 ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animations */
.features-grid .feature-card:nth-child(1).visible { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2).visible { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3).visible { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4).visible { transition-delay: 0.4s; }
.features-grid .feature-card:nth-child(5).visible { transition-delay: 0.5s; }
.features-grid .feature-card:nth-child(6).visible { transition-delay: 0.6s; }

.pricing-grid .pricing-card:nth-child(1).visible { transition-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(2).visible { transition-delay: 0.2s; }
.pricing-grid .pricing-card:nth-child(3).visible { transition-delay: 0.3s; }
/* ============================================ */
/* 📱 МОБИЛЬНОЕ МЕНЮ НА ВСЮ ШИРИНУ             */
/* ============================================ */
.site-mobile-nav {
    position: fixed;
    top: 0;
    right: -100%; /* Начинает за правым краем */
    width: 100vw;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999999;
    overflow-y: auto;
}

.site-mobile-nav.open {
    right: 0; /* Выезжает на всю ширину */
}

body.dark-theme .site-mobile-nav {
    background: #1e293b;
    box-shadow: -5px 0 20px rgba(0,0,0,0.3);
}

/* ============================================ */
/* 🍔 АНИМАЦИЯ ГАМБУРГЕР → КРЕСТИК            */
/* ============================================ */
.site-mobile-btn {
    position: relative;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000000;
}

.site-mobile-btn span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: var(--text-color, #1e293b);
    border-radius: 3px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-mobile-btn span:nth-child(1) {
    top: 0px;
}

.site-mobile-btn span:nth-child(2) {
    top: 10px;
}

.site-mobile-btn span:nth-child(3) {
    top: 20px;
}

/* Анимация в крестик при открытии */
.site-mobile-btn.active span:nth-child(1) {
    top: 10px;
    transform: rotate(135deg);
}

.site-mobile-btn.active span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.site-mobile-btn.active span:nth-child(3) {
    top: 10px;
    transform: rotate(-135deg);
}
/* ============================================
   📱 RESPONSIVE
   ============================================ */
.ai-generated-page p a {
        color: #667eea;
}
@media (max-width: 992px) {
    
    .about-section.alt .about-stat-card {
    margin-bottom: 15px;
    }
    .about-section.alt .about-stats-grid {
    display: block;
    }
    .ai-generated-page h1 {
font-size:20px!important;
}
    .irdok {
        display:none;
    }
    .site-nav {
        display: none;
    }
    
    .site-mobile-btn {
        display: flex;
    }
    
    .site-user-name {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 30px;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-card-featured {
        transform: scale(1);
    }
    
    .pricing-card-featured:hover {
        transform: translateY(-5px);
    }
    
    .site-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .site-footer-col-brand {
        grid-column: 1 / -1;
    }
    
    .site-footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .site-btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .hero-stat b {
        font-size: 1.6rem;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .step:not(:last-child)::after {
        left: 50%;
        bottom: -30px;
    }
    
    .cta-box {
        padding: 45px 25px;
    }
    
    .cta-box h2 {
        font-size: 1.7rem;
    }
    
    .site-footer-grid {
        grid-template-columns: 1fr;
    }
    
    .free-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .free-banner {
        padding: 40px 25px;
    }
}

@media (max-width: 400px) {
    .free-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
}
.dark-theme  .lll{
    display:none;

}
   .light-theme .lll {
       display:block;
       }
       html .light-theme .ddd {
       display:none;
       }
       .ddd {
       display:block;
       }
       
       /* ============================================ */
/* 🔽 HERO SCROLL ARROW                        */
/* ============================================ */
.hero-scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 2rem;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
    z-index: 10;
}

.hero-scroll-arrow:hover {
    opacity: 1;
    transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .hero-scroll-arrow {
        bottom: 20px;
        font-size: 1.5rem;
    }
}
@media (min-width: 980px) {
       .site-mobile-nav {
    display: none;
       }
}
/* Hero banner medium screens 980–1400px */
@media (min-width: 980px) and (max-width: 1400px) {
    .hero-title {
        font-size: clamp(1.6rem, 3.2vw, 2.8rem);
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: clamp(0.88rem, 1.2vw, 1.05rem);
        margin-bottom: 24px;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 5px 14px;
        margin-bottom: 16px;
    }

    .hero-stat b {
        font-size: 1.6rem;
    }

    .hero-stat small {
        font-size: 0.78rem;
    }

    .hero-stats {
        gap: 28px;
    }

    .hero-buttons {
        margin-bottom: 28px;
    }

    .hero-buttons .site-btn-lg {
        padding: 11px 22px;
        font-size: 0.92rem;
    }

    .hero-container {
        padding: 40px 20px;
        gap: 40px;
    }
}

/* Print styles */
@media print {
    .site-header,
    .site-footer,
    .site-mobile-nav,
    .ai-admin-widget {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
    }
}


.ai-generated-page {
 padding-top:20px;   
    
}
}