        :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;
    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: 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; */
    display: none;
    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: 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;
    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;
}

.hero_title {
    font-size: 44px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--vp-heading);
    margin: 0 0 16px;
    letter-spacing: -0.03em;
}

.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;
}

.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(8px);
    color: var(--vp-gray-600);
    font-size: 13px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.hero_image_badge strong {
    font-size: 15px;
    color: var(--vp-heading);
}

/* --- Waitlist Layout --- */
.layout-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
    /* margin: 60px 0 100px; */
    margin: auto !important;
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: 64px;
    align-items: start;
}

.hero-text-side h1 {
    font-size: 30px;
    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%); }
}
/* --- Static Pricing Section (new-show-section) --- */
.pricing-section.new-show-section {
    display: flex;
    justify-content: center;
    width: 100%;
    animation: none;
}

.static-pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--vp-gray-200);
    box-shadow: var(--shadow-soft);
    max-width: 520px;
    width: 100%;
    text-align: center;
}

.static-pricing-header {
    margin-bottom: 24px;
}

.static-pricing-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.static-pricing-header h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--vp-heading);
    margin: 0 0 8px;
}

.static-pricing-header p {
    font-size: 15px;
    color: var(--vp-gray-600);
    margin: 0;
}

.static-pricing-deals {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.static-deal {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    background: var(--vp-gray-50);
    border: 1px solid var(--vp-gray-200);
    transition: var(--transition-fast);
}

.static-deal:hover {
    border-color: var(--vp-primary);
    background: white;
    transform: translateX(4px);
}

.static-deal-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
}

.static-deal-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.static-deal-vol {
    font-size: 15px;
    font-weight: 700;
    color: var(--vp-primary);
}

.static-deal-price {
    font-size: 16px;
    font-weight: 800;
    color: var(--vp-success);
}

.static-pricing-footer {
    border-top: 1px solid var(--vp-gray-200);
    padding-top: 20px;
}

.static-pricing-cta {
    font-size: 16px;
    font-weight: 800;
    color: var(--vp-heading);
    margin: 0 0 8px;
}

.static-pricing-urgency {
    font-size: 14px;
    color: var(--vp-text-muted);
    margin: 0;
}
/* --- 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 --- */
.sections_row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    margin: 60px 0;
}

.card_soft {
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    padding: 40px;
    border: 1px solid var(--vp-gray-100);
}

.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;
}

.list_features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list_features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--vp-gray-700);
}

.list_features li::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--vp-success);
}

.mini_grid_images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.mini_image_card {
    border-radius: 16px;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--vp-gray-200);
    background: var(--vp-gray-50);
}

.pill_tag_row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 32px;
}

.pill_tag {
    padding: 6px 14px;
    border-radius: 99px;
    background: var(--vp-gray-100);
    color: var(--vp-gray-700);
    font-size: 12px;
    font-weight: 600;
    border: 1px solid var(--vp-gray-200);
}

/* --- 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: 28px; }
    .hero-text-side h1 { font-size: 28px; }
    .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;
    }
}
.pricing-section2.newest-show-section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.static-pricing-deals-of-cards {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
    gap: 5px;
    max-width: 560px;
    width: 100%;
}

.low-deals-grids {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* gap: 12px; */
    gap: 3px;
    position: relative;
    margin-top: 8px;
}
.snapshot-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--vp-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
}
.snapshot-text i {
    color: #ff4500;
}
@media screen and (max-width: 540px) {
    .low-deals-grids{
        grid-template-columns: repeat(2, 1fr);
    }
}
.deal-grid{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding: 8px 6px 7px; */
    padding: 5px;
    border-radius: var(--radius-md);
    overflow: visible;
    transition: var(--transition-fast);
}
/* .deal-grid:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
} */
.deal-grid.mtn-deal {
    background: linear-gradient(135deg, #ffea00, #ffe100);
}
.deal-grid.at-deal {
    background: linear-gradient(135deg, #ff3535, #0c59c4);
}
.deal-grid.telecel-deal {
    background: linear-gradient(135deg, #fd4646, #f71e1e);
}
.deal-name {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.95);
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    /* margin-bottom: 4px; */
}
.deal-grid.mtn-deal .deal-name {
    color: rgba(0,0,0,0.75);
    text-shadow: none;
}
.deal-price {
    font-size: 16px;
    font-weight: 800;
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.25);
}
.deal-grid.mtn-deal .deal-price {
    color: rgba(0,0,0,0.85);
    text-shadow: none;
}
.deal-grid::after {
    content: "\f06d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #ff4500;
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(40%, -40%);
    z-index: 1;
    background: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}
.footer-texts-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}
.footer-texts-box p {
    font-size: 13px;
    font-weight: 600;
    color: var(--vp-gray-600);
    margin: 0;
}
.fill-form-href {
    font-size: 13px;
    font-weight: 700;
    color: var(--vp-success);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.fill-form-href:hover {
    color: var(--vp-success-hover);
}
.waitlist-counter-badge {
    position: fixed;
    top: 0;
    right: 0;
    /* max-width: 85px; */
    width: 70px;
    height: 70px;
    background: var(--vp-success);
    border-bottom-left-radius: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 8px; */
    padding-right: 2px;
    z-index: 200;
    box-shadow: -2px 2px 10px rgba(16, 185, 129, 0.3);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.waitlist-counter-badge:hover {
    transform: scale(1.1);
}
.counter-number {
    font-size: 22px;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.counter-label {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    /* margin-top: 2px; */
}
@media screen and (max-width: 500px) {
    .form-card {
        padding: 20px 16px;
        border-radius: var(--radius-md);
        position: static;
    }
    .form-card::before {
        height: 4px;
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }
    .form-header {
        margin-bottom: 20px;
    }
    .form-header h2 {
        font-size: 22px;
    }
    .form-header p {
        font-size: 13px;
    }
    .form-group {
        margin-bottom: 14px;
    }
    .form-label {
        font-size: 13px;
        margin-bottom: 6px;
    }
    .form-input {
        padding: 12px;
        font-size: 14px;
        border-radius: var(--radius-sm);
    }
    .checkbox-group {
        gap: 10px;
        margin-top: 8px;
    }
    .checkbox-label {
        font-size: 14px;
        gap: 10px;
    }
    .checkbox-label input {
        width: 16px;
        height: 16px;
    }
    .btn-submit {
        padding: 14px;
        font-size: 14px;
        margin-top: 16px;
    }
}
/* Waitlist Login Badge */
.waitlist-login-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--vp-primary);
    color: white;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.2);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-fast);
    z-index: 10;
}

.waitlist-login-badge:hover {
    transform: translateY(-2px);
    background: var(--vp-gray-700);
}

@media (max-width: 680px) {
    .waitlist-login-badge {
        top: -10px;
        right: 15px;
        font-size: 11px;
        padding: 4px 10px;
    }
}
