/* ========================================
   FROSTY VPN - PROFESSIONAL CSS OVERHAUL
   Modern, clean, and professional design
   ======================================== */

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

:root {
    --primary: #00d4ff;
    --primary-dark: #00a8cc;
    --secondary: #0a0e27;
    --tertiary: #1a1a2e;
    --text-light: #e0e0e0;
    --text-dark: #1a1a2e;
    --card-bg: rgba(22, 33, 62, 0.8);
    --border: #0f3460;
    --success: #00ff88;
    --warning: #ffaa00;
    --error: #ff4444;
    --shadow: 0 20px 60px rgba(0, 212, 255, 0.15);
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #0f1729 50%, #1a1f3a 100%);
    color: var(--text-light);
    line-height: 1.6;
    letter-spacing: 0.3px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--primary) 0%, #00eaff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

h3 {
    font-size: 1.8rem;
    color: var(--primary);
}

p {
    color: var(--text-light);
    line-height: 1.8;
}

/* ========== NAVIGATION ========== */
.navbar {
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.logo:hover {
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.8);
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Admin Login Link - Subtle */
.admin-link {
    color: rgba(0, 212, 255, 0.5) !important;
    font-size: 1.1rem !important;
    padding: 0.5rem 0.8rem !important;
    border-radius: 6px;
    transition: all 0.3s !important;
}

.admin-link:hover {
    color: var(--primary) !important;
    background: rgba(0, 212, 255, 0.1);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.admin-link::after {
    display: none !important;
}

/* User Login Link */
.user-login-link {
    color: var(--primary) !important;
    padding: 0.6rem 1rem !important;
    border: 2px solid var(--primary) !important;
    border-radius: 6px;
    transition: all 0.3s !important;
    font-weight: 600 !important;
}

.user-login-link:hover {
    background: rgba(0, 212, 255, 0.15) !important;
    color: #00eaff !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3) !important;
}

.user-login-link::after {
    display: none !important;
}

/* ========== HERO SECTION ========== */
.hero-enhanced {
    position: relative;
    padding: 120px 0 100px;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    z-index: 1;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.animated-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(0, 212, 255, 0.05) 0%,
        rgba(15, 52, 96, 0.1) 25%,
        rgba(26, 26, 46, 0.05) 50%,
        rgba(15, 52, 96, 0.1) 75%,
        rgba(0, 212, 255, 0.05) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-enhanced .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 1.5rem;
    font-size: 3.8rem;
}

.hero-text > p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-dark);
}

.cta-button.primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.5);
    letter-spacing: 1.5px;
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.cta-button.secondary:hover {
    background: var(--primary);
    color: var(--text-dark);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    transition: all 0.3s;
}

.stat:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

/* ========== INDIVIDUAL STAT STYLING ========== */

/* Active Users Stat */
.stat-users {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08), rgba(0, 150, 200, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.stat-users:hover {
    border-color: rgba(0, 212, 255, 0.8);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 150, 200, 0.1));
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.stat-users-number {
    color: #00d4ff;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.stat-users-label {
    color: #b3e5fc;
    letter-spacing: 1px;
}

/* Uptime SLA Stat */
.stat-uptime {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(5, 150, 105, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.15);
}

.stat-uptime:hover {
    border-color: rgba(16, 185, 129, 0.8);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.1));
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.stat-uptime-number {
    color: #10b981;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

.stat-uptime-label {
    color: #a7f3d0;
    letter-spacing: 1px;
}

/* Locations Stat */
.stat-locations {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.stat-locations:hover {
    border-color: rgba(168, 85, 247, 0.8);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(139, 92, 246, 0.1));
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
}

.stat-locations-number {
    color: #a855f7;
    text-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}

.stat-locations-label {
    color: #e9d5ff;
    letter-spacing: 1px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.shield-animation {
    font-size: 180px;
    animation: shieldFloat 4s ease-in-out infinite, shieldGlow 2.5s ease-in-out infinite;
}

@keyframes shieldFloat {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-50px) rotateZ(5deg); }
}

@keyframes shieldGlow {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 60px rgba(0, 212, 255, 0.8)); }
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    background: rgba(26, 26, 46, 0.5);
    padding: 5rem 0;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    margin: 4rem 0;
}

.trust-badges h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 2.5rem;
}

.badge {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(0, 212, 255, 0.02));
    border: 2px solid rgba(0, 212, 255, 0.15);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.badge:hover {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.2);
}

.badge i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
    display: block;
}

.badge p {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.6;
}

/* ========== FEATURES SECTION ========== */
.features-highlight {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 212, 255, 0.02) 100%);
}

.features-highlight h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.4));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

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

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

/* ========== NEWSLETTER SECTION ========== */
.newsletter-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(15, 52, 96, 0.2));
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    text-align: center;
    margin: 5rem 0;
}

.newsletter-section h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.newsletter-section p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    max-width: 550px;
    margin: 0 auto;
    gap: 0.8rem;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.newsletter-form input::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.form-note {
    font-size: 0.85rem;
    margin-top: 1rem;
    opacity: 0.8;
}

/* ========== CTA SECTION ========== */
.cta-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(15, 52, 96, 0.2));
    padding: 5rem 2rem;
    border-radius: 20px;
    text-align: center;
    margin: 5rem 0;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

/* ========== PAGE HERO ========== */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(15, 52, 96, 0.3));
    padding: 6rem 0;
    text-align: center;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ========== FAQ SECTION ========== */
.faq-section {
    padding: 6rem 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
}

.faq-item {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(15, 52, 96, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.8rem;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--primary);
    padding-left: 2.2rem;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s;
    font-size: 1.3rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 212, 255, 0.02);
}

.faq-answer.active {
    max-height: 800px;
    padding: 0 1.8rem 1.8rem;
}

.faq-answer p,
.faq-answer ol,
.faq-answer ul {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.faq-answer ol,
.faq-answer ul {
    margin-left: 2rem;
}

.faq-cta {
    text-align: center;
    margin-top: 5rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(15, 52, 96, 0.15));
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.faq-cta h3 {
    margin-bottom: 1rem;
}

/* ========== COMPARISON TABLE ========== */
.comparison-section {
    padding: 6rem 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 4rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(15, 52, 96, 0.3));
    border-bottom: 2px solid rgba(0, 212, 255, 0.2);
}

.comparison-table th {
    padding: 2rem 1.5rem;
    text-align: left;
    color: var(--primary);
    font-weight: 700;
    border-right: 1px solid rgba(0, 212, 255, 0.1);
}

.comparison-table th.frosty-vpn {
    background: rgba(0, 212, 255, 0.12);
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.05);
    border-right: 1px solid rgba(0, 212, 255, 0.05);
    color: var(--text-light);
}

.comparison-table td.frosty-vpn {
    background: rgba(0, 212, 255, 0.08);
    font-weight: 600;
    color: var(--primary);
}

.comparison-table .category-row {
    background: rgba(0, 212, 255, 0.12);
    font-weight: 700;
    color: var(--primary);
}

.comparison-table i {
    color: var(--success);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.benefit-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.7), rgba(15, 52, 96, 0.4));
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.1);
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-12px);
    box-shadow: var(--shadow);
}

.benefit-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    margin-bottom: 1rem;
}

/* ========== SERVER STATUS ========== */
.server-status-section {
    padding: 6rem 0;
}

.overall-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.7), rgba(15, 52, 96, 0.4));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 2rem;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 12px;
}

.stat-content h3 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.server-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.6), rgba(15, 52, 96, 0.3));
    border: 1px solid rgba(0, 212, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s;
}

.server-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.server-header h3 {
    font-size: 1.3rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.status-badge.online {
    background: rgba(0, 255, 136, 0.15);
    color: var(--success);
    border: 1px solid var(--success);
}

.load-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.load-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--success));
    border-radius: 10px;
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(10, 14, 39, 0.95);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    padding: 4rem 0 1.5rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s;
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--primary);
    opacity: 1;
    padding-left: 5px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.8rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-light);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ========== LIVE CHAT ========== */
.chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.chat-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 50px rgba(0, 212, 255, 0.6);
}

.chat-box {
    display: none;
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 380px;
    height: 500px;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(15, 52, 96, 0.7));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    flex-direction: column;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.chat-box.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--text-dark);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message p {
    max-width: 75%;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    word-wrap: break-word;
    margin: 0;
    font-size: 0.95rem;
}

.chat-message.user p {
    background: var(--primary);
    color: var(--text-dark);
    align-self: flex-end;
}

.chat-message.bot p {
    background: rgba(0, 212, 255, 0.15);
    color: var(--text-light);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.chat-input-area {
    display: flex;
    gap: 0.8rem;
    padding: 1.2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.chat-input-area input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    color: var(--text-light);
    outline: none;
    transition: all 0.3s;
}

.chat-input-area input:focus {
    border-color: var(--primary);
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.chat-input-area button {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chat-input-area button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
    .hero-enhanced .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .shield-animation {
        font-size: 120px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-links {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .hero-enhanced {
        padding: 80px 0 60px;
        min-height: 500px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text > p {
        font-size: 1rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .badge {
        padding: 2rem 1rem;
    }

    .features-grid,
    .benefits-grid,
    .servers-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.8rem;
    }

    .chat-box {
        width: 100%;
        height: 60vh;
        max-width: calc(100% - 40px);
        bottom: 100px;
        right: auto;
        left: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .logo {
        font-size: 1.4rem;
    }

    .nav-links {
        display: none;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        display: none;
    }

    .hero-buttons {
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-card {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form input {
        padding: 12px 16px;
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .chat-toggle {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }
}

/* ========== UTILITIES ========== */
.visible {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.status-indicator.online {
    animation: pulse 2s infinite;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 212, 255, 0.05);
}

::-webkit-scrollbar-thumb {
    background: rgba(0, 212, 255, 0.3);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 212, 255, 0.5);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-icon {
    font-size: 12rem;
    animation: float 3s ease-in-out infinite;
}

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

/* Buttons */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8cc 100%);
    color: var(--text-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.pricing-btn {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8cc 100%);
    color: var(--text-dark);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #00ff88 0%, #00cc66 100%);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8cc 100%);
    color: var(--text-dark);
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

/* Features Highlight */
.features-highlight {
    padding: 80px 0;
    background: rgba(10, 14, 39, 0.5);
}

.features-highlight h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
}

.pricing-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    color: var(--text-color);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-weight: bold;
    color: var(--text-color);
}

.toggle-checkbox {
    width: 50px;
    height: 30px;
    cursor: pointer;
}

.save-badge {
    background: var(--success-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

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

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: var(--text-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.85rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 1rem;
}

.currency {
    font-size: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: bold;
}

.period {
    color: var(--text-color);
}

.plan-description {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.features-list {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

/* Features Page */
.features-page {
    padding: 80px 0;
}

.features-page h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-detail {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.feature-detail:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.feature-detail h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.feature-benefits {
    list-style: none;
    margin-top: 1rem;
}

.feature-benefits li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.feature-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-form-wrapper {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info h2 {
    color: var(--primary-color);
}

.info-card {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.info-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-detail {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* About Section */
.about-section {
    padding: 80px 0;
}

.about-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.about-card h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.reason-item {
    background: rgba(0, 212, 255, 0.05);
    padding: 1.5rem;
    border-radius: 5px;
    border-left: 3px solid var(--primary-color);
}

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.commitment-list {
    list-style: none;
}

.commitment-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.commitment-list li:last-child {
    border-bottom: none;
}

.commitment-list strong {
    color: var(--primary-color);
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.stat-card h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-section h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: bold;
}

.blog-card h2 {
    color: var(--text-color);
    margin: 1rem 0;
    font-size: 1.3rem;
}

.blog-card h2 a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-card h2 a:hover {
    text-decoration: underline;
}

.blog-excerpt {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.85rem;
}

.category {
    background: rgba(0, 212, 255, 0.1);
    color: var(--primary-color);
    padding: 3px 10px;
    border-radius: 15px;
}

.newsletter-section {
    background: var(--card-bg);
    padding: 3rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.newsletter-section h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 1.5rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-color);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

/* Policy Section */
.policy-section {
    padding: 80px 0;
}

.policy-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.last-updated {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 3rem;
}

.policy-content {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.policy-content h2 {
    color: var(--primary-color);
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
}

.policy-content h2:first-child {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-content ul {
    list-style: none;
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.policy-content li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    background: rgba(0, 212, 255, 0.1);
    padding: 4rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    margin: 3rem 0;
}

.cta-section h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

/* FAQ Section */
.faq-section {
    margin-bottom: 4rem;
}

.faq-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

/* Footer */
.footer {
    background: rgba(16, 52, 96, 0.95);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.9rem;
}

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

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        display: none;
    }

    .nav-links {
        gap: 1rem;
    }

    .pricing-grid,
    .features-grid,
    .faq-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .nav-links {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .features-highlight h2,
    .pricing-section h1,
    .contact-section h1,
    .about-section h1,
    .blog-section h1,
    .policy-section h1 {
        font-size: 1.8rem;
    }

    .cta-button,
    .pricing-btn {
        padding: 10px 25px;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========== PROFESSIONAL ENHANCEMENTS ========== */

/* Hero Enhanced Section */
.hero-enhanced {
    position: relative;
    padding: 100px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 60px;
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.animated-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 25%, #0f3460 50%, #1a1a2e 75%, #0a0e27 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-enhanced .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8cc 100%);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--text-dark);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    color: var(--text-color);
    font-size: 0.9rem;
}

.shield-animation {
    font-size: 8rem;
    animation: shieldFloat 4s ease-in-out infinite, shieldGlow 2s ease-in-out infinite;
}

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

@keyframes shieldGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 40px rgba(0, 212, 255, 0.8)); }
}

/* Trust Badges */
.trust-badges {
    background: rgba(26, 26, 46, 0.8);
    padding: 3rem 0;
    border: 1px solid var(--border-color);
    margin: 3rem 0;
}

.trust-badges h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-size: 1.5rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    text-align: center;
}

.badge {
    padding: 2rem 1.5rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.badge:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.badge i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.badge p {
    font-size: 0.85rem;
    color: var(--text-color);
    line-height: 1.4;
}

/* Newsletter Section */
.newsletter-section {
    background: var(--card-bg);
    padding: 4rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.3);
    text-align: center;
    margin: 4rem 0;
}

.newsletter-section h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.newsletter-section p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    background: rgba(0, 212, 255, 0.05);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-color);
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form input::placeholder {
    color: rgba(224, 224, 224, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.form-note {
    font-size: 0.85rem;
    color: var(--text-color);
    margin-top: 1rem;
    opacity: 0.7;
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(15, 52, 96, 0.5));
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.2rem;
    color: var(--text-color);
}

/* FAQ Styles */
.faq-section {
    padding: 80px 0;
}

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

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.1);
}

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

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

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 212, 255, 0.02);
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p,
.faq-answer ol,
.faq-answer ul {
    color: var(--text-color);
    margin-bottom: 1rem;
}

.faq-answer ol,
.faq-answer ul {
    margin-left: 1.5rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(0, 212, 255, 0.05);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.faq-cta h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.faq-cta p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 4rem;
    border-radius: 10px;
    border: 1px solid var(--border-color);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--card-bg);
}

.comparison-table thead {
    background: rgba(0, 212, 255, 0.1);
    border-bottom: 2px solid var(--border-color);
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 600;
    border-right: 1px solid var(--border-color);
}

.comparison-table th.frosty-vpn {
    background: rgba(0, 212, 255, 0.15);
}

.header-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.comparison-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    color: var(--text-color);
}

.comparison-table td.frosty-vpn {
    background: rgba(0, 212, 255, 0.05);
    font-weight: 600;
    color: var(--primary-color);
}

.comparison-table .category-row {
    background: rgba(0, 212, 255, 0.08);
    font-weight: 700;
    color: var(--primary-color);
}

.comparison-table i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.comparison-benefits {
    margin: 4rem 0;
}

.comparison-benefits h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.benefit-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
    transform: translateY(-10px);
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.comparison-cta {
    text-align: center;
    padding: 3rem;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-top: 4rem;
}

.comparison-cta h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.comparison-cta p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Server Status */
.server-status-section {
    padding: 80px 0;
}

.overall-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.stat-icon {
    font-size: 2rem;
    color: var(--primary-color);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
}

.stat-icon.online {
    animation: pulse 2s infinite;
}

.stat-content h3 {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--primary-color);
}

.server-list h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin: 2rem 0 1.5rem;
}

.server-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--card-bg);
    border: 2px solid var(--border-color);
    color: var(--text-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 212, 255, 0.1);
}

.servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.server-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s;
}

.server-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
    transform: translateY(-5px);
}

.server-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.server-header h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.status-badge.online {
    background: rgba(0, 255, 136, 0.1);
    color: var(--success-color);
}

.status-badge i {
    font-size: 0.7rem;
}

.server-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.server-stats .stat {
    display: flex;
    justify-content: space-between;
}

.server-stats label {
    color: var(--text-color);
    font-size: 0.85rem;
}

.server-stats span {
    color: var(--primary-color);
    font-weight: 600;
}

.server-load {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.server-load label {
    display: block;
    color: var(--text-color);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.load-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.load-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--success-color));
    border-radius: 10px;
    transition: width 0.5s;
}

.load-percent {
    font-size: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
}

.status-legend {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin: 3rem 0;
}

.status-legend h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.legend-items {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.status-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.status-indicator.online {
    background: var(--success-color);
}

.status-indicator.maintenance {
    background: var(--warning-color);
}

.status-indicator.offline {
    background: #ff4444;
}

.performance-tips {
    margin: 3rem 0;
}

.performance-tips h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tip-card {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s;
}

.tip-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

.tip-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Live Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8cc 100%);
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.6);
}

.chat-box {
    display: none;
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    flex-direction: column;
    overflow: hidden;
}

.chat-box.active {
    display: flex;
}

.chat-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #00a8cc 100%);
    color: var(--text-dark);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-header h4 {
    margin: 0;
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    margin-bottom: 0.5rem;
}

.chat-message.user {
    justify-content: flex-end;
}

.chat-message.bot {
    justify-content: flex-start;
}

.chat-message p {
    max-width: 70%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    word-wrap: break-word;
    margin: 0;
    font-size: 0.9rem;
}

.chat-message.user p {
    background: var(--primary-color);
    color: var(--text-dark);
}

.chat-message.bot p {
    background: rgba(0, 212, 255, 0.1);
    color: var(--text-color);
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.chat-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
}

.chat-input-area input {
    flex: 1;
    padding: 0.8rem;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-color);
    outline: none;
}

.chat-input-area input:focus {
    border-color: var(--primary-color);
}

.chat-input-area button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-color);
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.chat-input-area button:hover {
    transform: scale(1.1);
}

/* Responsive Hero Enhanced */
@media (max-width: 768px) {
    .hero-enhanced .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .shield-animation {
        font-size: 5rem;
    }

    .comparison-table-wrapper {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem 0.5rem;
    }

    .chat-box {
        width: 100%;
        height: 60vh;
        max-width: calc(100% - 40px);
    }

    .filter-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-enhanced {
        padding: 60px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        gap: 0.5rem;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .hero-stats {
        gap: 1rem;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

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

    .comparison-benefits {
        margin: 2rem 0;
    }

    .servers-grid {
        grid-template-columns: 1fr;
    }

    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .legend-items {
        flex-direction: column;
        gap: 1rem;
    }
}

/* ========== ENHANCED FEATURES PAGE STYLES ========== */

/* Features Section */
.features-section {
    padding: 6rem 0;
    position: relative;
}

.features-section.alternate {
    background: rgba(0, 212, 255, 0.03);
}

.features-section h2 {
    font-size: 2.8rem;
    color: var(--primary);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: 1px;
}

.section-intro {
    font-size: 1.1rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

/* Feature Grid Layouts */
.feature-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.feature-grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Large Feature Cards */
.feature-card-large {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 52, 96, 0.5));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card-large:hover::before {
    left: 100%;
}

.feature-card-large:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.feature-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.feature-card-large h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-card-large p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.7rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-list i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Protocol Cards */
.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.protocol-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.protocol-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.95), rgba(15, 52, 96, 0.6));
}

.protocol-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.protocol-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.protocol-card strong {
    color: var(--primary);
}

/* Locations Showcase */
.locations-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.location-item {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.location-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.location-flag {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.location-item h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.location-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Benefits Box */
.benefits-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(15, 52, 96, 0.2));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.benefits-box h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefits-box ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefits-box li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 1rem;
}

.benefits-box i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Compliance Cards */
.compliance-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.compliance-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.compliance-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.compliance-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.compliance-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Devices Grid */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.device-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.device-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.15);
}

.device-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.device-card h4 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.device-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
}

.device-note {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-top: 2rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.device-note i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Support Grid */
.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.support-card {
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.9), rgba(15, 52, 96, 0.5));
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.support-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.support-number {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Courier New', monospace;
}

.support-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.8rem;
}

.support-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(22, 33, 62, 0.8), rgba(15, 52, 96, 0.4));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(15, 52, 96, 0.4));
    border-bottom: 2px solid rgba(0, 212, 255, 0.3);
}

.comparison-table th {
    padding: 1.2rem;
    text-align: left;
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
}

.comparison-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    color: var(--text-light);
}

.comparison-table tbody tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.comparison-table td.yes {
    color: var(--success);
    font-weight: 600;
}

.comparison-table td.no {
    color: #888;
    font-weight: 600;
}

/* Responsive Features */
@media (max-width: 1024px) {
    .feature-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .feature-grid-2 {
        grid-template-columns: 1fr;
    }

    .features-section h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .feature-grid-3,
    .protocols-grid,
    .locations-showcase,
    .compliance-card {
        grid-template-columns: 1fr;
    }

    .feature-card-large {
        padding: 1.8rem;
    }

    .features-section {
        padding: 4rem 0;
    }

    .features-section h2 {
        font-size: 1.8rem;
    }

    .section-intro {
        font-size: 1rem;
    }

    .benefits-box ul {
        grid-template-columns: 1fr;
    }

    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
}

@media (max-width: 480px) {
    .feature-grid-3,
    .protocols-grid,
    .locations-showcase,
    .support-grid {
        grid-template-columns: 1fr;
    }

    .features-section h2 {
        font-size: 1.5rem;
    }

    .feature-card-large {
        padding: 1.5rem;
    }

    .feature-icon-large {
        font-size: 3rem;
    }

    .location-flag {
        font-size: 2.5rem;
    }

    .support-card {
        padding: 1.5rem;
    }

    .support-number {
        font-size: 2rem;
    }

    .benefits-box {
        padding: 1.5rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }
}
