/* CSS Variables - Dark Theme with Gray and Blue Colors (Default) */
:root {
    /* Colors */
    --background: hsl(220, 15%, 13%);
    --foreground: hsl(210, 20%, 98%);
    
    --card: hsl(220, 15%, 16%);
    --card-foreground: hsl(210, 20%, 98%);
    
    --primary: hsl(217, 91%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    --secondary: hsl(220, 13%, 20%);
    --secondary-foreground: hsl(210, 20%, 98%);
    
    --muted: hsl(220, 13%, 22%);
    --muted-foreground: hsl(215, 16%, 70%);
    
    --border: hsl(220, 13%, 25%);
    
    --destructive: hsl(0, 72%, 51%);
    
    --radius: 0.75rem;
}

/* Light Theme */
html.light {
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(222, 47%, 11%);
    
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(222, 47%, 11%);
    
    --primary: hsl(217, 91%, 60%);
    --primary-foreground: hsl(0, 0%, 100%);
    
    --secondary: hsl(240, 5%, 96%);
    --secondary-foreground: hsl(222, 47%, 11%);
    
    --muted: hsl(240, 5%, 96%);
    --muted-foreground: hsl(215, 16%, 47%);
    
    --border: hsl(220, 13%, 91%);
    
    --destructive: hsl(0, 84%, 60%);
}

html.light .hero-background {
    background: linear-gradient(180deg, hsl(217, 91%, 98%) 0%, hsl(0, 0%, 100%) 100%);
}

html.light .hero-circle-1,
html.light .hero-circle-2 {
    background: rgba(217, 91%, 60%, 0.03);
}

html.light .cta-box {
    background: linear-gradient(135deg, hsl(222, 47%, 11%) 0%, hsl(217, 40%, 20%) 100%);
}

html.light .stats {
    background: rgba(240, 5%, 96%, 0.5);
}

html.light .testimonials {
    background: rgba(240, 5%, 96%, 0.3);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    background: rgba(220, 15%, 13%, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}

html.light .header {
    background: rgba(255, 255, 255, 0.95);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 1024px) {
    .header-content {
        height: 4.5rem;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    color: var(--foreground);
}

.logo-image {
    height: 2.25rem;
    width: auto;
    object-fit: contain;
}

.logo-dark {
    display: none;
}

.logo-light {
    display: block;
}

html.light .logo-dark {
    display: block !important;
}

html.light .logo-light {
    display: none !important;
}

.logo-icon {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
}

.logo-icon span {
    color: var(--primary-foreground);
    font-weight: 700;
    font-size: 0.875rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Navigation */
.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--foreground);
}

/* Header CTA */
.header-cta {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .header-cta {
        display: flex;
    }
}

/* Theme Toggle Button */
.theme-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0.5rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) - 2px);
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.2s;
}

.theme-toggle:hover {
    background: var(--secondary);
    border-color: var(--border);
}

.theme-toggle svg {
    display: block;
}

.theme-toggle-mobile {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
}

.theme-toggle-text {
    font-size: 0.875rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    display: block;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: var(--background);
    border-top: 1px solid var(--border);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    padding: 1rem 0;
}

.mobile-nav-link {
    display: block;
    padding: 0.5rem 0;
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.mobile-nav-link:hover {
    color: var(--foreground);
}

.mobile-menu-cta {
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    font-family: inherit;
}

.btn-lg {
    padding: 0.75rem 2rem;
    height: 3rem;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    color: var(--primary-foreground);
    border: 0;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border-color: rgba(220, 13%, 25%, 0.6);
    color: var(--foreground);
}

.btn-outline:hover {
    background: var(--secondary);
}

html.light .btn-outline:hover {
    background: rgba(240, 5%, 96%, 0.8);
}

html.light .btn-light {
    color: hsl(222, 47%, 11%);
}

.btn-ghost {
    background: transparent;
    border: none;
    color: var(--muted-foreground);
}

.btn-ghost:hover {
    color: var(--foreground);
}

.btn-light {
    background: var(--primary-foreground);
    color: var(--background);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--primary-foreground);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 7rem 0 4rem;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .hero {
        padding: 9rem 0 6rem;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: -10;
    background: linear-gradient(180deg, hsl(220, 15%, 11%) 0%, hsl(220, 15%, 13%) 100%);
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -10;
}

.hero-circle-1 {
    top: 5rem;
    right: 25%;
    width: 500px;
    height: 500px;
    background: rgba(217, 91%, 60%, 0.05);
}

.hero-circle-2 {
    bottom: 0;
    left: 25%;
    width: 400px;
    height: 400px;
    background: rgba(217, 91%, 60%, 0.05);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        text-align: left;
    }
}

.hero-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-content {
        margin: 0;
        text-align: left;
    }
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
    background: var(--card);
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.hero-image-dark {
    display: block;
}

.hero-image-light {
    display: none;
}

html.light .hero-image-dark {
    display: none !important;
}

html.light .hero-image-light {
    display: block !important;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    border: 1px solid rgba(217, 91%, 60%, 0.2);
    background: rgba(217, 91%, 60%, 0.05);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.badge-dot {
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Hero Title */
.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

/* Hero Trust */
.hero-trust {
    margin-top: 5rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(220, 13%, 25%, 0.4);
    width: 100%;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    text-align: center;
}

/* Clients Slider */
.clients-slider-wrapper {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    overflow: visible;
    box-sizing: border-box;
}

.clients-slider {
    overflow: hidden;
    flex: 1 1 0;
    min-width: 0;
    width: 0;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.clients-slider-wrapper-inner {
    will-change: transform;
    transition: transform 0.4s ease;
}

.clients-slider-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: scroll-clients 15s linear infinite;
    will-change: transform;
}

.clients-slider-track.paused {
    animation-play-state: paused;
}

.clients-slider-btn {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    flex-basis: 2.5rem !important;
    width: 2.5rem !important;
    min-width: 2.5rem !important;
    max-width: 2.5rem !important;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 10;
}

.clients-slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.clients-slider-btn:active {
    transform: scale(0.95);
}

.clients-slider-btn svg {
    display: block;
}

.clients-slider-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    padding: 0 1rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.clients-slider-item:hover {
    opacity: 1;
}

.clients-slider-item img {
    max-height: 3rem;
    max-width: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    transition: filter 0.3s;
    opacity: 0.7;
}

.clients-slider-item:hover img {
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 1;
}

/* Light theme - темные логотипы */
html.light .clients-slider-item img {
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.6;
}

html.light .clients-slider-item:hover img {
    filter: grayscale(70%) brightness(1);
    opacity: 1;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

@media (max-width: 768px) {
    .clients-slider-wrapper {
        gap: 0.5rem;
    }
    
    .clients-slider-btn {
        width: 2rem;
        height: 2rem;
    }
    
    .clients-slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .clients-slider-track {
        gap: 3rem;
        animation-duration: 12s;
    }
    
    .clients-slider-item {
        height: 3rem;
        padding: 0 0.75rem;
    }
    
    .clients-slider-item img {
        max-height: 2.5rem;
        max-width: 120px;
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

@media (min-width: 1024px) {
    section {
        padding: 7rem 0;
    }
}

.section-header {
    max-width: 42rem;
    margin: 0 auto 4rem;
    text-align: center;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1.875rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-top: 1.25rem;
}

/* Video Section */
.video-section {
    background: var(--background);
    padding: 5rem 0;
}

.video-wrapper {
    max-width: 56rem;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 1rem;
}

/* Features Section */
.features {
    background: var(--background);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid rgba(220, 13%, 25%, 0.6);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: rgba(217, 91%, 60%, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(217, 91%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
    transition: background 0.2s;
}

.feature-card:hover .feature-icon {
    background: rgba(217, 91%, 60%, 0.15);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--muted-foreground);
    line-height: 1.75;
}

/* Stats Section */
.stats {
    padding: 4rem 0;
    background: rgba(220, 13%, 20%, 0.3);
    border-top: 1px solid rgba(220, 13%, 25%, 0.4);
    border-bottom: 1px solid rgba(220, 13%, 25%, 0.4);
}

@media (min-width: 1024px) {
    .stats {
        padding: 5rem 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 3.75rem;
    }
}

.stat-label {
    color: var(--muted-foreground);
    font-weight: 500;
}

/* Benefits Section */
.benefits {
    background: var(--background);
}

.benefits-grid {
    display: grid;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
        gap: 5rem;
        align-items: center;
    }
}

.benefits-content .section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.benefits-content .section-title {
    margin-bottom: 1.25rem;
}

.benefits-content .section-description {
    margin-bottom: 2rem;
}

.benefits-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.benefit-check {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    background: rgba(217, 91%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.125rem;
    color: var(--primary);
}

/* Dashboard Preview */
.benefits-visual {
    position: relative;
}

.dashboard-preview {
    aspect-ratio: 16/10;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
}

.dashboard-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 1rem;
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.window-dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.dot-red {
    background: rgba(0, 72%, 51%, 0.6);
}

.dot-yellow {
    background: rgba(45, 96%, 64%, 0.6);
}

.dot-green {
    background: rgba(142, 76%, 36%, 0.6);
}

.dashboard-body {
    display: flex;
    gap: 1rem;
    height: calc(100% - 2rem);
}

.dashboard-sidebar {
    width: 25%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-item {
    height: 1.5rem;
    border-radius: 0.5rem;
    background: var(--secondary);
}

.sidebar-item-active {
    height: 2rem;
    background: rgba(217, 91%, 60%, 0.2);
}

.dashboard-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.stat-card {
    height: 4rem;
    border-radius: 0.5rem;
    background: var(--secondary);
    padding: 0.75rem;
}

.dashboard-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.table-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    background: rgba(220, 13%, 20%, 0.5);
}

.live-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    padding: 0.5rem 1rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: rgba(220, 13%, 20%, 0.2);
}

.testimonial-main {
    max-width: 48rem;
    margin: 0 auto 4rem;
}

.testimonial-main blockquote {
    text-align: center;
}

.testimonial-main p {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .testimonial-main p {
        font-size: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .testimonial-main p {
        font-size: 1.875rem;
    }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.testimonial-card {
    position: relative;
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--background);
    border: 1px solid rgba(220, 13%, 25%, 0.6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -2px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.2s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.testimonial-gradient {
    position: absolute;
    inset-x: 0;
    top: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(217, 91%, 60%, 0.3), transparent);
}

.testimonial-quote {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-foreground);
    font-size: 0.875rem;
    font-weight: 600;
}

.author-name {
    font-weight: 600;
    font-size: 0.875rem;
}

.author-role {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing {
    background: var(--background);
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing-toggle-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.pricing-toggle-label.pricing-toggle-active {
    color: var(--primary);
}

.pricing-toggle {
    position: relative;
    width: 3.5rem;
    height: 2rem;
    background: var(--secondary);
    border: 1px solid var(--border);
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0.25rem;
}

.pricing-toggle:hover {
    border-color: var(--primary);
}

.pricing-toggle.active {
    background: var(--primary);
    border-color: var(--primary);
}

.pricing-toggle-slider {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    width: 1.5rem;
    height: 1.5rem;
    background: var(--foreground);
    border-radius: 50%;
    transition: transform 0.3s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-toggle.active .pricing-toggle-slider {
    transform: translateX(1.5rem);
}

.pricing-toggle-savings {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(217, 91%, 60%, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
}

.pricing-card-featured {
    border-color: var(--primary);
    border-width: 2px;
}

.pricing-badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    color: var(--primary-foreground);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, hsl(217, 91%, 60%) 0%, hsl(210, 100%, 56%) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    color: var(--muted-foreground);
    font-size: 1rem;
}

.pricing-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.pricing-features {
    list-style: none;
    flex: 1;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--foreground);
    font-size: 0.875rem;
}

.pricing-feature svg {
    flex-shrink: 0;
    color: var(--primary);
}

.pricing-note {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--secondary);
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

/* Download Section */
.download {
    background: var(--background);
}

.download-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.download-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.download-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.download-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 0.75rem;
    background: rgba(217, 91%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.download-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.download-description {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.download-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    background: var(--secondary);
}

.download-version,
.download-size {
    font-size: 0.875rem;
    font-weight: 500;
}

.download-version {
    color: var(--primary);
}

.download-size {
    color: var(--muted-foreground);
}

.download-requirements {
    margin-bottom: 2rem;
}

.requirements-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.requirements-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.requirements-list li {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    padding-left: 1.25rem;
    position: relative;
}

.requirements-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

.download-btn {
    margin-bottom: 1rem;
}

.download-link {
    text-align: center;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.download-link:hover {
    color: var(--primary);
    opacity: 0.8;
}

.download-alternative {
    text-align: center;
    padding: 2rem;
    border-radius: 0.75rem;
    background: var(--secondary);
}

.download-alt-title {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.download-alt-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.download-alt-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
}

.download-alt-link:hover {
    color: var(--primary);
}

.download-alt-link svg {
    color: var(--primary);
}

/* Documentation Section */
.docs {
    background: var(--background);
}

.docs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .docs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .docs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.docs-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.docs-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.docs-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(217, 91%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.docs-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.docs-description {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.75;
    flex: 1;
}

.docs-link {
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    margin-top: auto;
}

.docs-card:hover .docs-link {
    text-decoration: underline;
}

/* FAQ Section */
.faq {
    background: var(--background);
}

.faq-list {
    max-width: 48rem;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    transition: color 0.2s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--muted-foreground);
    line-height: 1.75;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.faq-answer a:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
}

.cta-box {
    position: relative;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, hsl(220, 15%, 10%) 0%, hsl(220, 15%, 15%) 100%);
    padding: 2.5rem 1rem;
    overflow: hidden;
}

@media (min-width: 640px) {
    .cta-box {
        padding: 4rem 2rem;
    }
}

@media (min-width: 1024px) {
    .cta-box {
        padding: 5rem;
    }
}

.cta-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
}

.cta-decoration-1 {
    top: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: rgba(217, 91%, 60%, 0.2);
}

.cta-decoration-2 {
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: rgba(217, 91%, 60%, 0.1);
}

.cta-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image: radial-gradient(circle at 1px 1px, hsl(0, 0%, 100%) 1px, transparent 0);
    background-size: 40px 40px;
}

.cta-content {
    position: relative;
    max-width: 42rem;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: var(--primary-foreground);
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

@media (min-width: 640px) {
    .cta-description {
        font-size: 1.25rem;
    }
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* News Section */
.news-section {
    padding: 4rem 0;
}

.news-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.news-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.875rem;
}

.news-date {
    color: var(--muted-foreground);
}

.news-category {
    color: var(--primary);
    font-weight: 500;
}

.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.news-excerpt {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.news-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.news-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.news-link:hover::after {
    transform: translateX(3px);
}

/* Footer */
.footer {
    background: var(--background);
    border-top: 1px solid rgba(220, 13%, 25%, 0.4);
}

.footer-content {
    padding: 3rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr repeat(4, 1fr);
        gap: 2rem;
    }
}

.footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: 1;
        margin-bottom: 0;
    }
}

.footer-description {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    max-width: 20rem;
    line-height: 1.75;
    margin-top: 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    grid-column: 1 / -1;
}

@media (min-width: 768px) {
    .footer-links {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-links {
        grid-column: 2 / -1;
    }
}

.footer-column-title {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    color: var(--muted-foreground);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-list a:hover {
    color: var(--foreground);
}

.footer-bottom {
    padding: 1.5rem 0;
    border-top: 1px solid rgba(220, 13%, 25%, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 640px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.social-link {
    color: var(--muted-foreground);
    transition: color 0.2s;
    text-decoration: none;
}

.social-link:hover {
    color: var(--foreground);
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}

.fade-up-delay-1 {
    animation: fadeUp 0.6s ease-out 0.1s forwards;
    opacity: 0;
}

.fade-up-delay-2 {
    animation: fadeUp 0.6s ease-out 0.2s forwards;
    opacity: 0;
}

.fade-up-delay-3 {
    animation: fadeUp 0.6s ease-out 0.3s forwards;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === Моноширинный шрифт для технического контента === */
.code,
.code-block,
pre,
code,
.api-example,
.json-example,
.pricing-feature span.feature-mono,
.footer-copyright,
.hero-subtitle {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
}

/* Дополнительно: стилизация блока кода */
.code-block {
    background: #0d1117;
    color: #c9d1d9;
    padding: 16px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    overflow-x: auto;
    border: 1px solid #30363d;
}

.code-block .command {
    color: #58a6ff;
}

.code-block .comment {
    color: #8b949e;
    font-style: italic;
}

/* API-примеры */
.api-example {
    font-size: 14px;
    margin: 12px 0;
    padding: 10px 14px;
    background: #f6f8fa;
    border-left: 3px solid #0052cc;
    border-radius: 0 4px 4px 0;
}

/* JSON-примеры */
.json-example {
    font-size: 13px;
    background: #f1f3f5;
    padding: 12px;
    border-radius: 6px;
    margin: 8px 0;
}

.json-key {
    color: #0052cc;
    font-weight: 600;
}

.json-string {
    color: #0a5;
}

.json-number {
    color: #1673b1;
}

/* Моноширинный текст в тарифах */
.pricing-feature span.feature-mono {
    font-size: 13px;
    letter-spacing: -0.1px;
}

/* Моноширинный шрифт для копирайта — стильно и современно */
.footer-copyright {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    letter-spacing: -0.2px;
}
/* === Кнопка "Наверх" === */
.scroll-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    text-decoration: none;
}

/* Показывать при прокрутке */
.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Адаптация для мобильных */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 48px;
        height: 48px;
        right: 16px;
        bottom: 16px;
    }
}

/* Для тёмной темы — если нужно */
.dark-theme .scroll-to-top {
    background: #e74c3c;
    border: none;
    color: white;
}

.dark-theme .scroll-to-top:hover {
    background: #c0392b;
}
.scroll-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(231, 76, 60, 0.2);
}
/* === Кнопка: Danger (красная) === */
.btn-danger {
    background: #e74c3c;
    color: white;
    border: none;
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.2);
}

.btn-danger:hover,
.btn-danger:focus {
    background: #c0392b;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.btn-danger:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(231, 76, 60, 0.2);
}

/* Для тёмной темы */
.dark-theme .btn-danger {
    background: #e74c3c;
    color: white;
}

.dark-theme .btn-danger:hover {
    background: #c0392b;
}
/* === Текст: Danger (красный) — без подчёркивания у ссылок === */
.text-danger {
    color: #e74c3c;
    text-decoration: none; /* Убираем подчёркивание по умолчанию */
    transition: color 0.2s ease;
}

.text-danger:hover,
.text-danger:focus {
    color: #c0392b;
    text-decoration: none !important; /* Гарантированно убираем подчёркивание */
    outline: none;
}

/* Явно для ссылок с классом text-danger */
a.text-danger {
    text-decoration: none;
}

a.text-danger:hover,
a.text-danger:focus {
    text-decoration: none !important;
    color: #c0392b;
}

/* Для тёмной темы */
.dark-theme .text-danger {
    color: #ff7675;
}

.dark-theme .text-danger:hover,
.dark-theme .text-danger:focus {
    color: #fab1a0;
    text-decoration: none !important;
}

.dark-theme a.text-danger {
    text-decoration: none;
}

.dark-theme a.text-danger:hover {
    text-decoration: none;
    color: #fab1a0;
}
.news-section {
    padding-top: 100px;
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .news-section {
        padding-top: 80px;
        padding-bottom: 40px;
    }
}
/* === Секция "О нас" === */
.about-section {
    padding: 100px 0;
}

.about-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.mission-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-card {
    text-align: center;
}

.value-card h3 {
    margin: 16px 0 8px;
    font-size: 1.25rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-stats {
    margin: 80px 0;
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.btn-telegram {
    background: linear-gradient(135deg, #54a9eb 0%, #4a9dd9 100%);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 38px;
    min-height: 38px;
    padding: 0 20px;
    border: none;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.4;
    text-decoration: none;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    box-sizing: border-box;
}

.btn-telegram:hover {
    background: linear-gradient(135deg, #4a9dd9 0%, #3f91d2 100%);
    transform: translateY(-1px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.btn-telegram:active {
    background: linear-gradient(135deg, #3f91d2 0%, #3586c8 100%);
    transform: translateY(0);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

/* Тема */
.dark-theme .btn-telegram {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

.dark-theme .btn-telegram:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.dark-theme .btn-telegram:active {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4), 0 8px 10px -6px rgba(0, 0, 0, 0.3);
}

/* Legal Pages Styles */
.legal-section {
    padding: 7rem 0 4rem;
}

.legal-content {
    max-width: 56rem;
    margin: 0 auto;
}

.legal-article {
    margin-bottom: 3rem;
}

.legal-article h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--foreground);
}

.legal-article h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: var(--foreground);
}

.legal-article p {
    margin-bottom: 1rem;
    line-height: 1.75;
    color: var(--muted-foreground);
}

.legal-article ul {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.legal-article ul li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
    color: var(--muted-foreground);
}

.legal-article a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.legal-article a:hover {
    text-decoration: underline;
}

/* Contact Page Styles */
.contact-methods {
    margin-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.contact-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.contact-card:hover {
    border-color: rgba(217, 91%, 60%, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 1rem;
    background: rgba(217, 91%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
}

.contact-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.contact-info {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Support Section */
.support-section {
    margin-bottom: 4rem;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.support-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
}

.support-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.support-card p {
    margin-bottom: 1rem;
    color: var(--muted-foreground);
}

.support-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.support-list li {
    padding: 0.5rem 0;
    color: var(--muted-foreground);
}

.support-list a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.support-list a:hover {
    text-decoration: underline;
}

.support-hours {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-style: italic;
}

/* Roadmap Page Styles */
.roadmap-timeline {
    position: relative;
    padding-left: 2rem;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-period {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-period-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.timeline-dot {
    position: absolute;
    left: -2.5rem;
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: var(--primary);
    border: 3px solid var(--background);
    box-shadow: 0 0 0 2px var(--border);
}

.timeline-period h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    margin: 0;
}

.timeline-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.timeline-badge.status-completed {
    background: rgba(34, 197, 94, 0.2);
    color: rgb(34, 197, 94);
}

.timeline-badge.status-in-progress {
    background: rgba(59, 130, 246, 0.2);
    color: rgb(59, 130, 246);
}

.timeline-badge.status-planned {
    background: rgba(168, 85, 247, 0.2);
    color: rgb(168, 85, 247);
}

.roadmap-items {
    display: grid;
    gap: 1rem;
}

.roadmap-item {
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.roadmap-item:hover {
    border-color: rgba(217, 91%, 60%, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
}

.roadmap-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.roadmap-item p {
    color: var(--muted-foreground);
    margin: 0;
}

/* Security Page Styles */
.security-features {
    margin-bottom: 4rem;
}

.security-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .security-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .security-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.security-card {
    padding: 1.5rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.security-card:hover {
    border-color: rgba(217, 91%, 60%, 0.3);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.security-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    background: rgba(217, 91%, 60%, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--primary);
}

.security-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--foreground);
}

.security-card p {
    color: var(--muted-foreground);
    line-height: 1.75;
}

.security-compliance {
    margin-bottom: 4rem;
}

.compliance-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .compliance-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: var(--card);
    border: 1px solid var(--border);
}

.compliance-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: rgba(34, 197, 94, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(34, 197, 94);
    flex-shrink: 0;
}

.compliance-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    color: var(--foreground);
}

/* Active Navigation Link */
.nav-link.active,
.mobile-nav-link.active {
    color: var(--primary);
}

/* News Single Page Styles */
.news-single-section {
    padding: 7rem 0 4rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    font-family: 'JetBrains Mono', monospace;
}

.breadcrumb a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--muted-foreground);
}

.news-single {
    max-width: 48rem;
    margin: 0 auto;
}

.news-single-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.news-single-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 1024px) {
    .news-single-title {
        font-size: 3rem;
    }
}

.news-single-excerpt {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.75;
}

.news-single-content {
    font-size: 1.125rem;
    line-height: 1.875;
    color: var(--foreground);
}

.news-single-content h2 {
    font-size: 1.875rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--foreground);
}

.news-single-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--foreground);
}

.news-single-content p {
    margin-bottom: 1.5rem;
    color: var(--muted-foreground);
}

.news-single-content ul,
.news-single-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
    color: var(--muted-foreground);
}

.news-single-content li {
    margin-bottom: 0.75rem;
    line-height: 1.75;
}

.news-single-content a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.news-single-content a:hover {
    text-decoration: underline;
}

.news-single-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .news-single-footer {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

.news-single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    background: rgba(217, 91%, 60%, 0.1);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    font-family: 'JetBrains Mono', monospace;
}

.news-single-share {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--muted-foreground);
    transition: all 0.2s;
    text-decoration: none;
}

.share-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
    transform: translateY(-2px);
}

.news-single-back {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* Contact Form Styles */
.contact-form-section {
    margin-bottom: 4rem;
}

.contact-form {
    max-width: 48rem;
    margin: 2rem auto 0;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 3rem;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    border-radius: calc(var(--radius) - 2px);
    border: 1px solid var(--border);
    background: var(--background);
    color: var(--foreground);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(217, 91%, 60%, 0.1);
}
.form-select{
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: 6px;
    height: 50px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted-foreground);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.125rem;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.contact-form .btn {
    width: 100%;
}

@media (min-width: 640px) {
    .contact-form .btn {
        width: auto;
    }
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: rgb(34, 197, 94);
}

.form-message.error {
    display: block;
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}