        :root {
    /* Base Colors */
    --vp-primary: #0f172a;
    --vp-primary-light: #1e293b;
    --vp-success: #10b981;
    --whatsapp-color: #1ab051;
    --vp-success-hover: #059669;
    --vp-bg-light: #f8fafc;
    
    /* Gray Scale */
    --vp-gray-50: #f9fafb;
    --vp-gray-100: #f1f5f9;
    --vp-gray-200: #e2e8f0;
    --vp-gray-300: #cbd5e1;
    --vp-gray-500: #64748b;
    --vp-gray-600: #475569;
    --vp-gray-700: #334155;
    
    /* Semantic Colors */
    --vp-text-main: #334155;
    --vp-text-muted: #64748b;
    --vp-heading: #0f172a;
    
    /* Network Colors */
    --mtn-color: #ffcc00;
    --telecel-color: #e60000;
    --airteltigo-color: #0033a0;
    
    /* Layout & Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-card: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    
    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Container */
    --container-max-width: 1280px;
    --container-padding-x: 24px;
}

/* --- Base Styles --- */
* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--vp-bg-light);
    color: var(--vp-text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto !important;
    padding: 0 var(--container-padding-x);
}

/* --- Header & Navigation --- */
.site_header, .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--vp-gray-200);
    /* padding: 16px 0; */
    padding: 6px 0;
}

.header_inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand_link, .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 24px;
    color: var(--vp-primary);
    letter-spacing: -0.02em;
}

.brand img, .brand_link img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.brand_text_sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--vp-gray-500);
    margin-top: -2px;
    letter-spacing: 0;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--vp-primary);
    font-size: 15px;
}

.btn-back:hover {
    color: var(--vp-success);
}

.nav_simple {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* --- Buttons --- */
.btn_primary, .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 6px 12px;
    /* padding: 12px 24px; */
    background: var(--vp-success);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.3);
}

.btn_primary:hover, .btn-submit:hover {
    background: var(--vp-success-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.4);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    margin-top: 24px;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* padding: 12px 24px; */
    padding: 6px 12px;
    background: white;
    color: var(--vp-primary);
    border: 1px solid var(--vp-gray-200);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn_outline:hover {
    background: var(--vp-gray-50);
    border-color: var(--vp-gray-300);
}

.btn_whatsapp_nav, .btn_whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--whatsapp-color);
    color: white;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition-fast);
}

.btn_whatsapp_nav:hover, .btn_whatsapp:hover {
    background: #128c7e;
    transform: translateY(-1px);
}

.btn_whatsapp_outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #25d366;
    background: transparent;
    color: #128c7e;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn_whatsapp_outline:hover {
    background: rgba(37, 211, 102, 0.05);
    transform: translateY(-2px);
}

/* --- Hero Section --- */
.hero {
    padding: 40px 0;
}

.hero_grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.hero_kicker {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--vp-success);
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

.typewriter {
    color: var(--vp-success);
    position: relative;
}

.typewriter::after {
    content: "|";
    position: absolute;
    right: -8px;
    top: 0;
    color: var(--vp-success);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

.hero_title {
    /* font-size: 44px; */
    line-height: 1.1;
    font-weight: 800;
    color: var(--vp-heading);
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    min-height: 1.1em;
}

.hero_highlight {
    color: var(--vp-success);
}

.hero_sub {
    font-size: 16px;
    color: var(--vp-gray-600);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.hero_meta_row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 32px;
    font-size: 13px;
    color: var(--vp-gray-600);
    padding-top: 24px;
    border-top: 1px solid var(--vp-gray-200);
}

.meta_item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta_dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--vp-success);
}

.hero_image_card {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    background: var(--vp-gray-100);
    position: relative;
    isolation: isolate;
    aspect-ratio: 16/10;
}

.slider_container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero_image_badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    right: 24px;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    color: var(--vp-gray-600);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    transition: opacity 0.3s ease;
}

.hero_image_badge strong {
    font-size: 15px;
    color: var(--vp-heading);
}

.benefit_item {
    padding: 20px;
    background: var(--vp-gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--vp-gray-200);
    transition: var(--transition-fast);
}

.benefit_item:hover {
    background: white;
    border-color: var(--vp-success);
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.benefit_item i {
    font-size: 24px;
    display: block;
    margin-bottom: 12px;
}

/* --- Waitlist Layout --- */
.layout-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin: 60px 0 100px;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: start;
}

.hero-text-side h1 {
    font-size: 48px;
    font-weight: 800;
    color: var(--vp-heading);
    margin: 0 0 16px;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.hero-text-side h1 span {
    color: var(--vp-success);
}

.hero-text-side p {
    font-size: 18px;
    color: var(--vp-text-muted);
    margin-bottom: 32px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--vp-text-main);
}

.benefits-list li i {
    color: var(--vp-success);
    font-size: 20px;
}

/* --- Pricing Section --- */
.pricing-section-box {
    max-width: 100vw;
    overflow: hidden;
    padding: 20px 0;
}

.pricing-section {
    display: flex;
    width: max-content;
    animation: slideLeft 30s linear infinite;
}

.pricing-group {
    display: flex;
    gap: 16px;
    padding-right: 16px;
}

.network-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 16px;
    border: 1px solid var(--vp-gray-200);
    box-shadow: var(--shadow-soft);
    transition: var(--transition-fast);
    min-width: 320px;
}

.network-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.network-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vp-gray-100);
}

.network-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
}

.mtn-icon { background: var(--mtn-color); color: var(--vp-primary); }
.telecel-icon { background: var(--telecel-color); }
.airteltigo-icon { background: var(--airteltigo-color); }

.network-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--vp-primary);
    margin: 0;
}

.network-subtitle {
    font-size: 11px;
    color: var(--vp-text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    mask-image: linear-gradient(to right, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, black 80%, transparent 100%);
}

.price-grid {
    display: inline-flex;
    gap: 8px;
}

.price-chip {
    display: inline-flex;
    flex-direction: column;
    padding: 8px;
    border-radius: var(--radius-md);
    background: var(--vp-gray-50);
    border: 1px solid var(--vp-gray-200);
    text-align: center;
    transition: var(--transition-fast);
    flex: 0 0 95px;
}

.price-chip:hover {
    border-color: var(--vp-primary);
    background: white;
}

.price-vol { font-size: 15px; font-weight: 800; color: var(--vp-primary); }
.price-amt { font-size: 13px; font-weight: 600; color: var(--vp-success); margin-top: 2px; }

@keyframes slideLeft {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* --- Countdown Section --- */
.countdown_section {
    padding: 40px 0;
}

.countdown_card {
    padding: 40px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    border: 1px solid var(--vp-gray-100);
}

.countdown_label {
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--vp-success);
    margin-bottom: 12px;
    font-weight: 700;
}

.countdown_title {
    font-size: 28px;
    font-weight: 800;
    color: var(--vp-heading);
    margin-bottom: 12px;
    line-height: 1.2;
}

.countdown_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.countdown_box {
    background: var(--vp-gray-50);
    padding: 24px 12px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid var(--vp-gray-200);
}

.countdown_value {
    font-size: 32px;
    font-weight: 800;
    color: var(--vp-heading);
    line-height: 1;
}

.countdown_label_small {
    margin-top: 8px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--vp-gray-500);
    font-weight: 600;
}

/* --- Feature Sections --- */
.card_soft {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 40px;
    border: 1px solid var(--vp-gray-100);
}
@media (max-width: 520px) {
    
    .card_soft_mobile_variant {
        background: transparent;
        border-radius: 0px;
        box-shadow: none;
        padding: 10px;
        border: none;
    }
    .benefit_item {
        padding: 10px;
        background: white;
        width: 100%;
        margin: 0 auto;
    }
}
.section_heading {
    font-size: 24px;
    font-weight: 800;
    color: var(--vp-heading);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section_text {
    font-size: 15px;
    color: var(--vp-gray-600);
    margin-bottom: 24px;
}

/* --- WhatsApp Section --- */
.whatsapp_section {
    padding: 60px 0;
}

.whatsapp_card {
    background: white;
    border-radius: 32px;
    box-shadow: var(--shadow-hover);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border: 1px solid var(--vp-gray-100);
    position: relative;
    overflow: hidden;
}

.whatsapp_card::before {
    content: '';
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: var(--whatsapp-color);
}

.whatsapp_title {
    font-size: 28px;
    font-weight: 800;
    color: var(--vp-heading);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp_text {
    font-size: 16px;
    color: var(--vp-gray-600);
}

.whatsapp_actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 200px;
}

/* --- Form Elements --- */
.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    position: sticky;
    top: 100px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--vp-gray-200);
}

.form-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--vp-success), #34d399);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.form-header { margin-bottom: 32px; }
.form-header h2 { font-size: 28px; font-weight: 800; color: var(--vp-primary); margin: 0 0 8px; }
.form-header p { color: var(--vp-text-muted); font-size: 15px; }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--vp-primary); }
.form-input {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-md);
    border: 1px solid var(--vp-gray-200);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--vp-success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.checkbox-group { display: flex; flex-direction: column; gap: 12px; margin-top: 12px; }
.checkbox-label { display: flex; align-items: center; gap: 12px; font-size: 15px; cursor: pointer; }
.checkbox-label input { width: 18px; height: 18px; accent-color: var(--vp-success); }

/* --- Modals & Toasts --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.show { opacity: 1; }
.modal-content {
    background: white;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    transform: scale(0.95);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.modal-overlay.show .modal-content { transform: scale(1); }
.modal-header { padding: 24px; border-bottom: 1px solid var(--vp-gray-200); display: flex; align-items: center; justify-content: space-between; }
.modal-header h3 { margin: 0; font-size: 18px; }
.close-modal { background: none; border: none; font-size: 24px; cursor: pointer; color: var(--vp-text-muted); }
.modal-body { padding: 24px; color: var(--vp-text-main); font-size: 15px; }
.modal-footer { padding: 24px; background: var(--vp-gray-50); border-top: 1px solid var(--vp-gray-200); }

#toast-container { position: fixed; bottom: 24px; right: 24px; z-index: 1000; display: flex; flex-direction: column; gap: 12px; }
.toast {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 600;
    box-shadow: var(--shadow-hover);
    animation: slideInToast 0.3s ease-out;
}

.toast.success { background: var(--vp-success); }
.toast.error { background: #ef4444; }

@keyframes slideInToast {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* --- Footer --- */
.site_footer, .site-footer {
    border-top: 1px solid var(--vp-gray-200);
    background: white;
    padding: 32px 0;
}

.footer_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--vp-gray-500);
    font-weight: 500;
}

/* --- Utils --- */
.whatsapp_fab {
    position: fixed;
    right: 32px;
    bottom: 32px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--whatsapp-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    font-size: 28px;
    z-index: 90;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp_fab:hover { transform: scale(1.1) rotate(5deg); background: #128c7e; }

.fade_up {
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade_up.visible { opacity: 1; transform: none; }

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero_grid, .countdown_card, .sections_row, .whatsapp_card, .split-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .form-card { position: static; }
    .hero_image_card { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .hero_title { font-size: 32px; }
    .hero-text-side h1 { font-size: 36px; }
    .countdown_grid { grid-template-columns: repeat(2, 1fr); }
    .nav_simple { display: none; }
    .footer_inner { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
    .hero_actions .btn_primary, .hero_actions .btn_outline { width: 100%; }
    .whatsapp_card {
        padding: 32px 24px;
        display: grid;
    }
}

/* --- Legal Views (Modern Centered) --- */
.legal-main {
    padding: 0px 0 30px;
    background: var(--vp-bg-light);
    min-height: 80vh;
}

.legal-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    background: white;
    padding: 6px;
    border-radius: var(--radius-full);
    box-shadow: var(--shadow-soft);
    width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--vp-gray-100);
}

.legal-tab {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 14px;
    color: var(--vp-gray-600);
    transition: var(--transition-fast);
}

.legal-tab:hover {
    color: var(--vp-success);
    background: var(--vp-gray-50);
}

.legal-tab.active {
    background: var(--vp-success);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.legal-content-card.single-column {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 32px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--vp-gray-100);
    overflow: hidden;
}

.legal-section {
    animation: slideFadeIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.legal-content-card h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--vp-heading);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.legal-content-card h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vp-heading);
    margin-top: 32px;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .legal-tabs {
        flex-wrap: wrap;
        border-radius: var(--radius-lg);
        width: 100%;
    }
    .legal-tab {
        flex: 1 1 40%;
        text-align: center;
    }
    .legal-content-card.single-column {
        padding: 32px 24px;
        border-radius: 20px;
    }
}
