/* ========================================
   CSS Variables & Base Styles
   ======================================== */
:root {
    /* Colors */
    --bg-dark: #0a0a0f;
    --bg-darker: #050508;
    --bg-card: rgba(20, 20, 30, 0.6);
    --bg-card-hover: rgba(30, 30, 45, 0.7);
    
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --text-muted: #6b6b7b;
    
    --accent-blue: #3b82f6;
    --accent-blue-light: #60a5fa;
    --accent-steel: #64748b;
    --accent-steel-light: #94a3b8;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-light: rgba(255, 255, 255, 0.12);
    
    /* Glass effect */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    
    /* Gradients */
    --gradient-blue: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    --gradient-steel: linear-gradient(135deg, #64748b 0%, #475569 100%);
    --gradient-text: linear-gradient(135deg, #60a5fa 0%, #3b82f6 50%, #818cf8 100%);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --card-radius: 16px;
    --btn-radius: 12px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ========================================
   Cyberpunk Background Effects
   ======================================== */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        /* Subtle grid pattern */
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        /* Larger grid */
        linear-gradient(rgba(59, 130, 246, 0.02) 2px, transparent 2px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.02) 2px, transparent 2px);
    background-size: 
        30px 30px,
        30px 30px,
        150px 150px,
        150px 150px;
    pointer-events: none;
    z-index: 0;
}

/* Gradient overlay */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 0% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 100%, rgba(100, 116, 139, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Geometric shapes container */
.cyber-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* Hexagon shapes */
.hex {
    position: absolute;
    width: 120px;
    height: 69px;
    background: transparent;
    border: 1px solid rgba(59, 130, 246, 0.08);
    opacity: 0.6;
}

.hex::before,
.hex::after {
    content: '';
    position: absolute;
    width: 0;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
}

.hex::before {
    bottom: 100%;
    border-bottom: 35px solid transparent;
    border-bottom-color: inherit;
    filter: drop-shadow(0 0 1px rgba(59, 130, 246, 0.1));
}

.hex::after {
    top: 100%;
    border-top: 35px solid transparent;
    border-top-color: inherit;
}

.hex-1 {
    top: 15%;
    left: 5%;
    transform: rotate(15deg) scale(0.8);
    border-color: rgba(59, 130, 246, 0.06);
    animation: float-hex 20s ease-in-out infinite;
}

.hex-2 {
    top: 45%;
    right: 8%;
    transform: rotate(-10deg) scale(1.2);
    border-color: rgba(100, 116, 139, 0.05);
    animation: float-hex 25s ease-in-out infinite reverse;
}

.hex-3 {
    bottom: 20%;
    left: 10%;
    transform: rotate(25deg) scale(0.6);
    border-color: rgba(59, 130, 246, 0.04);
    animation: float-hex 18s ease-in-out infinite;
}

.hex-4 {
    top: 70%;
    right: 15%;
    transform: rotate(-20deg) scale(0.9);
    border-color: rgba(100, 116, 139, 0.04);
    animation: float-hex 22s ease-in-out infinite reverse;
}

.hex-5 {
    top: 25%;
    right: 25%;
    transform: rotate(5deg) scale(0.5);
    border-color: rgba(59, 130, 246, 0.05);
    animation: float-hex 30s ease-in-out infinite;
}

/* Abstract lines */
.cyber-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
    transform-origin: left center;
}

.line-1 {
    top: 20%;
    left: 0;
    width: 40%;
    transform: rotate(3deg);
    animation: pulse-line 8s ease-in-out infinite;
}

.line-2 {
    top: 50%;
    right: 0;
    width: 35%;
    transform: rotate(-2deg);
    animation: pulse-line 10s ease-in-out infinite reverse;
}

.line-3 {
    bottom: 30%;
    left: 5%;
    width: 25%;
    transform: rotate(5deg);
    animation: pulse-line 12s ease-in-out infinite;
}

.line-4 {
    top: 75%;
    right: 10%;
    width: 30%;
    transform: rotate(-4deg);
    animation: pulse-line 9s ease-in-out infinite reverse;
}

/* Diagonal tech lines */
.tech-line {
    position: absolute;
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(59, 130, 246, 0.1) 20%, 
        rgba(59, 130, 246, 0.2) 50%, 
        rgba(59, 130, 246, 0.1) 80%, 
        transparent 100%);
}

.tech-line-1 {
    top: 10%;
    left: 20%;
    transform: rotate(45deg);
    width: 300px;
}

.tech-line-2 {
    bottom: 15%;
    right: 20%;
    transform: rotate(-45deg);
    width: 250px;
}

.tech-line-3 {
    top: 60%;
    left: 5%;
    transform: rotate(30deg);
    width: 180px;
}

/* Corner brackets - tech style */
.corner-bracket {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1px solid rgba(59, 130, 246, 0.08);
}

.corner-tl {
    top: 5%;
    left: 3%;
    border-right: none;
    border-bottom: none;
}

.corner-tr {
    top: 15%;
    right: 5%;
    border-left: none;
    border-bottom: none;
}

.corner-bl {
    bottom: 25%;
    left: 8%;
    border-right: none;
    border-top: none;
}

.corner-br {
    bottom: 10%;
    right: 3%;
    border-left: none;
    border-top: none;
}

/* Circuit dots */
.circuit-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.2);
}

.dot-1 { top: 12%; left: 15%; animation: blink 4s ease-in-out infinite; }
.dot-2 { top: 35%; right: 12%; animation: blink 5s ease-in-out infinite 1s; }
.dot-3 { bottom: 40%; left: 8%; animation: blink 6s ease-in-out infinite 2s; }
.dot-4 { bottom: 15%; right: 20%; animation: blink 4.5s ease-in-out infinite 0.5s; }
.dot-5 { top: 55%; left: 25%; animation: blink 5.5s ease-in-out infinite 1.5s; }
.dot-6 { top: 80%; right: 30%; animation: blink 7s ease-in-out infinite 3s; }

@keyframes float-hex {
    0%, 100% { transform: translateY(0) rotate(var(--rotation, 15deg)); }
    50% { transform: translateY(-20px) rotate(var(--rotation, 15deg)); }
}

@keyframes pulse-line {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

@keyframes blink {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Hacker silhouette background */
.hacker-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 45%;
    max-width: 700px;
    height: 80%;
    background-image: url('../images/hacker-silhouette.png');
    background-size: contain;
    background-position: bottom right;
    background-repeat: no-repeat;
    opacity: 0.15;
    pointer-events: none;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}

@media (max-width: 768px) {
    .hacker-bg {
        width: 80%;
        opacity: 0.08;
    }
}

/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Glass Card Effect
   ======================================== */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-color-light);
    transform: translateY(-2px);
}

/* ========================================
   Typography
   ======================================== */
.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--gradient-blue);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-blue);
    color: var(--accent-blue-light);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ========================================
   Header
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.25rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 10px;
    color: white;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--text-primary);
}

.btn-telegram svg {
    width: 20px;
    height: 20px;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 24px;
    z-index: 999;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
}

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

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(100, 116, 139, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
}

.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* ========================================
   Stats Table Section
   ======================================== */
.stats-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.table-wrapper {
    overflow-x: auto;
    padding: 24px;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
}

.stats-table th,
.stats-table td {
    padding: 16px 20px;
    text-align: left;
}

.stats-table th {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid var(--border-color);
}

.stats-table td {
    font-size: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.stats-table tr:last-child td {
    border-bottom: none;
}

.stats-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.platform-cell {
    display: flex;
    align-items: center;
    gap: 12px;
}

.platform-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.platform-icon.vk { background: linear-gradient(135deg, #0077ff, #0055cc); }
.platform-icon.tg { background: linear-gradient(135deg, #2aabee, #229ed9); }
.platform-icon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-icon.wa { background: linear-gradient(135deg, #25d366, #128c7e); }
.platform-icon.mail { background: linear-gradient(135deg, #64748b, #475569); }

.success-rate {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.success-rate.high {
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
}

.success-rate.medium {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: var(--section-padding) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 32px;
    text-align: center;
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-icon.vk { background: linear-gradient(135deg, #0077ff, #0055cc); color: white; }
.service-icon.tg { background: linear-gradient(135deg, #2aabee, #229ed9); color: white; }
.service-icon.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: white; }
.service-icon.wa { background: linear-gradient(135deg, #25d366, #128c7e); color: white; }
.service-icon.max { background: linear-gradient(135deg, #010101, #1a1a1a); color: white; }
.service-icon.viber { background: linear-gradient(135deg, #7360f2, #59267c); color: white; }
.service-icon.fb { background: linear-gradient(135deg, #1877f2, #0d5bba); color: white; }
.service-icon.ok { background: linear-gradient(135deg, #ed812b, #d96500); color: white; }
.service-icon.gmail { background: linear-gradient(135deg, #ea4335, #c5221f); color: white; }
.service-icon.mailru { background: linear-gradient(135deg, #005ff9, #0047ba); color: white; }

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.service-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 12px;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* ========================================
   Facts Section
   ======================================== */
.facts-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
}

.fact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 12px;
    color: white;
}

.fact-icon svg {
    width: 24px;
    height: 24px;
}

.fact-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.fact-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* ========================================
   How It Works Section
   ======================================== */
.how-section {
    padding: var(--section-padding) 0;
}

.how-content {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.how-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.how-content p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Platforms Differences Section
   ======================================== */
.platforms-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.platform-card {
    padding: 28px;
}

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

.platform-badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
}

.platform-badge.vk { background: linear-gradient(135deg, #0077ff, #0055cc); }
.platform-badge.tg { background: linear-gradient(135deg, #2aabee, #229ed9); }
.platform-badge.ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-badge.wa { background: linear-gradient(135deg, #25d366, #128c7e); }

.platform-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.platform-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   Quote Section
   ======================================== */
.quote-section {
    padding: var(--section-padding) 0;
}

.quote-card {
    display: flex;
    gap: 32px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.quote-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-steel);
    border-radius: 50%;
    color: white;
}

.avatar-placeholder svg {
    width: 40px;
    height: 40px;
}

.quote-content blockquote {
    font-size: 1.125rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.quote-author strong {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.quote-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   Limitations Section
   ======================================== */
.limits-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.limits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.limit-card {
    padding: 32px;
    text-align: center;
}

.limit-percent {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.limit-percent.high { color: #4ade80; }
.limit-percent.medium { color: #fbbf24; }
.limit-percent.low { color: #fb923c; }
.limit-percent.very-low { color: #f87171; }

.limit-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.limit-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   Guarantees Section
   ======================================== */
.guarantees-section {
    padding: var(--section-padding) 0;
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.guarantee-card {
    padding: 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 12px;
    color: var(--accent-blue-light);
}

.guarantee-icon svg {
    width: 24px;
    height: 24px;
}

.guarantee-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.guarantee-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.review-card {
    padding: 28px;
}

.review-stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-steel);
    border-radius: 50%;
    font-weight: 600;
    color: white;
}

.review-author strong {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
}

.review-author span {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: var(--section-padding) 0;
}

.about-content {
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

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

.about-stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-blue-light);
    margin-bottom: 4px;
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   Steps Section
   ======================================== */
.steps-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

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

.step-card {
    position: relative;
    text-align: center;
    padding: 32px 24px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
}

.step-number {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-blue);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
}

.step-icon {
    width: 56px;
    height: 56px;
    margin: 16px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 14px;
    color: var(--accent-blue-light);
}

.step-icon svg {
    width: 28px;
    height: 28px;
}

.step-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-blue-light);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--bg-darker);
}

.cta-card {
    text-align: center;
    padding: 64px 40px;
    background: 
        radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 60%),
        var(--glass-bg);
}

.cta-card h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 48px 0 24px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1.125rem;
}

.footer-warning {
    max-width: 600px;
    text-align: center;
    padding: 16px 24px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 12px;
}

.footer-warning p {
    font-size: 0.875rem;
    color: #fbbf24;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
    }
    
    .nav {
        display: none;
    }
    
    .header .btn-telegram {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .stat-item {
        padding: 20px 12px;
    }
    
    .quote-card {
        flex-direction: column;
        text-align: center;
    }
    
    .quote-avatar {
        margin: 0 auto;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .services-grid,
    .facts-grid,
    .platforms-grid,
    .limits-grid,
    .guarantees-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .table-wrapper {
        padding: 16px;
    }
    
    .stats-table th,
    .stats-table td {
        padding: 12px 10px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .service-card,
    .fact-item,
    .guarantee-card,
    .review-card,
    .platform-card,
    .limit-card {
        padding: 24px 20px;
    }
    
    .how-content,
    .about-content,
    .cta-card {
        padding: 32px 20px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}
