:root {
    --bg-color: #0b0d10;
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --accent-color: #10b981;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-main: 'Inter', sans-serif;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section__title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.section__subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 750px;
    margin: -1rem auto 3.5rem;
    font-size: 1.15rem;
}

/* Typography elements */
.mt-4 {
    margin-top: 3rem;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.05rem;
    white-space: nowrap;
}

.btn--small {
    padding: 8px 18px;
    font-size: 0.95rem;
    border-radius: 8px;
}

.btn--large {
    padding: 18px 40px;
    font-size: 1.15rem;
    border-radius: var(--radius-md);
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1d4ed8 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-hover) 0%, #1e40af 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    transform: translateY(-2px);
}

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

.btn--outline:hover {
    background-color: var(--card-bg);
    border-color: var(--text-muted);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(11, 13, 16, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo__text {
    font-family: var(--font-main);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo__text .accent {
    color: var(--primary-color);
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--text-color);
}

/* Hero */
.hero {
    padding: 220px 0 160px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: #0b0d10;
    background-image: 
        radial-gradient(circle at top right, rgba(59, 130, 246, 0.3), transparent 60%),
        radial-gradient(circle at bottom left, rgba(16, 185, 129, 0.1), transparent 60%),
        linear-gradient(to right, rgba(11, 13, 16, 0.95) 0%, rgba(11, 13, 16, 0.85) 50%, rgba(11, 13, 16, 0.95) 100%),
        url('hero-bg.png');
    background-size: cover, cover, cover, cover;
    background-position: center, center, center, center;
    background-attachment: scroll, scroll, scroll, fixed;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: pulse-glow 10s infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 70%);
    filter: blur(100px);
    z-index: -1;
    animation: pulse-glow 12s infinite alternate-reverse;
}

@keyframes pulse-glow {
    0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
    50% { transform: scale(1.1) translate(5%, 5%); opacity: 1; }
    100% { transform: scale(0.9) translate(-5%, -5%); opacity: 0.8; }
}

.hero__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero__title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero__descr {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 5rem;
}

.hero__actions .btn--primary {
    padding: 20px 48px;
    font-size: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.hero__note {
    font-size: 0.95rem;
    color: var(--accent-color);
    font-weight: 500;
    background: rgba(16, 185, 129, 0.05);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.stat-card__val {
    font-size: 1.8rem;
    font-weight: 700;
    color: #818cf8; /* Light blue/indigo accent */
}

.stat-card__label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Cards (About, Features) */
.about__grid, .reviews__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.card, .review-card, .info-block {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    transition: var(--transition);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.card:hover, .review-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    color: #fff;
}

.card p, .review-card p, .info-block p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Steps */
.steps__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3.5rem;
}

.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    width: calc(33.333% - 1rem);
    min-width: 280px;
}

.step-card__num {
    background: var(--primary-color);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.step-card p {
    font-weight: 500;
    font-size: 1.05rem;
}

.download__note {
    background: rgba(59, 130, 246, 0.08);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem 2rem;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 3.5rem;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Platforms */
.platforms__title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #fff;
}

.platforms__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
}

.platform-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    font-size: 1.1rem;
}

.platform-btn:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
}

.platform-icon {
    font-size: 2.8rem;
}

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

.info-block h3 {
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    color: #fff;
}

.info-block p {
    margin-bottom: 1.25rem;
}

.info-block .list {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    color: var(--text-muted);
}

.info-block .list li {
    margin-bottom: 0.5rem;
    list-style-type: decimal;
}

/* Setup content */
.setup__content, .bypass__content {
    max-width: 850px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 3.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.setup__content p, .bypass__content p {
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 1.1rem;
}

.setup__content p:last-child, .bypass__content p:last-child {
    margin-bottom: 0;
}

/* CTA Block */
.cta__box, .guarantee__box {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(16, 185, 129, 0.08) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta__box::before, .guarantee__box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.05) 0%, transparent 60%);
    z-index: 0;
}

.cta__box h2, .guarantee__box h2,
.cta__box p, .guarantee__box p,
.cta__box .btn {
    position: relative;
    z-index: 1;
}

.cta__box h2, .guarantee__box h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.cta__box p, .guarantee__box p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Pricing */
.pricing__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.price-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.price-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.price-card--popular {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.08) 0%, rgba(255,255,255,0.02) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
}

.price-card--popular:hover {
    border-color: rgba(59, 130, 246, 0.6);
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -14px;
    right: 25px;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

.price-card__header {
    text-align: center;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--card-border);
    padding-bottom: 2.5rem;
}

.price-card__header h3 {
    font-size: 1.35rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.price-card__header .price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}

.price-card__header .price span {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.95rem;
    margin-top: 0.75rem;
}

.price-card__features {
    margin-bottom: 3rem;
    flex-grow: 1;
}

.price-card__features li {
    margin-bottom: 1.25rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1.05rem;
}

.price-card__features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-card .btn {
    width: 100%;
}

.pricing__info {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Reviews */
.reviews-summary {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.r-sum__score {
    text-align: center;
}
.r-sum__val {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    color: #fff;
    margin-bottom: 0.5rem;
}
.r-sum__count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.r-sum__bars {
    flex-grow: 1;
    max-width: 600px;
}
.r-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 6px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.bar-bg {
    flex-grow: 1;
    height: 8px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: #fbbf24;
    border-radius: 4px;
}

.r-sum__rec {
    text-align: center;
}
.r-sum__rec-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: #38bdf8;
    line-height: 1;
}
.r-sum__rec-lbl {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    max-width: 100px;
}

.rev-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    color: #fff;
    flex-shrink: 0;
}
.bg-blue { background: #0ea5e9; }
.bg-purple { background: #a855f7; }
.bg-blue2 { background: #3b82f6; }

.rev-meta {
    flex-grow: 1;
}
.rev-meta b {
    display: block;
    color: #fff;
    font-size: 1.05rem;
}
.rev-meta span {
    font-size: 0.85rem;
    color: var(--text-muted);
}
.rev-stars {
    font-size: 0.9rem;
}

.review-card p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.rev-verified {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.icon-verified {
    background: var(--accent-color);
    color: #000;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

/* FAQ */
.faq__list {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq__item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: var(--transition);
}

.faq__item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.faq__item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #fff;
}

.faq__item p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Footer */
.footer {
    border-top: 1px solid var(--card-border);
    padding: 4rem 0 2rem;
    background: #06080a;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer__brand p {
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-size: 0.95rem;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer__links a:hover {
    color: #fff;
}

.footer__copy {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    border-top: 1px solid var(--card-border);
    padding-top: 2rem;
}

/* Infrastructure Servers */
.section__suptitle {
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4f46e5;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.server-card {
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.server-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.server-card__code {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-align: center;
}

.server-card__country {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.server-card__city {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    margin-bottom: 1.5rem;
}

.server-card__stats {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.s-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.s-stat span {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.s-stat b {
    font-size: 0.9rem;
    color: #0ea5e9;
}

.server-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(234, 179, 8, 0.2);
    color: #eab308;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 1024px) {
    .price-card--popular {
        transform: scale(1);
    }
    
    .price-card--popular:hover {
        transform: translateY(-5px);
    }
    
    .reviews-summary {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    .r-sum__bars {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__descr {
        font-size: 1.05rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section__title {
        font-size: 2.2rem;
    }
    
    .steps__grid {
        flex-direction: column;
    }
    
    .step-card {
        width: 100%;
    }
    
    .setup__content, .bypass__content {
        padding: 2rem;
    }
    
    .cta__box, .guarantee__box {
        padding: 3rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .price-card__header .price {
        font-size: 2.8rem;
    }
    
    .r-sum__val {
        font-size: 3.5rem;
    }
}
