:root {
    /* Default (Dark) Theme */
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #10b981;
    --card-border: rgba(255, 255, 255, 0.05);
    --header-bg: rgba(15, 23, 42, 0.8);
    --hero-text-gradient: linear-gradient(to right, #fff, #cbd5e1);
}

[data-theme="light"] {
    /* Avito-inspired Light Theme */
    --primary: #00AAFF;
    /* Avito Blue */
    --primary-hover: #0099eb;
    --bg-dark: #F2F5F9;
    /* Light Gray Background */
    --bg-card: #FFFFFF;
    /* White Card */
    --text-main: #111827;
    /* Dark Text */
    --text-muted: #64748b;
    /* Muted Text */
    --accent: #96C93D;
    /* Avito Green */
    --card-border: rgba(0, 0, 0, 0.05);
    --header-bg: rgba(255, 255, 255, 0.8);
    --hero-text-gradient: linear-gradient(to right, #111827, #334155);
}

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

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

.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--bg-dark);
    /* radial-gradient(circle at 50% 50%, #1e1b4b 0%, #0f172a 100%); */
    overflow: hidden;
}

.blob {
    position: absolute;
    filter: blur(100px);
    border-radius: 50%;
    opacity: 0.6;
}

/* Avito Brand Colors: Purple, Blue, Green, Red (Logo Layout) */

/* 1. Purple - Top Left (Small) */
.blob:nth-child(1) {
    top: 15%;
    left: 20%;
    width: 280px;
    height: 280px;
    background: rgba(168, 85, 247, 0.4);
    /* Purple */
    animation: float1 25s infinite;
}

/* 2. Blue - Top Right (Large) */
.blob:nth-child(2) {
    top: 5%;
    left: 60%;
    width: 450px;
    height: 450px;
    background: rgba(0, 170, 255, 0.3);
    /* Blue */
    animation: float2 28s infinite;
}

/* 3. Green - Bottom Left (Largest) */
.blob:nth-child(3) {
    top: 50%;
    left: 5%;
    width: 550px;
    height: 550px;
    background: rgba(150, 201, 61, 0.4);
    /* Green */
    animation: float3 30s infinite;
}

/* 4. Red - Bottom Right (Medium) */
.blob:nth-child(4) {
    top: 60%;
    left: 65%;
    width: 350px;
    height: 350px;
    background: rgba(255, 97, 99, 0.4);
    /* Red */
    animation: float4 22s infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(100px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-50px, 100px) scale(0.9);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-100px, 80px) scale(1.1);
    }

    66% {
        transform: translate(80px, -80px) scale(0.95);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(120px, 50px) scale(0.9);
    }

    66% {
        transform: translate(-80px, -100px) scale(1.1);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-150px, -50px) scale(1.15);
    }

    66% {
        transform: translate(50px, 120px) scale(0.9);
    }
}

header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    background: var(--header-bg);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    /* Removed text gradient styles as we now use images */
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

/* Default (Dark Theme) - Show White/Color Logo for Dark BG if that's what black-theme.svg is? 
   Wait, user said: "AVITO-AI-LOGO-black-theme.svg для темной темы".
   Usually "black-theme" means "for black theme" (i.e. white logo), OR "logo that is black".
   Let's assume "black-theme.svg" is designed FOR dark theme.
*/
.logo-light {
    display: none;
}

.logo-dark {
    display: block;
}

/* Light Theme Override */
[data-theme="light"] .logo-light {
    display: block;
}

[data-theme="light"] .logo-dark {
    display: none;
}

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

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    margin-left: 24px;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.2s;
}

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

.btn {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 99px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

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

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

.hero {
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: clamp(40px, 8vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
    background: var(--hero-text-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.hero .subtitle {
    font-size: clamp(18px, 3vw, 22px);
    color: var(--text-muted);
    margin-bottom: 16px;
}

.hero .stats {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin: 32px 0 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    font-size: 36px;
    font-weight: 800;
    color: var(--accent);
    display: block;
}

.stat-item .label {
    font-size: 14px;
    color: var(--text-muted);
}

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

.features {
    padding: 80px 20px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 42px);
    margin-bottom: 20px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-category {
    margin-bottom: 60px;
}

.category-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
    text-align: center;
}

.category-desc {
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 32px;
}

.premium-category {
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05), transparent);
    border-radius: 32px;
    padding: 40px 24px;
    border: 1px solid rgba(168, 85, 247, 0.2);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

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

@media (max-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 600px) {

    .grid-4,
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
    cursor: pointer;
    backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.15);
    z-index: 20;
}

.card.premium {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.15));
    border-color: rgba(168, 85, 247, 0.5);
}

.card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--primary);
    color: white;
    padding: 4px 10px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-badge.premium-badge {
    background: linear-gradient(135deg, #a855f7, #6366f1);
}

.card-icon {
    font-size: 42px;
    margin-bottom: 16px;
    display: block;
}

.card h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: var(--text-main);
}

.card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.pricing {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(168, 85, 247, 0.05), transparent);
    /* border-radius: 32px; Removed radius as it is a full width section usually, or I should margin it? */
    /* User said "style like block", if I want it to look like a block it needs margins. */
    /* But current design has it as a section. Let's try adding border top/bottom for now or just background. */
    /* Actually .premium-category has border and radius. */
    /* border removed for seamless gradient transition */
}

.grid-4-pricing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    position: relative;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.price-card.popular {
    border: 1px solid var(--primary);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1);
    background: var(--bg-card);
    transform: scale(1.03);
}

.price-card.premium-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(99, 102, 241, 0.2));
    border-color: rgba(168, 85, 247, 0.5);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.price {
    font-size: 42px;
    font-weight: 800;
    margin: 16px 0;
    color: var(--text-main);
}

.price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    flex: 1;
}

.features-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.features-list li.active {
    color: var(--text-main);
}

.check {
    color: var(--accent);
    font-weight: bold;
}

.faq {
    padding: 80px 20px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--card-border);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
    display: none;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-question::after {
    content: '▼';
    transition: transform 0.3s;
    font-size: 12px;
}

.faq-item.open .faq-question::after {
    transform: rotate(180deg);
}

.promo {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    /* border removed for seamless gradient transition */
    border: none !important;
}

.promo-code {
    display: inline-block;
    background: var(--bg-card);
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
    border: 2px dashed var(--accent);
    margin: 20px 0;
}

footer {
    padding: 60px 20px;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--card-border);
    font-size: 14px;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 24px 28px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover {
    color: white;
}

@media (max-width: 768px) {

    .modal-content {
        padding: 16px 20px;
        max-height: 95vh;
        border-radius: 16px;
    }

    .modal-content div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

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

    .price-card.popular {
        transform: scale(1);
    }
}

/* === NEW FEATURES CSS === */

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-menu.active {
    transform: translateY(0);
}

.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
}

/* Video Placeholder */
.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    aspect-ratio: 16/9;
    background: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--primary);
    border-color: var(--primary);
}

.play-button::after {
    content: '';
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

/* 14 Days Guarantee */
.guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-muted);
}

.guarantee span {
    color: var(--accent);
}

/* Reviews Section */
.reviews-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

.review-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 24px;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.review-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.review-name {
    font-weight: 600;
    color: var(--text-main);
    display: block;
}

.review-role {
    font-size: 12px;
    color: var(--text-muted);
}

.review-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
    font-style: italic;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px;
    border-radius: 16px;
    display: none;
    /* Mobile only */
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(99, 102, 241, 0.3);
    z-index: 99;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Countdown */
.countdown {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 16px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
}

.countdown-val {
    font-size: 20px;
    font-weight: 800;
    color: white;
    display: block;
}

.countdown-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Floating Widget */
.floating-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #2AABEE;
    /* Telegram color */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(42, 171, 238, 0.4);
    transition: all 0.3s;
    z-index: 98;
}

.floating-widget:hover {
    transform: scale(1.1);
}

.floating-widget svg {
    width: 32px;
    height: 32px;
    fill: white;
}

.tooltip {
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%) translateX(10px);
    margin-right: 16px;
    background: var(--bg-card);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--card-border);
    pointer-events: none;
}

.floating-widget:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

/* Mobile Adaptations */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        /* Hide default nav */
    }

    .hero .stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .sticky-cta {
        display: flex;
    }

    footer {
        padding-bottom: 100px;
        /* Space for sticky CTA */
    }
}

/* New Classes for Refactoring Inline Styles */

.section-whats-included {
    background: var(--bg-card);
    padding: 60px 0;
    transition: background 0.3s;
}

.whats-included-card {
    background: var(--bg-card);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--card-border);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

/* Hover effect removed per user request */

.whats-included-card h3 {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 8px;
}

.whats-included-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.section-mobile-app {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1), transparent);
}

.mobile-app-card {
    background: var(--bg-card);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Hover effect removed per user request */

.section-referral {
    padding: 80px 20px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05), transparent);
}

.referral-step-card {
    background: var(--bg-card);
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(16, 185, 129, 0.2);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.referral-step-card:hover {
    transform: translateY(-10px);
    border-color: #10b981;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.2);
    z-index: 20;
}

.referral-step-card h3 {
    color: var(--text-main);
    margin-bottom: 10px;
}

.referral-step-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
}

.referral-calc {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 16px;
    padding: 24px;
    margin-top: 40px;
    text-align: center;
}

/* Legacy section-seo removed */

/* Social Share Buttons */
.social-share-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.btn-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none !important;
    color: white !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-share:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    filter: brightness(1.1);
}

.btn-share:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Telegram Gradient */
.btn-tg {
    background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
    box-shadow: 0 8px 20px rgba(34, 158, 217, 0.25);
}

.btn-tg:hover {
    box-shadow: 0 12px 28px rgba(34, 158, 217, 0.4);
}

/* VK Gradient */
.btn-vk {
    background: linear-gradient(135deg, #0077FF 0%, #0055BB 100%);
    box-shadow: 0 8px 20px rgba(0, 119, 255, 0.25);
}

.btn-vk:hover {
    box-shadow: 0 12px 28px rgba(0, 119, 255, 0.4);
}

/* WhatsApp Gradient */
.btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
}

.btn-wa:hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
}

.btn-share svg {
    margin-right: 2px;
}


/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

[data-theme="light"] .glass-panel {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Ensure container inside fits well */
.glass-panel .section-title {
    margin-top: 0;
}

/* Glassmorphism Panel */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

[data-theme="light"] .glass-panel {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Ensure container inside fits well */
.glass-panel .section-title {
    margin-top: 0;
}

/* --- RECOVERED & MERGED STYLES (v5.6.2) --- */

/* Light Theme Variables (Re-implemented) */
[data-theme="light"] {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --text-main: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --card-border: rgba(0, 0, 0, 0.08);
}

/* Glassmorphism Panel (Restored) */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

[data-theme="light"] .glass-panel {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Ensure container inside fits well */
.glass-panel .section-title {
    margin-top: 0;
}

/* --- UI Unification & Gradients (v5.6.3) --- */

/* Smooth Gradient Separator */
.section-gradient-separator {
    position: relative;
    z-index: 1;
}

.section-gradient-separator::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 2;
}

/* What's Included Section Specifics */
.section-whats-included {
    position: relative;
    padding: 80px 0;
    /* Gradient Background for depth */
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
}

/* Glass Card for 'What's Included' items */
.whats-included-card {
    background: var(--bg-card);
    /* Fallback */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

/* Hover effect removed per user request */

[data-theme="light"] .whats-included-card {
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Hover effect removed per user request */

.whats-included-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

.whats-included-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.whats-included-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- GLOBAL SECTION CONSISTENCY (v5.6.4) --- */

/* Force consistent gradient background and separator for ALL usage sections */
.section-whats-included,
.section-mobile-app,
.features,
.pricing,
.faq,
.section-referral,
.promo,
.blog-preview {
    position: relative;
    padding: 80px 0;
    /* Unified Radial Gradient Background */
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
}

/* Ensure the separator is visible on all these sections */
.section-whats-included::after,
.section-mobile-app::after,
.features::after,
.pricing::after,
.faq::after,
.section-referral::after,
.promo::after,
.blog-preview::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--bg-dark));
    pointer-events: none;
    z-index: 2;
}

/* Fix z-indexing for content to stay above background/separators */
.section-whats-included .container,
.section-mobile-app .container,
.features .container,
.pricing .container,
.faq .container,
.section-referral .container,
.promo .container,
.blog-preview .container {
    position: relative;
    z-index: 3;
}

/* Fix mobile app section specifics */
.section-mobile-app .mobile-app-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid var(--card-border);
}

/* SEO Block - Solid Background (Footer Match) */
.seo-block {
    position: relative;
    padding: 80px 0;
    background: var(--bg-dark);
    /* Solid background per user request */
    z-index: 5;
    /* Ensure it covers any bottom gradients from previous sections if overlapping */
}

/* SEO Typography specific overrides if needed */
.seo-block h2,
.seo-block h3 {
    color: var(--text-main);
}

.seo-block p,
.seo-block li {
    color: var(--text-muted);
}
/* --- Light Theme Blob Enhancements (v5.6.12) --- */
/* Make blobs brighter and less blurry on light theme */
[data-theme="light"] .blob {
    filter: blur(50px) !important; /* Less blurry (was 100px) */
    opacity: 0.8 !important;       /* Brighter (was 0.6) */
    mix-blend-mode: multiply;      /* Better blending on white */
}
