/* ==========================================================================
   FoonHost CSS Design System & Stylesheet
   Created with premium dark tech / glassmorphism aesthetics.
   ========================================================================== */

/* --- Design Variables --- */
:root {
    --bg-main: #080c16;
    --bg-card: rgba(13, 20, 38, 0.6);
    --bg-card-hover: rgba(19, 29, 54, 0.8);
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-glow: rgba(59, 130, 246, 0.3);
    
    /* Brand Palette */
    --primary: #2563eb;
    --primary-gradient: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --secondary-gradient: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --purple-gradient: linear-gradient(135deg, #8b5cf6 0%, #6366f1 100%);
    
    --primary-glow: rgba(37, 99, 235, 0.4);
    --cyan: #06b6d4;
    --cyan-glow: rgba(6, 182, 212, 0.3);
    --purple: #8b5cf6;
    --purple-glow: rgba(139, 92, 246, 0.3);
    
    /* Text colors */
    --text-white: #ffffff;
    --text-main: #e2e8f0;
    --text-muted: #94a3b8;
    --text-dark: #0f172a;
    
    /* Layout */
    --container-max: 1200px;
    --header-height: 80px;
    
    /* System Feedback */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    font-size: 16px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button, input, select, textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

/* --- Global Utilities & Gradients --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: var(--cyan);
}

/* Glowing background elements */
.glowing-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
    pointer-events: none;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    will-change: opacity;
    animation: orbFloat 20s infinite alternate ease-in-out;
    /* GPU-only animation — no filter:blur to avoid GPU overdraw */
    transform: translateZ(0);
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -15%;
    right: -10%;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--purple) 0%, transparent 70%);
    top: 30%;
    left: -10%;
    animation-delay: -5s;
}

.orb-3 {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, var(--cyan) 0%, transparent 70%);
    bottom: 5%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%   { opacity: 0.08; }
    100% { opacity: 0.16; }
}

/* --- UI Buttons & Forms --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 14px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    border: 1px solid var(--border-glass);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-white);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--cyan);
    background: rgba(6, 182, 212, 0.05);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13.5px;
    border-radius: 8px;
}

.btn-lg {
    padding: 14px 34px;
    font-size: 16.5px;
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s ease;
    opacity: 0;
}

.btn-glow:hover::after {
    opacity: 1;
    transform: translate(50%, 50%) rotate(45deg);
}

/* --- Header / Navigation Bar --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(8, 12, 22, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-glass);
    z-index: 1000;
    transition: all 0.4s ease;
}

.header-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-white);
}

.nav-menu {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-muted);
    position: relative;
    padding: 6px 0;
}

.nav-link:hover, .nav-link.active {
    color: var(--text-white);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-gradient);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* --- Hero Section --- */
.hero-section {
    padding-top: calc(var(--header-height) + 30px);
    padding-bottom: 40px;
    position: relative;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-new {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--cyan);
    animation: flash 1.5s infinite alternate;
}

@keyframes flash {
    0% { opacity: 0.3; }
    100% { opacity: 1; }
}

.badge-text {
    font-size: 13px;
    font-weight: 700;
    color: #93c5fd;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-white);
}

.hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-metrics {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 12px 20px;
    border-radius: 14px;
}

.metric-item {
    display: flex;
    flex-direction: column;
}

.metric-val {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
}

.metric-lbl {
    font-size: 12px;
    color: var(--text-muted);
}

.metric-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
}

/* --- Hero Pricing Cards (FoonHost Premium Pricing) --- */
.hero-visual {
    position: relative;
    width: 100%;
}

.hero-pricing-container {
    position: relative;
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    z-index: 10;
}

/* Glowing Background beneath pricing card to make it look premium */
.hero-pricing-container::before {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(6, 182, 212, 0.08) 70%);
    filter: blur(35px);
    z-index: -1;
    pointer-events: none;
}

/* Main Premium Plan Card */
.hero-plan-card {
    position: relative;
    background: #0f1c2e;
    border: 1.2px solid rgba(255, 255, 255, 0.45);
    border-radius: 20px;
    padding: 16px 22px 12px 22px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    direction: rtl;
    text-align: right;
}

.hero-plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(37, 99, 235, 0.15);
    border-color: rgba(255, 255, 255, 0.85);
}

/* Protruding AMD EPYC Badge */
.hero-plan-chip {
    position: absolute;
    top: -13px;
    right: 24px;
    background: #3da8f5;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(61, 168, 245, 0.3);
    z-index: 12;
    letter-spacing: 0.5px;
}

/* Translucent الأكثر طلبا Badge */
.hero-plan-badge-popular {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(16, 185, 129, 0.12);
    color: #10b981;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(4px);
}

/* Plan Title */
.hero-plan-title {
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 8px;
}

/* Price Box */
.hero-plan-price-box {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    margin-bottom: 8px;
    gap: 4px;
}

.hero-plan-price-box .price-val {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.hero-plan-price-box .price-period {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* Features List styling matching Image 2 */
.hero-plan-features {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.hero-plan-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse; /* Reverses direction visually under RTL so icons are left and texts are right */
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-plan-features li:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-plan-features .feature-text {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    text-align: right;
}

.hero-plan-features .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0.95;
    flex-shrink: 0;
}

.hero-plan-features .feature-icon svg {
    width: 16px;
    height: 16px;
}

/* Bottom Special Offers Grid */
.hero-plans-utility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 10px;
    width: 100%;
}

.hero-plan-utility-card {
    background: #0f1c2e;
    border: 1.2px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3);
    direction: rtl;
}

.hero-plan-utility-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(6, 182, 212, 0.15);
    border-color: rgba(255, 255, 255, 0.85);
}

.hero-utility-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse; /* Reverses visually so text is on the right and icon is on the left */
    width: 100%;
}

.hero-utility-icon {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
}

.hero-utility-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Aligns text to the right side in RTL */
    gap: 2px;
}

.hero-utility-title {
    font-size: 13px;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
}

.hero-utility-price {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
}

@media (max-width: 480px) {
    .hero-plan-card {
        padding: 16px 16px 12px 16px;
    }
    .hero-plan-price-box .price-val {
        font-size: 36px;
    }
    .hero-plan-title {
        font-size: 16px;
    }
    .hero-plan-chip {
        top: -11px;
        right: 16px;
        font-size: 10px;
        padding: 3px 10px;
    }
    .hero-plan-badge-popular {
        top: 16px;
        left: 16px;
        font-size: 10px;
        padding: 3px 8px;
    }
    .hero-plans-utility-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* --- Section Header Utility --- */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px auto;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* --- Features Grid Section --- */
.features-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.feature-card {
    background: rgba(13, 20, 38, 0.85);
    border: 1px solid var(--border-glass);
    padding: 36px;
    border-radius: 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    will-change: transform;
    content-visibility: auto;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-glow);
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    margin-bottom: 24px;
    position: relative;
}

.feature-icon.glow-blue {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}

.feature-icon.glow-cyan {
    background: rgba(6, 182, 212, 0.15);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #22d3ee;
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.2);
}

.feature-icon.glow-purple {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.2);
}

.feature-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
}

.feature-card-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* --- Dashboard Showcase Section --- */
.dashboard-section {
    padding: 100px 0;
    background: rgba(8, 12, 22, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.dashboard-showcase {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 960px;
    margin: 0 auto;
}

.showcase-tabs {
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 6px;
    border-radius: 50px;
    align-self: center;
}

.showcase-tab {
    background: transparent;
    border: none;
    padding: 10px 24px;
    border-radius: 50px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.showcase-tab.active {
    background: var(--primary-gradient);
    color: var(--text-white);
    box-shadow: 0 4px 12px var(--primary-glow);
}

.showcase-content {
    width: 100%;
}

.panel-screen {
    background: #0f1626;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    width: 100%;
}

.panel-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.panel-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.panel-dots span:nth-child(1) { background-color: var(--danger); }
.panel-dots span:nth-child(2) { background-color: var(--warning); }
.panel-dots span:nth-child(3) { background-color: var(--success); }

.panel-url {
    background: rgba(0, 0, 0, 0.2);
    padding: 4px 16px;
    border-radius: 6px;
    font-size: 11px;
    color: var(--text-muted);
    font-family: monospace;
    flex-grow: 1;
    max-width: 400px;
    text-align: left;
    direction: ltr;
}

.panel-body {
    display: none;
    min-height: 380px;
}

.panel-body.active {
    display: block;
    animation: tabEntrance 0.5s ease forwards;
}

@keyframes tabEntrance {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.panel-grid {
    display: grid;
    grid-template-columns: 200px 1fr;
    min-height: 380px;
}

.panel-sidebar {
    background: rgba(0,0,0,0.15);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sb-item {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.sb-item.active, .sb-item:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
}

.panel-main {
    padding: 24px;
}

.main-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.main-title-row h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
}

.main-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Tab: Rooms specifics */
.panel-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-row {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.row-tag {
    font-size: 10.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
}

.row-tag.bg-cyan {
    background: rgba(6, 182, 212, 0.2);
    color: #22d3ee;
}

.row-tag.bg-purple {
    background: rgba(139, 92, 246, 0.2);
    color: #a78bfa;
}

.row-name {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-white);
}

.row-stats {
    font-size: 12px;
    color: var(--text-muted);
}

.badge {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
}

.badge-success { background: rgba(16, 185, 129, 0.15); color: var(--success); }
.badge-blue { background: rgba(37, 99, 235, 0.15); color: #60a5fa; }
.badge-warning { background: rgba(245, 158, 11, 0.15); color: var(--warning); }

/* Tab: Customization Option */
.customizer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.custom-option {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.custom-option label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.color-picker-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 8px;
}

.color-preview {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    border: 1.5px solid rgba(255,255,255,0.15);
}

.color-code {
    font-size: 12px;
    font-family: monospace;
    font-weight: 700;
}

.upload-box {
    border: 1.5px dashed rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.01);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 11.5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.upload-box:hover {
    border-color: var(--cyan);
    background: rgba(6, 182, 212, 0.02);
}

/* Tab: Members specifics */
.panel-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.panel-table th {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-table td {
    padding: 12px 0;
    font-size: 13.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.table-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--text-white);
}

.user-name {
    font-weight: 700;
    color: var(--text-white);
}

.user-email {
    font-size: 10px;
    color: var(--text-muted);
}

.user-role {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
}

.role-admin { background: rgba(239, 68, 68, 0.15); color: #f87171; }
.role-mod { background: rgba(139, 92, 246, 0.15); color: #c084fc; }
.role-member { background: rgba(100, 116, 139, 0.15); color: #94a3b8; }

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-left: 4px;
}

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

/* --- Pricing Calculator Section --- */
.pricing-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.pricing-cards-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    width: 100%;
}

.plan-card {
    background: rgba(13, 20, 38, 0.9);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    will-change: transform;
}

.plan-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-glow);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Featured Card (Pro Plan) */
.plan-card.featured {
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.plan-card.featured:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.2);
}

/* Plan Processor chip */
.plan-chip {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    color: #60a5fa;
    margin-bottom: 20px;
    text-shadow: 0 0 8px rgba(37, 99, 235, 0.3);
    display: inline-block;
}

.plan-chip.chip-epic {
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: #22d3ee;
    text-shadow: 0 0 8px rgba(6, 182, 212, 0.3);
}

/* Popular badge */
.plan-badge-popular {
    position: absolute;
    top: 24px;
    left: 24px;
    background: var(--purple-gradient);
    color: var(--text-white);
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.plan-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 12px;
}

.plan-price-box {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 20px;
}

.plan-price-box .price-val {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -1px;
}

.plan-price-box .price-period {
    font-size: 14px;
    color: var(--text-muted);
    margin-right: 6px;
}

/* Features List */
.plan-features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
    color: var(--text-main);
}

.plan-features .feature-icon {
    font-size: 18px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-features .feature-text {
    font-weight: 500;
}

/* Bottom Utility Grid */
.plans-utility-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    margin-top: 10px;
}

.plan-utility-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: transform 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    will-change: transform;
}

.plan-utility-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.utility-header {
    display: flex;
    align-items: center;
    gap: 14px;
}

.utility-icon {
    font-size: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
}

.utility-icon.icon-gold {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.1);
}

.utility-icon.icon-blue {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.25);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.1);
}

.utility-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-white);
}

.utility-price-box {
    display: flex;
    align-items: center;
    gap: 16px;
}

.utility-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

/* --- Testimonials Section --- */
.testimonials-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(13, 20, 38, 0.88);
    border: 1px solid var(--border-glass);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    will-change: transform;
    content-visibility: auto;
}

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

.testimonial-stars {
    color: var(--warning);
    font-size: 15px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-main);
    line-height: 1.7;
    margin-bottom: 24px;
    flex-grow: 1;
}

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

.testimonial-user .user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-white);
}

.testimonial-user .user-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
}

.testimonial-user .user-title {
    font-size: 11px;
    color: var(--text-muted);
}

/* --- FAQ Accordion Section --- */
.faq-section {
    padding: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

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

.faq-item {
    background: rgba(13, 20, 38, 0.85);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease;
    content-visibility: auto;
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.12);
    background: rgba(19, 29, 54, 0.5);
}

.faq-item.active {
    border-color: var(--border-glass-glow);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    text-align: right;
    color: var(--text-white);
    font-size: 16.5px;
    font-weight: 700;
    transition: all 0.3s ease;
}

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

.faq-item.active .faq-question {
    color: var(--cyan);
}

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--cyan);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--purple);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 28px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.8;
    padding-bottom: 22px;
}

/* --- Final Call to Action --- */
.cta-section {
    padding: 80px 0;
    position: relative;
}

.cta-box {
    position: relative;
    background: linear-gradient(135deg, rgba(13, 20, 38, 0.9) 0%, rgba(8, 12, 22, 0.9) 100%);
    border: 1px solid var(--border-glass-glow);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 60%);
    z-index: -1;
}

.cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 36px auto;
}

.cta-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto 24px auto;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    padding: 6px;
    border-radius: 16px;
    gap: 8px;
}

.cta-form input {
    background: transparent;
    border: none;
    padding: 12px 16px;
    flex-grow: 1;
    color: var(--text-white);
    font-size: 14.5px;
    outline: none;
}

.cta-form input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cta-meta {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.cta-meta span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
}

/* --- Footer --- */
.footer {
    background: #04070e;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 80px 0 30px 0;
    position: relative;
    z-index: 1;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.brand-desc {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.7;
}

.footer-links-col h4 {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 20px;
}

.footer-links-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links-col a:hover {
    color: var(--cyan);
    transform: translateX(-4px);
}

.contact-info {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.social-icons a {
    width: 36px;
    height: 36px;
    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(--text-muted);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: var(--text-white);
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

/* --- Interactive Modals --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(4, 7, 14, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #0f1626;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    width: 100%;
    max-width: 440px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), inset 0 1px 1px rgba(255,255,255,0.1);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.open .modal-card {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--text-white);
}

.modal-logo {
    text-align: center;
    margin-bottom: 12px;
}

.modal-subtitle {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.forgot-pass-link {
    font-size: 11.5px;
    color: var(--cyan);
}

.form-group input {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    padding: 12px 16px;
    border-radius: 10px;
    color: var(--text-white);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 24px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

.form-checkbox a {
    color: var(--cyan);
}

.modal-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: var(--text-muted);
}

.modal-footer a {
    color: var(--cyan);
    font-weight: 700;
}

/* --- Toast Notification --- */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--purple-gradient);
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(139, 92, 246, 0.3);
    z-index: 3000;
    font-weight: 700;
    font-size: 13.5px;
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   Responsive Adaptations (Media Queries)
   ========================================================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-desc {
        max-width: 600px;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: #080c16;
        border-bottom: 1px solid var(--border-glass);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 20px;
        transform: translateY(-200%);
        pointer-events: none;
        transition: transform 0.4s ease;
        z-index: 999;
    }
    
    .nav-menu.open {
        transform: translateY(0);
        pointer-events: auto;
    }
    
    .nav-actions {
        display: none; /* Inside mobile layout, or simplified */
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    /* Hamburger menu animation active state */
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 20px;
    }
    
    .metric-divider {
        width: 80%;
        height: 1px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-grid {
        grid-template-columns: 1fr;
    }
    
    .panel-sidebar {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        flex-direction: row;
        overflow-x: auto;
        padding: 10px;
        gap: 6px;
    }
    
    .sb-item {
        white-space: nowrap;
    }
    
    .customizer-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plans-utility-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .plan-utility-card {
        flex-direction: row;
        padding: 20px;
    }
    
    @media (max-width: 480px) {
        .plan-utility-card {
            flex-direction: column;
            text-align: center;
            gap: 16px;
            padding: 24px 20px;
        }
        
        .utility-header {
            flex-direction: column;
            gap: 8px;
        }
        
        .utility-price-box {
            flex-direction: column;
            gap: 12px;
            width: 100%;
        }
        
        .utility-price-box button {
            width: 100%;
        }
    }
    
    .cta-form {
        flex-direction: column;
        border: none;
        background: transparent;
        padding: 0;
    }
    
    .cta-form input {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid var(--border-glass);
        border-radius: 12px;
        margin-bottom: 10px;
        width: 100%;
    }
    
    .cta-form button {
        width: 100%;
    }
    
    .cta-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ==========================================================================
   Advanced Google SEO Content Section Styles
   ========================================================================== */
.seo-content-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.seo-glass-card {
    background: linear-gradient(135deg, rgba(15, 22, 38, 0.75) 0%, rgba(11, 15, 25, 0.85) 100%);
    border: 1px solid var(--border-glass-glow);
    border-radius: 28px;
    padding: 50px 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.seo-card-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.seo-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(6, 182, 212, 0.3);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.2);
}

.seo-title {
    font-size: 30px;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 18px;
    line-height: 1.4;
}

.seo-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.seo-articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.seo-article {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.seo-article:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(6, 182, 212, 0.2);
    transform: translateY(-4px);
}

.article-icon {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
}

.seo-article h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 14px;
}

.seo-article p {
    font-size: 13.5px;
    color: var(--text-main);
    line-height: 1.7;
}

.seo-article strong {
    color: var(--cyan);
    font-weight: 600;
}

.seo-comparison {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 50px;
}

.seo-comparison h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-white);
    text-align: center;
    margin-bottom: 30px;
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.seo-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
    min-width: 600px;
}

.seo-table th, .seo-table td {
    padding: 18px 24px;
    font-size: 14px;
}

.seo-table th {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-white);
    font-weight: 700;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.seo-table td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: var(--text-main);
}

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

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

.seo-table td.feature-name {
    font-weight: 700;
    color: var(--text-white);
    width: 25%;
}

.highlight-success {
    color: #34d399 !important;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.03);
}

.highlight-danger {
    color: #f87171 !important;
    background: rgba(239, 68, 68, 0.02);
}

/* SEO Responsive Overrides */
@media (max-width: 1024px) {
    .seo-articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .seo-glass-card {
        padding: 30px 20px;
    }
    
    .seo-title {
        font-size: 24px;
    }
    
    .seo-articles-grid {
        grid-template-columns: 1fr;
    }
    
    .seo-table th, .seo-table td {
        padding: 14px 16px;
        font-size: 13px;
    }
}


/* CTA Two-Column Responsive */
@media (max-width: 820px) {
    .cta-section > .container > div {
        grid-template-columns: 1fr !important;
    }
}

/* ========================================================
   PH Pricing Cards - New Design (Matching Reference Image)
   ======================================================== */
.ph-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid rgba(59,130,246,.18);
    border-radius: 20px;
    overflow: hidden;
    background: rgba(8,14,32,.95);
    box-shadow: 0 20px 60px rgba(0,0,0,.45);
}

.ph-card {
    position: relative;
    padding: 32px 28px;
    border-left: 1px solid rgba(255,255,255,.07);
    display: flex;
    flex-direction: column;
    gap: 0;
    background: rgba(10,18,40,.92);
    transition: background .3s;
}
.ph-card:first-child { border-left: none; }

.ph-card-featured {
    background: rgba(14,24,54,.98);
}

/* Badges */
.ph-badge-popular {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1c1000;
    font-size: .75rem;
    font-weight: 800;
    border-radius: 20px;
    margin-bottom: 18px;
    width: fit-content;
    box-shadow: 0 0 14px rgba(245,158,11,.3);
}
.ph-badge-extra {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    background: rgba(100,116,139,.2);
    color: #cbd5e1;
    font-size: .75rem;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 18px;
    width: fit-content;
    border: 1px solid rgba(148,163,184,.35);
}

/* Card Top: Price + Name side by side */
.ph-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 24px;
    gap: 10px;
}
.ph-price-block { display: flex; flex-direction: column; }
.ph-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #f1f5f9;
    line-height: 1;
    letter-spacing: -1px;
}
.ph-currency {
    font-size: 1.4rem;
    font-weight: 700;
    vertical-align: super;
    color: #cbd5e1;
    margin-right: 2px;
}
.ph-period {
    font-size: .75rem;
    color: #94a3b8;
    font-weight: 600;
    margin-top: 4px;
}
.ph-plan-name {
    font-size: 1.55rem;
    font-weight: 900;
    color: #f1f5f9;
    text-align: left;
    line-height: 1.2;
}

/* Features list */
.ph-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.ph-features li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    font-size: .92rem;
    font-weight: 600;
    color: #e2e8f0;
    direction: rtl;
}
.ph-features li:last-child { border-bottom: none; }
.ph-check {
    width: 22px;
    height: 22px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 900;
    color: #fff;
    flex-shrink: 0;
}

/* Buttons */
.ph-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    font-family: 'Cairo', sans-serif;
    font-size: .92rem;
    font-weight: 800;
    text-decoration: none;
    transition: all .25s;
    margin-top: auto;
}
.ph-btn-gold {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1c1000;
    box-shadow: 0 0 18px rgba(245,158,11,.3);
}
.ph-btn-gold:hover { box-shadow: 0 0 28px rgba(245,158,11,.5); transform: translateY(-1px); }

.ph-btn-blue {
    background: rgba(59,130,246,.12);
    border: 1px solid rgba(59,130,246,.3);
    color: #93c5fd;
}
.ph-btn-blue:hover { background: rgba(59,130,246,.2); }

.ph-btn-purple {
    background: linear-gradient(135deg, #7c3aed, #6d28d9);
    color: #fff;
    box-shadow: 0 0 14px rgba(124,58,237,.3);
}
.ph-btn-purple:hover { box-shadow: 0 0 24px rgba(124,58,237,.5); transform: translateY(-1px); }

/* Responsive */
@media (max-width: 1024px) {
    .ph-pricing-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .ph-card:nth-child(odd) { border-left: none; }
    .ph-card:nth-child(3),
    .ph-card:nth-child(4) { border-top: 1px solid rgba(255,255,255,.07); }
}
@media (max-width: 640px) {
    .ph-pricing-grid { grid-template-columns: 1fr !important; }
    .ph-card { border-left: none !important; border-top: 1px solid rgba(255,255,255,.07) !important; padding: 24px 18px; }
    .ph-card:first-child { border-top: none !important; }
    .ph-card-featured { order: -1; }
    .ph-price { font-size: 2.2rem; }
    .ph-plan-name { font-size: 1.3rem; }
}

/* ========================================================
   Articles Preview Section
   ======================================================== */
.articles-preview-section { padding: 90px 0; }

.articles-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.article-preview-card {
    display: flex;
    flex-direction: column;
    background: rgba(10,18,40,.92);
    border: 1px solid rgba(59,130,246,.15);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s, border-color .25s, box-shadow .25s;
}
.article-preview-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59,130,246,.35);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
}

.apc-image {
    width: 100%;
    height: 190px;
    overflow: hidden;
    background: rgba(6,11,24,.8);
}
.apc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.article-preview-card:hover .apc-image img { transform: scale(1.05); }

.apc-no-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(6,11,24,.9), rgba(14,24,54,.9));
}

.apc-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 8px;
}

.apc-date {
    font-size: .74rem;
    color: #94a3b8;
    font-weight: 600;
}

.apc-title {
    font-size: 1rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.apc-excerpt {
    font-size: .83rem;
    color: #94a3b8;
    line-height: 1.65;
    margin: 0;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.apc-read-more {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .8rem;
    font-weight: 700;
    color: #60a5fa;
    margin-top: 6px;
    transition: gap .2s;
}
.article-preview-card:hover .apc-read-more { gap: 9px; }
.apc-read-more span { font-size: 1rem; }

@media (max-width: 900px) { .articles-preview-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .articles-preview-grid { grid-template-columns: 1fr; } }

/* ========================================================
   FAQ New Grid Design
   ======================================================== */
.faq-new-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.faq-new-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(10,18,42,.9);
    border: 1px solid rgba(59,130,246,.12);
    border-radius: 14px;
    padding: 20px 22px;
    transition: border-color .25s, background .25s;
}
.faq-new-card:hover {
    border-color: rgba(59,130,246,.28);
    background: rgba(13,22,50,.95);
}

.faq-new-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(59,130,246,.1);
    border: 1px solid rgba(59,130,246,.22);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
    margin-top: 2px;
    box-shadow: 0 0 10px rgba(59,130,246,.08);
    transition: background .2s, box-shadow .2s, color .2s;
}
.faq-new-card:hover .faq-new-icon {
    background: rgba(59,130,246,.18);
    box-shadow: 0 0 16px rgba(59,130,246,.22);
    color: #93c5fd;
}

.faq-new-q {
    font-size: .93rem;
    font-weight: 800;
    color: #f1f5f9;
    margin-bottom: 8px;
    line-height: 1.4;
}

.faq-new-a {
    font-size: .84rem;
    color: #94a3b8;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 720px) {
    .faq-new-grid { grid-template-columns: 1fr; }
}
