:root {
    /* -------------------------------------------------------------------
       GENIUS CLOUD ERP / LUXURY BOXED DESIGN TOKENS
       ------------------------------------------------------------------- */
    --vx-primary: #7367f0;
    --vx-primary-hover: #685dd8;
    --vx-primary-light: #e9e7fd;
    --vx-primary-rgb: 115, 103, 240;
    --vx-heading: #2b2838;
    --vx-text: #5e5873;
    --vx-text-muted: #82868b;
    --vx-border: #e6e6e8;
    
    --bg-main: #f0f2f7;
    --bg-surface: #ffffff;
    --bg-input: #f8f7fa;
    --bg-card: #ffffff;
    --bg-glass: rgba(255, 255, 255, 0.92);
    
    --text-primary: #2b2838;
    --text-secondary: #5e5873;
    --text-muted: #82868b;
    
    --gold-primary: #d97706;
    --gold-hover: #b45309;
    --gold-grad: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gold-glow: rgba(217, 119, 6, 0.25);
    
    --erp-primary: #7367f0;
    --erp-primary-hover: #685dd8;
    --erp-primary-grad: linear-gradient(135deg, #7367f0 0%, #5f3dc4 100%);
    --erp-primary-glow: rgba(115, 103, 240, 0.35);
    
    --cyan-primary: #0284c7;
    --emerald-primary: #28c76f;
    --emerald-glow: rgba(40, 199, 111, 0.25);
    --rose-primary: #ea5455;
    --rose-glow: rgba(234, 84, 85, 0.25);
    --purple-primary: #7367f0;
    
    --border: #e6e6e8;
    --border-card: #e4e6ea;
    --border-gold: rgba(217, 119, 6, 0.45);
    
    --shadow-sm: 0 2px 8px rgba(47, 43, 61, 0.05);
    --shadow-card: 0 6px 24px rgba(47, 43, 61, 0.07);
    --shadow-elevated: 0 12px 36px rgba(47, 43, 61, 0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;
    
    --font-heading: 'Alexandria', sans-serif;
    --font-body: 'Cairo', sans-serif;
    
    --transition: all 0.22s ease;
}

/* Dark Mode */
[data-theme="dark"] {
    --bg-main: #0a0d14;
    --bg-surface: #111726;
    --bg-input: #192238;
    --bg-card: #111726;
    --bg-glass: rgba(15, 23, 42, 0.90);
    
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #94a3b8;
    --vx-heading: #f8fafc;
    --vx-text: #cbd5e1;
    
    --gold-primary: #f59e0b;
    --gold-grad: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --border: rgba(148, 163, 184, 0.18);
    --border-card: rgba(148, 163, 184, 0.25);
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
    --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Global Reset & Typography */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    direction: rtl;
    text-align: right;
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
    transition: background-color 0.25s ease, color 0.25s ease;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.3;
    color: var(--vx-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

/* -------------------------------------------------------------------
   BOXED CONTAINER ARCHITECTURE (LUXURY ERP SPEC)
   ------------------------------------------------------------------- */
.boxed-wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.boxed-section-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 3rem 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .boxed-section-card {
        padding: 1.75rem 1.25rem;
        margin-bottom: 1.5rem;
        border-radius: var(--radius-md);
    }
}

/* -------------------------------------------------------------------
   BUTTON SYSTEM
   ------------------------------------------------------------------- */
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.65rem 1.4rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    user-select: none;
}

.btn-main:active {
    transform: scale(0.97);
}

.btn-gold {
    background: var(--gold-grad);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--gold-glow);
}

.btn-gold:hover {
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-outline {
    background: var(--bg-surface);
    color: var(--text-primary);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.05);
}

.btn-primary {
    background: var(--erp-primary-grad);
    color: #ffffff;
    box-shadow: 0 4px 14px var(--erp-primary-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(115, 103, 240, 0.45);
}

/* -------------------------------------------------------------------
   STICKY LUXURY NAVBAR
   ------------------------------------------------------------------- */
.landing-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 2rem;
    background: var(--bg-glass);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.nav-brand-wrap {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.brand-main-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--vx-heading);
    line-height: 1.1;
    display: block;
}

.brand-status-live {
    font-size: 0.72rem;
    color: var(--emerald-primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pulsing-dot {
    width: 8px;
    height: 8px;
    background: var(--emerald-primary);
    border-radius: 50%;
    animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.6); }
    70% { transform: scale(1.1); opacity: 0.9; box-shadow: 0 0 0 8px rgba(40, 199, 111, 0); }
    100% { transform: scale(0.9); opacity: 1; box-shadow: 0 0 0 0 rgba(40, 199, 111, 0); }
}

.nav-links-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link-item {
    padding: 0.5rem 0.9rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link-item:hover {
    color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.08);
}

.nav-actions-cluster {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.theme-toggle-pill {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--text-secondary);
}

.theme-toggle-pill:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

/* -------------------------------------------------------------------
   HERO SECTION (SPLIT BOXED LAYOUT)
   ------------------------------------------------------------------- */
.hero-boxed-wrap {
    padding: 2rem 0;
}

.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2.5rem;
    align-items: center;
}

@media (max-width: 1024px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: 0.82rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero-main-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--vx-heading);
}

.hero-main-title .accent-gold {
    background: var(--gold-grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-main-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.75rem;
    max-width: 580px;
}

/* Launch Countdown Box */
.launch-countdown-box {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.08) 0%, rgba(115, 103, 240, 0.05) 100%);
    border: 1.5px dashed var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.countdown-timer-grid {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timer-block {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.75rem;
    text-align: center;
    min-width: 54px;
    box-shadow: var(--shadow-sm);
}

.timer-block-num {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--gold-primary);
    display: block;
    line-height: 1;
}

.timer-block-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
}

.timer-colon {
    font-weight: 900;
    color: var(--gold-primary);
    font-size: 1.2rem;
}

/* -------------------------------------------------------------------
   HIRING WIZARD CARD (ERP MULTI-STEP)
   ------------------------------------------------------------------- */
.hiring-wizard-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elevated);
    padding: 2rem;
    position: relative;
}

.wizard-stepper-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.wizard-stepper-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-muted);
}

.wizard-stepper-item.active {
    color: var(--gold-primary);
}

.wizard-step-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.wizard-stepper-item.active .wizard-step-circle {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #ffffff;
}

.wizard-step-panel {
    display: none;
}

.wizard-step-panel.active {
    display: block;
    animation: fadeInStep 0.3s ease;
}

@keyframes fadeInStep {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

.preset-agents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.65rem;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 0.25rem;
    margin-bottom: 1.25rem;
}

.preset-agent-card {
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.preset-agent-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.preset-agent-card.active {
    border-color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.08);
}

.custom-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 900;
}

.custom-checkbox.checked {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #ffffff;
}

.preset-name {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--vx-heading);
    margin-top: 0.35rem;
}

.preset-dept {
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.preset-salary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
}

.preset-salary-row .strike {
    color: var(--rose-primary);
    text-decoration: line-through;
}

.preset-salary-row .price {
    color: var(--gold-primary);
    font-weight: 800;
    font-family: var(--font-heading);
}

.wizard-summary-bar {
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

/* -------------------------------------------------------------------
   CATEGORIZED TABS & 3x3 DEPARTMENT BANNERS (MASTERCLASS REDESIGN)
   ------------------------------------------------------------------- */
.section-header-centered {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-pill-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.95rem;
    background: rgba(217, 119, 6, 0.12);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    color: var(--gold-primary);
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.section-h2-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    margin-bottom: 0.65rem;
}

.section-p-subtitle {
    color: var(--text-secondary);
    font-size: 0.98rem;
    max-width: 650px;
    margin: 0 auto;
}

/* Category Filter Tabs Bar */
.category-tabs-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-group-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.35rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border);
    background: var(--bg-surface);
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.tab-group-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.tab-group-btn.active {
    background: var(--gold-grad);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 14px var(--gold-glow);
}

/* 3x3 Department Banner Grid */
.dept-3x3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .dept-3x3-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .dept-3x3-grid {
        grid-template-columns: 1fr;
    }
}

.dept-card-banner {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    border: 1.5px solid var(--border-card);
}

.dept-card-banner:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--gold-primary);
}

.dept-card-banner-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.dept-card-banner:hover .dept-card-banner-bg {
    transform: scale(1.08);
}

.dept-card-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.25) 0%, rgba(7, 11, 20, 0.88) 100%);
    transition: var(--transition);
}

.dept-card-banner:hover .dept-card-banner-overlay {
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.15) 0%, rgba(7, 11, 20, 0.92) 100%);
}

.dept-card-banner-content {
    position: relative;
    z-index: 2;
    padding: 1.35rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dept-card-top-tags {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dept-card-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.dept-card-count-badge {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
}

.dept-card-bottom-info {
    color: #ffffff;
}

.dept-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 0.35rem;
    line-height: 1.25;
}

.dept-card-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.dept-card-action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 800;
    color: #f59e0b;
    transition: var(--transition);
}

.dept-card-banner:hover .dept-card-action-link {
    transform: translateX(-4px);
    color: #ffffff;
}

/* -------------------------------------------------------------------
   DEPARTMENT AGENT EXPLORER MODAL (CENTRAL OVERLAY)
   ------------------------------------------------------------------- */
.dept-popup-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(7, 11, 20, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.dept-popup-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.dept-popup-modal-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 880px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.95) translateY(15px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.dept-popup-modal-overlay.active .dept-popup-modal-box {
    transform: scale(1) translateY(0);
}

.modal-header-row {
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-body-scroll {
    padding: 1.5rem 1.75rem;
    overflow-y: auto;
    flex: 1;
}

.modal-agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

.agent-modal-card {
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.agent-modal-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.agent-modal-card.selected {
    border-color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.08);
}

.agent-modal-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.agent-modal-avatar {
    font-size: 1.6rem;
}

.agent-modal-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
}

.agent-modal-card.selected .agent-modal-check {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    color: #ffffff;
}

.agent-modal-name {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--vx-heading);
    margin-bottom: 0.2rem;
}

.agent-modal-role {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.agent-modal-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.agent-modal-salary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    border-top: 1px dashed var(--border);
}

.agent-modal-strike {
    font-size: 0.7rem;
    color: var(--rose-primary);
    text-decoration: line-through;
    display: block;
}

.agent-modal-price {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--gold-primary);
}

.agent-modal-badge {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--emerald-primary);
}

.modal-footer-summary {
    padding: 1.25rem 1.75rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg-input);
    gap: 1rem;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------------
   ROI CALCULATOR & PRICING PLANS
   ------------------------------------------------------------------- */
.roi-calculator-box {
    background: linear-gradient(135deg, rgba(115, 103, 240, 0.04) 0%, rgba(217, 119, 6, 0.04) 100%);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.slider-container {
    margin: 2rem 0;
}

.custom-range-slider {
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: var(--border);
    outline: none;
    cursor: pointer;
    accent-color: var(--gold-primary);
}

.calc-results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .calc-results-grid {
        grid-template-columns: 1fr;
    }
}

.calc-stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.calc-stat-num {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    margin-top: 0.35rem;
}

/* Plans Grid */
.plans-4x-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .plans-4x-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .plans-4x-grid {
        grid-template-columns: 1fr;
    }
}

.plan-tier-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.plan-tier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}

.plan-tier-card.featured {
    border-color: var(--gold-primary);
    box-shadow: 0 8px 30px var(--gold-glow);
}

.plan-ribbon {
    position: absolute;
    top: 14px;
    left: -26px;
    background: var(--gold-grad);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 0.25rem 2.2rem;
    transform: rotate(-35deg);
}

.plan-price-large {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin: 0.75rem 0;
}

.plan-features-list {
    list-style: none;
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.plan-features-list li::before {
    content: "✓";
    color: var(--emerald-primary);
    font-weight: 900;
    margin-left: 0.5rem;
}

/* -------------------------------------------------------------------
   MEGA FOOTER (BOXED)
   ------------------------------------------------------------------- */
.mega-footer-boxed {
    background: #0f1629;
    color: rgba(255, 255, 255, 0.75);
    border-radius: var(--radius-lg);
    padding: 3.5rem 2.5rem 1.5rem;
    margin-top: 3rem;
}

.footer-grid-cols {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
    .footer-grid-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .footer-grid-cols {
        grid-template-columns: 1fr;
    }
}

.footer-col-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.25rem;
    position: relative;
    padding-bottom: 0.4rem;
}

.footer-col-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 32px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    font-size: 0.88rem;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.65);
    transition: var(--transition);
}

.footer-links-list a:hover {
    color: #f59e0b;
    transform: translateX(-4px);
}

.payment-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
}

.payment-chip-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    font-size: 0.72rem;
    font-weight: 700;
}


/* ===================================================================
   MOBILE STICKY BOTTOM DOCK (NATIVE APP EXPERIENCE)
   =================================================================== */
.mobile-bottom-dock {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: var(--bg-glass, rgba(255, 255, 255, 0.96));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-card, #e4e6ea);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    padding: 0 0.5rem;
    align-items: center;
    justify-content: space-around;
}

@media (max-width: 900px) {
    .mobile-bottom-dock {
        display: flex;
    }
    body {
        padding-bottom: 75px !important;
    }
    .landing-navbar {
        padding: 0.65rem 1rem !important;
    }
    .nav-links-menu {
        display: none !important;
    }
    .hero-split-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    .grid-3x3-departments {
        grid-template-columns: 1fr !important;
    }
    .calc-results-triple-grid {
        grid-template-columns: 1fr !important;
    }
    .pricing-cards-grid {
        grid-template-columns: 1fr !important;
    }
}

.dock-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    background: transparent;
    border: none;
    color: var(--text-muted, #82868b);
    font-family: var(--font-heading, 'Alexandria', sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0.35rem 0.5rem;
    border-radius: var(--radius-sm, 8px);
    transition: all 0.2s ease;
    flex: 1;
    max-width: 70px;
}

.dock-item:hover, .dock-item.active {
    color: var(--gold-primary, #d97706);
}

.dock-icon {
    font-size: 1.25rem;
    line-height: 1;
}

.dock-label {
    font-size: 0.65rem;
    white-space: nowrap;
}

/* ===================================================================
   CYBER SCANNER / RADAR PULSE CENTRAL FAB (Elevated Central Button)
   =================================================================== */
.dock-center-scanner {
    position: relative;
    top: -18px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.45);
    border: 3px solid var(--bg-surface, #ffffff);
    padding: 0;
    flex: none;
    z-index: 10000;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.dock-center-scanner:hover, .dock-center-scanner:active {
    transform: scale(1.08);
}

/* Radar Scan Wave Ring */
.scanner-ring-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(217, 119, 6, 0.6);
    animation: scannerRadarPulse 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
    pointer-events: none;
}

.scanner-ring-pulse::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px dashed rgba(245, 158, 11, 0.8);
    animation: scannerRadarSpin 8s linear infinite;
}

/* Radar Sweep Line Animation */
.scanner-sweep-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0.5) 0deg, rgba(255, 255, 255, 0) 60deg);
    animation: scannerRadarSpin 2s linear infinite;
    pointer-events: none;
}

.scanner-center-core {
    font-size: 1.35rem;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.scanner-text {
    position: absolute;
    bottom: -18px;
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--gold-primary, #d97706);
    background: var(--bg-surface, #ffffff);
    padding: 1px 6px;
    border-radius: 6px;
    border: 1px solid var(--border-gold, rgba(217, 119, 6, 0.4));
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    white-space: nowrap;
}

@keyframes scannerRadarPulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.4; }
    100% { transform: scale(1.6); opacity: 0; }
}

@keyframes scannerRadarSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* ===================================================================
   EXECUTIVE MEGA MENU SYSTEM (DESKTOP & MOBILE DRAWER)
   =================================================================== */

/* Nav Mega Trigger & Wrappers */
.nav-item-has-mega {
    position: relative;
    display: inline-block;
}

.mega-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.5rem 0.9rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-secondary);
    border-radius: var(--radius-full);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.mega-trigger-btn:hover {
    color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.08);
}

.mega-arrow-icon {
    font-size: 0.7rem;
    transition: transform 0.25s ease;
}

.nav-item-has-mega:hover .mega-arrow-icon {
    transform: rotate(180deg);
}

/* Mega Dropdown Box (Desktop) */
.mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 50%;
    transform: translateX(50%) translateY(10px);
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2100;
}

.nav-item-has-mega:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(50%) translateY(0);
}

/* Mega Fleet Grid Dropdown */
.mega-fleet-grid {
    width: 780px;
}

.mega-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    margin-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}

.mega-hdr-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--vx-heading);
    display: block;
}

.mega-hdr-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.mega-hdr-link {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold-primary);
    transition: var(--transition);
}

.mega-hdr-link:hover {
    transform: translateX(-4px);
}

.mega-cards-9-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mega-card-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem;
    border-radius: var(--radius-md);
    background: var(--bg-input);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
}

.mega-card-item:hover {
    border-color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.08);
    transform: translateY(-2px);
}

.mega-card-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mega-card-name {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--vx-heading);
    display: block;
    line-height: 1.2;
}

.mega-card-badge {
    font-size: 0.68rem;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Mega Tools Dropdown */
.mega-tools-dropdown {
    width: 640px;
}

.mega-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.mega-tool-row {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem;
    border-radius: var(--radius-md);
    background: var(--bg-input);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-decoration: none;
}

.mega-tool-row:hover {
    border-color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.08);
    transform: translateY(-2px);
}

.mega-tool-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.mega-tool-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--vx-heading);
    display: block;
    margin-bottom: 0.2rem;
}

.mega-tool-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.4;
    display: block;
}

/* Mobile Hamburger & Slide-over Drawer */
.mobile-nav-toggle-btn {
    display: none;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .mobile-nav-toggle-btn {
        display: flex;
    }
}

.mobile-slide-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-surface);
    border-left: 1px solid var(--border-card);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.25);
    z-index: 10000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-slide-drawer.active {
    right: 0;
}

.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}

.mobile-drawer-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

.drawer-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.25rem;
}

.drawer-links-stack {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.drawer-link-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-input);
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.drawer-link-item:hover, .drawer-link-item.active {
    background: var(--gold-grad);
    color: #ffffff;
}

/* Generous Spacing & Zero Collision Fixes */
.boxed-section-card {
    padding: 3rem 2.5rem !important;
    margin-bottom: 3rem !important;
}

@media (max-width: 768px) {
    .boxed-section-card {
        padding: 1.75rem 1.25rem !important;
        margin-bottom: 2rem !important;
    }
}

p, span, div, h1, h2, h3, h4, h5, h6 {
    word-break: break-word;
}


/* ===================================================================
   HUGE HERO KPI & QUICK LAUNCH TILES
   =================================================================== */
.hero-stats-4x-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

@media (max-width: 768px) {
    .hero-stats-4x-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-stat-card-tile {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0.85rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.hero-stat-card-tile:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
}

.hero-stat-val {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: var(--vx-heading);
    display: block;
    line-height: 1.2;
}

.hero-stat-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 700;
    margin-top: 0.2rem;
    display: block;
}

.hero-quick-actions-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.hero-quick-tile-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.6rem 1.15rem;
    border-radius: var(--radius-full);
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    color: var(--vx-heading);
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
}

.hero-quick-tile-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

/* Products Showcase Grid (12 Ghazl Products) */
.landing-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.product-showcase-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.product-showcase-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.prod-card-top-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.prod-tag-pill {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.12);
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-full);
}

.prod-category-tag {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
}

.prod-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--vx-heading);
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.prod-price-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
}

.prod-final-price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--emerald-primary);
}

.prod-profit-badge {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.08);
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}

.prod-angle-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.prod-action-btns {
    display: flex;
    gap: 0.5rem;
}

/* 30-Day Campaign Pilot Stack */
.landing-timeline-stack {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.timeline-day-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
}

.timeline-day-badge {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 900;
    color: #ffffff;
    background: var(--gold-grad);
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.timeline-day-content {
    flex: 1;
}

.timeline-day-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--vx-heading);
    margin-bottom: 0.25rem;
}

.timeline-day-desc {
    font-size: 0.78rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0.4rem;
}

.timeline-day-agent {
    font-size: 0.72rem;
    color: var(--gold-primary);
    font-weight: 700;
}

/* Interactive FAQ Accordion */
.faq-accordion-container {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
    max-width: 900px;
    margin-inline: auto;
}

.faq-accordion-item {
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-accordion-item.active {
    border-color: var(--gold-primary);
    box-shadow: 0 6px 20px rgba(217, 119, 6, 0.12);
}

.faq-accordion-header {
    padding: 1.15rem 1.35rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    background: var(--bg-surface);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--vx-heading);
    user-select: none;
}

.faq-accordion-arrow {
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.faq-accordion-item.active .faq-accordion-arrow {
    transform: rotate(180deg);
}

.faq-accordion-body {
    padding: 0 1.35rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.7;
}

.faq-accordion-item.active .faq-accordion-body {
    padding: 0 1.35rem 1.25rem;
    max-height: 250px;
}


/* ===================================================================
   BOXED LUXURY NAVBAR & CENTERED MEGA CAPSULE SYSTEM
   =================================================================== */

.landing-navbar {
    position: sticky;
    top: 1rem;
    max-width: 1340px;
    margin-inline: auto;
    width: calc(100% - 2rem);
    border-radius: var(--radius-lg);
    background: var(--bg-surface);
    border: 1.5px solid var(--border-card);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 0.65rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .landing-navbar {
        top: 0.5rem;
        width: calc(100% - 1rem);
        padding: 0.65rem 1rem;
    }
}

/* Dedicated Centered Nav-Bar Capsule */
.nav-links-menu {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: var(--bg-input);
    border: 1.5px solid var(--border-card);
    padding: 0.35rem 0.65rem;
    border-radius: var(--radius-full);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.03);
}

@media (max-width: 1024px) {
    .nav-links-menu {
        display: none;
    }
}

.mega-trigger-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--vx-heading);
    border-radius: var(--radius-full);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.mega-trigger-btn:hover {
    color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.12);
}

.nav-link-item {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    white-space: nowrap;
    padding: 0.45rem 1rem;
    border-radius: var(--radius-full);
    color: var(--vx-heading);
    text-decoration: none;
    transition: var(--transition);
}

.nav-link-item:hover {
    color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.12);
}

/* Mega Dropdown Box (Desktop) */
.mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 50%;
    transform: translateX(50%) translateY(10px);
    background: var(--bg-surface);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.22);
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2100;
}

.nav-item-has-mega:hover .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(50%) translateY(0);
}

/* Mega Fleet Grid - Single Line Clean Text */
.mega-fleet-grid {
    width: 820px;
}

.mega-cards-9-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.mega-card-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-md);
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    transition: var(--transition);
    text-decoration: none;
    overflow: hidden;
}

.mega-card-item:hover {
    border-color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.1);
    transform: translateY(-2px);
}

.mega-card-icon {
    font-size: 1.35rem;
    flex-shrink: 0;
}

.mega-card-info-single {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    min-width: 0;
}

.mega-card-name {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--vx-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.mega-card-badge {
    font-size: 0.68rem;
    color: var(--gold-primary);
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Mega Tools Grid - Single Line Clean Text */
.mega-tools-dropdown {
    width: 700px;
}

.mega-tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.mega-tool-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    transition: var(--transition);
    text-decoration: none;
    overflow: hidden;
}

.mega-tool-row:hover {
    border-color: var(--gold-primary);
    background: rgba(217, 119, 6, 0.1);
    transform: translateY(-2px);
}

.mega-tool-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mega-tool-content-single {
    min-width: 0;
    flex: 1;
}

.mega-tool-title {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--vx-heading);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.mega-tool-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    margin-top: 0.15rem;
}


/* ===================================================================
   WORLD-CLASS LUXURY UI TYPOGRAPHY & HARMONIOUS COLOR SYSTEM
   =================================================================== */

:root {
    /* Harmonious Executive Palette */
    --gold-primary: #d97706;
    --gold-hover: #b45309;
    --gold-light: rgba(217, 119, 6, 0.09);
    --gold-grad: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gold-glow: rgba(217, 119, 6, 0.22);

    --vx-heading: #1e293b;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #94a3b8;

    --emerald-primary: #10b981;
    --cyan-primary: #0284c7;
    --rose-primary: #f43f5e;

    --bg-app: #f8fafc;
    --bg-surface: #ffffff;
    --bg-card: #ffffff;
    --bg-input: #f1f5f9;
    --bg-tertiary: #f8fafc;
    
    --border-card: #e2e8f0;
    --border-gold: rgba(217, 119, 6, 0.35);

    --font-heading: 'Alexandria', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
}

[data-theme="dark"] {
    --vx-heading: #f8fafc;
    --text-primary: #f8fafc;
    --text-secondary: #cbd5e1;
    --text-muted: #64748b;

    --bg-app: #090d16;
    --bg-surface: #0f172a;
    --bg-card: #0f172a;
    --bg-input: #1e293b;
    --bg-tertiary: #141e33;

    --border-card: rgba(148, 163, 184, 0.14);
    --border-gold: rgba(245, 158, 11, 0.35);
}

/* ===================================================================
   CRISP SINGLE-LINE SECTION HEADINGS & TYPOGRAPHY SCALE
   =================================================================== */

.hero-main-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.2rem, 2.1vw, 1.75rem) !important;
    font-weight: 800 !important;
    color: var(--vx-heading) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.5rem !important;
}

.section-h2-title {
    font-family: var(--font-heading) !important;
    font-size: clamp(1.15rem, 1.85vw, 1.5rem) !important;
    font-weight: 800 !important;
    color: var(--vx-heading) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.02em !important;
    margin-top: 0.4rem !important;
    margin-bottom: 0.35rem !important;
    text-align: center !important;
}

.section-pill-tag {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    background: var(--gold-light) !important;
    color: var(--gold-primary) !important;
    border: 1px solid var(--border-gold) !important;
    padding: 0.25rem 0.85rem !important;
    border-radius: var(--radius-full) !important;
    font-family: var(--font-heading) !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.04em !important;
}

.section-p-subtitle {
    font-size: 0.82rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.6 !important;
    max-width: 620px !important;
    margin-inline: auto !important;
    text-align: center !important;
}

.hero-main-desc {
    font-size: 0.84rem !important;
    color: var(--text-secondary) !important;
    line-height: 1.65 !important;
    margin-bottom: 1.25rem !important;
    max-width: 580px !important;
}

/* Section Boxed Cards Padding & Margins */
.boxed-section-card {
    background: var(--bg-surface) !important;
    border: 1.5px solid var(--border-card) !important;
    border-radius: var(--radius-lg) !important;
    padding: 2.25rem 2rem !important;
    margin-bottom: 2.25rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

@media (max-width: 768px) {
    .boxed-section-card {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.5rem !important;
        border-radius: var(--radius-md) !important;
    }
}

/* ===================================================================
   3x3 DEPARTMENTS GRID PERFECTION
   =================================================================== */
.dept-3x3-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    margin-top: 1.5rem !important;
}

@media (max-width: 1024px) {
    .dept-3x3-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .dept-3x3-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
}

.dept-card-banner {
    position: relative !important;
    height: 220px !important;
    border-radius: var(--radius-md) !important;
    overflow: hidden !important;
    cursor: pointer !important;
    border: 1.5px solid var(--border-card) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.dept-card-banner:hover {
    transform: translateY(-4px) !important;
    border-color: var(--dept-accent, var(--gold-primary)) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15) !important;
}

.dept-card-banner-bg {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease !important;
}

.dept-card-banner:hover .dept-card-banner-bg {
    transform: scale(1.06) !important;
}

.dept-card-banner-overlay {
    position: absolute !important;
    inset: 0 !important;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.25) 0%, rgba(15, 23, 42, 0.88) 70%, rgba(15, 23, 42, 0.96) 100%) !important;
}

.dept-card-banner-content {
    position: relative !important;
    z-index: 2 !important;
    height: 100% !important;
    padding: 1.15rem !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}

.dept-card-top-tags {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.dept-card-icon-badge {
    width: 36px !important;
    height: 36px !important;
    border-radius: var(--radius-sm) !important;
    background: rgba(255, 255, 255, 0.18) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.15rem !important;
}

.dept-card-count-badge {
    font-family: var(--font-heading) !important;
    font-size: 0.68rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(6px) !important;
    padding: 0.2rem 0.6rem !important;
    border-radius: var(--radius-full) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.dept-card-title {
    font-family: var(--font-heading) !important;
    font-size: 0.95rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.3 !important;
    margin-bottom: 0.25rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.dept-card-desc {
    font-size: 0.72rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.dept-card-action-link {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
    font-family: var(--font-heading) !important;
    font-size: 0.72rem !important;
    font-weight: 800 !important;
    color: var(--gold-primary) !important;
    background: rgba(217, 119, 6, 0.15) !important;
    padding: 0.25rem 0.65rem !important;
    border-radius: var(--radius-full) !important;
    width: fit-content !important;
}

/* ===================================================================
   CATEGORY FILTER TABS BAR
   =================================================================== */
.category-tabs-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin-top: 1.25rem !important;
    flex-wrap: wrap !important;
}

.tab-group-btn {
    padding: 0.45rem 1.15rem !important;
    border-radius: var(--radius-full) !important;
    background: var(--bg-input) !important;
    border: 1.5px solid var(--border-card) !important;
    color: var(--text-secondary) !important;
    font-family: var(--font-heading) !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    transition: var(--transition) !important;
}

.tab-group-btn:hover {
    border-color: var(--gold-primary) !important;
    color: var(--gold-primary) !important;
}

.tab-group-btn.active {
    background: var(--gold-grad) !important;
    border-color: transparent !important;
    color: #ffffff !important;
    box-shadow: 0 4px 14px var(--gold-glow) !important;
}

/* ===================================================================
   ULTRA MOBILE RESPONSIVENESS FIXES
   =================================================================== */
@media (max-width: 768px) {
    .calc-split-wrapper {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .hero-split-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .plans-4x-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
    }

    .footer-grid-cols {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .hero-stats-4x-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.5rem !important;
    }

    .hero-stat-card-tile {
        padding: 0.65rem 0.5rem !important;
    }

    .hero-stat-val {
        font-size: 1.15rem !important;
    }

    .hero-quick-actions-row {
        gap: 0.4rem !important;
    }

    .hero-quick-tile-btn {
        padding: 0.45rem 0.85rem !important;
        font-size: 0.75rem !important;
    }

    .countdown-timer-grid {
        gap: 0.35rem !important;
    }

    .timer-block {
        padding: 0.35rem 0.5rem !important;
        min-width: 48px !important;
    }

    .timer-block-num {
        font-size: 1.15rem !important;
    }
}


/* ===================================================================
   2-BAR DUAL TIER HEADER ARCHITECTURE (الهيدر المتطور بطابقين)
   =================================================================== */
.landing-header-dual {
    position: sticky;
    top: 12px;
    z-index: 1000;
    max-width: 1340px;
    margin: 0 auto 1.5rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

/* Tier 1: Utility & Global Search Bar */
.header-tier-top {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    padding: 0.5rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.header-search-capsule {
    flex: 1;
    max-width: 440px;
    background: var(--bg-input);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--trans-fast);
}

.header-search-capsule:focus-within {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.header-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--vx-heading);
}

/* Tier 2: Navigation & Mega Menu Bar */
.header-tier-bottom {
    background: rgba(30, 41, 59, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    padding: 0.4rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
}

.header-nav-menu-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

@media (max-width: 900px) {
    .landing-header-dual {
        top: 6px;
        padding: 0 0.5rem;
    }
    .header-search-capsule {
        display: none;
    }
    .header-nav-menu-row {
        gap: 0.85rem;
        font-size: 0.78rem;
    }
}

/* ===================================================================
   ADVANCED HERO SECTION WITH ONBOARDING HIRING FORM
   =================================================================== */
.hero-split-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 980px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-onboarding-form-card {
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 160, 23, 0.15);
    animation: fadeIn 0.4s ease-out;
}

.hero-form-title {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-form-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.hero-form-group {
    margin-bottom: 0.95rem;
}

.hero-form-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.35rem;
}

.hero-form-input, .hero-form-select {
    width: 100%;
    background: var(--bg-input);
    border: 1.5px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--vx-heading);
    outline: none;
    transition: all var(--trans-fast);
}

.hero-form-input:focus, .hero-form-select:focus {
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.15);
}

.hero-form-calc-banner {
    background: rgba(16, 185, 129, 0.08);
    border: 1.5px solid var(--emerald-primary);
    border-radius: var(--radius-md);
    padding: 0.75rem 1rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-hero-launch-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--gold-primary), #d97706);
    border: none;
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--trans-fast);
    box-shadow: 0 6px 20px rgba(212, 160, 23, 0.35);
}

.btn-hero-launch-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(212, 160, 23, 0.5);
}



/* ===================================================================
   MASTERPIECE LUXURY HEADER & HERO DESIGN SYSTEM
   =================================================================== */

/* Ambient Hero Glow Canvas Behind Fold */
.hero-boxed-wrap {
    position: relative;
    padding: 1.5rem 0 2.5rem 0;
    overflow: hidden;
}

.hero-boxed-wrap::before {
    content: '';
    position: absolute;
    top: -100px;
    right: 15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-boxed-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(2, 132, 199, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.boxed-section-card {
    position: relative;
    z-index: 1;
    background: var(--bg-surface);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

@media (max-width: 768px) {
    .boxed-section-card {
        padding: 1.25rem;
        border-radius: var(--radius-lg);
    }
}

/* Dual-Tier Header Luxury Styles */
.landing-header-dual {
    position: sticky;
    top: 10px;
    z-index: 1000;
    max-width: 1340px;
    margin: 0 auto 1.25rem auto;
    padding: 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.header-tier-top {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-full);
    padding: 0.45rem 1.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.4);
}

.header-search-capsule {
    flex: 1;
    max-width: 460px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--trans-fast);
}

.header-search-capsule:focus-within {
    border-color: var(--gold-primary);
    background: rgba(30, 41, 59, 0.9);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.18);
}

.header-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: var(--vx-heading);
}

.header-tier-bottom {
    background: rgba(26, 36, 56, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    padding: 0.35rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Masterpiece Hero Grid */
.hero-masterpiece-grid {
    display: grid;
    grid-template-columns: 1.12fr 0.98fr;
    gap: 2.25rem;
    align-items: center;
}

@media (max-width: 980px) {
    .hero-masterpiece-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.hero-pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    background: rgba(212, 160, 23, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-primary);
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0.95rem;
}

.hero-main-title {
    font-size: clamp(1.4rem, 2.4vw, 2.15rem);
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--vx-heading);
    line-height: 1.35;
    margin-bottom: 0.85rem;
    letter-spacing: -0.5px;
}

.hero-gold-glow {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 40%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 24px rgba(212, 160, 23, 0.3);
}

.hero-main-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-primary);
    margin-bottom: 1.4rem;
}

.hero-stats-4x-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.65rem;
    margin-bottom: 1.4rem;
}

@media (max-width: 600px) {
    .hero-stats-4x-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-stat-card-tile {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-md);
    padding: 0.75rem 0.65rem;
    text-align: center;
    transition: all var(--trans-fast);
}

.hero-stat-card-tile:hover {
    border-color: var(--gold-primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.hero-stat-val {
    display: block;
    font-size: 1.25rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--vx-heading);
    margin-bottom: 0.15rem;
}

.hero-stat-sub {
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 700;
}

.hero-quick-actions-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
    .hero-quick-actions-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-quick-tile-btn {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid var(--border-card);
    border-radius: var(--radius-sm);
    padding: 0.55rem 0.4rem;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    transition: all var(--trans-fast);
}

.hero-quick-tile-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    background: rgba(212, 160, 23, 0.12);
}

/* Organic Luxury Onboarding Form Card */
.hero-onboarding-luxury-card {
    background: linear-gradient(160deg, rgba(26, 36, 56, 0.95), rgba(15, 23, 42, 0.98));
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 1.85rem;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 160, 23, 0.15);
    position: relative;
    overflow: hidden;
}

.hero-onboarding-luxury-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.form-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.form-title-h3 {
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--gold-primary);
    margin-bottom: 0.2rem;
}

.form-status-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--emerald-primary);
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--emerald-primary);
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.form-input-box {
    margin-bottom: 0.85rem;
}

.form-input-lbl {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 0.35rem;
}

.form-field-ctrl {
    width: 100%;
    background: rgba(15, 23, 42, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.65rem 0.95rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #fff;
    outline: none;
    transition: all var(--trans-fast);
}

.form-field-ctrl:focus {
    border-color: var(--gold-primary);
    background: rgba(15, 23, 42, 0.98);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.form-calc-summary-pill {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(15, 23, 42, 0.8));
    border: 1.5px solid var(--emerald-primary);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.15rem;
    margin-bottom: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-hero-launch-gold {
    width: 100%;
    padding: 0.95rem 1.5rem;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 30%, #d97706 100%);
    border: none;
    color: #090e1a;
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--trans-fast);
    box-shadow: 0 8px 25px rgba(212, 160, 23, 0.4);
}

.btn-hero-launch-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 160, 23, 0.6);
}



/* ===================================================================
   SLIDER REVOLUTION 2025/2026 HERO-HEADER MASTER SYSTEM
   =================================================================== */

.revolution-hero-container {
    position: relative;
    width: 100%;
    max-width: 1360px;
    margin: 0.75rem auto 2.5rem auto;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border-gold);
    background: linear-gradient(165deg, #0f172a 0%, #090e1a 50%, #030712 100%);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(212, 160, 23, 0.15);
    overflow: hidden;
    min-height: 640px;
}

/* Revolution Background Canvas */
.rev-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

/* Ambient Radial Glows */
.rev-ambient-glow-1 {
    position: absolute;
    top: -120px;
    right: -100px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.16), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.rev-ambient-glow-2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12), transparent 70%);
    pointer-events: none;
    z-index: 1;
}

/* Integrated Revolution Top Navigation HUD */
.revolution-top-hud {
    position: relative;
    z-index: 20;
    padding: 0.85rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 900px) {
    .revolution-top-hud {
        padding: 0.65rem 0.95rem;
        flex-wrap: wrap;
    }
}

.rev-brand-logo {
    height: 38px;
    max-width: 130px;
    object-fit: contain;
    transition: transform var(--trans-fast);
}

.rev-brand-logo:hover {
    transform: scale(1.04);
}

.rev-search-hud {
    flex: 1;
    max-width: 380px;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
    padding: 0.35rem 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--trans-fast);
}

.rev-search-hud:focus-within {
    border-color: var(--gold-primary);
    background: rgba(30, 41, 59, 0.95);
    box-shadow: 0 0 0 3px rgba(212, 160, 23, 0.2);
}

.rev-search-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-family: var(--font-body);
    font-size: 0.82rem;
    color: #fff;
}

.rev-nav-capsule {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

@media (max-width: 980px) {
    .rev-nav-capsule, .rev-search-hud {
        display: none;
    }
}

.rev-nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    transition: color var(--trans-fast);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.rev-nav-link:hover {
    color: var(--gold-primary);
}

/* Revolution Slides Stage */
.revolution-slides-viewport {
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
    padding: 1.85rem 2rem 2.5rem 2rem;
}

@media (max-width: 768px) {
    .revolution-slides-viewport {
        padding: 1.25rem 1rem 2rem 1rem;
    }
}

.rev-slide {
    display: none;
    opacity: 0;
    transform: translateY(15px) scale(0.98);
    transition: all 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.rev-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: revSlideIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes revSlideIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Slide 2 & 3 Custom Layouts */
.rev-banner-split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2.25rem;
    align-items: center;
}

@media (max-width: 980px) {
    .rev-banner-split {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}

.rev-preview-mockup-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(16px);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 160, 23, 0.15);
}

/* Revolution Bottom Navigation Bar (Dots + Arrows + Progress) */
.rev-controls-hud {
    position: relative;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 2rem;
    background: rgba(15, 23, 42, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

@media (max-width: 600px) {
    .rev-controls-hud {
        padding: 0.6rem 1rem;
    }
}

.rev-bullets-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.rev-bullet {
    width: 11px;
    height: 11px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    transition: all var(--trans-fast);
    padding: 0;
}

.rev-bullet.active {
    width: 32px;
    background: var(--gold-grad);
    box-shadow: 0 0 12px rgba(212, 160, 23, 0.6);
}

.rev-nav-arrows {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rev-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-card);
    color: #fff;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--trans-fast);
}

.rev-arrow-btn:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: scale(1.1);
}

.rev-progress-bar-wrap {
    flex: 1;
    max-width: 160px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin: 0 1.25rem;
}

.rev-progress-bar-fill {
    height: 100%;
    width: 0%;
    background: var(--gold-grad);
    transition: width 0.1s linear;
}



/* ===================================================================
   ULTRA-LUXURY 2025 PRELOADER & CINEMATIC ENTRANCE SCREEN
   =================================================================== */
#gbcPreloaderScreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #0f172a 0%, #030712 100%);
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s ease;
}

#gbcPreloaderScreen.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-glow-orb {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.22), transparent 70%);
    border-radius: var(--radius-full);
    animation: preloaderPulse 2.4s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes preloaderPulse {
    0% { transform: scale(0.85); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.preloader-brand-box {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.5rem;
}

.preloader-logo-ring {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preloader-logo-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: var(--radius-full);
    border: 2px solid transparent;
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-primary);
    animation: preloaderSpin 1.4s linear infinite;
}

.preloader-logo-ring::after {
    content: '';
    position: absolute;
    inset: -14px;
    border-radius: var(--radius-full);
    border: 1.5px dashed rgba(14, 165, 233, 0.4);
    animation: preloaderSpin 3.5s linear infinite reverse;
}

@keyframes preloaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-logo-img {
    width: 75px;
    height: 75px;
    object-fit: contain;
    filter: drop-shadow(0 0 16px rgba(212, 160, 23, 0.45));
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--gold-primary);
    margin-bottom: 0.4rem;
    letter-spacing: -0.5px;
}

.preloader-subtitle {
    font-size: 0.82rem;
    color: #94a3b8;
    margin-bottom: 1.75rem;
    height: 20px;
}

.preloader-bar-wrap {
    width: 240px;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.preloader-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d97706, #fbbf24, #10b981);
    border-radius: var(--radius-full);
    transition: width 0.05s ease-out;
}

.preloader-percent {
    margin-top: 0.65rem;
    font-size: 0.78rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--gold-primary);
}

/* ===================================================================
   MOBILE RESPONSIVENESS OVERHAUL 1000% (FIXES ALL OVERFLOW & BREAKS)
   =================================================================== */

html, body {
    max-width: 100vw;
    overflow-x: hidden !important;
}

.boxed-wrapper, .enterprise-app-wrapper {
    max-width: 100vw;
    overflow-x: hidden;
    padding-left: 0.65rem !important;
    padding-right: 0.65rem !important;
}

@media (max-width: 768px) {
    /* Revolution Container on Mobile */
    .revolution-hero-container {
        margin: 0.35rem auto 1.5rem auto;
        border-radius: var(--radius-lg);
        min-height: auto;
    }

    /* Top HUD on Mobile */
    .revolution-top-hud {
        padding: 0.6rem 0.85rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .rev-brand-logo {
        height: 30px;
        max-width: 100px;
    }

    .rev-search-hud, .rev-nav-capsule {
        display: none !important;
    }

    /* Slide Viewport on Mobile */
    .revolution-slides-viewport {
        padding: 1.15rem 0.75rem 1.5rem 0.75rem;
    }

    /* Grid single column on mobile */
    .hero-masterpiece-grid, .rev-banner-split {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    /* Typography on mobile */
    .hero-main-title {
        font-size: 1.28rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.65rem !important;
    }

    .hero-main-desc {
        font-size: 0.82rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1rem !important;
    }

    /* 4 KPI Stats 2x2 on Mobile */
    .hero-stats-4x-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.45rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-stat-card-tile {
        padding: 0.55rem 0.4rem !important;
    }

    .hero-stat-val {
        font-size: 1.05rem !important;
    }

    .hero-stat-sub {
        font-size: 0.68rem !important;
    }

    /* 4 Macro Action Buttons 2x2 on Mobile */
    .hero-quick-actions-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.45rem !important;
        margin-bottom: 1rem !important;
    }

    .hero-quick-tile-btn {
        padding: 0.5rem 0.35rem !important;
        font-size: 0.72rem !important;
    }

    /* Onboarding Card on Mobile */
    .hero-onboarding-luxury-card {
        padding: 1.15rem 0.95rem !important;
        border-radius: var(--radius-lg) !important;
    }

    .form-title-h3 {
        font-size: 1.02rem !important;
    }

    .form-field-ctrl {
        padding: 0.55rem 0.75rem !important;
        font-size: 0.8rem !important;
    }

    .form-calc-summary-pill {
        padding: 0.65rem 0.85rem !important;
    }

    .btn-hero-launch-gold {
        padding: 0.85rem 1rem !important;
        font-size: 0.88rem !important;
    }

    /* Bottom Controls HUD on Mobile */
    .rev-controls-hud {
        padding: 0.5rem 0.85rem !important;
    }

    .rev-bullet {
        width: 8px !important;
        height: 8px !important;
    }

    .rev-bullet.active {
        width: 22px !important;
    }

    .rev-arrow-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 0.8rem !important;
    }

    .rev-progress-bar-wrap {
        margin: 0 0.65rem !important;
    }
}



/* ===================================================================
   PRO PRELOADER: LARGE LUXURY LOGO + DIRECT CAPTION + 2S FAST TRANSITION
   =================================================================== */
.preloader-logo-ring {
    position: relative;
    width: 170px !important;
    height: 170px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem !important;
}

.preloader-logo-ring::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: var(--radius-full);
    border: 2.5px solid transparent;
    border-top-color: var(--gold-primary);
    border-right-color: var(--gold-primary);
    animation: preloaderSpin 1.2s linear infinite;
    filter: drop-shadow(0 0 10px rgba(212, 160, 23, 0.6));
}

.preloader-logo-ring::after {
    content: '';
    position: absolute;
    inset: -18px;
    border-radius: var(--radius-full);
    border: 1.5px dashed rgba(14, 165, 233, 0.5);
    animation: preloaderSpin 3s linear infinite reverse;
}

.preloader-logo-img {
    width: 130px !important;
    height: 130px !important;
    max-width: 130px !important;
    max-height: 130px !important;
    object-fit: contain;
    filter: drop-shadow(0 0 24px rgba(212, 160, 23, 0.55)) !important;
    animation: preloaderPulse 1.8s ease-in-out infinite alternate;
}

.preloader-subtitle {
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    color: #e2e8f0 !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}



/* ===================================================================
   4 LUXURY PLATFORM ENTRANCE BANNERS (بوابات ومنصات المنظومة الـ 4)
   =================================================================== */
.platforms-gateway-section {
    margin: 1.5rem 0 2.5rem 0;
    position: relative;
    z-index: 10;
}

.platforms-gateway-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.15rem;
}

@media (max-width: 1024px) {
    .platforms-gateway-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .platforms-gateway-grid {
        grid-template-columns: 1fr;
        gap: 0.95rem;
    }
}

.platform-banner-card {
    position: relative;
    height: 200px;
    border-radius: var(--radius-xl);
    border: 1.5px solid var(--border-gold);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem 1.15rem;
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.45);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.platform-banner-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.35) 0%, rgba(9, 14, 26, 0.85) 60%, rgba(3, 7, 18, 0.98) 100%);
    transition: background 0.4s ease;
    z-index: 1;
}

.platform-banner-card:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: #fbbf24;
    box-shadow: 0 20px 45px rgba(212, 160, 23, 0.3), 0 0 25px rgba(212, 160, 23, 0.2);
}

.platform-banner-card:hover::before {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(9, 14, 26, 0.75) 50%, rgba(3, 7, 18, 0.95) 100%);
}

.platform-banner-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.platform-banner-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.25rem 0.55rem;
    border-radius: var(--radius-full);
    width: fit-content;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
}

.platform-banner-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.35;
    transition: color var(--trans-fast);
}

.platform-banner-card:hover .platform-banner-title {
    color: var(--gold-primary);
}

.platform-banner-desc {
    font-size: 0.76rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.platform-banner-link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--gold-primary);
    padding-top: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}



/* ===================================================================
   FULL WIDTH (EDGE-TO-EDGE) HERO-HEADER & FOOTER (ZERO RADIUS)
   =================================================================== */

/* Full-Width Slider Revolution Hero */
.revolution-hero-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 2rem 0 !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    border-bottom: 2px solid var(--border-gold) !important;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6) !important;
}

/* Inner Container to keep content centered & elegant within full width */
.rev-inner-wrap {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* Refined Compact Heading Typography */
.hero-main-title {
    font-size: clamp(1.15rem, 1.85vw, 1.55rem) !important;
    font-family: var(--font-heading) !important;
    font-weight: 800 !important;
    color: var(--vx-heading) !important;
    line-height: 1.4 !important;
    margin-bottom: 0.65rem !important;
    letter-spacing: -0.3px !important;
}

.hero-main-desc {
    font-size: 0.85rem !important;
    line-height: 1.65 !important;
    color: var(--text-primary) !important;
    margin-bottom: 1.15rem !important;
}

/* Full Width Footer with Zero Rounded Corners */
.enterprise-app-footer, .landing-footer, .boxed-footer {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-bottom: none !important;
    border-top: 2px solid var(--border-gold) !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Full Width Top HUD */
.revolution-top-hud {
    border-radius: 0 !important;
    border-left: none !important;
    border-right: none !important;
    border-top: none !important;
    padding: 0.75rem 2rem !important;
}

@media (max-width: 768px) {
    .revolution-top-hud {
        padding: 0.6rem 0.85rem !important;
    }
    .hero-main-title {
        font-size: 1.15rem !important;
        line-height: 1.35 !important;
    }
    .hero-main-desc {
        font-size: 0.78rem !important;
    }
}

