* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

:root {
    --black-0: #0a0a0a;
    --black-1: #121212;
    --black-2: #1a1a1a;
    --black-3: #222222;
    --black-4: #2a2a2a;
    --graphite-1: #333333;
    --graphite-2: #3a3a3a;
    --graphite-3: #444444;
    --graphite-4: #4a4a4a;
    --silver-1: #c0c0c0;
    --silver-2: #d0d0d0;
    --silver-3: #e0e0e0;
    --silver-4: #f0f0f0;
    --white: #ffffff;
    --glow-effect: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(25, 25, 25, 0.3);
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-silver: linear-gradient(135deg, var(--silver-2) 0%, var(--white) 100%);
    --gradient-silver-reverse: linear-gradient(135deg, var(--white) 0%, var(--silver-2) 100%);
    --gradient-silver-vertical: linear-gradient(to bottom, var(--silver-3) 0%, var(--white) 100%);
    --gradient-silver-horizontal: linear-gradient(to right, var(--silver-3) 0%, var(--white) 100%);
    --gradient-dark: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.15) 100%);
    --gradient-glass-dark: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.5) 100%);
    --diamond-gradient: linear-gradient(135deg, rgba(220,220,220,0.8) 0%, rgba(255,255,255,0.9) 50%, rgba(220,220,220,0.8) 100%);
}

#faq-wave-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.6;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--silver-2);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    background: var(--gradient-dark);
    background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    letter-spacing: -0.5px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
    position: relative;
    display: inline-block;
}

.faq-section {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding: 40px 0;
    background: rgba(10, 10, 10, 0.3);
}

.faq-section .section-title {
    text-align: center;
    margin: 0 auto 20px;
    width: 100%;
}

.section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -0.5px;
    text-shadow: 0 0 20px rgba(255,255,255,0.15);
    margin-bottom: 25px;
}

.security-features .section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.speed-test-section .section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.pricing-section .section-title {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 50px;
    font-weight: 400;
    color: var(--silver-3);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-section .section-subtitle {
    text-align: center;
    margin: 0 auto 40px;
}

.faq-grid {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 8px;
    text-align: left;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    background: rgba(40, 40, 40, 0.8);
    box-shadow: 0 12px 32px rgba(0,0,0,0.5);
    border-color: rgba(255,255,255,0.25);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255,255,255,0.05);
}

.faq-question h4 {
    font-size: 1.4rem;
    color: var(--silver-3);
    margin: 0;
    font-weight: 500;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-toggle {
    width: 25px;
    height: 25px;
    position: relative;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    background: var(--silver-3);
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 50%;
    height: 2px;
}

.faq-toggle::after {
    width: 2px;
    height: 50%;
}

.faq-item.active .faq-toggle {
    background: rgba(0,0,0,0.3);
}

.faq-item.active .faq-toggle::after {
    opacity: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-inner {
    padding: 25px 30px 30px;
    color: var(--silver-2);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.faq-contact-btn {
    padding: 18px 30px;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 250px;
    text-align: left;
}

.faq-contact-btn i {
    font-size: 1.2rem;
}

.contact-info {
    display: none;
    margin-top: 20px;
    padding: 25px;
    text-align: center;
}

.contact-info h4 {
    margin-bottom: 15px;
    color: var(--silver-3);
}

.contact-info p {
    margin-bottom: 10px;
    color: var(--silver-2);
}

.contact-info a {
    color: var(--silver-3);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--white);
}

.glass-card {
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    will-change: transform, box-shadow;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 42px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--silver-3);
    border: 1px solid var(--silver-2);
    box-shadow: 0 0 15px var(--glow-effect);
    z-index: 1;
    will-change: transform, box-shadow;
    text-decoration: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: -1;
}

.btn:hover {
    color: var(--silver-4);
    box-shadow: 0 0 25px var(--glow-effect);
    transform: translateY(-3px) !important;
}

.btn:hover::before {
    left: 100%;
}

.btn i {
    margin-right: 10px;
    font-size: 0.9rem;
}

.btn-glass-gradient {
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
}

.btn-glass-gradient:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 100%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-section {
    min-height: 100vh;
    background-color: rgba(5, 5, 5, 0.9);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--graphite-2);
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), var(--black-0);
    background-size: 50px 50px;
    background-attachment: fixed;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%), linear-gradient(45deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.01) 100%);
    background-size: 60px 60px;
    z-index: 1;
    pointer-events: none;
}

.pricing-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 80%, rgba(40, 40, 40, 0.1) 0%, transparent 40%), radial-gradient(circle at 80% 20%, rgba(40, 40, 40, 0.1) 0%, transparent 40%);
    z-index: 0;
}

.pricing-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background: rgba(25, 25, 25, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
}

.pricing-card.popular {
    border: 1px solid rgba(255,255,255,0.3);
    transform: scale(1.08);
    z-index: 2;
}

.pricing-card.popular::before {
    display: none;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.3);
}

.pricing-card.popular:hover {
    transform: translateY(-10px) scale(1.08);
}

.pricing-title {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--silver-3);
}

.pricing-price {
    font-size: 4rem;
    margin-bottom: 25px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Manrope', sans-serif;
}

.pricing-period {
    font-size: 0.9rem;
    color: var(--silver-2);
    display: block;
    margin-top: 5px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 40px;
}

.pricing-features li {
    padding: 12px 0;
    color: var(--silver-2);
    font-size: 1rem;
    border-bottom: 1px solid var(--graphite-3);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    margin-right: 10px;
    color: var(--silver-3);
}

.trial-notice {
    background: linear-gradient(135deg, rgba(40,40,40,0.8) 0%, rgba(30,30,30,0.9) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 0;
    padding: 40px;
    margin: 60px 0 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.trial-notice::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.trial-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--white);
    font-weight: 600;
}

.trial-content p {
    font-size: 1.1rem;
    color: var(--silver-3);
    margin-bottom: 25px;
    line-height: 1.6;
}

.trial-content .btn {
    padding: 16px 35px;
    font-size: 1rem;
    border-radius: 0;
}

.pricing-period-selector {
    margin-bottom: 50px;
    text-align: center;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.period-options {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.period-option {
    padding: 18px 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--silver-3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-weight: 500;
    font-size: 1rem;
}

.period-option.active {
    background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, rgba(255,255,255,0.35) 100%);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255,255,255,0.3);
    transform: translateY(-2px);
}

.period-option:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 100%);
}

.period-discount {
    color: var(--silver-3);
    font-size: 1.1rem;
    margin-top: 15px;
    opacity: 0.9;
    font-weight: 500;
}

.period-discount strong {
    font-weight: 700;
    color: var(--white);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.faq-category-btn {
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
    font-weight: 500;
}

.faq-category-btn.active {
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.3) 100%);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.faq-category {
    display: none;
}

.faq-category.active {
    display: block;
}

.feature-tooltip {
    position: relative;
    cursor: help;
    border-bottom: 1px dotted var(--silver-2);
}

.feature-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px;
    background: var(--black-3);
    border: 1px solid var(--graphite-2);
    color: var(--silver-3);
    font-size: 0.8rem;
    width: 200px;
    z-index: 1000;
    border-radius: 4px;
}

.faq-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.faq-buttons .btn {
    padding: 15px 30px;
}

.faq-buttons .btn i {
    margin-right: 10px;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--black-1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--graphite-2);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

header.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    border-bottom-color: rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    height: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(-20px);
    text-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.logo span {
    color: var(--silver-2);
    font-weight: 400;
}

.logo-icon {
    margin-right: 12px;
    font-size: 1.6rem;
    color: var(--silver-2);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 32px;
    position: relative;
    opacity: 0;
    transform: translateY(-20px);
}

.nav-links a {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    color: var(--silver-2);
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-links a i {
    margin-right: 8px;
    font-size: 0.85rem;
}

.nav-links a:hover {
    color: var(--silver-4);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--silver-3);
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}

.hero {
    height: 100vh;
    min-height: 800px;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    border-bottom: 1px solid var(--graphite-2);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 30%, rgba(30, 30, 30, 0.2) 0%, transparent 30%), radial-gradient(circle at 80% 70%, rgba(40, 40, 40, 0.2) 0%, transparent 30%), linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text {
    max-width: 800px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
    font-weight: 500;
    text-shadow: 0 0 20px var(--glow-effect);
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-title span {
    display: block;
    font-size: 1.1rem;
    font-family: 'Inter', sans-serif;
    color: var(--silver-2);
    margin-top: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: var(--silver-2);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 36px;
    color: var(--silver-2);
    max-width: 600px;
    line-height: 1.8;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 0 10px;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: var(--gradient-silver-vertical);
}

.stat-number {
    font-size: 2.6rem;
    font-weight: 500;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 6px;
    font-family: 'Manrope', sans-serif;
    text-shadow: 0 0 15px var(--glow-effect);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--silver-2);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.hero-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0.6;
}

#threejs-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.security-features {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--graphite-2);
}

.security-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(30, 30, 30, 0.2) 0%, transparent 30%), radial-gradient(circle at 70% 80%, rgba(40, 40, 40, 0.2) 0%, transparent 30%), linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.security-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 2;
    pointer-events: none;
}

.security-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 25px;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--silver-3);
}

.feature-desc {
    font-size: 0.95rem;
    color: var(--silver-2);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
}

.feature-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--gradient-glass);
    color: var(--white);
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.1);
}

.feature-card .btn {
    margin-top: auto;
    align-self: center;
    width: 100%;
}

.security-visual {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    opacity: 0.2;
}

.diamond-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-auto-rows: 100px;
    opacity: 0.1;
}

.diamond {
    width: 100%;
    height: 100%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    background: var(--diamond-gradient);
    opacity: 0.05;
    animation: diamond-pulse 8s infinite ease-in-out;
}

.speed-test-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--graphite-2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speed-test {
    width: 100%;
    max-width: 1000px;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--graphite-2);
}

.speed-test::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(30, 30, 30, 0.2) 0%, transparent 30%), radial-gradient(circle at 30% 70%, rgba(40, 40, 40, 0.2) 0%, transparent 30%);
    z-index: 1;
}

.speed-test-content {
    position: relative;
    z-index: 3;
    text-align: center;
    width: 100%;
}

.speed-test-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.speed-test-card {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 40px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.test-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--silver-3);
    font-family: 'Manrope', sans-serif;
}

.speed-meter {
    height: 16px;
    background-color: var(--black-3);
    border-radius: 8px;
    margin: 30px 0;
    overflow: hidden;
    position: relative;
}

.speed-bar {
    height: 100%;
    background: var(--gradient-silver-horizontal);
    width: 0;
    border-radius: 8px;
    position: relative;
    transition: width 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: width;
    overflow: hidden;
}

.speed-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4) 50%, transparent 100%);
    animation: shine 2s linear infinite;
}

.speed-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    color: var(--silver-2);
    font-family: 'Roboto Mono', monospace;
    font-size: 0.9rem;
}

.metrics-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.metric-card {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.metric-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--silver-3);
    font-family: 'Manrope', sans-serif;
}

.metric-value {
    font-size: 2.5rem;
    font-family: 'Roboto Mono', monospace;
    color: var(--silver-3);
    font-weight: 500;
}

.metric-unit {
    font-size: 1rem;
    color: var(--silver-2);
    margin-top: 5px;
}

.server-button {
    background: rgba(25, 25, 25, 0.8);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0;
    padding: 20px 40px;
    font-size: 1.2rem;
    font-family: 'Manrope', sans-serif;
    color: var(--silver-3);
    cursor: pointer;
    transition: all 0.4s ease;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.server-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
    background: rgba(35, 35, 35, 0.8);
}

.server-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
}

.server-status-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black-1) 0%, var(--black-3) 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--graphite-2);
}

.server-status-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(30, 30, 30, 0.2) 0%, transparent 30%), radial-gradient(circle at 30% 70%, rgba(40, 40, 40, 0.2) 0%, transparent 30%), linear-gradient(rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.95));
    z-index: 1;
}

.server-status-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 2;
    pointer-events: none;
}

.server-status-content {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.server-status-content .section-subtitle {
    margin-bottom: 40px;
}

.server-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--silver-3);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.search-input:focus {
    outline: none;
    border-color: var(--silver-3);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--silver-3);
}

.filter-select {
    padding: 15px 20px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--silver-3);
    font-family: 'Inter', sans-serif;
    min-width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--silver-3);
}

.servers-grid-view {
    display: none;
}

.server-card {
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 25px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border-radius: 8px;
}

.server-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0.3;
}

.server-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border-color: rgba(255,255,255,0.2);
}

.server-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.server-flag {
    width: 40px;
    height: 30px;
    margin-right: 15px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
}

.server-name {
    font-size: 1.2rem;
    color: var(--silver-3);
    font-family: 'Manrope', sans-serif;
}

.server-details {
    margin-bottom: 25px;
}

.server-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.detail-label {
    color: var(--silver-2);
    font-size: 0.9rem;
}

.detail-value {
    color: var(--silver-3);
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
}

.server-action {
    margin-top: 25px;
}

.connect-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient-glass);
    color: var(--white);
    border: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
}

.connect-btn:hover {
    background: var(--gradient-glass-dark);
}

.servers-list-view {
    display: block;
}

.server-row {
    display: grid;
    grid-template-columns: 50px 1fr 1fr 1fr auto;
    align-items: center;
    padding: 20px;
    background: rgba(25, 25, 25, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 15px;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.server-row:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.2);
}

.server-row-flag {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 3px;
}

.server-row-name {
    font-size: 1.1rem;
    color: var(--silver-3);
    font-family: 'Manrope', sans-serif;
}

.server-row-location {
    color: var(--silver-2);
}

.server-row-speed {
    color: var(--silver-3);
    font-family: 'Roboto Mono', monospace;
    font-weight: 500;
}

.server-row-action .connect-btn {
    width: auto;
    padding: 10px 20px;
}

#app {
    position: relative;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.3;
    pointer-events: none;
}

.app-download {
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

.app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.app-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}
/* Force auth button styles with maximum specificity */
body header#header .header-container .auth-buttons a.auth-btn {
    font-family: 'Inter', sans-serif !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 18px 30px !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: none !important;
    outline: none !important;
    position: relative !important;
    overflow: hidden !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.03) !important;
    z-index: 1 !important;
    text-decoration: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;

}

body header#header .header-container .auth-buttons a.auth-btn:hover {
    color: #f0f0f0 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05) !important;
    transform: translateY(-3px) !important;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.25) 100%) !important;
}

body header#header .header-container .auth-buttons {
    display: flex !important;
    gap: 15px !important;
    margin-left: 30px !important;
}
.app-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.app-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.floating-phone {
    width: 280px;
    height: 560px;
    background: rgba(18, 18, 18, 0.8);
    border-radius: 40px;
    border: 10px solid rgba(35, 35, 35, 0.8);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform-style: preserve-3d;
    animation: phone-float 8s infinite ease-in-out;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.phone-screen {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.phone-status {
    font-size: 1rem;
    color: var(--silver-3);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
}

.phone-button {
    width: 220px;
    padding: 16px;
    margin: 12px 0;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.phone-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: var(--silver-3);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
    min-width: 200px;
    justify-content: center;
}

.download-btn:hover {
    background: rgba(40, 40, 40, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.download-icon {
    font-size: 2.2rem;
    margin-right: 15px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: 0.8rem;
    color: var(--silver-2);
}

.download-platform {
    font-size: 1.2rem;
    font-weight: 600;
}

.footer {
    background: linear-gradient(135deg, var(--black-2) 0%, var(--black-4) 100%);
    padding: 80px 0 40px;
    position: relative;
    border-top: 1px solid var(--graphite-2);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 50%, rgba(255,255,255,0.02) 100%);
    z-index: 1;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.footer-logo {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 1.8rem;
    background: var(--gradient-silver);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-about {
    color: var(--silver-2);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: left;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--silver-3);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-glass);
    color: var(--white);
    transform: translateY(-3px);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    width: 100%;
    padding: 0 15px;
}


.auth-buttons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
    padding: 0 15px;
}



.nav-links {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
}
.footer-links h4 {
    font-size: 1.1rem;
    color: var(--silver-3);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--silver-2);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--silver-4);
    transform: translateX(5px);
}

.footer-links a i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid var(--graphite-3);
    text-align: center;
    color: var(--silver-2);
    font-size: 0.8rem;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 30px 20px 0;
}

@keyframes phone-float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes diamond-pulse {
    0% { opacity: 0.05; }
    50% { opacity: 0.1; }
    100% { opacity: 0.05; }
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .app-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .app-visual {
        height: 400px;
        margin-top: 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question h4 {
        font-size: 1.1rem;
    }
    
    .app-content {
        flex-direction: column;
    }
    
    .app-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .floating-phone {
        width: 220px;
        height: 440px;
    }
    
    .phone-screen {
        padding: 20px 15px;
    }
    
    .phone-logo {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .phone-status {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .phone-button {
        width: 180px;
        padding: 14px;
        font-size: 0.9rem;
        margin: 8px 0;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-about {
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: var(--black-1);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--graphite-2);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .nav-links li {
        margin: 15px 0;
        margin-left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-item:not(:last-child)::after {
        display: none;
    }
    
    .speed-test {
        padding: 40px 20px;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .server-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .search-box {
        min-width: 100%;
    }
    
    .server-row {
        grid-template-columns: 40px 1fr auto;
        padding: 15px;
        gap: 10px;
    }
    
    .period-options {
        flex-direction: column;
        align-items: center;
    }
    
    .period-option {
        width: 200px;
    }
    
    .faq-question h4 {
        font-size: 1.2rem;
    }
    
    .faq-answer-inner {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
    
    .faq-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .faq-contact-btn {
        width: 140px;
        padding: 12px 15px;
        font-size: 0.8rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 50px 0;
        overflow: visible;
    }
    
    .hero-content {
        padding-top: 40px;
        justify-content: flex-start;
    }
    
    .hero-text {
        margin-top: 30px;
    }
    
    .hero-stats {
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 3.0rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 30px;
    }
    
    .security-features .section-title,
    .speed-test-section .section-title,
    .pricing-section .section-title {
        font-size: 2rem;
    }
    
    .server-row {
        grid-template-columns: 30px 1fr auto;
        padding: 10px 8px;
        gap: 8px;
    }
    
    .server-row-name {
        font-size: 0.9rem;
    }
    
    .server-row-flag {
        width: 30px;
        height: 22px;
    }
    
    .server-row-action .connect-btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        min-width: 60px;
    }
    
    .search-input, .filter-select {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .search-icon {
        left: 15px;
    }
    
    .app-download {
        padding: 20px 15px !important;
        margin: 0;
    }

    .app-content {
        gap: 15px !important;
        margin: 0;
        padding: 0;
    }
    
    .app-visual {
        height: 200px !important;
        margin: 5px 0 !important;
        transform: scale(0.85);
    }
    
    .app-text {
        padding: 10px !important;
        margin: 0;
    }
    
    .floating-phone {
        margin: 0 !important;
        transform: translateY(-10px);
    }
    
    .download-buttons {
        margin-top: 20px !important;
        gap: 10px;
    }
    
    .servers-list-view {
        display: block;
    }
    
    .servers-grid-view {
        display: none;
    }
    
    .server-row-location, .server-row-speed {
        display: none;
    }
    
    .metrics-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
        padding: 0 5px;
    }
    
    .metric-card {
        padding: 8px 5px;
        min-height: 60px;
    }
    
    .metric-title {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .metric-value {
        font-size: 0.9rem;
    }
    
    .metric-unit {
        font-size: 0.5rem;
    }
    
    .period-options {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
        gap: 8px;
        padding: 0 10px;
    }
    
    .period-option {
        padding: 10px 12px;
        font-size: 0.8rem;
        min-width: 70px;
        text-align: center;
        flex: 1;
    }
    
    .hero-buttons .btn {
        padding: 16px 25px;
        font-size: 0.8rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .pricing-price {
        font-size: 3rem;
    }
    
    .faq-question {
        padding: 15px 18px;
    }
    
    .download-btn {
        min-width: 160px;
        padding: 14px 18px;
    }
    
    .download-platform {
        font-size: 1rem;
    }
    
    .header-container {
        padding: 0 15px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    .hero {
        min-height: 700px;
        padding-top: 60px;
    }
    
    .security-features,
    .speed-test-section,
    .pricing-section,
    .server-status-section {
        padding: 80px 0;
    }
    
    .servers-grid-view {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .app-visual {
        height: 350px;
    }
    
    .floating-phone {
        width: 200px;
        height: 400px;
    }
    
    .phone-screen {
        padding: 15px 10px;
        border-radius: 25px;
    }
    
    .phone-logo {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .phone-status {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .phone-button {
        width: 160px;
        padding: 12px;
        font-size: 0.8rem;
        margin: 6px 0;
    }
    
    .app-download-section {
        padding: 60px 0;
    }
    
    .app-visual {
        height: 350px;
    }
    
    .floating-phone {
        width: 200px;
        height: 400px;
    }
    
    .phone-screen {
        padding: 15px 10px;
        border-radius: 25px;
    }
    
    .phone-logo {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }
    
    .phone-status {
        font-size: 0.8rem;
        margin-bottom: 20px;
    }
    
    .phone-button {
        width: 160px;
        padding: 12px;
        font-size: 0.8rem;
        margin: 6px 0;
    }
    
    .download-btn {
        min-width: 160px;
        padding: 14px 18px;
    }
    
    .download-platform {
        font-size: 1rem;
    }
	
	
	
	















	/* Dashboard Specific Styles */
	.dashboard-container {
		min-height: 100vh;
		padding: 120px 20px 60px;
		background: var(--gradient-dark);
		background-attachment: fixed;
	}

	.dashboard-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
		padding: 30px;
		background: var(--glass-bg);
		backdrop-filter: blur(10px);
		border: 1px solid var(--glass-border);
		border-radius: 0;
	}

	.dashboard-header h2 {
		font-size: 2.5rem;
		margin: 0;
	}

	.dashboard-actions {
		display: flex;
		gap: 15px;
	}

	.dashboard-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
		gap: 30px;
		margin-bottom: 40px;
	}

	.dashboard-card {
		padding: 30px;
		opacity: 0;
		transform: translateY(20px);
		transition: all 0.4s ease;
	}

	.dashboard-card h3 {
		font-size: 1.5rem;
		margin-bottom: 20px;
		color: var(--silver-3);
	}

	.dashboard-card p {
		margin-bottom: 12px;
		color: var(--silver-2);
		display: flex;
		justify-content: space-between;
	}

	.dashboard-card p strong {
		color: var(--silver-3);
	}

	.status-active {
		color: #4ade80 !important;
		font-weight: 600;
	}

	.profile-actions {
		display: flex;
		flex-direction: column;
		gap: 12px;
		margin-top: 25px;
	}

	.profile-actions .btn {
		width: 100%;
		justify-content: center;
	}

	.referral-input {
		display: flex;
		margin: 20px 0;
	}

	.referral-input input {
		flex: 1;
		padding: 12px 15px;
		background: rgba(25, 25, 25, 0.6);
		border: 1px solid var(--glass-border);
		color: var(--silver-3);
		font-family: 'Inter', sans-serif;
	}

	.referral-input .btn {
		border-radius: 0;
		margin-left: -1px;
	}

	.alert {
		padding: 12px 15px;
		background: rgba(30, 30, 30, 0.6);
		border-left: 3px solid var(--silver-3);
		margin: 20px 0;
		font-size: 0.9rem;
		color: var(--silver-2);
	}

	.alert i {
		margin-right: 8px;
	}

	.download-section {
		padding: 30px;
		text-align: center;
	}

	.download-section h3 {
		font-size: 1.8rem;
		margin-bottom: 25px;
		color: var(--silver-3);
	}

	/* Responsive adjustments for dashboard */
	@media (max-width: 768px) {
		.dashboard-header {
			flex-direction: column;
			gap: 20px;
			text-align: center;
		}
		
		.dashboard-actions {
			flex-direction: column;
			width: 100%;
		}
		
		.dashboard-actions .btn {
			width: 100%;
		}
		
		.referral-input {
			flex-direction: column;
		}
		
		.referral-input .btn {
			margin: 10px 0 0 0;
			width: 100%;
		}
	}
		/* Dashboard Styles */
	.dashboard-container {
		min-height: 100vh;
		padding: 140px 20px 60px;
		background: var(--gradient-dark);
		background-attachment: fixed;
		max-width: 1200px;
		margin: 0 auto;
	}

	.dashboard-header {
		display: flex;
		justify-content: space-between;
		align-items: center;
		margin-bottom: 40px;
		padding: 30px;
	}

	.dashboard-header h2 {
		font-size: 2.5rem;
		margin: 0;
	}

	.dashboard-actions {
		display: flex;
		gap: 15px;
	}

	.dashboard-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
		gap: 30px;
		margin-bottom: 40px;
	}

	.dashboard-card {
		padding: 30px;
		height: fit-content;
	}

	.dashboard-card h3 {
		font-size: 1.5rem;
		margin-bottom: 25px;
		padding-bottom: 15px;
		border-bottom: 1px solid rgba(255,255,255,0.1);
	}

	.dashboard-card p {
		margin-bottom: 15px;
		display: flex;
		justify-content: space-between;
		padding: 8px 0;
		border-bottom: 1px solid rgba(255,255,255,0.05);
	}

	.dashboard-card p span {
		text-align: right;
	}

	.status-active {
		color: #4ade80 !important;
		font-weight: 600;
	}

	.profile-actions {
		display: grid;
		grid-template-columns: 1fr;
		gap: 12px;
		margin-top: 25px;
	}

	.referral-input {
		display: flex;
		margin: 20px 0;
	}

	.referral-input input {
		flex: 1;
		padding: 12px 15px;
		background: rgba(25, 25, 25, 0.6);
		border: 1px solid var(--glass-border);
		color: var(--silver-3);
		font-family: 'Inter', sans-serif;
		border-right: none;
	}

	.referral-input .btn {
		border-radius: 0;
		border-left: none;
		padding: 0 20px;
	}

	.alert {
		padding: 15px;
		background: rgba(30, 30, 30, 0.6);
		border-left: 3px solid var(--silver-3);
		margin: 20px 0;
		font-size: 0.9rem;
		display: flex;
		align-items: center;
	}

	.alert i {
		margin-right: 10px;
		font-size: 1.1rem;
	}

	.download-section {
		padding: 40px;
		text-align: center;
	}

	.download-section h3 {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}

	/* Responsive adjustments for dashboard */
	@media (max-width: 900px) {
		.dashboard-grid {
			grid-template-columns: 1fr;
		}
	}

	@media (max-width: 768px) {
		.dashboard-header {
			flex-direction: column;
			gap: 20px;
			text-align: center;
			padding: 20px;
		}
		
		.dashboard-actions {
			flex-direction: column;
			width: 100%;
		}
		
		.dashboard-actions .btn {
			width: 100%;
		}
		
		.referral-input {
			flex-direction: column;
		}
		
		.referral-input input {
			border-right: 1px solid var(--glass-border);
			border-bottom: none;
			margin-bottom: 10px;
		}
		
		.referral-input .btn {
			border-left: 1px solid var(--glass-border);
			width: 100%;
		}
		
		.dashboard-container {
			padding: 120px 15px 40px;
		}
	}

	@media (max-width: 480px) {
		.dashboard-card {
			padding: 20px;
		}
		
		.download-section {
			padding: 30px 20px;
		}
	}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 20px;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 30px;
}

.dashboard-header h2 {
    font-size: 2.2rem;
    margin: 0;
}

.dashboard-actions {
    display: flex;
    gap: 15px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.dashboard-card {
    padding: 30px;
    opacity: 0;
    transform: translateY(30px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.dashboard-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--silver-3);
    font-family: 'Clash Display', sans-serif;
    text-align: center;
}

.dashboard-card p {
    margin-bottom: 15px;
    color: var(--silver-2);
    text-align: center;
}

.dashboard-card strong {
    color: var(--silver-3);
}

.profile-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.status-active {
    color: var(--silver-3);
    font-weight: 600;
}

.alert {
    padding: 12px 15px;
    margin: 15px 0;
    background: rgba(255, 255, 255, 0.1);
    border-left: 3px solid var(--silver-3);
    color: var(--silver-3);
    font-size: 0.9rem;
    text-align: center;
}

.referral-input {
    display: flex;
    gap: 10px;
    margin: 15px 0;
    justify-content: center;
}

.referral-input input {
    padding: 12px 15px;
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--silver-3);
    font-family: 'Inter', sans-serif;
    text-align: center;
    min-width: 200px;
}

.download-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    padding: 30px;
}

.download-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--silver-3);
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.download-btn:hover {
    background: rgba(40, 40, 40, 0.8);
    transform: translateY(-3px);
}

.download-icon {
    font-size: 1.8rem;
    margin-right: 12px;
}

.download-text {
    display: flex;
    flex-direction: column;
}

.download-label {
    font-size: 0.7rem;
    color: var(--silver-2);
}

.download-platform {
    font-size: 1rem;
    font-weight: 500;
}



@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .dashboard-actions {
        justify-content: center;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-actions {
        flex-direction: column;
    }
    
    .referral-input {
        flex-direction: column;
        align-items: center;
    }
    
    .download-buttons {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .dashboard-header h2 {
        font-size: 1.8rem;
    }
    
    .dashboard-card {
        padding: 20px;
    }
    
    .dashboard-card h3 {
        font-size: 1.3rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
}
.profile-actions .btn {
    min-width: 180px; 
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .profile-actions .btn {
        min-width: 160px;
    }
}

@media (max-width: 576px) {
    .profile-actions .btn {
        min-width: 140px;
        font-size: 0.75rem;
        padding: 12px 20px;
    }
}





@media (max-width: 768px) {
    .auth-buttons {
        display: none;
    }

    .mobile-auth-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px;
    }

    .mobile-auth-buttons .btn {
        width: 100%;
    }
}
.mobile-auth-buttons {
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-auth-buttons .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .mobile-auth-buttons {
        display: flex;
    }

    .auth-buttons {
        display: none;
    }
}


}