/* =========================================
   AWWAL BRANDING VARIABLES
   ========================================= */
:root {
    --awwal-green: #afce30;  /* Brand Primary Green */
    --awwal-purple: #9550f2; /* Brand Primary Purple */
    --awwal-dark: #000000;   /* Brand Black */
    --awwal-grey: #4d4d4d;   /* Brand Dark Grey */
    --awwal-light: #f4f4f4;
    --white: #ffffff;
    
    --font-primary: 'League Spartan', sans-serif; /* Brand Font */
}

/* =========================================
   GLOBAL RESET & TYPOGRAPHY
   ========================================= */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: var(--font-primary);
    color: var(--awwal-grey);
    line-height: 1.5;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--awwal-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

a { text-decoration: none; transition: 0.3s; }
ul { list-style: none; }

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   BUTTONS & UTILITIES
   ========================================= */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    cursor: pointer;
    text-align: center;
}

/* Primary CTA: Awwal Green */
.btn-primary {
    background: var(--awwal-green);
    color: var(--awwal-dark);
    border: 2px solid var(--awwal-green);
}
.btn-primary:hover {
    background: transparent;
    color: var(--awwal-green);
}

/* Secondary CTA: Purple Outline */
.btn-outline {
    border: 2px solid var(--awwal-purple);
    color: var(--awwal-purple);
    background: transparent;
}
.btn-outline:hover {
    background: var(--awwal-purple);
    color: var(--white);
}

.btn-green {
    background: var(--awwal-green);
    color: var(--awwal-dark);
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.btn-green-solid {
    background: var(--awwal-green);
    color: var(--awwal-dark);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 1.2rem;
}

.highlight-purple { color: var(--awwal-purple); }
.highlight-green { color: var(--awwal-green); }

.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(175, 206, 48, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(175, 206, 48, 0); }
    100% { box-shadow: 0 0 0 0 rgba(175, 206, 48, 0); }
}

/* =========================================
   POPUP MODAL (GATEKEEPER)
   ========================================= */
.modal-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: none; align-items: center; justify-content: center;
}
.modal-content {
    background: var(--white);
    width: 90%; max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    border-top: 5px solid var(--awwal-purple);
    position: relative;
}
.modal-header { margin-bottom: 20px; text-align: center; }
.modal-badge {
    background: var(--awwal-green); color: var(--awwal-dark);
    padding: 3px 8px; font-size: 0.7rem; font-weight: 800;
    border-radius: 4px; display: inline-block; margin-bottom: 10px;
}
.modal-header h3 { font-size: 1.5rem; margin-bottom: 5px; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-weight: 700; margin-bottom: 8px; color: var(--awwal-grey); }
select {
    width: 100%; padding: 12px;
    border: 1px solid #ccc; border-radius: 4px;
    font-family: var(--font-primary); font-size: 1rem;
}
.radio-grid { display: flex; flex-direction: column; gap: 10px; }
.radio-option {
    border: 1px solid #ddd; padding: 12px; border-radius: 4px;
    cursor: pointer; display: flex; align-items: center; gap: 10px;
    transition: 0.2s;
}
.radio-option:hover { border-color: var(--awwal-purple); background: #f9f9f9; }
.radio-option.selected {
    border-color: var(--awwal-green);
    background: #f0fdf4;
    font-weight: 700; color: var(--awwal-dark);
}
.full-width { width: 100%; text-align: center; margin-top: 10px; }


/* =========================================
   STICKY HEADER
   ========================================= */
.sticky-header {
    background: var(--awwal-dark);
    color: var(--white);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--awwal-green);
    transition: all 0.3s ease;
}
.sticky-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 5px 0; 
    background: rgba(0, 0, 0, 0.95); 
}
.header-flex { display: flex; justify-content: space-between; align-items: center; }
.pain-point { font-weight: 400; font-size: 0.9rem; opacity: 0.8; margin-right: 10px; }
.outcome-text { font-weight: 700; font-size: 0.95rem; color: var(--awwal-green); }
@media (max-width: 768px) {
    .pain-point { display: none; }
    .header-flex { justify-content: center; text-align: center; gap: 10px; }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: var(--white);
    text-align: center;
}
.brand-headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}
.hero-sub {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #cccccc;
}
.vsl-container { margin-bottom: 40px; }
.vsl-box {
    width: 100%; max-width: 700px; aspect-ratio: 16/9;
    background: #222; border: 2px solid var(--awwal-purple);
    margin: 0 auto; display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    border-radius: 8px; cursor: pointer;
}
.vsl-box iframe { width: 100%; height: 100%; border-radius: 6px; }
.play-btn { font-size: 3rem; color: var(--awwal-green); margin-bottom: 10px; }
.vsl-caption { color: var(--white); font-weight: 600; }

/* =========================================
   PROBLEM & COMPARISON
   ========================================= */
.problem-section { padding: 80px 0; background: var(--awwal-light); text-align: center; }
.section-title { font-size: 2.5rem; margin-bottom: 10px; }
.section-subtitle { margin-bottom: 40px; font-size: 1.2rem; }
.pain-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px; margin-bottom: 40px;
}
.pain-card {
    background: var(--white); padding: 30px;
    border-radius: 8px; box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.pain-card i { font-size: 2rem; color: var(--awwal-purple); margin-bottom: 15px; }

.comparison-section { padding: 80px 0; background: var(--white); }
.compare-grid { display: flex; gap: 40px; }
.compare-col { flex: 1; padding: 40px; border-radius: 12px; }

.compare-col.fail { background: #fff0f0; border: 1px solid #ffcccc; }
.compare-col.fail h3 { color: #d32f2f; margin-bottom: 20px; }
.compare-col.fail ul li { margin-bottom: 10px; font-weight: 500; }

.compare-col.success { 
    background: #f0fdf4; border: 2px solid var(--awwal-green);
    position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.compare-col.success h3 { color: var(--awwal-dark); margin-bottom: 5px; }
.brand-sub { color: var(--awwal-purple); font-weight: 700; margin-bottom: 20px; font-size: 0.9rem; text-transform: uppercase; }
.compare-col.success ul li { margin-bottom: 15px; font-weight: 600; font-size: 1.1rem; }
.btn-text { color: var(--awwal-purple); font-weight: 800; text-decoration: underline; }

@media (max-width: 768px) { .compare-grid { flex-direction: column; } }

/* =========================================
   MOFU: SOCIAL & PROCESS
   ========================================= */
.social-proof { background: var(--awwal-dark); color: var(--white); padding: 50px 0; text-align: center; }
.logo-strip { display: flex; justify-content: center; gap: 30px; margin: 30px 0; flex-wrap: wrap; }
.logo-placeholder { background: rgba(255,255,255,0.1); padding: 10px 20px; border-radius: 4px; font-weight: 700; color: var(--awwal-grey); }
.testimonials { margin-bottom: 30px; font-style: italic; color: #ccc; }

.process-section { padding: 80px 0; }
.timeline {
    max-width: 800px; margin: 40px auto;
    border-left: 3px solid var(--awwal-purple); padding-left: 30px;
}
.step { margin-bottom: 40px; position: relative; }
.step-num {
    position: absolute; left: -53px;
    background: var(--awwal-green); color: var(--awwal-dark);
    width: 45px; height: 45px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; border: 3px solid var(--white);
}
.step-content h4 { color: var(--awwal-purple); margin-bottom: 5px; }
.center-cta { text-align: center; margin-top: 40px; }

/* QUALIFICATION */
.qualification-section { padding: 60px 0; background: var(--awwal-light); }
.qual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.qual-box { padding: 30px; border-radius: 8px; background: var(--white); }
.yes { border-top: 5px solid var(--awwal-green); }
.yes h3 { color: #2e7d32; }
.no { border-top: 5px solid #d32f2f; }
.no h3 { color: #d32f2f; }
.qual-box ul li { margin-bottom: 10px; list-style-type: disc; margin-left: 20px; }
@media (max-width: 768px) { .qual-grid { grid-template-columns: 1fr; } }

/* =========================================
   BOFU: PRICING
   ========================================= */
.pricing-section { padding: 80px 0; background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; margin-top: 40px; }

.price-card {
    border: 1px solid #eee; border-radius: 10px; overflow: hidden;
    background: var(--white); transition: 0.3s;
    display: flex; flex-direction: column;
}
.card-header { padding: 30px; text-align: center; background: #fafafa; border-bottom: 1px solid #eee; }
.pkg-icon { font-size: 2rem; margin-bottom: 10px; }
.price { font-size: 1.8rem; font-weight: 800; color: var(--awwal-dark); margin-top: 10px; }
.card-body { padding: 30px; flex-grow: 1; display: flex; flex-direction: column; }
.outcome { font-size: 0.9rem; margin-bottom: 20px; color: var(--awwal-grey); }
.card-body ul { margin-bottom: 30px; flex-grow: 1; }
.card-body ul li { margin-bottom: 12px; font-size: 0.95rem; }
.card-body ul li i { color: var(--awwal-green); margin-right: 8px; }
.best-for { font-size: 0.85rem; background: #eee; padding: 5px; text-align: center; margin-bottom: 20px; border-radius: 4px; }

.price-card.featured {
    border: 2px solid var(--awwal-purple); transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0,0,0,0.1); z-index: 2; position: relative;
}
.card-tag {
    background: var(--awwal-purple); color: var(--white); text-align: center;
    font-weight: 700; padding: 5px; font-size: 0.8rem;
}

.scarcity-msg {
    text-align: center; margin: 40px 0 20px; color: #d32f2f;
    font-weight: 600; background: #fff0f0; padding: 10px;
    display: inline-block; border-radius: 4px; width: 100%;
}
.scarcity-msg strong { color: #d32f2f; }
.disclaimer { text-align: center; max-width: 800px; margin: 0 auto; font-size: 0.85rem; color: #777; border: 1px solid #eee; padding: 15px; border-radius: 8px; }
.addons { text-align: center; margin-top: 20px; font-size: 0.9rem; }

/* =========================================
   FAQ SECTION
   ========================================= */
.faq-section { padding: 80px 0; background: var(--awwal-light); }
.accordion { max-width: 700px; margin: 0 auto; }
.accordion-item {
    background: var(--white); margin-bottom: 10px;
    border-radius: 6px; border: 1px solid #eee; overflow: hidden;
}
.accordion-header {
    width: 100%; padding: 20px; background: none; border: none;
    text-align: left; font-weight: 700; font-family: var(--font-primary); font-size: 1.1rem;
    cursor: pointer; display: flex; justify-content: space-between; align-items: center;
    color: var(--awwal-dark); transition: 0.3s;
}
.accordion-header:hover { background: #fafafa; }
.accordion-header i { color: var(--awwal-purple); transition: 0.3s; }
.accordion-header.active { background: var(--awwal-dark); color: var(--awwal-green); }
.accordion-header.active i { transform: rotate(45deg); color: var(--awwal-green); }
.accordion-body { padding: 0 20px 20px; display: none; color: var(--awwal-grey); line-height: 1.6; }

/* =========================================
   FOOTER & FLOATING
   ========================================= */
.footer { background: var(--awwal-dark); color: var(--white); padding: 60px 0; text-align: center; }
.footer h2 { color: var(--white); margin-bottom: 10px; font-size: 2rem; }
.footer p { color: #ccc; margin-bottom: 30px; }
.footer-note { margin-top: 20px; font-size: 0.9rem; color: #777; }
.copyright { margin-top: 40px; border-top: 1px solid #333; padding-top: 20px; font-size: 0.8rem; color: #555; }

.floating-wa {
    position: fixed; bottom: 30px; right: 30px;
    background: #25D366; color: white;
    width: 60px; height: 60px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 35px; box-shadow: 0 5px 15px rgba(0,0,0,0.3); z-index: 2000;
}
.floating-wa:hover { transform: scale(1.1); }