/* ==========================================
   TUNISIAN HOSTING - CORE DESIGN SYSTEM
   ========================================== */

:root {
    --bg-primary: #030712;
    --bg-secondary: #0B0F17;
    --card-bg: rgba(17, 24, 39, 0.75);
    --border-color: #1F2937;
    --border-glow: rgba(37, 99, 235, 0.4);
    
    --primary: #2563EB;
    --primary-hover: #1D4ED8;
    --primary-glow: rgba(37, 99, 235, 0.35);
    
    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-full: 9999px;
    --glass-backdrop: blur(16px);
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    min-height: 100vh;
}

/* ==========================================
   HEADER & CATEGORY BAR
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(3, 7, 18, 0.85);
    backdrop-filter: var(--glass-backdrop);
    -webkit-backdrop-filter: var(--glass-backdrop);
    border-bottom: 1px solid var(--border-color);
}

/* Top Announcement Tagline */
.top-tagline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 5%;
    background: rgba(17, 24, 39, 0.5);
    border-bottom: 1px solid rgba(31, 41, 55, 0.5);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.tagline-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
    animation: pulse 2s infinite;
}

.server-status-badge {
    color: #10B981;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Main Category Navbar */
.category-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 5%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), #3B82F6);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 20px var(--primary-glow);
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2px;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.5px;
}

/* Category Navigation Links */
.nav-categories {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.category-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-normal);
}

.category-item:hover, .category-item.active {
    color: var(--text-main);
    background: rgba(37, 99, 235, 0.1);
}

.category-item.active {
    color: #60A5FA;
    border: 1px solid rgba(37, 99, 235, 0.3);
}

/* Dropdown Menu */
.has-dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform var(--transition-normal);
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 290px;
    background: #0B0F17;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    display: none;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
}

.has-dropdown:hover .dropdown-menu {
    display: flex;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    text-decoration: none;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: background var(--transition-normal);
}

.dropdown-item:hover {
    background: rgba(31, 41, 55, 0.8);
}

.dropdown-item small {
    display: block;
    color: var(--text-muted);
    font-size: 0.75rem;
}

/* Service Colors */
.text-green { color: #10B981; }
.text-red { color: #EF4444; }
.text-amber { color: #F59E0B; }
.text-orange { color: #F97316; }
.text-purple { color: #8B5CF6; }
.text-blue { color: #3B82F6; }

/* Action Buttons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-login {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 18px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-normal);
}

.btn-login:hover {
    background: rgba(255, 255, 255, 0.05);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 14px var(--primary-glow);
    transition: all var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Panel Special Button */
.btn-panel {
    background: rgba(16, 185, 129, 0.12);
    color: #10B981;
    border: 1px solid rgba(16, 185, 129, 0.35);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 16px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
}

.btn-panel:hover {
    background: #10B981;
    color: #030712;
    border-color: #10B981;
    box-shadow: 0 0 16px rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION (PREMIUM SPLIT LAYOUT)
   ========================================== */

.hero-section {
    padding-top: 170px;
    padding-bottom: 50px;
    background: radial-gradient(circle at 85% 30%, rgba(37, 99, 235, 0.18) 0%, rgba(3, 7, 18, 0) 60%);
    position: relative;
}

.hero-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 50px;
}

/* Left Typography Styling */
.hero-left {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(31, 41, 55, 0.5);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #60A5FA;
    margin-bottom: 24px;
}

.pulse-green {
    width: 8px;
    height: 8px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.2px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.text-gradient {
    background: linear-gradient(135deg, #60A5FA, #2563EB);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 580px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #ffffff;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    transition: all var(--transition-normal);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.5);
}

.btn-hero-secondary {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.btn-hero-secondary:hover {
    border-color: #2563EB;
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-3px);
}

/* Stats Highlight Bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px 24px;
    background: rgba(11, 15, 23, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    width: fit-content;
}

.stat-box strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: #60A5FA;
}

.stat-box small {
    color: var(--text-muted);
    font-size: 0.78rem;
    font-weight: 600;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: var(--border-color);
}

/* Right Side Cyber Character */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.character-card {
    position: relative;
    width: 100%;
    max-width: 420px;
    display: flex;
    justify-content: center;
}

.glow-backdrop {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(3, 7, 18, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.hero-character-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.7));
    animation: characterFloat 4s ease-in-out infinite;
}

/* Floating Badges on Character */
.float-badge {
    position: absolute;
    z-index: 3;
    background: rgba(11, 15, 23, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.float-badge i {
    font-size: 1.4rem;
}

.float-badge strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
}

.float-badge small {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
}

.badge-top-left {
    top: 12%;
    left: -20px;
    animation: floatSlow 5s ease-in-out infinite;
}

.badge-bottom-right {
    bottom: 12%;
    right: -20px;
    animation: floatSlow 5s ease-in-out infinite 2.5s;
}

/* Service Chips Bottom Bar */
.hero-services-bar {
    max-width: 1240px;
    margin: 50px auto 0 auto;
    padding: 0 4%;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.service-chip {
    flex: 1;
    min-width: 140px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all var(--transition-normal);
}

.service-chip:hover {
    border-color: #2563EB;
    background: rgba(37, 99, 235, 0.12);
    transform: translateY(-3px);
}

/* Animations */
@keyframes characterFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes floatSlow {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-left { text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-actions, .hero-stats { justify-content: center; margin-left: auto; margin-right: auto; flex-wrap: wrap; }
    .badge-top-left { left: 0; }
    .badge-bottom-right { right: 0; }
}

@keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
}

/* ==========================================
   PRICING PLANS SECTION STYLING
   ========================================== */

.pricing-section {
    padding: 90px 0;
    position: relative;
}

.pricing-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4%;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 45px;
}

.sub-title {
    font-size: 0.8rem;
    font-weight: 800;
    color: #60A5FA;
    letter-spacing: 1.5px;
    display: inline-block;
    margin-bottom: 8px;
}

.section-title-wrap h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.section-title-wrap p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Category Tabs Switcher */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 45px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 10px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.tab-btn:hover, .tab-btn.active {
    border-color: #2563EB;
    background: rgba(37, 99, 235, 0.15);
    color: #ffffff;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 35px 28px;
    position: relative;
    transition: all var(--transition-normal);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* Popular Featured Card */
.plan-card.popular {
    border-color: #2563EB;
    background: linear-gradient(180deg, rgba(37, 99, 235, 0.1) 0%, rgba(17, 24, 39, 0.8) 100%);
    box-shadow: 0 0 30px rgba(37, 99, 235, 0.25);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    color: #fff;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.plan-header {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
    margin-bottom: 24px;
    text-align: center;
}

.plan-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.plan-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.plan-price .currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: #60A5FA;
}

.plan-price .amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.plan-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Features List */
.plan-features {
    list-style: none;
    margin-bottom: 32px;
}

.plan-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li strong {
    color: var(--text-main);
}

/* Order Button */
.btn-plan-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.btn-plan-order:hover {
    border-color: #2563EB;
    background: rgba(37, 99, 235, 0.15);
}

.popular-btn {
    background: linear-gradient(135deg, #2563EB, #1D4ED8);
    border: none;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.popular-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.6);
}

/* Responsive Grid */
@media (max-width: 992px) {
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
    }
}


/* ==========================================
   FEATURES SECTION STYLING
   ========================================== */

.features-section {
    padding: 80px 0;
    position: relative;
    background: rgba(11, 15, 23, 0.4);
}

.features-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Feature Icons with Unique Colors */
.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.bg-blue   { background: rgba(37, 99, 235, 0.15); color: #60A5FA; }
.bg-green  { background: rgba(16, 185, 129, 0.15); color: #34D399; }
.bg-amber  { background: rgba(245, 158, 11, 0.15); color: #FBBF24; }
.bg-purple { background: rgba(139, 92, 246, 0.15); color: #A78BFA; }
.bg-red    { background: rgba(239, 68, 68, 0.15); color: #F87171; }
.bg-cyan   { background: rgba(6, 182, 212, 0.15); color: #22D3EE; }

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-main);
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   FOOTER SECTION STYLING
   ========================================== */

.main-footer {
    background: #070B12;
    border-top: 1px solid var(--border-color);
    padding-top: 70px;
    margin-top: 50px;
    position: relative;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4% 50px 4%;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Footer About Column */
.footer-about .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 320px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 38px;
    height: 38px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1rem;
    transition: all var(--transition-normal);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px var(--primary-glow);
}

/* Footer Columns */
.footer-heading {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-normal);
}

.footer-links a:hover {
    color: #60A5FA;
    transform: translateX(4px);
}

/* Operational Status Badge */
.footer-status-badge {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
    color: #34D399;
}

.status-dot {
    width: 7px;
    height: 7px;
    background-color: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10B981;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    background: #030712;
    padding: 20px 0;
}

.footer-bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 4%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.payment-methods {
    display: flex;
    gap: 16px;
    font-size: 1.4rem;
    color: var(--text-muted);
}

.payment-methods i:hover {
    color: var(--text-main);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }
}

/* ==========================================
   FAQ SECTION STYLING
   ========================================== */

.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 4%;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.05rem;
    font-weight: 700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    transition: transform var(--transition-normal);
    color: #60A5FA;
}

.faq-item.active {
    border-color: #2563EB;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(11, 15, 23, 0.5);
}

.faq-answer p {
    padding: 0 24px 20px 24px;
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.6;
}


/* Plans Container & Grid Layout */
.plans-filter-container {
    display: flex;
    justify-content: center;
    margin: -20px 0 40px 0;
}

.plans-overview-section {
    padding: 20px 0 80px 0;
}

.plans-overview-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4%;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
}

.plan-card {
    background: var(--card-bg, #0F172A);
    border: 1px solid var(--border-color, rgba(255, 255, 255, 0.08));
    border-radius: 12px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-5px);
    border-color: #2563EB;
}

.plan-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.plan-icon {
    font-size: 1.8rem;
}

.plan-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFFFFF;
}

.plan-desc {
    color: #94A3B8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.plan-features-list li {
    font-size: 0.88rem;
    color: #CBD5E1;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-plan-action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: rgba(37, 99, 235, 0.1);
    color: #60A5FA;
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.25s ease, color 0.25s ease;
}

.btn-plan-action:hover {
    background: #2563EB;
    color: #ffffff;
}

/* ── Header / Nav Responsive ── */
@media (max-width: 992px) {
    .category-bar {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .nav-categories {
        flex-wrap: wrap;
        justify-content: center;
        order: 3;
        width: 100%;
    }
    .nav-actions {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    html, body { overflow-x: hidden; }
    .category-item { padding: 8px 10px; font-size: 0.82rem; }
    .logo-icon { width: 44px; height: 44px; }
    .brand-name { font-size: 1.05rem; }
    .nav-actions .btn-panel,
    .nav-actions .btn-login,
    .nav-actions .btn-primary { font-size: 0.8rem; padding: 8px 12px; }
}


