/* ============================================
   HostPost.hu - Modern 2026 Design
   ============================================ */

/* CSS Variables */
:root {
    /* Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --accent: #06b6d4;
    --accent-dark: #0891b2;
    
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-tertiary: #1a1a24;
    --bg-card: rgba(26, 26, 36, 0.8);
    
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    
    --border-color: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);
    
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #10b981 100%);
    --gradient-warm: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

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

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

body {
    font-family: var(--font-primary);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
    max-width: 100vw;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: #8b5cf6;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(-30px, -20px) scale(1.02); }
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: border-box;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-normal);
    white-space: nowrap;
}

.btn i {
    font-size: 1.2em;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

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

.btn-accent {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.4);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

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

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

.btn-light {
    background: white;
    color: var(--bg-primary);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-normal);
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 100%;
}

.logo img {
    height: 28px;
    transition: opacity var(--transition-fast);
}

.logo:hover img {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.nav-link i {
    font-size: 0.8em;
    transition: transform var(--transition-fast);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 240px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-xl);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.dropdown-item i {
    font-size: 1.3em;
    color: var(--primary);
}

.dropdown-item.featured {
    /* Ryzen featured háttér eltávolítva a user kérésére */
}

.dropdown-item.active {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.dropdown-item .badge {
    margin-left: auto;
    padding: 2px 8px;
    background: var(--gradient-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Közösségi ikonok a navbar-ban – keretes stílus */
.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.nav-social-link:hover,
.nav-social-link:focus,
.nav-social-link:visited {
    text-decoration: none;
}

.nav-social-link:hover {
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    transform: scale(1.05);
}

.nav-social-link i {
    font-size: 1.1rem;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 24px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.server-illustration {
    position: relative;
    padding: 40px;
    max-width: 100%;
}

.server-rack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 32px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
    max-width: 100%;
}

.server-unit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
    min-width: 280px;
    max-width: 100%;
}

.server-unit.active {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.server-lights {
    display: flex;
    gap: 8px;
}

.light {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.light.green { background: #10b981; box-shadow: 0 0 8px #10b981; }
.light.blue { background: #3b82f6; box-shadow: 0 0 8px #3b82f6; }
.light.orange { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }
.light.cyan { background: #06b6d4; box-shadow: 0 0 8px #06b6d4; }
.light.purple { background: #8b5cf6; box-shadow: 0 0 8px #8b5cf6; }

.light.blink {
    animation: blink 1s ease-in-out infinite;
}

.light.blink-slow {
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; box-shadow: 0 0 12px currentColor; }
    50% { opacity: 0.3; box-shadow: 0 0 4px currentColor; }
}

/* Server Vents */
.server-vents {
    display: flex;
    gap: 4px;
    margin-left: auto;
    margin-right: 16px;
}

.vent {
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    border-radius: 2px;
    position: relative;
}

.vent::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 20px;
    background: rgba(99, 102, 241, 0.3);
    border-radius: 1px;
    animation: ventGlow 3s ease-in-out infinite;
}

.server-unit:nth-child(1) .vent::after {
    animation-delay: 0s;
}

.server-unit:nth-child(2) .vent::after {
    animation-delay: 0.5s;
    background: rgba(6, 182, 212, 0.4);
}

.server-unit:nth-child(3) .vent::after {
    animation-delay: 1s;
    background: rgba(139, 92, 246, 0.3);
}

@keyframes ventGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Server Ports */
.server-ports {
    display: flex;
    gap: 6px;
}

.port {
    width: 12px;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    position: relative;
}

.port.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 6px #10b981;
    animation: portBlink 1.5s ease-in-out infinite;
}

@keyframes portBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Server Brand Logo */
.server-brand {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    margin-left: 12px;
}

.server-brand svg {
    height: 14px;
    width: auto;
    opacity: 0.7;
}

.server-brand span {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.server-unit.active .server-brand {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.server-unit.active .server-brand span {
    color: var(--primary-light);
}

.server-unit.active .server-brand svg {
    opacity: 0.9;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: auto;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary-light);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services Section */
.services-section {
    background: var(--bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.services-grid-three {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--text-secondary);
}

/* Features Banner */
.features-banner {
    background: var(--gradient-primary);
    padding: 80px 0;
}

.features-banner-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.features-banner-text h3 {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.9;
    margin-bottom: 8px;
}

.features-banner-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

.features-banner .gradient-text {
    background: linear-gradient(135deg, #fff 0%, #a5f3fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.1rem;
    opacity: 0.95;
}

.features-list i {
    font-size: 1.4em;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.pricing-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--bg-card) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: var(--gradient-warm);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 20px;
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.pricing-header h3 .accent {
    color: var(--primary-light);
    font-size: 1.6rem;
}

.pricing-header p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.pricing-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 16px;
    padding: 8px 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-md);
}

/* DDoS Alert */
.ddos-alert {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.ddos-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--gradient-primary);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.ddos-alert p {
    margin: 0;
    color: var(--text-secondary);
    text-align: center;
}

/* Comparison Table Section */
.comparison-section {
    background: var(--bg-secondary);
}

.comparison-table-wrapper {
    overflow-x: auto;
}

.comparison-table {
    min-width: 800px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.comparison-table table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

.comparison-table thead th {
    padding: 12px 16px;
    vertical-align: middle;
}

.comparison-table th,
.comparison-table td {
    padding: 10px 16px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid var(--border-light);
}

.comparison-table th {
    font-weight: 700;
    color: #ffffff;
    padding: 12px 16px;
}

.comparison-table th img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.1);
}

.comparison-table .feature-col {
    text-align: left;
    min-width: 200px;
}

.comparison-table .feature-name {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.comparison-table .feature-name i {
    color: var(--primary-light);
    font-size: 1.1rem;
    width: 22px;
}

.comparison-table td {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-table .hostpost-col {
    background: rgba(99, 102, 241, 0.15);
    color: #ffffff;
    font-weight: 700;
}

.comparison-table .price-highlight {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 700;
}

.comparison-table .check {
    color: var(--accent);
    font-size: 0.95rem;
}

.comparison-table .cross {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.95rem;
}

.comparison-table tbody tr:hover {
    background: rgba(99, 102, 241, 0.05);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        margin: 0 -20px;
        border-radius: 0;
    }
    
    .comparison-table table {
        table-layout: auto;
        min-width: 100%;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 0.8rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: break-word;
    }
    
    .comparison-table .feature-col {
        min-width: 0;
        max-width: 28%;
        width: 28%;
    }
    
    .comparison-table .feature-name {
        white-space: normal;
        line-height: 1.3;
        flex-wrap: wrap;
    }
    
    .comparison-table .feature-name i {
        font-size: 1rem;
        width: 18px;
        flex-shrink: 0;
    }
    
    .comparison-table th img {
        max-height: 22px;
    }
}

.pricing-price {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
    margin-bottom: 20px;
}

.price-old {
    display: block;
    font-size: 0.95rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-current {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.pricing-features {
    list-style: none;
    margin-bottom: 24px;
    flex-grow: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent);
    font-size: 1.1em;
    flex-shrink: 0;
}

.pricing-features strong {
    color: var(--text-primary);
}

.pricing-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note i {
    color: var(--primary-light);
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.pricing-note strong {
    color: var(--accent);
}

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

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.features-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
}

.features-image {
    margin-top: 220px; /* Igazítás a feature-item dobozokhoz */
}

/* DDoS Diagram Illustration */
.ddos-diagram {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 340px;
    margin: 0 auto;
    background: rgba(26, 26, 36, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 25px;
}

/* Szaggatott vonalak SVG */
.diagram-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.dash-line {
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8 6;
}

.dash-line.red {
    stroke: #ef4444;
    animation: dashFlowRed 1s linear infinite;
}

.dash-line.green {
    stroke: #10b981;
    animation: dashFlowRed 1s linear infinite;
}

@keyframes dashFlowRed {
    0% { stroke-dashoffset: 28; }
    100% { stroke-dashoffset: 0; }
}

.diagram-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
    white-space: nowrap;
    position: relative;
    z-index: 15;
    background: rgba(26, 26, 36, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
}

.diagram-label.red { color: #ef4444; }
.diagram-label.green { color: #10b981; }

/* Látogató (fent középen) */
.diagram-visitor {
    position: absolute;
    top: 15px;
    left: 58%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.visitor-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.visitor-icon i {
    font-size: 1.4rem;
    color: white;
}

/* Támadó (bal oldalt) */
.diagram-attacker {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.attacker-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1a1a24 0%, #0a0a0f 100%);
    border: 2px solid #ef4444;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
}

.attacker-icon i {
    font-size: 1.6rem;
    color: #ef4444;
}

/* Botnet gépek */
.diagram-botnet {
    position: absolute;
    left: 95px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 10;
}

.botnet-device {
    width: 42px;
    height: 32px;
    background: var(--bg-secondary);
    border: 1px solid rgba(239, 68, 68, 0.5);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: botnetPulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

.botnet-device i {
    font-size: 1rem;
    color: #ef4444;
    opacity: 0.8;
}

@keyframes botnetPulse {
    0%, 100% { 
        border-color: rgba(239, 68, 68, 0.3);
        box-shadow: none;
    }
    50% { 
        border-color: rgba(239, 68, 68, 0.8);
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
    }
}

/* SVG Nyilak */
.attack-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
}

.arrow-line {
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 8 4;
}

.arrow-line.red {
    stroke: #ef4444;
    marker-end: url(style.css#arrowRed);
    animation: dashFlow 1s linear infinite;
}

.arrow-line.green {
    stroke: #10b981;
    marker-end: url(style.css#arrowGreen);
    animation: dashFlowGreen 1.5s linear infinite;
}

.arrow-line.a2b { animation-delay: 0s; }
.arrow-line.b2s { animation-delay: 0.3s; }
.arrow-line.v2s { animation-delay: 0s; }
.arrow-line.s2srv { animation-delay: 0.2s; }

@keyframes dashFlow {
    0% { stroke-dashoffset: 24; }
    100% { stroke-dashoffset: 0; }
}

@keyframes dashFlowGreen {
    0% { stroke-dashoffset: 28; }
    100% { stroke-dashoffset: 0; }
}

/* Központi pajzs */
.diagram-shield {
    position: absolute;
    top: 50%;
    left: 58%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.shield-box {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.5);
    animation: shieldGlow 2s ease-in-out infinite;
}

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

@keyframes shieldGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 40px rgba(99, 102, 241, 0.7); }
}

/* Szerver (jobb oldalt) */
.diagram-server {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.server-icon {
    width: 56px;
    height: 68px;
    background: linear-gradient(180deg, var(--bg-tertiary) 0%, var(--bg-secondary) 100%);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}

.server-icon::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 3px;
    background: #10b981;
    border-radius: 2px;
    box-shadow: 0 8px 0 #10b981, 0 16px 0 rgba(16, 185, 129, 0.5);
}

.server-icon i {
    font-size: 1.8rem;
    color: var(--text-muted);
    opacity: 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 16px;
    transition: all var(--transition-normal);
}

.feature-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

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

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.feature-content p {
    color: var(--text-secondary);
}

/* What You Get Section */
.what-you-get-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.what-you-get-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 32px;
}

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

.check-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-light);
}

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

.check-list i {
    color: var(--accent);
    font-size: 1.5rem;
}

.what-you-get-image img {
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-xl);
}

/* CTA Section */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 32px;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-light);
}

.footer-brand img {
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-contact h4 {
    margin-bottom: 20px;
}

.contact-items {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-fast);
}

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

.contact-item i {
    font-size: 1.2em;
    color: var(--primary-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-bottom p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding-top: 30px;
    border-top: 1px solid var(--border-light);
}

.payment-logos img {
    height: 40px;
    opacity: 0.8;
    transition: opacity var(--transition-fast);
}

.payment-logos img:hover {
    opacity: 1;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.5);
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease forwards;
}

.animate-float {
    animation: floatElement 6s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn {
    to { opacity: 1; }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        min-width: 0;
    }
    
    .hero-description {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .features-content,
    .what-you-get-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-image,
    .what-you-get-image {
        order: -1;
    }
    
    .features-image {
        margin-top: 0;
    }
    
    .features-image img,
    .what-you-get-image img {
        margin: 0 auto;
    }
    
    .features-banner-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .features-list {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-social {
        display: none;
    }
    
    .nav-buttons .btn-ghost {
        display: none;
    }
    
    .nav-buttons .btn-primary {
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .nav-buttons .btn-primary span {
        display: none;
    }
    
    .nav-buttons .mobile-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .nav-buttons .mobile-toggle span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        background-color: #ffffff !important;
        width: 24px !important;
        height: 3px !important;
    }
    
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        overflow-x: hidden;
    }
    
    .hero .container {
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .hero-visual {
        width: 100%;
        padding: 0 16px;
    }
    
    .server-illustration {
        padding: 20px 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .server-rack {
        padding: 20px;
        width: 100%;
        box-sizing: border-box;
    }
    
    .server-unit {
        padding: 15px 20px;
        min-width: 0;
        width: 100%;
        box-sizing: border-box;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .services-grid,
    .services-grid-three {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-icon {
        margin: 0 auto;
    }
    
    .footer-top {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-items {
        flex-direction: column;
    }
    
    .payment-logos {
        flex-direction: column;
        gap: 16px;
        padding-top: 20px;
    }
    
    .payment-logos img:first-child {
        height: 32px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .pricing-card {
        padding: 24px;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 80px 20px 30px;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        display: flex !important;
    }
    
    .nav-menu .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 0;
        margin: 0;
    }
    
    .nav-menu .nav-list > li {
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    .nav-menu .nav-list > li:first-child {
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu .nav-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 16px;
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-primary);
        width: 100%;
        background: transparent;
        border-radius: 0;
    }
    
    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary-light);
    }
    
    .nav-menu .dropdown {
        width: 100%;
    }
    
    .nav-menu .dropdown .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        background: var(--bg-secondary);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        margin: 0;
        min-width: 100%;
        transition: all 0.3s ease;
    }
    
    .nav-menu .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 8px 0;
    }
    
    .nav-menu .dropdown.open .nav-link i {
        transform: rotate(180deg);
    }
    
    .nav-menu .dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 24px;
        color: var(--text-secondary);
        font-size: 0.95rem;
        border-radius: 0;
    }
    
    .nav-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.05);
        color: var(--text-primary);
    }
    
    .nav-menu .dropdown-item.active {
        background: rgba(99, 102, 241, 0.15);
        color: var(--primary-light);
    }
    
    .nav-menu .dropdown-item i {
        font-size: 1.2rem;
        color: var(--primary);
    }
    
    .nav-menu .dropdown-item .badge {
        margin-left: auto;
    }
    
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px;
        z-index: 1002;
        position: relative;
    }
    
    .mobile-toggle span {
        display: block !important;
        width: 24px;
        height: 3px;
        background-color: #ffffff !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Navbar mindig látható legyen a menü felett */
    .navbar {
        z-index: 1001;
        background: var(--bg-primary);
    }
    
    .navbar.scrolled {
        background: rgba(10, 10, 15, 0.98);
    }
    
    /* Body scroll letiltása amikor a menü nyitva van */
    body.menu-open {
        overflow: hidden;
    }
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
    background-color: #ffffff !important;
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: #ffffff !important;
}

/* ============================================
   Page Specific Styles
   ============================================ */

/* ---- Packages Table (VPS, Ryzen VPS, Dedikált) ---- */
.table-wrapper {
    margin: 40px 0;
    overflow-x: auto;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-color);
}

.packages-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 140px;
    padding: 16px 28px;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.packages-header span:not(:first-child) {
    text-align: center;
}

.package-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr 140px;
    align-items: center;
    padding: 24px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    transition: all var(--transition-normal);
}

.package-row:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.08);
}

.package-row > div:not(:first-child) {
    text-align: center;
    color: var(--text-secondary);
}

.package-row .package-name {
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-row .package-name .accent {
    color: var(--primary-light);
}

.package-row .package-name img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.package-row .price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-light);
}

.package-row .price del {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 400;
    display: block;
}

.package-row .cpu-name {
    font-weight: 700;
    color: var(--primary-light);
}

.package-row .setup {
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .packages-header {
        display: none;
    }
    .package-row {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        padding: 20px;
    }
    .package-row .package-name,
    .package-row .cpu-name {
        grid-column: 1 / -1;
    }
    .package-row > div:not(:first-child) {
        text-align: left;
    }
    .package-row > div:not(:first-child)::before {
        display: block;
        color: var(--text-muted);
        font-size: 0.75rem;
        text-transform: uppercase;
        margin-bottom: 4px;
    }
    .package-row > div:nth-child(2)::before { content: 'CPU'; }
    .package-row > div:nth-child(3)::before { content: 'RAM'; }
    .package-row > div:nth-child(4)::before { content: 'NVMe SSD'; }
    .package-row > div:nth-child(5)::before { content: 'DDoS'; }
    .package-row > div:nth-child(6)::before { content: 'Ár/hó'; }
    .package-row > div:last-child {
        grid-column: 1 / -1;
    }
}

/* OS Tabs (Ryzen VPS) */
.os-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.os-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.os-tab:hover, .os-tab.active {
    border-color: var(--primary);
    color: var(--primary-light);
    background: rgba(99, 102, 241, 0.1);
}

.os-tab img {
    width: 24px;
    height: 24px;
}

/* ---- Game Server Page ---- */
.game-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.game-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.game-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.game-card-image {
    width: 100%;
    display: block;
}

.game-card-content {
    padding: 24px;
}

.game-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.game-card p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.game-card .price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.game-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-muted);
}

.panel-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.panel-image {
    width: 100%;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

.panel-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-glow);
}

.additional-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.additional-service {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.additional-service i {
    font-size: 2rem;
    color: var(--primary-light);
}

.additional-service h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.additional-service p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.coming-soon {
    opacity: 0.5;
}

.coming-soon::after {
    content: "Hamarosan";
    margin-left: 8px;
    padding: 2px 8px;
    background: var(--gradient-warm);
    color: white;
    font-size: 0.7rem;
    border-radius: var(--radius-full);
}

/* ---- Premium NVMe / Webtárhely Page ---- */
.trial-banner {
    background: var(--gradient-accent);
    padding: 16px;
    text-align: center;
    border-radius: var(--radius-lg);
    margin-bottom: 40px;
}

.trial-banner h3 {
    font-size: 1.2rem;
    margin: 0;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.tech-logos img {
    height: 40px;
    opacity: 0.7;
    transition: opacity var(--transition-fast);
}

.tech-logos img:hover {
    opacity: 1;
}

/* Premium NVMe comparison table – csak kiegészítő stílusok, az alap a fenti .comparison-table */
.comparison-section .comparison-table .highlight {
    background: rgba(99, 102, 241, 0.1);
}

.comparison-section .comparison-table .highlight th,
.comparison-section .comparison-table .highlight td {
    color: var(--primary-light);
}

.apps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.app-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    min-width: 100px;
}

.app-icon:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.app-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.app-icon span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* LiteSpeed Section */
.litespeed-section {
    background: var(--bg-secondary);
}

.litespeed-tabs {
    max-width: 900px;
    margin: 0 auto;
}

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

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

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

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

.tab-btn i {
    font-size: 1.2rem;
}

.tabs-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.tab-panel {
    display: none;
    align-items: center;
    gap: 32px;
}

.tab-panel.active {
    display: flex;
}

.tab-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
}

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

.tab-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        width: 100%;
        justify-content: center;
    }
    
    .tab-panel {
        flex-direction: column;
        text-align: center;
    }
    
    .tabs-content {
        padding: 24px;
    }
}

/* ---- License Page ---- */
.license-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.license-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.license-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.license-card-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.license-card-content {
    padding: 24px;
    text-align: center;
}

.license-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.license-price {
    margin-bottom: 20px;
}

.license-price .old-price {
    display: block;
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1rem;
    margin-bottom: 4px;
}

.license-price .current-price {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.license-price .price-note {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

/* ---- Contact Page ---- */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    transition: all var(--transition-normal);
    text-decoration: none;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 24px;
}

.contact-card-icon i {
    font-size: 2.5rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.contact-card p {
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ---- Legal / Privacy Page ---- */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-light);
}

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

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    color: var(--text-secondary);
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--text-primary);
}

/* ---- FAQ Page ---- */
.faq-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.faq-nav {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.faq-nav h3 {
    margin-bottom: 16px;
    font-size: 1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-nav-list {
    list-style: none;
}

.faq-nav-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.faq-nav-list li a:hover,
.faq-nav-list li a.active {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
}

.faq-nav-list li a i {
    font-size: 1.3rem;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.faq-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
}

.faq-category h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border-light);
}

.faq-category h2 i {
    color: var(--primary-light);
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-fast);
}

.accordion-item:hover {
    border-color: var(--primary);
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-tertiary);
    border: none;
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(99, 102, 241, 0.1);
}

.accordion-header i {
    font-size: 1.3rem;
    color: var(--primary-light);
    transition: transform var(--transition-fast);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

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

.accordion-item.active .accordion-body {
    max-height: 500px;
}

.accordion-content {
    padding: 20px 24px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.accordion-content p {
    margin-bottom: 12px;
}

.accordion-content p:last-child {
    margin-bottom: 0;
}

.accordion-content ul {
    margin: 12px 0;
    padding-left: 24px;
}

.accordion-content ul li {
    margin-bottom: 8px;
}

@media (max-width: 900px) {
    .faq-container {
        grid-template-columns: 1fr;
    }
    
    .faq-sidebar {
        position: static;
    }
    
    .faq-nav {
        display: none;
    }
}
