/* ============================================
   SarvHost - Complete Stylesheet
   Version: 2.0.0
   ============================================ */

/* ============================================
   CSS Variables / Custom Properties
============================================ */
:root {
    /* Primary Colors */
    --primary: #6366F1;
    --primary-light: #818CF8;
    --primary-dark: #4F46E5;
    --primary-50: #EEF2FF;
    --primary-100: #E0E7FF;
    --primary-200: #C7D2FE;
    
    /* Secondary Colors */
    --secondary: #06B6D4;
    --secondary-light: #22D3EE;
    --secondary-dark: #0891B2;
    
    /* Accent Colors */
    --accent-green: #10B981;
    --accent-green-light: #34D399;
    --accent-orange: #F97316;
    --accent-orange-light: #FB923C;
    --accent-yellow: #F59E0B;
    --accent-pink: #EC4899;
    --accent-red: #EF4444;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary) 0%, var(--accent-green) 100%);
    --gradient-warm: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-pink) 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-dark: linear-gradient(135deg, var(--gray-800) 0%, var(--gray-900) 100%);
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-primary: 0 10px 40px -10px rgba(99, 102, 241, 0.4);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'Fira Code', 'Monaco', 'Consolas', monospace;
    
    /* Spacing */
    --container-max: 1280px;
    --section-padding: 100px;
    --section-padding-mobile: 60px;
    
    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-tooltip: 500;
}

/* ============================================
   CSS Reset & Base Styles
============================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Selection */
::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* Focus Outline */
:focus {
    outline: none;
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Links */
a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Lists */
ul, ol {
    list-style: none;
}

/* Buttons */
button {
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Inputs */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ============================================
   Utility Classes
============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-success { color: var(--accent-green); }
.text-warning { color: var(--accent-orange); }
.text-danger { color: var(--accent-red); }
.text-muted { color: var(--gray-400); }

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ============================================
   Skip Link (Accessibility)
============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    z-index: 10000;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 20px;
    color: var(--white);
}

/* ============================================
   Buttons
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn i {
    font-size: 14px;
}

/* Primary Button */
.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(99, 102, 241, 0.5);
    color: var(--white);
}

.btn-primary:active {
    transform: translateY(0);
}

/* Outline Button */
.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Ghost Button */
.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--gray-100);
    color: var(--gray-900);
}

/* White Button */
.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    color: var(--primary-dark);
}

/* Outline White Button */
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

/* Button Sizes */
.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-xl {
    padding: 16px 32px;
    font-size: 17px;
}

.btn-block {
    width: 100%;
}

/* Button Badge */
.btn-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 500;
    margin-left: 8px;
}

.btn-outline .btn-badge {
    background: var(--primary-50);
    color: var(--primary);
}

.btn-outline:hover .btn-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* ============================================
   Navigation / Navbar
============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 800;
    color: var(--gray-900);
    text-decoration: none;
}

.logo:hover {
    color: var(--gray-900);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 18px;
}

.logo-accent {
    color: var(--primary);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-link.active {
    color: var(--primary);
    background: var(--primary-50);
}

.nav-link i {
    font-size: 10px;
    transition: transform var(--transition-fast);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 200px;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--gray-100);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    padding: 12px;
    z-index: var(--z-dropdown);
}

.has-dropdown:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    min-width: 600px;
    padding: 24px;
}

.mega-menu-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mega-menu-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mega-menu-section h4 i {
    color: var(--primary);
}

.mega-menu-section ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-menu-section a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    color: var(--gray-700);
    transition: all var(--transition-fast);
}

.mega-menu-section a:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.mega-menu-section a img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.mega-menu-section a span {
    font-weight: 500;
}

.mega-menu-section a small {
    margin-left: auto;
    font-size: 12px;
    color: var(--gray-400);
}

/* Featured Plan in Mega Menu */
.mega-menu-section.featured {
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    padding: 20px;
    color: var(--white);
}

.mega-menu-section.featured h4 {
    color: rgba(255, 255, 255, 0.8);
}

.featured-plan {
    text-align: center;
}

.featured-plan .badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
}

.featured-plan h5 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-plan p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 12px;
}

.featured-plan .price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 16px;
}

.featured-plan .price small {
    font-size: 14px;
    font-weight: 400;
    opacity: 0.8;
}

.featured-plan .btn {
    width: 100%;
    background: var(--white);
    color: var(--primary);
}

.featured-plan .btn:hover {
    transform: translateY(-2px);
}

/* Nav Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
}

.mobile-toggle:hover {
    background: var(--gray-100);
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: var(--z-fixed);
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform var(--transition-base);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-menu-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.mobile-menu-section ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-section a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.mobile-menu-section a:hover {
    background: var(--primary-50);
    color: var(--primary);
}

.mobile-menu-section a img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
}

.mobile-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

/* ============================================
   Hero Section (Home Page)
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f5f7ff 0%, #e8f4f8 50%, #fef3f2 100%);
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, var(--accent-orange-light), var(--accent-orange));
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.hero-badge i {
    font-size: 12px;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(249, 115, 22, 0); }
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.hero p,
.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.hero-feature i {
    color: var(--accent-green);
    font-size: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

/* Server Dashboard Card */
.server-dashboard {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.window-controls {
    display: flex;
    gap: 8px;
}

.window-controls .control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.window-controls .red { background: #FF5F57; }
.window-controls .yellow { background: #FFBD2E; }
.window-controls .green { background: #28CA41; }

.dashboard-title {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-500);
}

.dashboard-content {
    padding: 24px;
}

.server-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.server-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 20px;
}

.server-details h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.server-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray-500);
}

.server-location img {
    width: 16px;
    height: 12px;
    border-radius: 2px;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: auto;
    font-size: 13px;
    font-weight: 500;
}

.server-status.online {
    color: var(--accent-green);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Server Metrics */
.server-metrics {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.metric-header span:first-child {
    color: var(--gray-500);
}

.metric-value {
    font-weight: 600;
    color: var(--gray-700);
}

.metric-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    transition: width 1s ease;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    color: var(--gray-600);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.action-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: var(--primary);
    font-size: 20px;
    animation: float 6s ease-in-out infinite;
}

.float-element.el-1 { top: 15%; left: 10%; animation-delay: 0s; }
.float-element.el-2 { top: 25%; right: 15%; animation-delay: 1.5s; }
.float-element.el-3 { bottom: 30%; left: 5%; animation-delay: 3s; }
.float-element.el-4 { bottom: 20%; right: 10%; animation-delay: 4.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* ============================================
   Page Hero (Internal Pages)
============================================ */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    overflow: hidden;
}

.page-hero .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.page-hero .hero-gradient {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8f4f8 50%, #f0fdf4 100%);
}

.page-hero .hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.page-hero .hero-flag {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.08;
    pointer-events: none;
}

.page-hero .hero-flag img {
    width: 600px;
    height: auto;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 32px;
}

.breadcrumb ol {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: var(--gray-500);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: var(--gray-300);
}

.breadcrumb a {
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb [aria-current="page"] {
    color: var(--primary);
    font-weight: 500;
}

/* Page Hero Content */
.page-hero-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.page-hero .hero-text {
    max-width: 650px;
}

.page-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 24px;
    animation: none;
}

.page-hero .hero-badge img {
    width: 24px;
    height: 18px;
    border-radius: 3px;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.page-hero .hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 28px;
}

/* Hero Highlights */
.hero-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--gray-600);
}

.highlight i {
    color: var(--primary);
    font-size: 16px;
}

.highlight strong {
    color: var(--gray-900);
}

/* Hero Trust */
.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.trust-item i {
    color: var(--accent-green);
}

/* Server Card (Page Hero Visual) */
.page-hero .hero-visual {
    position: relative;
}

.server-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--gray-100);
}

.server-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-100);
}

.server-card-header .server-status {
    margin-left: 0;
}

.server-card-header .server-location {
    font-size: 13px;
    color: var(--gray-500);
}

.server-card-body {
    padding: 32px;
    text-align: center;
}

.server-card-body .server-icon {
    width: 80px;
    height: 80px;
    font-size: 32px;
    margin: 0 auto 20px;
}

.server-card-body h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.server-card-body > p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.server-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.spec-item {
    text-align: center;
}

.spec-label {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    margin-bottom: 4px;
}

.spec-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
}

.server-card-footer {
    padding: 16px 20px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}

.network-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.network-stats .stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray-600);
}

.network-stats .stat i {
    font-size: 12px;
}

.network-stats .stat:first-child i {
    color: var(--accent-green);
}

.network-stats .stat:last-child i {
    color: var(--primary);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--white);
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-lg);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-700);
    animation: float 4s ease-in-out infinite;
}

.floating-badge i {
    color: var(--primary);
}

.floating-badge.badge-1 {
    top: 10%;
    left: -20px;
    animation-delay: 0s;
}

.floating-badge.badge-2 {
    top: 50%;
    right: -30px;
    animation-delay: 1s;
}

.floating-badge.badge-3 {
    bottom: 10%;
    left: -10px;
    animation-delay: 2s;
}

/* ============================================
   Section Header
============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    line-height: 1.7;
}

/* ============================================
   Stats Section
============================================ */
.stats-bar,
.stats-section {
    padding: 40px 0;
    background: var(--white);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.stat-item,
.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-item:hover,
.stat-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 22px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1.2;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   Locations Section
============================================ */
.locations {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.location-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 28px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.location-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 20px;
}

.location-flag img {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.location-badge {
    padding: 4px 10px;
    background: var(--accent-orange);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.location-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.location-city {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.location-city i {
    color: var(--primary);
}

.location-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.location-specs .spec {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--gray-600);
}

.location-specs .spec i {
    width: 16px;
    color: var(--primary);
}

.location-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 20px;
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.status-indicator.online {
    background: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
    animation: blink 2s infinite;
}

/* Location Card Mini (Other Locations) */
.location-card-link {
    display: block;
    text-decoration: none;
}

.location-card-mini {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.location-card-mini:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.location-card-mini .location-flag {
    width: 60px;
    height: 45px;
    object-fit: cover;
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.location-card-mini .location-info {
    flex: 1;
}

.location-card-mini h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.location-card-mini p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 4px;
}

.location-card-mini .location-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.location-card-mini > i {
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.location-card-mini:hover > i {
    color: var(--primary);
    transform: translateX(4px);
}

/* ============================================
   Pricing Section
============================================ */
.pricing,
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--gray-900);
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-300);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--gradient-primary);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
}

.discount-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--accent-green);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-left: 8px;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Pricing Card */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* Pricing Header */
.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 16px;
}

.pricing-card.featured .plan-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.pricing-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--gray-500);
}

/* Pricing Body */
.pricing-body {
    flex: 1;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 24px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gray-500);
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    transition: all 0.2s ease;
}

.period {
    font-size: 16px;
    color: var(--gray-400);
}

/* Features List */
.features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--gray-600);
}

.features-list li i {
    width: 18px;
    color: var(--primary);
    font-size: 14px;
}

.features-list li strong {
    color: var(--gray-900);
}

/* Pricing Footer */
.pricing-footer {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

/* Pricing Note */
.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    font-size: 14px;
    color: var(--gray-500);
}

.pricing-note i {
    color: var(--primary);
}

.pricing-note a {
    color: var(--primary);
    font-weight: 500;
}

/* Custom Config */
.custom-config {
    margin-top: 40px;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 2px dashed var(--gray-300);
}

.custom-config-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.custom-config-text h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.custom-config-text h3 i {
    color: var(--primary);
}

.custom-config-text p {
    font-size: 14px;
    color: var(--gray-500);
}

/* ============================================
   Features Section
============================================ */
.features,
.features-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 26px;
    margin-bottom: 24px;
    flex-shrink: 0;
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.feature-card > p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-600);
}

.feature-list li i {
    color: var(--accent-green);
    font-size: 12px;
}

/* ============================================
   Datacenter Section
============================================ */
.datacenter-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.datacenter-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.datacenter-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    color: var(--primary);
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.info-content p {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 12px;
    line-height: 1.6;
}

.info-content ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.info-content li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--gray-600);
}

.info-content li i {
    color: var(--accent-green);
    font-size: 12px;
}

/* Datacenter Map */
.datacenter-map {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-container {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.map-container img {
    width: 100%;
    opacity: 0.8;
}

.map-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.map-marker.frankfurt {
    top: 35%;
    left: 52%;
}

.marker-pulse {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 50%;
    animation: markerPulse 2s infinite;
}

@keyframes markerPulse {
    0% { transform: scale(0.5); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.marker-dot {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 3px solid var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
}

.marker-label {
    margin-top: 8px;
    padding: 4px 12px;
    background: var(--primary);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* Latency Table */
.latency-table {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 24px;
    border: 1px solid var(--gray-200);
}

.latency-table h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.latency-table h4 i {
    color: var(--primary);
}

.latency-table table {
    width: 100%;
    border-collapse: collapse;
}

.latency-table th,
.latency-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--gray-100);
}

.latency-table th {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-400);
    text-transform: uppercase;
}

.latency-table td {
    font-size: 14px;
    color: var(--gray-700);
}

.latency-table td img {
    display: inline-block;
    width: 20px;
    height: 15px;
    margin-right: 8px;
    vertical-align: middle;
    border-radius: 2px;
}

.latency {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
}

.latency.low {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-green);
}

.latency.medium {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-yellow);
}

.latency.high {
    background: rgba(239, 68, 68, 0.1);
    color: var(--accent-red);
}

/* ============================================
   OS Section
============================================ */
.os-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.os-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.os-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    cursor: pointer;
}

.os-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.os-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.os-card span {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
}

.os-card small {
    font-size: 11px;
    color: var(--gray-400);
    text-align: center;
}

/* Control Panels */
.control-panels {
    text-align: center;
}

.control-panels h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 24px;
}

.panels-grid {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.panel-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
}

.panel-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.panel-card img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.panel-card span {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
}

.panel-card.free {
    border-color: var(--accent-green);
}

.free-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    padding: 2px 8px;
    background: var(--accent-green);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ============================================
   Use Cases Section
============================================ */
.use-cases-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.use-case-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.use-case-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.use-case-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 24px;
    margin-bottom: 20px;
}

.use-case-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.use-case-card > p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.use-case-card ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.use-case-card li {
    padding: 6px 12px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--gray-600);
}

.use-case-card:hover li {
    background: var(--primary-50);
    border-color: var(--primary-100);
    color: var(--primary);
}

/* ============================================
   Comparison Table Section
============================================ */
.comparison-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-table th {
    background: var(--gray-50);
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-700);
}

.comparison-table th.featured {
    background: var(--primary);
    color: var(--white);
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--gray-700);
}

.comparison-table td {
    font-size: 14px;
    color: var(--gray-600);
}

.comparison-table td.featured {
    background: var(--primary-50);
}

.comparison-table tbody tr:hover {
    background: var(--gray-50);
}

.comparison-table tbody tr:hover td.featured {
    background: var(--primary-100);
}

.comparison-table .text-success {
    color: var(--accent-green);
}

.comparison-table .text-muted {
    color: var(--gray-300);
}

/* ============================================
   Reviews Section
============================================ */
.reviews-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.reviews-summary {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}

.rating-overview {
    text-align: center;
    padding: 32px 48px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
}

.rating-score {
    font-size: 64px;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
    margin-bottom: 12px;
}

.rating-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.rating-stars i {
    color: var(--accent-yellow);
    font-size: 24px;
}

.rating-overview p {
    font-size: 14px;
    color: var(--gray-500);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.review-card {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.review-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.review-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.reviewer-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--gray-400);
}

.review-meta i {
    margin-right: 4px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    color: var(--accent-yellow);
    font-size: 14px;
}

.review-body {
    margin-bottom: 16px;
}

.review-body p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

.review-footer {
    display: flex;
    align-items: center;
    gap: 12px;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--accent-green);
}

.plan-badge {
    padding: 4px 10px;
    background: var(--primary-50);
    color: var(--primary);
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-full);
}

/* ============================================
   FAQ Section
============================================ */
.faq,
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-900);
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    font-size: 14px;
    color: var(--gray-400);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Other Locations Section
============================================ */
.other-locations-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.other-locations-section .locations-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   CTA Section
============================================ */
.cta,
.cta-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta::before,
.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-text h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.cta-trust .trust-item {
    color: rgba(255, 255, 255, 0.9);
}

.cta-trust .trust-item i {
    color: var(--white);
}

/* ============================================
   Footer
============================================ */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding-top: 80px;
}

/* Footer Newsletter */
.footer-newsletter {
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-800);
    margin-bottom: 60px;
}

.newsletter-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.newsletter-text h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.newsletter-text p {
    font-size: 15px;
    color: var(--gray-400);
}

.newsletter-form {
    flex: 1;
    max-width: 500px;
}

.newsletter-form .input-group {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    background: var(--gray-800);
    border: 1px solid var(--gray-700);
    border-radius: var(--radius-lg);
    color: var(--white);
    font-size: 15px;
    transition: all var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--primary);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--gray-500);
}

.newsletter-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    font-size: 12px;
    color: var(--gray-500);
}

/* Footer Main */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand .logo span {
    color: var(--white);
}

.footer-brand > p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-style: normal;
    margin-bottom: 24px;
}

.footer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray-400);
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact i {
    width: 18px;
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: var(--radius-md);
    color: var(--gray-400);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 14px;
    color: var(--gray-400);
    transition: all var(--transition-fast);
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid var(--gray-800);
}

.footer-copyright p {
    font-size: 14px;
    color: var(--gray-500);
}

.footer-badges {
    display: flex;
    gap: 12px;
}

.trust-badges {
    display: flex;
    gap: 12px;
}

.trust-badges .badge {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--gray-400);
}

.trust-badges .badge i {
    color: var(--accent-green);
}

.footer-payments {
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-payments span {
    font-size: 13px;
    color: var(--gray-500);
}

.payment-icons {
    display: flex;
    gap: 12px;
}

.payment-icons i {
    font-size: 28px;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.payment-icons i:hover {
    color: var(--white);
}

/* ============================================
   Scroll to Top Button
============================================ */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
    box-shadow: var(--shadow-lg);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* ============================================
   Chat Widget
============================================ */
.chat-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: var(--z-fixed);
}

.chat-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    position: relative;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.chat-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--accent-red);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ============================================
   Responsive Design
============================================ */

/* Large Tablets & Small Desktops */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero h1 {
        font-size: 48px;
    }
    
    .page-hero h1 {
        font-size: 42px;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .os-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets */
@media (max-width: 992px) {
    .nav-menu,
    .nav-buttons {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .page-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .page-hero .hero-text {
        max-width: 100%;
    }
    
    .page-hero .hero-visual {
        display: none;
    }
    
    .hero-highlights {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .datacenter-content {
        grid-template-columns: 1fr;
    }
    
    .use-cases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        width: 100%;
    }
    
    .mega-menu {
        display: none;
    }
}

/* Large Phones */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .page-hero {
        padding: 120px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .os-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .other-locations-section .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .newsletter-form .input-group {
        flex-direction: column;
    }
    
    .scroll-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .chat-widget {
        bottom: 20px;
        left: 20px;
    }
    
    .chat-toggle {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Small Phones */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 26px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .btn-xl {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .amount {
        font-size: 40px;
    }
    
    .pricing-card {
        padding: 24px 20px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .os-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .os-card {
        padding: 16px 12px;
    }
    
    .os-card img {
        width: 36px;
        height: 36px;
    }
    
    .panels-grid {
        flex-direction: column;
    }
    
    .panel-card {
        width: 100%;
    }
    
    .comparison-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .footer-badges {
        flex-direction: column;
    }
    
    .trust-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* ============================================
   Animations
============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animate on scroll classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ============================================
   Print Styles
============================================ */
@media print {
    .navbar,
    .mobile-menu,
    .scroll-top,
    .chat-widget,
    .hero-visual,
    .cta,
    .footer-newsletter {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}