/* Font Faces */
@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/fonts/roboto-v50-cyrillic_latin-regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/fonts/roboto-v50-cyrillic_latin-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/fonts/roboto-v50-cyrillic_latin-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/fonts/roboto-v50-cyrillic_latin-700.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/fonts/roboto-v50-cyrillic_latin-800.woff2') format('woff2');
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark: #1a1a2e;
    --dark-light: #2d2d44;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b8;
    --background: #0f0f1e;
    --card-bg: rgba(45, 45, 68, 0.6);
    --border-color: rgba(255, 255, 255, 0.1);
}

body {
    font-family: "Roboto", sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 30, 0.95);
    border-bottom: 1px solid var(--border-color);
}

.nav {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 36px;
    line-height: 36px;
    font-weight: 600;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;

    & a {
        text-decoration: none !important;
    }
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Buttons */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 1rem;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-primary);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(102, 126, 234, 0.5);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    border-color: transparent;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-white {
    background: white;
    color: #667eea;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Hero Section */
.hero {
    padding: 150px 0 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: start;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.center-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary-gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: glow 4s ease-in-out infinite;
}

@keyframes glow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Telegram Window */
.tg-window {
    width: 100%;
    max-width: 360px;
    height: 500px;
    background: #0e1621;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.tg-window-header {
    background: #17212b;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tg-window-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
}

.tg-window-info {
    flex: 1;
}

.tg-window-name {
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
}

.tg-window-status {
    color: #6c7883;
    font-size: 0.75rem;
}

.tg-window-chat {
    flex: 1;
    background: #0e1621;
    overflow: hidden;
    position: relative;
}

.tg-messages-container {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.tg-message {
    background: #182533;
    border-radius: 12px 12px 12px 4px;
    padding: 0.6rem 0.75rem;
    max-width: 95%;
    opacity: 0;
    transition: opacity 0.2s ease;
    will-change: opacity;
}

.tg-message.visible {
    opacity: 1;
}

.tg-message-content {
    font-size: 0.8rem;
    line-height: 1.4;
    color: #fff;
}

.tg-message-label {
    margin-bottom: 0.4rem;
    color: #fff;
    font-size: 0.8rem;
}

.tg-quote {
    border-left: 2px solid #5eb5f7;
    padding-left: 0.6rem;
    margin-left: 0.1rem;
}

.tg-quote-channel {
    color: #5eb5f7;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.15rem;
}

.tg-quote-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    line-height: 1.4;
}

.tg-message-time {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.4);
    text-align: right;
    margin-top: 0.25rem;
}

.tg-checks {
    display: inline-flex;
    color: #5eb5f7;
}

.tg-check:last-child {
    margin-left: -3px;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(102, 126, 234, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
}

.steps {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    align-items: center;
    gap: 1rem;
}

.step {
    grid-column: span 1;
    text-align: center;
}

.step:nth-child(2n) {
    grid-column: span 2;
}

.step-connector {
    grid-column: span 1;
    height: 2px;
    background: var(--primary-gradient);
    position: relative;
}

.step-connector::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #764ba2;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Support Block */
.support-block {
    margin-top: 4rem;
    background: black;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.support-text {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Pricing Section */
.pricing {
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.05) 0%, transparent 100%);
}

.pricing-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-stat {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    flex: 1;
    max-width: 240px;
    transition: all 0.3s;
}

.pricing-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
}

.pricing-stat-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    border-color: rgba(102, 126, 234, 0.4);
}

.pricing-stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-stat-highlight .pricing-stat-value {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-examples {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.pricing-examples-title {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.pricing-examples-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pricing-example {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    text-align: left;
    transition: border-color 0.3s;
}

.pricing-example:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.pricing-example strong {
    color: #667eea;
}

.pricing-cta {
    text-align: center;
}

/* Pricing Section Responsive */
@media (max-width: 768px) {
    .pricing-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .pricing-stat {
        width: 100%;
        max-width: 280px;
        padding: 1.5rem;
    }

    .pricing-stat-value {
        font-size: 1.75rem;
    }

    .pricing-examples-grid {
        grid-template-columns: 1fr;
    }

    .pricing-example {
        text-align: center;
    }
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--primary-gradient);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 6s ease-in-out infinite;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--dark);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: -8px;
    margin-bottom: 11px;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 968px) {
    .logo {
        font-size: 1.8rem;
        line-height: 1.8rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-illustration {
        height: auto;
        margin-top: 1rem;
    }

    .tg-window {
        max-width: 400px;
        margin: 0 auto;
        height: 350px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .step {
        grid-column: span 1 !important;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 30px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .hero-stats {
        gap: 1.5rem;

        & .stat{
            flex: 1 1 0;
            text-align: center;
        }
    }

    .tg-window {
        max-width: 100%;
        height: 350px;
    }

    .tg-message {
        padding: 0.5rem 0.625rem;
    }

    .tg-message-content {
        font-size: 0.7rem;
    }

    .tg-message-line {
        font-size: 0.65rem;
    }

    .tg-message-title {
        font-size: 0.7rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features {
        padding: 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .cta-title {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* News Section */
.news-section {
    padding: 100px 0;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.news-card-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-card-date::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.news-card-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-card-title a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-card-summary {
    color: var(--text-secondary);
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.news-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.news-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: rgba(102, 126, 234, 0.15);
    border-radius: 20px;
    color: #667eea;
}

.news-more {
    text-align: center;
}

/* News Page Styles */
.news-page-header {
    padding: 150px 0 60px;
    text-align: center;
    position: relative;
}

.news-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.news-page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-page-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
}

.news-list-section {
    padding: 0 0 100px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.news-item {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.news-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.news-item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.news-item-date {
    font-size: 0.875rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.news-item-date::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--primary-gradient);
    border-radius: 50%;
}

.news-item-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.news-item-title a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s;
}

.news-item-title a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-item-summary {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.news-item-content {
    color: var(--text-secondary);
    line-height: 1.8;
    white-space: pre-line;
    margin-bottom: 1.5rem;
}

.news-item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Single Article Page */
.news-article-section {
    padding: 120px 0 100px;
}

.news-article {
    max-width: 800px;
    margin: 0 auto;
}

.news-article-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.news-back-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.news-back-link:hover {
    color: #667eea;
}

.news-article-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.news-article-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-article-content {
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 2rem;
}

.news-article-content p {
    margin-bottom: 1.5rem;
}

.news-article-content p:last-child {
    margin-bottom: 0;
}

.news-article-content h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
}

.news-article-content h3:first-child {
    margin-top: 0;
}

.news-article-content a {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.news-article-content a:hover {
    opacity: 0.8;
}

.news-read-more {
    display: inline-block;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.news-read-more:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.news-article-footer {
    text-align: center;
}

.news-not-found {
    text-align: center;
    padding: 100px 0;
}

.news-not-found h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.news-not-found p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive News */
@media (max-width: 768px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-page-title {
        font-size: 2rem;
    }

    .news-item {
        padding: 1.5rem;
    }

    .news-item-title {
        font-size: 1.35rem;
    }

    .news-article-section {
        padding: 100px 0 60px;
    }

    .news-article-title {
        font-size: 1.75rem;
    }

    .news-article-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ==========================================
   PLATFORM PAGE STYLES
   ========================================== */

/* Platform Hero */
.platform-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.1) 0%, transparent 100%);
}

.platform-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.platform-hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Platform Sections */
.platform-section {
    padding: 100px 0;
}

.platform-section-dark {
    background: rgba(45, 45, 68, 0.3);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 48px;
    height: 48px;
}

.benefit-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Process Timeline */
.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-gradient);
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.process-step:first-child {
    padding-top: 0;
}

.process-step:last-child {
    padding-bottom: 0;
}

.process-step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    position: relative;
    z-index: 1;
}

.process-step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.process-step-title {
    font-size: 1.35rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.process-step-description {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.category-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 126, 234, 0.5);
}

.category-icon {
    margin-bottom: 1rem;
    color: #667eea;
}

.category-icon svg {
    width: 32px;
    height: 32px;
}

.category-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.category-price {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Advantages Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.advantage-item {
    display: flex;
    gap: 1.5rem;
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
}

.advantage-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.advantage-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Platform Page Responsive */
@media (max-width: 968px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .platform-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .platform-hero {
        padding: 120px 0 60px;
    }

    .platform-hero-title {
        font-size: 1.75rem;
    }

    .platform-hero-description {
        font-size: 1rem;
    }

    .platform-section {
        padding: 60px 0;
    }

    .process-timeline::before {
        left: 19px;
    }

    .process-step {
        gap: 1.25rem;
    }

    .process-step-number {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 1rem;
    }

    .process-step-title {
        font-size: 1.15rem;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantage-item {
        flex-direction: column;
        text-align: center;
    }

    .advantage-icon {
        margin: 0 auto;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: rgba(102, 126, 234, 0.3);
    color: var(--text-primary);
}

/* ==========================================
   Legal Pages (Privacy Policy, Terms)
   ========================================== */

.legal-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
}

.legal-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero-description {
    color: var(--text-secondary);
    font-size: 1rem;
}

.legal-content {
    padding: 60px 0 80px;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.legal-section strong {
    color: var(--text-primary);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 120px 0 40px;
    }

    .legal-hero-title {
        font-size: 1.75rem;
    }

    .legal-content {
        padding: 40px 0 60px;
    }

    .legal-section h2 {
        font-size: 1.25rem;
    }
}

/* ==========================================
   Cookie Consent Banner
   ========================================== */

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(26, 26, 46, 0.98);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-consent-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-consent-content a {
    color: var(--text-primary);
    text-decoration: underline;
    transition: opacity 0.3s;
}

.cookie-consent-content a:hover {
    opacity: 0.8;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-consent-content p {
        font-size: 0.85rem;
    }
}

/* ==========================================
   Announcement Bar
   ========================================== */

.announcement-bar {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    z-index: 999;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(102, 126, 234, 0.3);
    padding: 1.1rem 1.5rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    gap: 1rem;
    animation: announceSlideDown 0.4s ease-out;
}

@keyframes announceSlideDown {
    from { opacity: 0; transform: translateY(-100%); }
    to { opacity: 1; transform: translateY(0); }
}

.announcement-bar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.announcement-bar-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    font-size: 0.75rem;
    font-weight: bold;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.announcement-bar-text {
    color: var(--text-primary);
    font-size: 0.925rem;
    line-height: 1.4;
    font-weight: 400;
}

.announcement-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #fff;
    background: linear-gradient(135deg, #667eea, #764ba2);
    font-size: 0.825rem;
    text-decoration: none;
    white-space: nowrap;
    font-weight: 500;
    padding: 0.35rem 0.875rem;
    border-radius: 100px;
    transition: opacity 0.3s, transform 0.2s;
    flex-shrink: 0;
}

.announcement-bar-link:hover {
    opacity: 0.9;
    transform: translateX(2px);
}

.announcement-bar-close {
    position: absolute;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-secondary);
    font-size: 1.1rem;
    cursor: pointer;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s, background 0.3s;
    flex-shrink: 0;
}

.announcement-bar-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

body.has-announcement .hero {
    padding-top: 200px;
}

body.has-announcement .news-page-header,
body.has-announcement .article-header,
body.has-announcement .page-header {
    padding-top: 200px;
}

@media (max-width: 768px) {
    .announcement-bar {
        top: 60px;
        padding: 0.75rem 2.5rem 0.75rem 0.75rem;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .announcement-bar-content {
        flex-wrap: wrap;
        justify-content: flex-start;
        align-items: center;
        gap: 0.375rem 0.5rem;
    }

    .announcement-bar-icon {
        display: none;
    }

    .announcement-bar-close {
        display: none;
    }

    .announcement-bar-text {
        font-size: 0.8rem;
        flex: 1 1 0;
        min-width: 0;
    }

    .announcement-bar-link {
        font-size: 0.75rem;
        padding: 0.25rem 0.625rem;
        margin-top: 0.125rem;
    }

    .announcement-bar {
        padding: 1.4rem 1rem 0.5rem;
    }

    body.has-announcement .hero {
        padding-top: 210px;
    }
}

/* ==========================================
   Category Groups (Expandable)
   ========================================== */

.category-groups {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.category-group {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.category-group:hover {
    border-color: rgba(102, 126, 234, 0.3);
}

.category-group-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
}

.category-group-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.category-group-icon svg {
    width: 24px;
    height: 24px;
}

.category-group-info {
    flex: 1;
}

.category-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 0.25rem 0;
}

.category-group-meta {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.category-group-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.category-group.expanded .category-group-toggle {
    transform: rotate(180deg);
}

.category-group-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.category-group.expanded .category-group-content {
    max-height: 600px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.75rem;
}

.subcategory-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: background 0.2s ease;
}

.subcategory-item:hover {
    background: rgba(102, 126, 234, 0.1);
}

.subcategory-name {
    font-size: 0.95rem;
    color: var(--text-primary);
}

.subcategory-price {
    font-size: 0.85rem;
    color: #667eea;
    font-weight: 500;
}

/* Fallback message */
.categories-fallback {
    text-align: center;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 16px;
    color: var(--text-secondary);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .category-group-header {
        padding: 1rem;
    }

    .category-group-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .category-group-title {
        font-size: 1rem;
    }

    .subcategories-grid {
        grid-template-columns: 1fr;
    }

    .category-group.expanded .category-group-content {
        padding: 0 1rem 1rem 1rem;
    }
}
/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(102, 126, 234, 0.08);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-answer {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.faq-answer p {
    margin-bottom: 0.75rem;
}

.faq-answer a {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.2s ease;
}

.faq-answer a:hover {
    color: #764ba2;
}

@media (max-width: 768px) {
    .faq-item {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }
}

/* Commercial Benefits Section */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.comparison-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.comparison-item-smartlead {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    border: 2px solid rgba(102, 126, 234, 0.3);
}

.comparison-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.comparison-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.comparison-price {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
}

.comparison-item-expensive .comparison-price {
    color: #f5576c;
    text-decoration: line-through;
}

.comparison-label {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.comparison-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.comparison-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
}

.comparison-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4facfe;
    font-weight: bold;
}

.comparison-item-expensive .comparison-features li:before {
    content: "—";
    color: #f5576c;
}

.commercial-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.commercial-stat {
    text-align: center;
}

.commercial-stat-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.commercial-stat-label {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .comparison-price {
        font-size: 2rem;
    }
    .commercial-stat-value {
        font-size: 2rem;
    }
}
