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

:root {
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-hover: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 0, 0, 0.06);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 10px 40px rgba(0, 0, 0, 0.02);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08), 0 12px 48px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.1), 0 16px 64px rgba(0, 0, 0, 0.04);
    --accent-purple: #8B5CF6;
    --accent-purple-hover: #7c3aed;
    --accent-purple-light: rgba(139, 92, 246, 0.1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', sans-serif;
    color: #4a5568;
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background: linear-gradient(135deg, #faf5ff 0%, #f0fdf4 25%, #fef3f2 50%, #eff6ff 75%, #faf5ff 100%);
    background-attachment: fixed;
    background-size: 400% 400%;
    animation: gradient 30s ease infinite;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(250, 245, 255, 0.6) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(254, 243, 242, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(240, 253, 244, 0.5) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    width: 100%;
    box-sizing: border-box;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(120%);
    border-bottom: 0.5px solid var(--glass-border);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    box-sizing: border-box;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-text {
    font-size: 24px;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #2d3748;
}

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

.nav-links a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-purple);
}

.btn-login {
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.2s ease;
    font-weight: 400;
}

.btn-login:hover {
    background: var(--accent-purple-light);
    color: var(--accent-purple);
}

.btn-primary {
    background: var(--accent-purple);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    border: none;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    font-weight: 400;
}

.btn-primary:hover {
    background: var(--accent-purple-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-btn {
    display: none;
    position: relative;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: #2d3748;
    transition: opacity 0.2s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

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

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

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

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    padding: 200px 0 100px;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #2d3748;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    color: var(--accent-purple);
    font-weight: 400;
}

.hero-description {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    line-height: 1.7;
    font-weight: 300;
    animation: fadeInUp 0.6s ease-out 0.1s backwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease-out 0.2s backwards;
    justify-content: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-purple);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    border: none;
    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-hero-primary:hover {
    background: var(--accent-purple-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(120%);
    border: 0.5px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-hero-secondary:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.hero-stats {
    display: flex;
    gap: 48px;
    animation: fadeInUp 0.6s ease-out 0.3s backwards;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 32px;
    font-weight: 400;
    color: var(--accent-purple);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #a0aec0;
    font-weight: 300;
}

.hero-card {
    position: relative;
    animation: float 6s ease-in-out infinite, fadeInUp 0.6s ease-out 0.4s backwards;
}

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

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    animation: glow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

.mockup-browser {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(120%);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    border: 0.5px solid var(--glass-border);
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.browser-dots span:nth-child(1) { background: rgba(255, 95, 86, 0.6); }
.browser-dots span:nth-child(2) { background: rgba(255, 189, 46, 0.6); }
.browser-dots span:nth-child(3) { background: rgba(39, 201, 63, 0.6); }

.browser-url {
    flex: 1;
    text-align: center;
    font-size: 13px;
    color: #a0aec0;
    background: rgba(255, 255, 255, 0.6);
    padding: 6px 16px;
    border-radius: 8px;
    margin-left: 16px;
}

.browser-content {
    padding: 32px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    min-height: 400px;
}

.dashboard-preview {
    animation: fadeIn 1s ease-out;
}

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

.preview-header {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.preview-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B5CF6 0%, #6366F1 100%);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.preview-info {
    flex: 1;
}

.preview-name {
    height: 20px;
    width: 150px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    margin-bottom: 8px;
    animation: shimmer 2s ease-in-out infinite;
}

.preview-subtitle {
    height: 16px;
    width: 200px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    animation: shimmer 2s ease-in-out 0.2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.preview-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.preview-card {
    height: 100px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: shimmer 2s ease-in-out 0.4s infinite;
}

.preview-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.preview-item {
    height: 60px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    animation: shimmer 2s ease-in-out 0.6s infinite;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 100px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 300;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    color: #2d3748;
}

.section-description {
    font-size: 18px;
    color: #718096;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(120%);
    padding: 40px 32px;
    border-radius: 20px;
    border: 0.5px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--accent-purple);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: white;
    box-shadow: var(--shadow-sm);
}

.feature-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.feature-description {
    color: #718096;
    line-height: 1.7;
    font-weight: 300;
}

/* ========================================
   How It Works Section
   ======================================== */
.how-it-works {
    padding: 100px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 32px;
    position: relative;
    padding-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
}

.step:last-child {
    padding-bottom: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--accent-purple);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: 400;
    box-shadow: var(--shadow-sm);
}

.step-content {
    padding-top: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 12px;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.step-description {
    color: #718096;
    font-size: 16px;
    line-height: 1.7;
    font-weight: 300;
}

.step-line {
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: calc(100% - 20px);
    background: var(--accent-purple-light);
}

/* ========================================
   Pricing Section
   ======================================== */
.pricing {
    padding: 100px 0;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    max-width: 1000px;
    margin: 0 auto;
    justify-items: center;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(120%);
    padding: 52px 44px;
    border-radius: 20px;
    border: 0.5px solid var(--glass-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    overflow: hidden;
    width: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
}

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

.pricing-card.featured {
    border-color: var(--accent-purple);
    box-shadow: var(--shadow-md);
    padding-top: 56px; /* Дополнительный отступ для бейджа */
}

.pricing-badge {
    position: absolute;
    top: 8px; /* Изменено с -16px на 8px, чтобы бейдж был внутри карточки */
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 400;
    box-shadow: var(--shadow-sm);
    white-space: nowrap; /* Предотвращает перенос текста */
    z-index: 10;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.pricing-title {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 16px;
    color: #2d3748;
    letter-spacing: -0.01em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-currency {
    font-size: 20px;
    font-weight: 400;
    color: #718096;
}

.price-amount {
    font-size: 56px;
    font-weight: 300;
    color: var(--accent-purple);
}

.price-period {
    font-size: 16px;
    color: #a0aec0;
    font-weight: 300;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    padding: 14px 0;
    color: #4a5568;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
}

.pricing-features li.disabled {
    color: #a0aec0;
    opacity: 0.7;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: var(--glass-bg-hover);
    backdrop-filter: blur(40px) saturate(120%);
    border: 0.5px solid var(--glass-border);
    color: #2d3748;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 400;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-pricing:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-pricing-featured {
    background: var(--accent-purple);
    color: white;
    border: none;
}

.btn-pricing-featured:hover {
    background: var(--accent-purple-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   CTA Section
   ======================================== */
.cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    max-width: 100vw;
    max-height: 100vh;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    animation: glow 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 42px;
    font-weight: 300;
    color: #2d3748;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-description {
    font-size: 18px;
    color: #718096;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-cta-primary {
    padding: 16px 40px;
    background: var(--accent-purple);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    border: none;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-cta-primary:hover {
    background: var(--accent-purple-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-cta-secondary {
    padding: 16px 40px;
    background: var(--glass-bg);
    backdrop-filter: blur(40px) saturate(120%);
    color: #4a5568;
    text-decoration: none;
    border: 0.5px solid var(--glass-border);
    border-radius: 12px;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-sm);
}

.btn-cta-secondary:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: rgba(45, 55, 72, 0.95);
    backdrop-filter: blur(40px) saturate(150%);
    color: rgba(255, 255, 255, 0.9);
    padding: 80px 0 32px;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo svg circle,
.footer-brand .logo svg path {
    fill: white;
}

.footer-brand .logo-text {
    background: white;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-weight: 300;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    max-width: 800px;
}

.footer-column {
    min-width: 150px;
}

.footer-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-image {
        order: -1;
    }

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

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }

    .container {
        padding: 0 16px;
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(40px) saturate(120%);
        border-bottom: 0.5px solid var(--glass-border);
        box-shadow: var(--shadow-md);
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
        z-index: 999;
        max-height: calc(100vh - 72px);
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        text-align: left;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .nav-links .btn-primary {
        width: 100%;
        padding: 12px 24px;
        text-align: center;
        border-radius: 8px;
        margin-top: 4px;
        display: block;
        border-bottom: none;
    }

    .nav-links .btn-login {
        text-align: left;
        padding-left: 0;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span {
        opacity: 0;
    }

    .mobile-menu-btn.active::before,
    .mobile-menu-btn.active::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background: #2d3748;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .mobile-menu-btn.active::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .mobile-menu-btn.active::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .hero {
        padding: 140px 0 80px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

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

    .hero-description {
        font-size: 16px;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr !important; /* Переопределяем inline стиль */
        gap: 24px;
        max-width: 100%;
        width: 100%;
        padding: 0;
        box-sizing: border-box;
    }

    .pricing-card {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .pricing-card.featured {
        padding-top: 48px;
    }

    .pricing-badge {
        font-size: 12px;
        padding: 5px 16px;
        top: 6px;
    }

    .pricing-header {
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .pricing-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .price-amount {
        font-size: 48px;
    }

    .price-currency {
        font-size: 18px;
    }

    .price-period {
        font-size: 14px;
    }

    .pricing-features {
        margin-bottom: 24px;
    }

    .pricing-features li {
        padding: 12px 0;
        font-size: 15px;
        line-height: 1.65;
    }

    .btn-pricing {
        padding: 12px 24px;
        font-size: 14px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
        flex-direction: column;
    }

    .how-it-works {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .features {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .pricing {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .cta {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .cta::before {
        width: 400px;
        height: 400px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .footer {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }

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

    .section-title {
        font-size: 32px;
    }

    .cta-title {
        font-size: 32px;
    }
}

/* ========================================
   Cookie Consent Banner
   ======================================== */
.cookie-consent {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10000;
    max-width: 600px;
    width: calc(100% - 48px);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.cookie-consent-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(40px) saturate(120%);
    border-radius: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 20px 60px rgba(0, 0, 0, 0.08);
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 12px;
    color: var(--accent-purple);
}

.cookie-text {
    flex: 1;
}

.cookie-title {
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.cookie-description {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin: 0;
    font-weight: 300;
}

.cookie-description a {
    color: var(--accent-purple);
    text-decoration: none;
    font-weight: 400;
    transition: color 0.2s ease;
}

.cookie-description a:hover {
    color: var(--accent-purple-hover);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.cookie-btn-accept {
    background: var(--accent-purple);
    color: white;
    box-shadow: var(--shadow-sm);
}

.cookie-btn-accept:hover {
    background: var(--accent-purple-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.cookie-btn-decline {
    background: rgba(0, 0, 0, 0.04);
    color: #4a5568;
}

.cookie-btn-decline:hover {
    background: rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
    .cookie-consent {
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .cookie-consent-content {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .cookie-icon {
        width: 36px;
        height: 36px;
    }

    .cookie-title {
        font-size: 16px;
    }

    .cookie-description {
        font-size: 13px;
    }

    .cookie-buttons {
        flex-direction: row;
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
        padding: 12px 16px;
    }
}
