:root {
    /* Основной зеленый цвет (ваш логотип) - более современный оттенок */
    --primary: #27AE60; /* Сочный зеленый */
    --primary-light: #E8F5E9; /* Очень светлый зеленый */
    --primary-dark: #219653; /* Темнее для ховеров */
    
    /* Триадные цвета - оранжево-коралловый */
    --secondary: #FF7B25; /* Яркий кораллово-оранжевый */
    --secondary-light: #FFE8D9; /* Светлый коралловый фон */
    
    /* Триадные цвета - сине-фиолетовый */
    --accent: #6C5CE7; /* Электрический сине-фиолетовый */
    --accent-light: #EDEBFD; /* Светлый фиолетовый фон */
    
    /* Нейтральные цвета */
    --dark: #2D3436;
    --gray: #636E72;
    --light: #F8F9FA;
    --white: #FFFFFF;
    
    /* Дополнительные переменные */
    --shadow: 0px 0px 20px rgba(0, 0, 0, 0.08);
    --radius: 0.75rem;
}
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: 'Inter', sans-serif;
        color: var(--dark);
        background-color: var(--light);
        line-height: 1.6;
        overflow-x: hidden;
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    /* Header Styles */
    header {
        background-color: var(--white);
        box-shadow: var(--shadow);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s;
    }
    
    header.scrolled {
        padding: 0.5rem 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 0;
        transition: all 0.3s;
    }
    
    .logo {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 50px;
    }
    
    nav ul {
        display: flex;
        list-style: none;
    }
    
    nav ul li {
        margin-left: 2rem;
    }
    
    nav ul li a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        transition: color 0.3s;
        position: relative;
    }
    
    nav ul li a:hover {
        color: var(--primary);
    }
    
    nav ul li a.active {
        color: var(--primary);
    }
    
    nav ul li a.active::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary);
    }
    
    .auth-buttons {
        display: flex;
        align-items: center;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        border-radius: var(--radius);
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .btn-primary {
        background-color: var(--primary);
        color: var(--white);
        border: none;
    }
    
    .btn-primary:hover {
        background-color: #5d2bc7;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(114, 57, 234, 0.2);
    }
    
    .btn-outline {
        background-color: transparent;
        color: var(--primary);
        border: 1px solid var(--primary);
        margin-right: 1rem;
    }
    
    .btn-outline:hover {
        background-color: var(--primary-light);
    }
    
    .btn-white {
        background-color: var(--white);
        color: var(--primary);
    }
    
    .btn-white:hover {
        background-color: #f0f0f0;
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .btn-large {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .btn-large i {
        margin-right: 0.5rem;
    }
    
    .pulse {
        animation: pulse-glow 2s infinite;
    }
    
    /* Hero Section */
    .hero {
        padding: 180px 0 100px;
        background: linear-gradient(135deg, var(--primary-light) 0%, #f0e8ff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(114, 57, 234, 0.1) 0%, rgba(114, 57, 234, 0.05) 100%);
        z-index: 0;
        animation: pulse-ring 4s ease-in-out infinite;
    }
    
    @keyframes pulse-ring {
        0% { transform: scale(0.8); opacity: 0.8; }
        50% { transform: scale(1.2); opacity: 0.4; }
        100% { transform: scale(0.8); opacity: 0.8; }
    }
    
    .hero-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }
    
    .hero-text {
        flex: 1;
        max-width: 600px;
    }
    
    .hero-image {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
    
    .hero-image img {
        max-width: 100%;
        border-radius: var(--radius);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }
    
    h1 {
        font-size: 3.5rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero h1 span {
        color: var(--primary);
        position: relative;
    }
    
    .hero h1 span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(114, 57, 234, 0.2);
        z-index: -1;
    }
    
    .hero p {
        font-size: 1.25rem;
        color: var(--gray);
        margin-bottom: 2rem;
    }
    
    /* Sections */
    .section {
        padding: 100px 0;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 4rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .section-title h2 span {
        color: var(--primary);
        position: relative;
    }
    
    .section-title h2 span::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 0;
        width: 100%;
        height: 8px;
        background-color: rgba(114, 57, 234, 0.2);
        z-index: -1;
    }
    
    .section-title p {
        font-size: 1.125rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Features Section */
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .feature-card {
        background-color: var(--white);
        border-radius: var(--radius);
        padding: 2.5rem;
        box-shadow: var(--shadow);
        transition: transform 0.3s, box-shadow 0.3s;
        position: relative;
        overflow: hidden;
    }
    
    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background-color: var(--primary);
        transform: scaleY(0);
        transition: transform 0.3s;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .feature-card:hover::before {
        transform: scaleY(1);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
        transition: transform 0.3s;
    }
    
    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }
    
    .feature-icon i {
        font-size: 1.75rem;
        color: var(--primary);
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
    
    .feature-card p {
        color: var(--gray);
    }
    
    /* Stats Section */
    .stats {
        background-color: var(--primary);
        color: var(--white);
        padding: 80px 0;
        position: relative;
        overflow: hidden;
    }
    
    .stats::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .stats::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        position: relative;
        z-index: 1;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }
    
    .stat-text {
        font-size: 1.125rem;
    }
    
    /* How It Works Section */
    .steps {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .step {
        text-align: center;
        padding: 3rem 2rem;
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        position: relative;
        transition: transform 0.3s;
    }
    
    .step:hover {
        transform: translateY(-5px);
    }
    
    .step-number {
        font-size: 4rem;
        font-weight: 700;
        color: var(--primary-light);
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
        opacity: 0.7;
    }
    
    .step h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
    }
    
    /* Results Carousel */
    .results-carousel-section {
        padding: 100px 0;
        background: white;
    }
    
    .results-carousel-section .section-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .results-carousel-section .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .results-carousel-section .section-header h2 span {
        color: var(--primary);
    }
    
    .results-carousel-section .section-header p {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .results-carousel-section .carousel-controls {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 0.5rem;
    }
    
    .results-carousel-section .carousel-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: white;
        border: 2px solid var(--primary);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .results-carousel-section .carousel-btn:hover {
        background: var(--primary);
        color: white;
        transform: scale(1.1);
    }
    
    .results-carousel-section .carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
        transform: none;
    }
    
    .results-carousel-section .carousel-btn:disabled:hover {
        background: white;
        color: var(--primary);
    }
    
    .results-carousel-section .carousel-container {
        overflow: hidden;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .results-carousel-section .carousel-track {
        display: flex;
        transition: transform 0.5s ease;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .results-carousel-section .carousel-card {
        width: 570px;
        flex-shrink: 0;
        background: white;
        padding: 2.5rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        border: 1px solid #E4E6EF;
    }
    
    .results-carousel-section .carousel-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .case-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--primary);
    }
    
    .case-content p {
        color: var(--gray);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }
    
    .results {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .result-item {
        text-align: center;
        padding: 1.5rem;
        background: var(--primary-light);
        border-radius: var(--radius);
        transition: transform 0.3s ease;
    }
    
    .result-item:hover {
        transform: translateY(-3px);
    }
    
    .result-value {
        font-size: 2rem;
        font-weight: 700;
        color: var(--secondary);
        display: block;
        margin-bottom: 0.5rem;
    }
    
    .result-label {
        font-size: 0.9rem;
        color: var(--gray);
        display: block;
    }
    
    .results-carousel-section .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 2rem;
    }
    
    .results-carousel-section .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(114, 57, 234, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .results-carousel-section .carousel-dot.active {
        background: var(--primary);
        transform: scale(1.2);
    }
    
    /* Comparison Table */
    .comparison-table {
        overflow-x: auto;
        margin-top: 3rem;
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        padding: 2rem;
    }
    
    .comparison-table table {
        width: 100%;
        border-collapse: collapse;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1.5rem;
        text-align: center;
        border-bottom: 1px solid #eee;
        color: var(--dark);
    }
    
    .comparison-table th {
        background: var(--primary-light);
        font-weight: 600;
        color: var(--dark);
    }
    
    .comparison-table tr:hover {
        background: #f9f9f9;
    }
    
    .section[style*="background-color: var(--dark)"] {
        color: white;
    }
    
    .section[style*="background-color: var(--dark)"] .comparison-table {
        background: white;
        color: var(--dark);
    }
    
    .section[style*="background-color: var(--dark)"] .comparison-table th,
    .section[style*="background-color: var(--dark)"] .comparison-table td {
        color: var(--dark);
    }
    
    .section[style*="background-color: var(--dark)"] .comparison-table th {
        background: var(--primary);
        color: white;
    }
    
   /* Support Features */
.support-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.support-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--radius);
    transition: all 0.3s ease;
    color: var(--dark);
    box-shadow: var(--shadow);
    border: 1px solid #E4E6EF;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .support-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .support-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .support-item {
        padding: 1.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .support-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Остальные стили остаются без изменений */
.support-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.support-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.support-icon i {
    color: var(--primary) !important;
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.support-item:hover .support-icon {
    background: var(--primary) !important;
    transform: scale(1.1);
}

.support-item:hover .support-icon i {
    color: white !important;
    transform: scale(1.1);
}

.support-item h3 {
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.support-item p {
    color: var(--gray);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}
    
    /* Integration Section */
    .integration {
        background-color: var(--white);
        border-radius: var(--radius);
        padding: 3rem;
        box-shadow: var(--shadow);
    }
    
    .integration-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .integration-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        transition: transform 0.3s;
    }
    
    .integration-item:hover {
        transform: translateY(-5px);
    }
    
    .integration-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background-color: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .integration-icon i {
        font-size: 2rem;
        color: var(--primary);
    }
    
    /* Calculator Section */
    .calculator {
        background-color: var(--white);
        border-radius: var(--radius);
        padding: 3rem;
        box-shadow: var(--shadow);
        max-width: 800px;
        margin: 0 auto;
        position: relative;
        overflow: hidden;
    }
    
    .calculator::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: var(--primary-light);
        z-index: 0;
    }
    
    .calculator::after {
        content: '';
        position: absolute;
        bottom: -30px;
        left: -30px;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--primary-light);
        z-index: 0;
    }
    
    .calculator-content {
        position: relative;
        z-index: 1;
    }
    
    .calculator h3 {
        font-size: 1.75rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .calculator p {
        text-align: center;
        color: var(--gray);
        margin-bottom: 2rem;
    }
    
    .input-group {
        margin-bottom: 1.5rem;
    }
    
    .input-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }
    
    .input-group input {
        width: 100%;
        padding: 1rem;
        border: 1px solid #E4E6EF;
        border-radius: var(--radius);
        font-size: 1rem;
        transition: border-color 0.3s;
    }
    
    .input-group input:focus {
        border-color: var(--primary);
        outline: none;
    }
    
    .result {
        text-align: center;
        margin-top: 2rem;
        padding: 1.5rem;
        background-color: var(--primary-light);
        border-radius: var(--radius);
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% { transform: scale(1); }
        50% { transform: scale(1.02); }
        100% { transform: scale(1); }
    }
    
    .result span {
        font-size: 1.125rem;
    }
    
    .result strong {
        font-size: 2rem;
        color: var(--primary);
    }
    
    /* FAQ Section */
    .faq-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin: 0 auto;
    }
    
    .faq-item {
        margin-bottom: 1rem;
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: transform 0.3s;
    }
    
    .faq-item:hover {
        transform: translateY(-5px);
    }
    
    .faq-question {
        background-color: var(--white);
        padding: 1.5rem;
        font-weight: 600;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        transition: background-color 0.3s;
    }
    
    .faq-question:hover {
        background-color: var(--primary-light);
    }
    
    .faq-answer {
        background-color: var(--white);
        padding: 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s, padding 0.3s;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem;
        max-height: 500px;
    }
    
    .faq-item.active .faq-question i {
        transform: rotate(180deg);
    }
    
    /* CTA Section */
    .cta {
        background: linear-gradient(135deg, var(--primary) 0%, #5d2bc7 100%);
        color: var(--white);
        padding: 80px 0;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .cta::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .cta::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -150px;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .cta-content {
        position: relative;
        z-index: 1;
    }
    
    .cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    
    .cta p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Blog Carousel */
    .blog-carousel-section {
        padding: 80px 0;
        background: var(--primary-light);
        position: relative;
    }
    
    .blog-carousel-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(114, 57, 234, 0.1) 50%, transparent 100%);
    }
    
    .blog-carousel-section .section-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
    }
    
    .blog-carousel-section .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--dark);
    }
    
    .blog-carousel-section .section-header p {
        font-size: 1.1rem;
        color: var(--gray);
        max-width: 600px;
        margin: 0 auto 2rem;
    }
    
    .blog-carousel-container {
        overflow: hidden;
        position: relative;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .blog-carousel-track {
        display: flex;
        transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 2rem;
        padding: 10px 5px 30px;
        will-change: transform;
        align-items: stretch;
    }
    
    .blog-carousel-card {
        width: 380px;
        flex-shrink: 0;
        background: white;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        display: flex;
        flex-direction: column;
        height: auto;
        animation: slideInUp 0.6s ease-out;
    }
    
    .blog-carousel-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(135deg, var(--primary) 0%, #8a63d2 100%);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .blog-carousel-card::after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 5%;
        right: 5%;
        height: 20px;
        background: radial-gradient(ellipse at center, rgba(0,0,0,0.1) 0%, transparent 70%);
        filter: blur(5px);
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
    }
    
    .blog-carousel-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(114, 57, 234, 0.15);
    }
    
    .blog-carousel-card:hover::before {
        transform: scaleX(1);
    }
    
    .blog-carousel-card:hover::after {
        opacity: 1;
    }
    
    .blog-image-container {
        position: relative;
        overflow: hidden;
        height: 220px;
    }
    
    .blog-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
        display: block;
    }
    
    .blog-carousel-card:hover .blog-image {
        transform: scale(1.05);
    }
    
    .blog-image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(114, 57, 234, 0.1) 0%, transparent 100%);
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .blog-carousel-card:hover .blog-image-overlay {
        opacity: 1;
    }
    
    .blog-content {
        padding: 1.75rem;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        position: relative;
    }
    
    .blog-meta {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .blog-category {
        display: inline-block;
        background: linear-gradient(135deg, var(--primary) 0%, #8a63d2 100%);
        color: white;
        padding: 0.4rem 1rem;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
    }
    
    .blog-date {
        font-size: 0.8rem;
        color: var(--gray);
        font-weight: 500;
    }
    
    .blog-title {
        margin-bottom: 1rem;
        flex-grow: 0;
    }
    
    .blog-title-link {
        text-decoration: none !important;
        color: var(--dark);
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.4;
        transition: color 0.3s ease;
        display: block;
    }
    
    .blog-title-link:hover {
        color: var(--primary);
        text-decoration: none !important;
    }
    
    .blog-excerpt {
        color: var(--gray);
        margin: 0 0 1.5rem 0;
        line-height: 1.6;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex-grow: 1;
        font-size: 0.95rem;
    }
    
    .read-more-container {
        margin-top: auto;
        padding-top: 1rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .read-more {
        color: var(--primary);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
        font-size: 0.95rem;
        position: relative;
    }
    
    .read-more::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: width 0.3s ease;
    }
    
    .read-more:hover {
        color: var(--dark);
        gap: 0.7rem;
    }
    
    .read-more:hover::after {
        width: 100%;
    }
    
    .read-more i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }
    
    .read-more:hover i {
        transform: translateX(3px);
    }
    
    /* Carousel Controls */
    .carousel-controls {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        display: flex;
        gap: 0.75rem;
        z-index: 10;
    }
    
    .carousel-btn {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: white;
        border: 2px solid var(--primary);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .carousel-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary);
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.3s ease;
        z-index: 1;
    }
    
    .carousel-btn i {
        position: relative;
        z-index: 2;
        transition: color 0.3s ease;
    }
    
    .carousel-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 30px rgba(114, 57, 234, 0.25);
    }
    
    .carousel-btn:hover::before {
        transform: scale(1);
    }
    
    .carousel-btn:hover i {
        color: white;
    }
    
    .carousel-btn:disabled {
        opacity: 0.4;
        cursor: not-allowed;
        transform: none;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .carousel-btn:disabled:hover::before {
        transform: scale(0);
    }
    
    .carousel-btn:disabled:hover i {
        color: var(--primary);
    }
    
    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 3rem;
        padding: 0 20px;
    }
    
    .carousel-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(114, 57, 234, 0.2);
        border: 2px solid transparent;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
    }
    
    .carousel-dot::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 6px;
        height: 6px;
        background: var(--primary);
        border-radius: 50%;
        transform: translate(-50%, -50%) scale(0);
        transition: transform 0.3s ease;
    }
    
    .carousel-dot.active {
        background: transparent;
        border-color: var(--primary);
        transform: scale(1.1);
    }
    
    .carousel-dot.active::before {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .carousel-dot:hover:not(.active) {
        background: rgba(114, 57, 234, 0.4);
        transform: scale(1.1);
    }
    
    /* Footer */
    footer {
        background-color: var(--dark);
        color: var(--white);
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .footer-column h4 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .footer-column h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background-color: var(--primary);
    }
    
    .footer-column ul {
        list-style: none;
    }
    
    .footer-column ul li {
        margin-bottom: 0.75rem;
    }
    
    .footer-column ul li a {
        color: #B5B5C3;
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-column ul li a:hover {
        color: var(--white);
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #2D2D3D;
        color: #B5B5C3;
    }
    
    /* Additional Sections */
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .testimonial-card {
        background: white;
        padding: 2rem;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        transition: transform 0.3s;
    }
    
    .testimonial-card:hover {
        transform: translateY(-5px);
    }
    
    .stars {
        color: #FFD700;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .client-info {
        margin-top: 1.5rem;
        padding-top: 1rem;
        border-top: 1px solid #eee;
    }
    
    .security-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .security-item {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: var(--radius);
        transition: transform 0.3s;
    }
    
    .security-item:hover {
        transform: translateY(-5px);
    }
    
    .security-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
    }
    
    .security-icon i {
        font-size: 2rem;
        color: var(--primary);
    }
    
    .partners-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .partner-logo {
        text-align: center;
        padding: 2rem;
        background: white;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
    }
    
    .partner-logo img {
        height: 60px;
        margin-bottom: 1rem;
    }
    
    /* Special Offer */
    .special-offer-alternative {
        margin-top: 2rem;
        padding: 2.5rem;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        border-radius: var(--radius);
        color: white;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .special-offer-alternative::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -50%;
        width: 200%;
        height: 200%;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        animation: float 6s ease-in-out infinite;
    }
    
    .special-offer-alternative.show {
        display: block !important;
        animation: slideInOffer 0.8s ease-out;
    }
    
    .offer-header {
        text-align: center;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }
    
    .fireworks {
        font-size: 3rem;
        margin-bottom: 1rem;
        animation: bounce 2s infinite;
        display: block;
    }
    
    .offer-header h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
        color: white;
    }
    
    .offer-header p {
        color: rgba(255, 255, 255, 0.9);
        font-size: 1.1rem;
    }
    
    .offer-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        position: relative;
        z-index: 2;
    }
    
    .offer-card {
        background: rgba(255, 255, 255, 0.95);
        border-radius: var(--radius);
        padding: 1.5rem;
        position: relative;
        color: var(--dark);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .offer-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }
    
    .card-badge {
        position: absolute;
        top: -10px;
        right: 20px;
        background: linear-gradient(135deg, #50CD89, #2ecc71);
        color: white;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-weight: 600;
        font-size: 0.8rem;
        box-shadow: 0 5px 15px rgba(80, 205, 137, 0.3);
    }
    
    .card-content h5 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: var(--dark);
    }
    
    .card-content p {
        color: var(--gray);
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .price-comparison {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .old-price {
        font-size: 1.1rem;
        color: var(--gray);
        text-decoration: line-through;
        position: relative;
    }
    
    .old-price::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 2px;
        background: #FF6B6B;
        transform: rotate(-5deg);
    }
    
    .new-price {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--secondary);
    }
    
    .card-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .card-content li {
        padding: 0.3rem 0;
        font-size: 0.9rem;
        color: var(--gray);
    }
    
    .offer-summary {
        text-align: center;
        position: relative;
        z-index: 2;
        background: rgba(255, 255, 255, 0.1);
        padding: 1.5rem;
        border-radius: var(--radius);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .savings {
        margin-bottom: 1.5rem;
    }
    
    .savings span {
        display: block;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 0.5rem;
    }
    
    .savings strong {
        font-size: 2rem;
        color: #50CD89;
        font-weight: 700;
    }
    
    .guarantee {
        margin-top: 1rem;
        color: rgba(255, 255, 255, 0.9);
        font-size: 0.9rem;
    }
    
    /* Telegram Widget - Фиолетовая версия */
.telegram-widget-float {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1000;
}

.telegram-float {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    box-shadow: 
        0 10px 30px rgba(114, 57, 234, 0.4),
        0 6px 10px rgba(0, 0, 0, 0.3);
    text-decoration: none;
    position: relative;
    animation: float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.telegram-float:hover {
    transform: scale(1.1);
    animation: none;
    box-shadow: 
        0 15px 40px rgba(114, 57, 234, 0.6),
        0 8px 15px rgba(0, 0, 0, 0.4);
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.telegram-content {
    width: 32px;
    height: 32px;
    color: white;
    z-index: 2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-svg {
    width: 100%;
    height: 100%;
    filter: 
        drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3))
        brightness(1.1);
}

/* Альтернатива с иконкой вместо SVG */
.telegram-icon {
    font-size: 1.8rem;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.pulse-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
}

.pulse-ring.delay {
    animation-delay: 1s;
}

/* Анимация пульсации для фиолетового */
@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 0.8;
        border-color: var(--primary);
    }
    50% {
        transform: scale(1.1);
        opacity: 0.4;
        border-color: var(--accent);
    }
    100% {
        transform: scale(0.8);
        opacity: 0;
        border-color: var(--primary);
    }
}

/* Плавающая анимация */
@keyframes float {
    0% {
        transform: translateY(0px);
        box-shadow: 
            0 10px 30px rgba(114, 57, 234, 0.4),
            0 6px 10px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: translateY(-10px);
        box-shadow: 
            0 15px 35px rgba(114, 57, 234, 0.5),
            0 8px 15px rgba(0, 0, 0, 0.4);
    }
    100% {
        transform: translateY(0px);
        box-shadow: 
            0 10px 30px rgba(114, 57, 234, 0.4),
            0 6px 10px rgba(0, 0, 0, 0.3);
    }
}

/* Уведомление о новых сообщениях */
.telegram-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--secondary), #FF4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    animation: pulse-notification 2s infinite;
    border: 2px solid white;
}

@keyframes pulse-notification {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Адаптивность */
@media (max-width: 768px) {
    .telegram-widget-float {
        right: 20px;
        bottom: 20px;
    }
    
    .telegram-float {
        width: 60px;
        height: 60px;
    }
    
    .telegram-content {
        width: 28px;
        height: 28px;
    }
    
    .telegram-icon {
        font-size: 1.5rem;
    }
}

/* Темная тема */
@media (prefers-color-scheme: dark) {
    .telegram-float {
        box-shadow: 
            0 10px 30px rgba(114, 57, 234, 0.6),
            0 6px 10px rgba(0, 0, 0, 0.5);
    }
    
    .telegram-float:hover {
        box-shadow: 
            0 15px 40px rgba(114, 57, 234, 0.8),
            0 8px 15px rgba(0, 0, 0, 0.6);
    }
}
    
    /* Blog Post Styles */
    .blog-post-hero {
        padding: 50px 0 50px;
        background: linear-gradient(135deg, var(--primary-light) 0%, #f0e8ff 100%);
        position: relative;
        overflow: hidden;
    }
    
    .blog-post-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 400px;
        height: 400px;
        border-radius: 50%;
        background: linear-gradient(135deg, rgba(114, 57, 234, 0.1) 0%, rgba(114, 57, 234, 0.05) 100%);
        z-index: 0;
    }
    
    .blog-post-content {
        position: relative;
        z-index: 1;
        max-width: 800px;
        margin: 10px 0 0 0;
        text-align: center;
        border-radius: var(--radius);
    }
    
    .post-meta {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        margin-bottom: 2rem;
        flex-wrap: wrap;
    }
    
    .post-category {
        background: linear-gradient(135deg, var(--primary) 0%, #8a63d2 100%);
        color: white;
        padding: 0.5rem 1.5rem;
        border-radius: 25px;
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .post-date {
        color: var(--gray);
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
    
    .post-date i {
        color: var(--primary);
    }
    
    .post-title {
        font-size: 3rem;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }
    
    .post-excerpt {
        font-size: 1.25rem;
        color: var(--gray);
        line-height: 1.6;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .post-content-section {
        padding: 80px 0;
        background: var(--white);
    }
    
    .post-content-wrapper {
        max-width: 100%;
    }
    
    .post-featured-image {
        width: 100%;
        border-radius: var(--radius);
        margin-bottom: 3rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
    
    .post-content {
        font-size: 1.125rem;
        line-height: 1.8;
        color: var(--dark);
    }
    
    .post-content h2 {
        font-size: 2rem;
        font-weight: 700;
        margin: 3rem 0 1.5rem;
        color: var(--dark);
        position: relative;
        padding-left: 1rem;
        scroll-margin-top: 100px;
    }
    
    .post-content h2::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0.5rem;
        bottom: 0.5rem;
        width: 4px;
        background: var(--primary);
        border-radius: 2px;
    }
    
    .post-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin: 2.5rem 0 1rem;
        color: var(--dark);
        scroll-margin-top: 100px;
    }
    
    .post-content p {
        margin-bottom: 1.5rem;
    }
    
    .post-content ul, .post-content ol {
        margin: 1.5rem 0;
        padding-left: 2rem;
    }
    
    .post-content li {
        margin-bottom: 0.5rem;
    }
    
    .post-content blockquote {
        border-left: 4px solid var(--primary);
        padding: 1.5rem 2rem;
        margin: 2rem 0;
        background: var(--primary-light);
        border-radius: 0 var(--radius) var(--radius) 0;
        font-style: italic;
        position: relative;
    }
    
    .post-content blockquote::before {
        content: '"';
        font-size: 4rem;
        color: var(--primary);
        opacity: 0.2;
        position: absolute;
        top: -1rem;
        left: 1rem;
        font-family: serif;
    }
    
    .post-content img {
        max-width: 100%;
        height: auto;
        border-radius: var(--radius);
        margin: 2rem 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .post-content pre {
        background: #1a1a1a;
        color: #e0e0e0;
        padding: 1.5rem;
        border-radius: var(--radius);
        overflow-x: auto;
        margin: 2rem 0;
        border: 1px solid #333;
    }
    
    .post-content code {
        background: var(--light);
        padding: 0.2rem 0.5rem;
        border-radius: 4px;
        font-family: 'Courier New', monospace;
        font-size: 0.9em;
        color: var(--dark);
    }
    
    .post-content pre code {
        background: none;
        color: inherit;
        padding: 0;
    }
    
    .expert-quote {
        background: linear-gradient(135deg, var(--primary-light) 0%, #f0e8ff 100%);
        border-radius: var(--radius);
        padding: 2rem;
        margin: 2rem 0;
        border-left: 4px solid var(--primary);
        position: relative;
    }
    
    .expert-quote::before {
        content: '"';
        font-size: 4rem;
        color: var(--primary);
        opacity: 0.2;
        position: absolute;
        top: 0.5rem;
        left: 1rem;
        font-family: serif;
        line-height: 1;
    }
    
    .expert-content {
        position: relative;
        z-index: 2;
    }
    
    .expert-content p {
        font-size: 1.1rem;
        font-style: italic;
        color: var(--dark);
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .expert-author {
        text-align: right;
    }
    
    .expert-author strong {
        color: var(--primary);
        display: block;
        font-size: 0.95rem;
    }
    
    .expert-author span {
        color: var(--gray);
        font-size: 0.85rem;
    }
    
    /* Post Layout */
    .post-layout {
        display: grid;
        grid-template-columns: 1fr 300px;
        gap: 3rem;
        align-items: start;
    }
    
    .post-sidebar {
        position: sticky;
        top: 90px;
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Table of Contents */
    .table-of-contents {
        background: var(--white);
        border-radius: var(--radius);
        padding: 1.5rem;
        box-shadow: var(--shadow);
        max-height: 600px;
        overflow-y: auto;
        position: relative;
        flex: 1;
        min-height: 200px;
        font-family: 'Inter', sans-serif;
        unicode-bidi: plaintext;
    }
    
    .table-of-contents::-webkit-scrollbar {
        width: 6px;
    }
    
    .table-of-contents::-webkit-scrollbar-track {
        background: var(--primary-light);
        border-radius: 3px;
    }
    
    .table-of-contents::-webkit-scrollbar-thumb {
        background: var(--primary);
        border-radius: 3px;
    }
    
    .table-of-contents::-webkit-scrollbar-thumb:hover {
        background: #5d2bc7;
    }
    
    .table-of-contents::after {
        content: '';
        position: sticky;
        bottom: 0;
        left: 0;
        right: 0;
        height: 20px;
        background: linear-gradient(transparent, var(--white));
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .table-of-contents.scrollable::after {
        opacity: 1;
    }
    
    .toc-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        position: sticky;
        top: 0;
        background: var(--white);
        padding: 0.5rem 0;
        z-index: 2;
    }
    
    .toc-title i {
        color: var(--primary);
    }
    
    .toc-list {
        list-style: none;
    }
    
    .toc-item {
        margin-bottom: 0.5rem;
    }
    
    .toc-link {
        color: var(--gray);
        text-decoration: none;
        font-size: 0.9rem;
        transition: all 0.3s ease;
        display: block;
        padding: 0.5rem 0;
        border-left: 2px solid transparent;
        padding-left: 1rem;
        font-family: 'Inter', sans-serif;
        unicode-bidi: plaintext;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    .toc-link.h2 {
        font-weight: 600;
        color: var(--dark);
        font-size: 0.95rem;
    }
    
    .toc-link.h3 {
        font-weight: 400;
        padding-left: 2rem;
        font-size: 0.85rem;
        color: var(--gray);
    }
    
    .toc-link:hover,
    .toc-link.active {
        color: var(--primary);
        border-left-color: var(--primary);
        background: var(--primary-light);
        margin-left: -1rem;
        padding-left: 1.5rem;
    }
    
    /* Post Navigation */
    .post-navigation {
        padding: 3rem 0;
        background: var(--primary-light);
        border-top: 1px solid rgba(114, 57, 234, 0.1);
    }
    
    .nav-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1000px;
        margin: 0 auto;
        align-items: stretch;
    }
    
    .nav-previous, .nav-next {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.5rem;
        background: var(--white);
        border-radius: var(--radius);
        text-decoration: none;
        color: var(--dark);
        transition: all 0.3s ease;
        box-shadow: var(--shadow);
    }
    
    .nav-next {
        text-align: right;
        flex-direction: row-reverse;
        grid-column: 2;
    }
    
    .nav-previous:hover, .nav-next:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        color: var(--primary);
    }
    
    .nav-label {
        font-size: 0.9rem;
        color: var(--gray);
        margin-bottom: 0.5rem;
        display: block;
    }
    
    .nav-title {
        font-weight: 600;
        line-height: 1.4;
    }
    
    .nav-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--primary-light);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary);
        flex-shrink: 0;
    }
    
    /* Author in Navigation */
    .author-card-nav {
        background: var(--white);
        border-radius: var(--radius);
        padding: 2rem;
        text-decoration: none;
        color: inherit;
        transition: all 0.3s ease;
        box-shadow: var(--shadow);
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .author-card-nav:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .author-content {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }
    
    .author-avatar-nav {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid var(--primary-light);
        flex-shrink: 0;
    }
    
    .author-info {
        flex: 1;
    }
    
    .author-info .author-name {
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 0.5rem;
    }
    
    .author-info .author-position {
        color: var(--primary);
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 0.95rem;
    }
    
    .author-info .author-bio {
        color: var(--gray);
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Related Posts */
    .related-posts {
        padding: 80px 0;
        background: var(--white);
    }
    
    .related-posts-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .related-post-card {
        background: var(--white);
        border-radius: var(--radius);
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
        text-decoration: none;
        color: inherit;
    }
    
    .related-post-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        color: inherit;
        text-decoration: none;
    }
    
    .related-post-image {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .related-post-content {
        padding: 1.5rem;
    }
    
    .related-post-category {
        background: var(--primary);
        color: white;
        padding: 0.3rem 0.8rem;
        border-radius: 15px;
        font-size: 0.8rem;
        font-weight: 500;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    .related-post-title {
        font-size: 1.2rem;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 0.5rem;
        color: var(--dark);
    }
    
    .related-post-excerpt {
        color: var(--gray);
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Animations */
    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes bounce {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }
    
    @keyframes slideInOffer {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes pulse-glow {
        0% {
            box-shadow: 0 0 0 0 rgba(114, 57, 234, 0.7);
        }
        70% {
            box-shadow: 0 0 0 15px rgba(114, 57, 234, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(114, 57, 234, 0);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 1200px) {
        .blog-carousel-card {
            width: 340px;
            min-height: 460px;
        }
        
        .blog-carousel-container {
            padding: 0 15px;
        }
    }
    
    @media (max-width: 992px) {
        .blog-carousel-section {
            padding: 60px 0;
        }
        
        .blog-carousel-card {
            width: 320px;
            min-height: 440px;
        }
        
        .blog-content {
            padding: 1.5rem;
        }
        
        .blog-image-container {
            height: 200px;
        }
    }
    
    @media (max-width: 968px) {
        .post-layout {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .post-sidebar {
            position: static;
            order: 2;
            flex-direction: row;
            flex-wrap: wrap;
        }
        
        .table-of-contents {
            flex: 2;
            min-width: 300px;
            max-height: 300px;
        }
        
        .offer-cards {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 768px) {
        .post-title {
            font-size: 2.5rem;
        }
        
        .post-meta {
            gap: 1rem;
        }
        
        .nav-links {
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }
        
        .nav-next {
            grid-column: 1;
        }
        
        .related-posts-grid {
            grid-template-columns: 1fr;
        }
        
        .blog-post-hero {
            padding: 140px 0 60px;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .blog-carousel-section .section-header h2 {
            font-size: 2rem;
        }
        
        .blog-carousel-card {
            width: 300px;
            min-height: 420px;
        }
        
        .carousel-controls {
            position: static;
            transform: none;
            justify-content: center;
            margin: 2rem 0 1rem;
            gap: 1rem;
        }
        
        .carousel-btn {
            width: 50px;
            height: 50px;
        }
        
        .blog-carousel-track {
            gap: 1.5rem;
            padding: 5px 5px 25px;
        }
        
        .blog-content {
            padding: 1.25rem;
        }
        
        .blog-title-link {
            font-size: 1.15rem;
        }
        
        .blog-excerpt {
            font-size: 0.9rem;
            -webkit-line-clamp: 2;
        }
        
        .faq-container {
            grid-template-columns: 1fr;
        }
        
        .post-sidebar {
            flex-direction: column;
        }
        
        .table-of-contents {
            flex: none;
            width: 100%;
            max-height: 250px;
        }
        
        .author-content {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }
        
        .author-avatar-nav {
            width: 70px;
            height: 70px;
        }
        
        .telegram-widget-float {
            right: 20px;
            bottom: 20px;
        }
        
        .telegram-float {
            width: 60px;
            height: 60px;
        }
        
        .telegram-content {
            width: 28px;
            height: 28px;
        }
    }
    
    @media (max-width: 576px) {
        .post-title {
            font-size: 2rem;
        }
        
        .post-excerpt {
            font-size: 1.1rem;
        }
        
        .post-content {
            font-size: 1rem;
        }
        
        .post-content h2 {
            font-size: 1.75rem;
        }
        
        .blog-carousel-section {
            padding: 50px 0;
        }
        
        .blog-carousel-card {
            width: 280px;
            min-height: 400px;
        }
        
        .blog-carousel-container {
            padding: 0 10px;
        }
        
        .blog-carousel-track {
            gap: 1rem;
        }
        
        .blog-image-container {
            height: 180px;
        }
        
        .blog-meta {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.25rem;
        }
        
        .carousel-dots {
            margin-top: 2rem;
            gap: 0.5rem;
        }
        
        .carousel-dot {
            width: 12px;
            height: 12px;
        }
    }
    
    @media (max-width: 480px) {
        .author-card-nav {
            padding: 1.5rem;
        }
        
        .author-info .author-name {
            font-size: 1.1rem;
        }
        
        .author-info .author-bio {
            font-size: 0.85rem;
        }
        
        .table-of-contents {
            padding: 1.25rem;
            max-height: 200px;
        }
        
        .blog-carousel-card {
            width: 260px;
            min-height: 380px;
        }
        
        .blog-content {
            padding: 1rem;
        }
        
        .blog-title-link {
            font-size: 1.1rem;
        }
    }
    
    @media (max-width: 400px) {
        .blog-carousel-card {
            width: 260px;
            min-height: 380px;
        }
        
        .blog-content {
            padding: 1rem;
        }
        
        .blog-title-link {
            font-size: 1.1rem;
        }
    }
    
    blockquote footer {
    	color: rgb(30, 30, 45);
		background: var(--primary-light);
		padding: 0;
		font-weight: 600;
	}
	
	article footer {
    	color: rgb(30, 30, 45);
		background: var(--primary-light);
		padding: 0;
		font-weight: 600;
	}
/* Blog Page Styles - Isolated with .blog-page class */
.blog-page .blog-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.blog-page .blog-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.blog-page .blog-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Blog Posts Grid */
.blog-page .blog-posts-section {
    padding: 80px 0;
}

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

.blog-page .blog-post-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-page .blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-page .post-card-image {
    height: 200px;
    overflow: hidden;
}

.blog-page .post-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-page .blog-post-card:hover .post-card-image img {
    transform: scale(1.05);
}

.blog-page .post-card-content {
    padding: 1.5rem;
}

.blog-page .post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-page .post-category {
    background: #e9ecef;
    color: #495057;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-weight: 500;
}

.blog-page .post-date {
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-page .post-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-page .post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-page .post-title a:hover {
    color: #3498db;
}

.blog-page .post-excerpt {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-page .read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.blog-page .read-more:hover {
    gap: 0.75rem;
}

/* Pagination */
.blog-page .blog-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #e9ecef;
}

.blog-page .pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #f8f9fa;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-page .pagination-btn:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
}

.blog-page .pagination-info {
    color: #6c757d;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-page .blog-hero {
        padding: 60px 0;
    }
    
    .blog-page .blog-title {
        font-size: 2rem;
    }
    
    .blog-page .blog-posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .blog-page .blog-pagination {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .blog-page .post-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Load More Button Styles */
.blog-page .load-more-container {
    text-align: center;
    padding: 3rem 0;
}

.blog-page .load-more-btn {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-page .load-more-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.blog-page .load-more-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.blog-page .loading-spinner {
    color: white;
}

/* Анимация появления новых постов */
.blog-post-card {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Responsive */
@media (max-width: 768px) {
    .blog-page .load-more-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }
}




/* Герой секция с новым градиентом */
.hero {
    background: linear-gradient(135deg, var(--primary-light) 0%, #DFF5E6 100%);
}

.hero::before {
    background: linear-gradient(135deg, rgba(39, 174, 96, 0.1) 0%, rgba(39, 174, 96, 0.05) 100%);
}

/* Кнопки */
.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(39, 174, 96, 0.3);
}

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

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

/* Акцентные элементы с оранжевым */
.result-value {
    color: var(--secondary);
    font-weight: 700;
}

.stat-number {
    color: var(--white);
}

/* Карточки с современными эффектами */
.feature-card {
    background: var(--white);
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.15);
}

.feature-card::before {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

/* Иконки с градиентом */
.feature-icon {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
}

.feature-icon i {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Секция статистики */
.stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.stats::before,
.stats::after {
    background: rgba(255, 255, 255, 0.15);
}

/* CTA секция */
.cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
}

/* Блог карточки */
.blog-carousel-card::before {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

.blog-category {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
}

/* Специальное предложение */
.special-offer-alternative {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    box-shadow: 0 20px 40px rgba(39, 174, 96, 0.25);
}

.card-badge {
    background: linear-gradient(135deg, var(--secondary), #FF9F43);
    box-shadow: 0 5px 15px rgba(255, 123, 37, 0.3);
}

/* Навигация */
nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active::after {
    background-color: var(--primary);
}

/* Подсветка текста */
.hero h1 span::after,
.section-title h2 span::after {
    background-color: rgba(39, 174, 96, 0.2);
}

/* Формы и инпуты */
.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

/* Футер */
.footer-column h4::after {
    background-color: var(--primary);
}

/* Анимации */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
    }
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s;
}

header.scrolled {
    padding: 0.5rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    transition: all 0.3s;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

/* Desktop Navigation */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
    position: relative;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

/* Desktop Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s ease;
    z-index: 1000;
    border: 1px solid #e4e6ef;
}

.dropdown-menu.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    min-width: 550px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(10px);
}

.dropdown-menu.two-columns a {
    display: block;
    padding: 1rem;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid transparent;
}

.dropdown-menu.two-columns a:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 57, 234, 0.1);
}

.menu-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.menu-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.menu-item div {
    flex: 1;
}

.menu-item strong {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.menu-item span {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.3;
}

/* Auth Buttons */
.auth-buttons {
    display: flex;
    align-items: center;
}

.mobile-auth-buttons {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-overlay.active {
    display: block;
    opacity: 1;
}

/* ===== MOBILE STYLES ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .auth-buttons {
        display: none;
    }
    
    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 2rem;
        border-top: 1px solid #f0f0f0;
    }
    
    .mobile-auth-buttons .btn {
        text-align: center;
        justify-content: center;
    }
    
    /* Mobile Navigation */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--white);
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 1000;
        padding: 80px 20px 20px;
        overflow-y: auto;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    nav ul li {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }
    
    nav ul li a.active {
        color: var(--primary);
        background: var(--primary-light);
    }
    
    nav ul li a.active::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        display: none;
        min-width: auto;
        border: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    
    .dropdown-menu.two-columns {
        grid-template-columns: 1fr;
        min-width: auto;
        padding-left: 1rem;
        gap: 0;
        background: rgba(0, 0, 0, 0.02);
        border-radius: 8px;
        margin: 0.5rem 0;
        border-left: 3px solid var(--primary);
    }
    
    .dropdown.active .dropdown-menu {
        display: grid !important;
        max-height: 500px;
        opacity: 1;
    }
    
    .dropdown-toggle {
        justify-content: space-between;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    .dropdown.active .dropdown-toggle {
        color: var(--primary);
        background: var(--primary-light);
    }
    
    .dropdown-toggle i {
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }
    
    .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .dropdown-menu.two-columns a {
        padding: 0.75rem;
        border-radius: 6px;
        border: 1px solid transparent;
        margin-bottom: 0.25rem;
    }
    
    .dropdown-menu.two-columns a:hover {
        background: rgba(114, 57, 234, 0.1);
        border-color: rgba(114, 57, 234, 0.2);
        transform: translateX(5px);
    }
    
    .menu-item {
        gap: 0.75rem;
    }
    
    .menu-item i {
        font-size: 1.1rem;
    }
    
    /* Header adjustments */
    .header-container {
        padding: 0.75rem 0;
    }
    
    header.scrolled .header-container {
        padding: 0.5rem 0;
    }
    
    .logo img {
        height: 35px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    nav {
        width: 85%;
    }
    
    .dropdown-menu.two-columns {
        padding-left: 0.5rem;
    }
    
    .menu-item {
        gap: 0.5rem;
    }
    
    .menu-item i {
        font-size: 1rem;
    }
    
    .menu-item strong {
        font-size: 0.9rem;
    }
    
    .menu-item span {
        font-size: 0.75rem;
    }
}

/* Tablet devices */
@media (min-width: 769px) and (max-width: 1024px) {
    nav ul li {
        margin-left: 1.5rem;
    }
    
    .dropdown-menu.two-columns {
        min-width: 450px;
    }
}

/* Ensure body doesn't scroll when menu is open on mobile */
body.menu-open {
    overflow: hidden;
}