/* ===== CSS Variables ===== */
:root {
    /* Primary Colors - Dark Blue/Purple Theme (inspired by Vepien) */
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    
    /* Secondary Colors */
    --secondary-color: #06b6d4;
    --secondary-dark: #0891b2;
    --secondary-light: #22d3ee;
    
    /* Accent Colors */
    --accent-color: #10b981;
    --accent-dark: #059669;
    --accent-light: #34d399;
    
    /* Background Colors */
    --bg-dark: #0f0f23;
    --bg-darker: #070714;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252542;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    /* Gradient */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 50%, #10b981 100%);
    --gradient-hero: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
    --gradient-card: linear-gradient(145deg, rgba(99, 102, 241, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 30px rgba(99, 102, 241, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Font */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== Container ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Utility Classes ===== */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: none;
}

.btn--primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.5);
}

.btn--outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn--outline:hover {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    backdrop-filter: blur(10px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn--block {
    width: 100%;
}

/* ===== Header / Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem 0;
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.nav__logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav__menu {
    display: flex;
    align-items: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

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

.nav__link:hover::after,
.nav__link.active::after {
    width: 100%;
}

.nav__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

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

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero__gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 20%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
                var(--gradient-hero);
}

.hero__particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(99, 102, 241, 0.5), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(2px 2px at 50px 160px, rgba(16, 185, 129, 0.3), transparent),
        radial-gradient(2px 2px at 90px 40px, rgba(99, 102, 241, 0.5), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(6, 182, 212, 0.4), transparent),
        radial-gradient(2px 2px at 160px 120px, rgba(16, 185, 129, 0.3), transparent);
    background-size: 200px 200px;
    animation: particles 20s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-200px); }
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
}

.hero__badge i {
    color: var(--secondary-color);
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero__buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero__platforms {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.hero__platform-icons {
    display: flex;
    gap: 1rem;
}

.hero__platform-icons i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.hero__platform-icons i:hover {
    color: var(--primary-color);
}

/* Hero Shield Animation */
.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__shield {
    position: relative;
    width: 400px;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__shield-inner {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    box-shadow: var(--shadow-glow);
}

.hero__shield-inner i {
    font-size: 5rem;
    color: white;
}

.hero__shield-ring {
    position: absolute;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: pulse-ring 3s ease-out infinite;
}

.hero__shield-ring {
    width: 250px;
    height: 250px;
}

.hero__shield-ring--2 {
    width: 320px;
    height: 320px;
    animation-delay: 1s;
}

.hero__shield-ring--3 {
    width: 390px;
    height: 390px;
    animation-delay: 2s;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.hero__scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ===== Section Styles ===== */
section {
    padding: 6rem 0;
}

.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section__description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===== Features Section ===== */
.features {
    background: var(--bg-darker);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature__card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
}

.feature__card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.feature__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.feature__icon i {
    font-size: 1.5rem;
    color: white;
}

.feature__title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature__description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== How It Works Section ===== */
.how-it-works {
    background: var(--bg-dark);
}

.steps__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step__card {
    position: relative;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
}

.step__number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
}

.step__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.step__icon i {
    font-size: 2rem;
    color: white;
}

.step__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step__description {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== Pricing Section ===== */
.pricing {
    background: var(--bg-darker);
}

.pricing__tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.pricing__tab {
    padding: 0.75rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.pricing__tab:hover {
    border-color: var(--primary-color);
    color: var(--text-primary);
}

.pricing__tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.pricing__content {
    display: none;
}

.pricing__content.active {
    display: block;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pricing__card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition-normal);
}

.pricing__card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.pricing__card--popular,
.pricing__card--best {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.pricing__badge {
    position: absolute;
    top: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
}

.pricing__badge--best {
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.pricing__header {
    text-align: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing__name {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing__currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing__amount {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.pricing__save {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--accent-color);
}

.pricing__features {
    margin-bottom: 1.5rem;
}

.pricing__features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.pricing__features li i {
    color: var(--accent-color);
    margin-top: 0.25rem;
}

.pricing__target {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(99, 102, 241, 0.05);
    border-radius: var(--radius-sm);
}

.pricing__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 4rem;
    padding: 2rem;
    background: var(--bg-card);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
}

.guarantee__icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
    border-radius: 50%;
    flex-shrink: 0;
}

.guarantee__icon i {
    font-size: 2.5rem;
    color: white;
}

.guarantee__content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.guarantee__content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* ===== Servers Section ===== */
.servers {
    background: var(--bg-dark);
}

.servers__map {
    margin-bottom: 3rem;
}

.servers__stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 3rem;
    background: var(--gradient-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
}

.server__stat {
    text-align: center;
}

.server__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.server__stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.servers__regions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.region__card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.region__card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.region__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.region__icon i {
    font-size: 1.5rem;
    color: white;
}

.region__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* ===== FAQ Section ===== */
.faq {
    background: var(--bg-darker);
}

.faq__grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq__item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq__question:hover {
    background: rgba(99, 102, 241, 0.05);
}

.faq__question i {
    transition: var(--transition-normal);
}

.faq__item.active .faq__question i {
    transform: rotate(180deg);
}

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

.faq__item.active .faq__answer {
    max-height: 500px;
}

.faq__answer p {
    padding: 0 1.5rem 1.25rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA Section ===== */
.cta {
    background: var(--gradient-primary);
    padding: 5rem 0;
}

.cta__content {
    text-align: center;
}

.cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta__description {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta .btn--primary {
    background: white;
    color: var(--primary-dark);
    box-shadow: var(--shadow-lg);
}

.cta .btn--primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cta .btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
}

.cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* ===== Contact Section ===== */
.contact {
    background: var(--bg-dark);
}

.contact__grid {
    max-width: 800px;
    margin: 0 auto;
}

.contact__info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.contact__item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: var(--transition-normal);
}

.contact__item:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-5px);
}

.contact__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 auto 1rem;
}

.contact__icon i {
    font-size: 1.5rem;
    color: white;
}

.contact__details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.contact__details p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

.contact__details a {
    color: var(--primary-light);
    font-size: 0.95rem;
}

.contact__details a:hover {
    color: var(--primary-color);
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-darker);
    padding: 5rem 0 2rem;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.footer__logo i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer__description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 1rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-secondary);
    transition: var(--transition-normal);
}

.footer__social-link:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.footer__title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer__links ul li {
    margin-bottom: 0.75rem;
}

.footer__links ul li a {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.footer__links ul li a:hover {
    color: var(--primary-light);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.footer__legal {
    display: flex;
    gap: 2rem;
}

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

.footer__legal a:hover {
    color: var(--primary-light);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

/* ===== Responsive Styles ===== */
@media screen and (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--bg-darker);
        padding: 5rem 2rem;
        transition: var(--transition-normal);
        z-index: 1001;
    }
    
    .nav__menu.show {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__buttons {
        display: none;
    }
    
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__description {
        margin: 0 auto 2rem;
    }
    
    .hero__stats {
        justify-content: center;
    }
    
    .hero__buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero__platforms {
        justify-content: center;
    }
    
    .hero__image {
        display: none;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .steps__grid {
        grid-template-columns: 1fr;
    }
    
    .pricing__tabs {
        gap: 0.5rem;
    }
    
    .pricing__tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
    }
    
    .servers__stats {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .servers__regions {
        grid-template-columns: 1fr;
    }
    
    .contact__info {
        grid-template-columns: 1fr;
    }
    
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__social {
        justify-content: center;
    }
    
    .footer__bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .pricing__guarantee {
        flex-direction: column;
        text-align: center;
    }
    
    .cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn--large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}
