/* ============================================
   OneHosty - Main Stylesheet
   Dark Futuristic Hosting Theme
   ============================================ */

/* ---- CSS Variables ---- */
:root {
    --primary: #00d4ff;
    --secondary: #7c3aed;
    --accent: #f72585;
    --success: #06d6a0;
    --warning: #ff9e00;
    --bg-dark: #0a0a1a;
    --bg-deeper: #050510;
    --bg-surface: #12122a;
    --bg-card: rgba(255,255,255,0.03);
    --bg-glass: rgba(255,255,255,0.05);
    --border-glass: rgba(255,255,255,0.08);
    --border-neon: rgba(0,212,255,0.3);
    --text-primary: #f0f0ff;
    --text-secondary: #b0b0d0;
    --text-muted: #6a6a8a;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-neon: 0 0 30px rgba(0,212,255,0.15);
    --shadow-purple: 0 0 30px rgba(124,58,237,0.15);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: #66e5ff; }

img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deeper); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg, var(--primary), var(--secondary)); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ---- Selection ---- */
::selection { background: rgba(0,212,255,0.3); color: #fff; }

/* ---- Cursor Glow ---- */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* ---- Particles BG ---- */
.particles-container {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

/* ---- Three.js Canvas BG ---- */
.three-canvas-bg {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ---- Preloader ---- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg-deeper);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.preloader-logo {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    animation: logoPulse 1.5s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.preloader-text {
    font-size: 14px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.preloader-particles {
    position: absolute;
    width: 100%; height: 100%;
}

.preloader-particles span {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFloat 3s infinite;
    opacity: 0.5;
}

.preloader-particles span:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.preloader-particles span:nth-child(2) { top: 30%; left: 70%; animation-delay: 0.2s; }
.preloader-particles span:nth-child(3) { top: 60%; left: 15%; animation-delay: 0.4s; }
.preloader-particles span:nth-child(4) { top: 80%; left: 60%; animation-delay: 0.6s; }
.preloader-particles span:nth-child(5) { top: 20%; left: 85%; animation-delay: 0.8s; }
.preloader-particles span:nth-child(6) { top: 70%; left: 40%; animation-delay: 1s; }
.preloader-particles span:nth-child(7) { top: 50%; left: 90%; animation-delay: 1.2s; }
.preloader-particles span:nth-child(8) { top: 40%; left: 10%; animation-delay: 1.4s; }
.preloader-particles span:nth-child(9) { top: 85%; left: 80%; animation-delay: 1.6s; }
.preloader-particles span:nth-child(10) { top: 15%; left: 45%; animation-delay: 1.8s; }

@keyframes particleFloat {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(-30px); opacity: 1; }
}

/* ---- Glass Header ---- */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(10,10,26,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10,10,26,0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-neon { color: var(--primary); text-shadow: 0 0 20px rgba(0,212,255,0.5); }
.logo-purple { color: var(--secondary); }

/* ---- Navigation ---- */
.main-navigation .nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.main-navigation .nav-menu li {
    position: relative;
}

.main-navigation .nav-menu a {
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 500;
    padding: 8px 0;
    transition: var(--transition);
    position: relative;
}

.main-navigation .nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
    border-radius: 2px;
}

.main-navigation .nav-menu a:hover,
.main-navigation .nav-menu .current-menu-item a {
    color: var(--primary);
}

.main-navigation .nav-menu a:hover::after {
    width: 100%;
}

.main-navigation .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.main-navigation .menu-toggle span {
    width: 24px; height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---- Header Actions ---- */
.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

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

.btn-signup { padding: 10px 24px; }

/* ---- Neon Buttons ---- */
.neon-btn-primary, .btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.neon-btn-primary::before, .btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.neon-btn-primary:hover::before, .btn-hero-primary:hover::before { left: 100%; }
.neon-btn-primary:hover, .btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(0,212,255,0.4), 0 0 80px rgba(124,58,237,0.2);
    color: #fff;
}

.neon-outline-btn, .btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1.5px solid var(--border-neon);
    cursor: pointer;
    transition: var(--transition);
}

.neon-outline-btn:hover, .btn-hero-secondary:hover {
    background: rgba(0,212,255,0.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(0,212,255,0.2);
    color: var(--primary);
    transform: translateY(-2px);
}

.neon-btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.neon-btn-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 20px rgba(0,212,255,0.3);
}

/* ---- Neon Glow Effects ---- */
.neon-glow { box-shadow: 0 0 20px rgba(0,212,255,0.2); }
.neon-glow:hover { box-shadow: 0 0 40px rgba(0,212,255,0.4); }
.neon-glow-sm { box-shadow: 0 0 10px rgba(0,212,255,0.15); }
.neon-glow-sm:hover { box-shadow: 0 0 20px rgba(0,212,255,0.3); }

/* ---- Section Styles ---- */
section { position: relative; padding: 120px 0; z-index: 1; }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-neon { color: var(--primary); }

/* ---- Hero Section ---- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse at 50% 50%, rgba(0,212,255,0.03) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 20%, rgba(124,58,237,0.03) 0%, transparent 50%);
    animation: heroBgPulse 10s ease-in-out infinite;
}

@keyframes heroBgPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

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

.hero-content { position: relative; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0,212,255,0.08);
    border: 1px solid rgba(0,212,255,0.2);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 8px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-subtitle {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 540px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 48px;
    animation: fadeInUp 0.6s ease 0.5s both;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.stat-suffix {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ---- Hero Visual ---- */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-3d-container {
    position: relative;
    width: 500px;
    height: 500px;
}

.floating-server {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    perspective: 1000px;
}

.server-rack {
    width: 200px;
    height: 320px;
    background: linear-gradient(180deg, rgba(0,212,255,0.05), rgba(124,58,237,0.05));
    border: 1px solid rgba(0,212,255,0.2);
    border-radius: 12px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    backdrop-filter: blur(10px);
    animation: serverFloat 4s ease-in-out infinite;
}

@keyframes serverFloat {
    0%, 100% { transform: translateY(0) rotateX(2deg); }
    50% { transform: translateY(-15px) rotateX(-2deg); }
}

.server-unit {
    height: 50px;
    border-radius: 6px;
    background: linear-gradient(90deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08));
    border: 1px solid rgba(0,212,255,0.1);
    position: relative;
    overflow: hidden;
}

.server-unit::before {
    content: '';
    position: absolute;
    top: 50%; right: 10px;
    width: 8px; height: 8px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.server-unit-1::before { background: var(--success); box-shadow: 0 0 8px rgba(6,214,160,0.5); }
.server-unit-2::before { background: var(--primary); box-shadow: 0 0 8px rgba(0,212,255,0.5); }
.server-unit-3::before { background: var(--success); box-shadow: 0 0 8px rgba(6,214,160,0.5); }
.server-unit-4::before { background: var(--warning); box-shadow: 0 0 8px rgba(255,158,0,0.5); }
.server-unit-5::before { background: var(--success); box-shadow: 0 0 8px rgba(6,214,160,0.5); }

.server-unit-1 { animation: serverBlink 1s infinite; }
.server-unit-2 { animation: serverBlink 1.5s infinite 0.3s; }
.server-unit-3 { animation: serverBlink 2s infinite 0.6s; }
.server-unit-4 { animation: serverBlink 1.8s infinite 0.9s; }
.server-unit-5 { animation: serverBlink 1.2s infinite 0.2s; }

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

.server-glow {
    position: absolute;
    top: 50%; left: 50%;
    width: 300px; height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(0,212,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 0.8; }
}

.floating-cloud {
    position: absolute;
    color: var(--primary);
    opacity: 0.3;
}

.cloud-1 { top: 0; right: 0; width: 180px; animation: cloudDrift 8s ease-in-out infinite; }
.cloud-2 { bottom: 40px; left: -20px; width: 150px; animation: cloudDrift 6s ease-in-out infinite 2s; }

@keyframes cloudDrift {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(30px); }
}

.hero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,212,255,0.1);
    animation: ringRotate 8s linear infinite;
}

.ring-1 { width: 400px; height: 400px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.ring-2 { width: 320px; height: 320px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-direction: reverse; animation-duration: 6s; }
.ring-3 { width: 240px; height: 240px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-duration: 4s; }

@keyframes ringRotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    pointer-events: none;
}

.hero-wave svg { width: 100%; height: 100px; }

/* ---- Sections General ---- */
.plans-section, .features-section, .testimonials-section, .faq-section, .contact-section {
    position: relative;
}

.directadmin-section { background: var(--bg-deeper); }
.dashboard-section { background: var(--bg-surface); }

/* ---- Hosting Plans ---- */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.toggle-label {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: pointer;
}

.toggle-label.active { color: var(--text-primary); }

.toggle-save {
    display: inline-block;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    color: var(--success);
    background: rgba(6,214,160,0.15);
    border-radius: 4px;
    margin-left: 4px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.1);
    border-radius: 28px;
    transition: var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 22px; height: 22px;
    left: 3px; bottom: 3px;
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider { background: rgba(0,212,255,0.2); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(24px); }

.plans-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.plan-tab {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    cursor: pointer;
    transition: var(--transition);
}

.plan-tab:hover {
    color: var(--text-primary);
    border-color: rgba(0,212,255,0.3);
}

.plan-tab.active {
    color: #fff;
    background: linear-gradient(135deg, rgba(0,212,255,0.2), rgba(124,58,237,0.2));
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0,212,255,0.2);
}

.plan-category { display: none; }
.plan-category.active { display: block; }

.plans-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(180deg, rgba(0,212,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

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

.plan-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(0,212,255,0.05), rgba(124,58,237,0.05));
    box-shadow: 0 0 40px rgba(0,212,255,0.1);
    transform: scale(1.05);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.plan-badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    margin-bottom: 16px;
}

.plan-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.plan-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 24px;
}

.price-currency {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-muted);
    align-self: flex-start;
    margin-top: 8px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
}

.price-period {
    font-size: 14px;
    color: var(--text-muted);
    align-self: flex-end;
    margin-bottom: 8px;
}

.plan-features {
    text-align: left;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.btn-plan {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
}

/* ---- Comparison Table ---- */
.comparison-section {
    margin-top: 80px;
}

.comparison-title {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-glass);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 14px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-glass);
    font-size: 14px;
}

.comparison-table th {
    font-weight: 700;
    color: var(--primary);
    background: rgba(0,212,255,0.05);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--text-secondary);
}

.comparison-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.comparison-table td:nth-child(2) { color: var(--success); }
.comparison-table td:nth-child(3) { color: var(--primary); }
.comparison-table td:nth-child(4) { color: var(--secondary); }
.comparison-table td:nth-child(5) { color: var(--accent); }

/* ---- DirectAdmin Section ---- */
.da-preview {
    margin-bottom: 60px;
}

.da-mockup {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.da-mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--border-glass);
}

.da-dots {
    display: flex;
    gap: 6px;
}

.da-dots span {
    width: 10px; height: 10px;
    border-radius: 50%;
}

.da-dots span:nth-child(1) { background: #ff5f57; }
.da-dots span:nth-child(2) { background: #ffbd2e; }
.da-dots span:nth-child(3) { background: #28c840; }

.da-title {
    font-size: 13px;
    color: var(--text-muted);
}

.da-mockup-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 350px;
}

.da-sidebar {
    background: rgba(0,0,0,0.2);
    padding: 12px;
    border-right: 1px solid var(--border-glass);
}

.da-menu-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 4px;
}

.da-menu-item:hover { background: rgba(255,255,255,0.03); color: var(--text-secondary); }
.da-menu-item.active { background: rgba(0,212,255,0.1); color: var(--primary); }

.da-content { padding: 20px; }

.da-widgets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.da-widget {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-glass);
}

.da-widget-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.da-widget-info strong {
    display: block;
    font-size: 18px;
    color: var(--text-primary);
}

.da-widget-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.da-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.da-stat-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
}

.da-bar {
    flex: 1;
    height: 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 3px;
    overflow: hidden;
}

.da-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 3px;
    transition: width 1s ease;
}

.da-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.da-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
}

.da-feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-neon);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.da-feature-icon {
    width: 64px; height: 64px;
    margin: 0 auto 16px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--feat-color, var(--primary));
}

.da-feature-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.da-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Features Section ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--icon-color, var(--primary)), transparent);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.feature-icon {
    width: 72px; height: 72px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-color, var(--primary));
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: rgba(255,255,255,0.06);
    border-color: var(--icon-color, var(--primary));
    box-shadow: 0 0 30px rgba(var(--icon-color, 0,212,255), 0.15);
    transform: scale(1.1);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ---- Dashboard Section ---- */
.dashboard-preview {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.dashboard-tabs {
    display: flex;
    background: rgba(255,255,255,0.02);
    border-bottom: 1px solid var(--border-glass);
    overflow-x: auto;
}

.dash-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

.dash-tab:hover { color: var(--text-secondary); background: rgba(255,255,255,0.02); }
.dash-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
    background: rgba(0,212,255,0.03);
}

.dashboard-content {
    padding: 24px;
}

.dash-panel { display: none; }
.dash-panel.active { display: block; }

.dash-services, .dash-domains-list, .dash-invoices, .dash-tickets {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.dash-service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.dash-service-card:hover { background: rgba(255,255,255,0.04); }

.service-status {
    width: 10px; height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.service-status.active { background: var(--success); box-shadow: 0 0 8px rgba(6,214,160,0.5); }

.dash-service-card div { flex: 1; }
.dash-service-card strong { display: block; font-size: 14px; }
.dash-service-card span { font-size: 12px; color: var(--text-muted); }

.service-renewal {
    font-size: 12px !important;
    color: var(--text-muted) !important;
}

.dash-btn-sm {
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.2);
    transition: var(--transition);
}

.dash-btn-sm:hover {
    background: rgba(0,212,255,0.2);
    color: var(--primary);
}

.dash-domain-item, .dash-invoice, .dash-ticket {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.dash-domain-item span:first-child,
.dash-invoice span:first-child,
.dash-ticket span:first-child { flex: 1; }

.dash-domain-status { font-size: 12px; padding: 2px 8px; border-radius: 4px; }
.dash-domain-status.active { background: rgba(6,214,160,0.15); color: var(--success); }

.dash-invoice-paid { color: var(--success); font-size: 12px; }
.dash-invoice-pending { color: var(--warning); font-size: 12px; }

.ticket-open { color: var(--warning); font-size: 12px; }
.ticket-closed { color: var(--success); font-size: 12px; }

/* ---- Testimonials ---- */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(33.333% - 16px);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    flex-shrink: 0;
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(0,212,255,0.2);
    transform: translateY(-4px);
}

.testimonial-stars {
    font-size: 16px;
    color: var(--warning);
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.test-nav-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

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

/* ---- FAQ ---- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover { border-color: rgba(0,212,255,0.2); }
.faq-item.active { border-color: var(--primary); }

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ---- Contact Section ---- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group { margin-bottom: 20px; }

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 15px;
    font-family: var(--font-main);
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0,212,255,0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder { color: var(--text-muted); }

.contact-form textarea { resize: vertical; min-height: 120px; }

.btn-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    display: none;
}

.form-message.success { display: block; background: rgba(6,214,160,0.1); color: var(--success); border: 1px solid rgba(6,214,160,0.2); }
.form-message.error { display: block; background: rgba(247,37,133,0.1); color: var(--accent); border: 1px solid rgba(247,37,133,0.2); }

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: var(--border-neon);
    transform: translateY(-2px);
}

.contact-info-icon {
    width: 56px; height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-clr, var(--primary));
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-card a,
.contact-info-card span {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
}

/* ---- CTA Section ---- */
.cta-section {
    background: var(--bg-deeper);
    text-align: center;
    padding: 100px 0;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Footer ---- */
.site-footer {
    background: var(--bg-deeper);
    border-top: 1px solid var(--border-glass);
    position: relative;
    padding-top: 80px;
}

.footer-glow-top {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), var(--accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.footer-social .social-link {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: rgba(0,212,255,0.1);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    outline: none;
}

.newsletter-form input:focus { border-color: var(--primary); }

.newsletter-msg { font-size: 12px; margin-top: 8px; }
.newsletter-msg.success { color: var(--success); }
.newsletter-msg.error { color: var(--accent); }

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    font-size: 14px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--primary); padding-left: 4px; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-contact li svg { flex-shrink: 0; margin-top: 3px; color: var(--primary); }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid var(--border-glass);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

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

/* ---- WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(37,211,102,0.4);
    color: #fff;
}

/* ---- Live Chat ---- */
.live-chat-toggle {
    position: fixed;
    bottom: 36px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.live-chat-toggle:hover { transform: scale(1.1); }

.live-chat-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 360px;
    max-height: 500px;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    z-index: 1000;
    display: none;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.live-chat-window.open { display: flex; }

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(135deg, rgba(0,212,255,0.1), rgba(124,58,237,0.1));
    border-bottom: 1px solid var(--border-glass);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-header-info strong {
    display: block;
    font-size: 14px;
}

.chat-status {
    font-size: 11px;
    color: var(--success);
}

.chat-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
}

.chat-close:hover { color: var(--text-primary); }

.chat-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    max-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.chat-msg {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    max-width: 80%;
    line-height: 1.5;
}

.chat-msg.support {
    background: rgba(0,212,255,0.1);
    border: 1px solid rgba(0,212,255,0.15);
    align-self: flex-start;
}

.chat-input-area {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border-top: 1px solid var(--border-glass);
}

.chat-input {
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    outline: none;
}

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

.chat-send {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.chat-send:hover { transform: scale(1.1); }

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 36px;
    left: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: rgba(0,212,255,0.1); border-color: var(--primary); color: var(--primary); }

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

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

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

.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Breadcrumbs ---- */
.onehosty-breadcrumbs {
    padding: 16px 0;
    font-size: 13px;
    color: var(--text-muted);
    background: var(--bg-deeper);
    border-bottom: 1px solid var(--border-glass);
}

.onehosty-breadcrumbs a { color: var(--text-muted); }
.onehosty-breadcrumbs a:hover { color: var(--primary); }
.onehosty-breadcrumbs .sep { margin: 0 8px; color: var(--text-muted); }
.onehosty-breadcrumbs .current { color: var(--text-secondary); }

/* ---- Page Header Simple ---- */
.page-header-simple {
    padding: 60px 0;
    text-align: center;
    background: var(--bg-deeper);
    border-bottom: 1px solid var(--border-glass);
}

.page-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 800;
}

.archive-desc { margin-top: 8px; color: var(--text-muted); }

/* ---- Page Content ---- */
.page-content, .post-content {
    padding: 60px 0;
}

.entry-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: var(--text-secondary);
}

.entry-content h1, .entry-content h2, .entry-content h3,
.entry-content h4, .entry-content h5, .entry-content h6 {
    color: var(--text-primary);
    margin: 32px 0 16px;
    font-family: var(--font-display);
}

.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin-bottom: 16px; padding-left: 24px; list-style: disc; }
.entry-content li { margin-bottom: 8px; }

/* ---- Blog ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 0;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover { transform: translateY(-4px); border-color: rgba(0,212,255,0.3); box-shadow: 0 10px 40px rgba(0,0,0,0.2); }

.blog-card-thumb {
    display: block;
    overflow: hidden;
}

.blog-card-thumb img {
    width: 100%;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-thumb img { transform: scale(1.05); }

.blog-card-body {
    padding: 24px;
}

.blog-card-cats {
    margin-bottom: 8px;
}

.blog-card-cats a {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.blog-card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.4;
}

.blog-card-title a { color: var(--text-primary); }
.blog-card-title a:hover { color: var(--primary); }

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
}

.blog-read-more { font-weight: 600; }

/* ---- Single Post ---- */
.single-article { padding: 60px 0; max-width: 800px; margin: 0 auto; }

.post-thumbnail { margin-bottom: 32px; border-radius: var(--radius-md); overflow: hidden; }
.post-thumb { width: 100%; }

.post-title {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.post-meta {
    display: flex;
    gap: 16px;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.post-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.post-tags a {
    font-size: 13px;
    color: var(--primary);
    margin-right: 8px;
}

.post-share { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-muted); }
.post-share a { color: var(--text-muted); font-weight: 600; }
.post-share a:hover { color: var(--primary); }

/* ---- Pagination ---- */
.onehosty-pagination {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}

.onehosty-pagination ul {
    display: flex;
    gap: 8px;
}

.onehosty-pagination a,
.onehosty-pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid var(--border-glass);
    transition: var(--transition);
}

.onehosty-pagination a { color: var(--text-secondary); background: transparent; }
.onehosty-pagination a:hover { border-color: var(--primary); color: var(--primary); }
.onehosty-pagination span.current { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; border-color: transparent; }

/* ---- 404 ---- */
.error-404-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.error-404-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 24px;
}

.error-404-number {
    font-family: var(--font-display);
    font-size: 120px;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 40px rgba(0,212,255,0.3);
}

.error-404-icon { color: var(--secondary); }

.error-404-content h1 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}

.error-404-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.error-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ---- Comments ---- */
.comments-area {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--border-glass);
}

.comment-list { margin-bottom: 32px; }

.comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-glass);
}

.comment-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.comment-author { font-weight: 600; }
.comment-time { font-size: 12px; color: var(--text-muted); }
.comment-content p { font-size: 14px; color: var(--text-secondary); }

.comment-reply-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.comment-form input,
.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    outline: none;
}

.comment-form input:focus,
.comment-form textarea:focus { border-color: var(--primary); }

.comment-form .submit {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    padding: 12px 32px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.comment-form .submit:hover { transform: translateY(-2px); box-shadow: 0 0 20px rgba(0,212,255,0.3); }
