/* ===== BRATISHKA VPN — MAIN SITE STYLES ===== */

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;600;700&display=swap');

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

:root {
    --bg: #050505;
    --surface: #0a0a0a;
    --surface2: #0f0f0f;
    --border: #1a1a1a;
    --border2: #222;
    --toxic: #00ff41;
    --toxic-dim: #00cc33;
    --toxic-glow: rgba(0, 255, 65, 0.15);
    --toxic-glow2: rgba(0, 255, 65, 0.08);
    --danger: #ff0050;
    --text: #d4d4d4;
    --text-dim: #777;
    --text-body: #aaa;
    --white: #f0f0f0;
    --nav-h: 64px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'JetBrains Mono', monospace;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

/* ===== CANVAS BACKGROUND ===== */
#cubes-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* ===== SCANLINES ===== */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    background: repeating-linear-gradient(
        transparent, transparent 2px,
        rgba(0,0,0,0.03) 2px, rgba(0,0,0,0.03) 4px
    );
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-h);
    background: rgba(5,5,5,0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.nav-logo img {
    width: 36px; height: 36px;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--toxic-glow));
}

.nav-logo-text {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-logo-text span { color: var(--toxic); }

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

.nav-link {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.2s;
}

.nav-link:hover {
    color: var(--text);
    background: rgba(255,255,255,0.04);
}

.nav-cta {
    background: var(--toxic);
    color: #000 !important;
    padding: 9px 18px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 20px var(--toxic-glow);
    transition: all 0.2s;
}

.nav-cta:hover {
    background: #00e63a;
    box-shadow: 0 0 30px rgba(0,255,65,0.3);
    transform: translateY(-1px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.nav-burger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== SECTIONS ===== */
section {
    position: relative;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-h);
    padding-bottom: 80px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,255,65,0.08);
    border: 1px solid rgba(0,255,65,0.25);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 11px;
    color: var(--toxic);
    letter-spacing: 0.8px;
    margin-bottom: 28px;
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--toxic);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--toxic);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-title span { color: var(--toxic); }

.hero-title .glitch {
    position: relative;
    display: inline-block;
}

.hero-title .glitch::before,
.hero-title .glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0; left: 0;
    width: 100%;
}

.hero-title .glitch::before {
    animation: glitch-1 3s infinite linear;
    color: var(--toxic);
    opacity: 0.5;
    clip-path: inset(0 0 70% 0);
}

.hero-title .glitch::after {
    animation: glitch-2 2.7s infinite linear;
    color: var(--danger);
    opacity: 0.3;
    clip-path: inset(70% 0 0 0);
}

@keyframes glitch-1 {
    0%, 90% { transform: translate(0); }
    91% { transform: translate(-2px, 1px); }
    93% { transform: translate(2px, -1px); }
    95%, 100% { transform: translate(0); }
}

@keyframes glitch-2 {
    0%, 85% { transform: translate(0); }
    86% { transform: translate(3px, 0); }
    88% { transform: translate(-3px, 0); }
    90%, 100% { transform: translate(0); }
}

.hero-desc {
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    flex-shrink: 0;
    position: relative;
}

.hero-logo-wrap {
    position: relative;
    width: 280px; height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,255,65,0.15);
    animation: ring-rotate 20s linear infinite;
}

.ring-1 { width: 240px; height: 240px; }
.ring-2 { width: 200px; height: 200px; animation-direction: reverse; animation-duration: 15s; }
.ring-3 { width: 160px; height: 160px; animation-duration: 10s; border-color: rgba(0,255,65,0.08); }

@keyframes ring-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-logo {
    width: 140px; height: 140px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(0,255,65,0.3));
    position: relative;
    z-index: 1;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-stats {
    display: flex;
    gap: 24px;
    margin-top: 36px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero-stat-val {
    font-size: 22px;
    font-weight: 700;
    color: var(--toxic);
}

.hero-stat-label {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 10px;
    font-family: inherit;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.25s;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--toxic);
    color: #000;
    box-shadow: 0 0 30px var(--toxic-glow);
}

.btn-primary:hover {
    box-shadow: 0 0 45px rgba(0,255,65,0.35);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--toxic);
    border: 1px solid rgba(0,255,65,0.35);
}

.btn-outline:hover {
    background: rgba(0,255,65,0.07);
    border-color: var(--toxic);
}

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--toxic);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    line-height: 1.2;
}

.section-desc {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto;
}

/* ===== FEATURES ===== */
.features {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

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

.feature-card {
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--toxic), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: rgba(0,255,65,0.2);
    transform: translateY(-3px);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 44px; height: 44px;
    background: rgba(0,255,65,0.08);
    border: 1px solid rgba(0,255,65,0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--toxic);
    margin-bottom: 18px;
}

.feature-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 11px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

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

.how-steps::before {
    content: '';
    position: absolute;
    top: 28px; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), var(--border2), var(--border), transparent);
    z-index: 0;
}

.how-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 28px 20px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

.how-step:hover {
    border-color: rgba(0,255,65,0.2);
    transform: translateY(-3px);
}

.how-num {
    width: 52px; height: 52px;
    background: var(--toxic);
    color: #000;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 0 20px var(--toxic-glow);
}

.how-step-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.how-step-desc {
    font-size: 11px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ===== APPS ===== */
.apps {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.apps-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.app-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 20px 24px;
    text-decoration: none;
    transition: all 0.25s;
}

.app-item:hover {
    border-color: rgba(0,255,65,0.25);
    transform: translateY(-2px);
}

.app-item-icon {
    color: var(--toxic);
    flex-shrink: 0;
}

.app-item-info { flex: 1; }

.app-item-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 3px;
}

.app-item-platforms {
    font-size: 10px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.app-item-arrow {
    color: var(--toxic);
    opacity: 0.5;
    transition: all 0.2s;
}

.app-item:hover .app-item-arrow { opacity: 1; transform: translateX(4px); }

/* ===== FREE KEYS BLOCK ===== */
.free-keys {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.free-keys-inner {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(0,255,65,0.03);
    border: 1px solid rgba(0,255,65,0.2);
    border-radius: 20px;
    padding: 48px 56px;
    position: relative;
    overflow: hidden;
}

.free-keys-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,255,65,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.free-keys-badge {
    position: absolute;
    top: 20px; right: 24px;
    background: rgba(0,255,65,0.1);
    border: 1px solid rgba(0,255,65,0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 10px;
    font-weight: 700;
    color: var(--toxic);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.free-keys-icon {
    flex-shrink: 0;
    width: 80px; height: 80px;
    background: rgba(0,255,65,0.08);
    border: 1px solid rgba(0,255,65,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--toxic);
}

.free-keys-content { flex: 1; }

.free-keys-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.free-keys-title span { color: var(--toxic); }

.free-keys-desc {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 24px;
}

.free-keys-limits {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.free-limit {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,0,80,0.06);
    border: 1px solid rgba(255,0,80,0.2);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 11px;
    color: #ff6688;
}

.free-limit svg { color: var(--danger); flex-shrink: 0; }

@media (max-width: 700px) {
    .free-keys-inner { flex-direction: column; padding: 32px 24px; gap: 28px; }
    .free-keys-icon { width: 60px; height: 60px; }
    .free-keys-title { font-size: 16px; }
}

/* ===== PRICING ===== */
.pricing {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card.featured {
    border-color: rgba(0,255,65,0.35);
    background: rgba(0,255,65,0.03);
}

.pricing-card.featured::before {
    content: 'ПОПУЛЯРНЫЙ';
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--toxic);
    color: #000;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    border-radius: 20px;
}

.pricing-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,255,65,0.2);
}

.pricing-name {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
}

.pricing-price span {
    font-size: 14px;
    color: var(--text-dim);
    font-weight: 400;
}

.pricing-period {
    font-size: 11px;
    color: var(--text-dim);
    margin-bottom: 28px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    color: var(--text-body);
}

.pricing-features li::before {
    content: '';
    width: 16px; height: 16px;
    background: rgba(0,255,65,0.1);
    border: 1px solid rgba(0,255,65,0.25);
    border-radius: 4px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='10' viewBox='0 0 10 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 5L4 7L8 3' stroke='%2300ff41' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.pricing-btn { width: 100%; }

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

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

.faq-item {
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open { border-color: rgba(0,255,65,0.2); }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--text);
    user-select: none;
    gap: 16px;
}

.faq-question:hover { color: var(--white); }

.faq-arrow {
    flex-shrink: 0;
    width: 20px; height: 20px;
    border-radius: 6px;
    background: rgba(0,255,65,0.08);
    border: 1px solid rgba(0,255,65,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--toxic);
    transition: transform 0.25s;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    font-size: 11px;
    color: var(--text-body);
    line-height: 1.8;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

/* ===== COMPARISON ===== */
.compare {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 11px;
}

.compare-table th,
.compare-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}

.compare-table th {
    font-size: 12px;
    font-weight: 700;
    color: var(--toxic);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(0,255,65,0.03);
}

.compare-table th:first-child,
.compare-table td:first-child {
    text-align: left;
    color: var(--text-dim);
    font-weight: 600;
}

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

.check { color: var(--toxic); font-size: 14px; }
.cross { color: var(--danger); font-size: 14px; }

/* ===== CTA BANNER ===== */
.cta-banner {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.cta-inner {
    background: rgba(0,255,65,0.04);
    border: 1px solid rgba(0,255,65,0.2);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -60px; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,255,65,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== FOOTER ===== */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo img {
    width: 28px; height: 28px;
    object-fit: contain;
    opacity: 0.8;
}

.footer-logo-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-logo-text span { color: var(--toxic); }

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

.footer-link {
    font-size: 11px;
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover { color: var(--toxic); }

.footer-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--toxic);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.status-dot {
    width: 6px; height: 6px;
    background: var(--toxic);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--toxic);
    animation: pulse 1.5s infinite;
}

.footer-copy {
    font-size: 10px;
    color: var(--text-dim);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
    display: none;
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(5,5,5,0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
    z-index: 99;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu .nav-link {
    padding: 12px 16px;
    border-radius: 8px;
    display: block;
    font-size: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .nav { padding: 0 20px; }
    .nav-links { display: none; }
    .nav-burger { display: flex; }

    .hero-inner { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { order: -1; }
    .hero-logo-wrap { width: 200px; height: 200px; }
    .hero-logo { width: 100px; height: 100px; }
    .ring-1 { width: 170px; height: 170px; }
    .ring-2 { width: 140px; height: 140px; }
    .ring-3 { width: 110px; height: 110px; }

    .features-grid { grid-template-columns: 1fr 1fr; }
    .how-steps { grid-template-columns: 1fr 1fr; }
    .how-steps::before { display: none; }
    .pricing-grid { grid-template-columns: 1fr 1fr; max-width: 600px; }
    .apps-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .pricing-grid { grid-template-columns: 1fr; max-width: 360px; }
    .compare-table { font-size: 10px; }
    .compare-table th, .compare-table td { padding: 10px 12px; }
}

@media (max-width: 600px) {
    .features-grid { grid-template-columns: 1fr; }
    .how-steps { grid-template-columns: 1fr; }
    .hero-stats { gap: 16px; }
    .cta-inner { padding: 40px 20px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
}
