/* ===================================
   MOBILE-FIRST HIGH-CONVERTING DESIGN
   Optimized for Nigerian FB Ads Traffic
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Money-focused color palette */
    --primary: #16a34a;      /* Money green */
    --primary-dark: #15803d;
    --primary-light: #22c55e;
    --secondary: #ea580c;    /* Attention orange */
    --accent: #eab308;       /* Gold/Urgent yellow */
    --danger: #dc2626;

    /* Text colors */
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-light: #64748b;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-green-light: #f0fdf4;
    --bg-orange-light: #fff7ed;

    /* Font */
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===================================
   FLOATING CTA (Mobile Only)
   =================================== */
.floating-cta {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 40px rgba(22, 163, 74, 0.4);
    cursor: pointer;
    animation: float 3s ease-in-out infinite;
    font-family: var(--font);
}

.floating-cta i {
    font-size: 18px;
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

/* Hide on desktop */
@media (min-width: 768px) {
    .floating-cta {
        display: none;
    }
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-weight: 900;
    color: var(--primary);
}

.logo i {
    font-size: 24px;
}

.header-btn {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font);
    transition: all 0.3s;
}

.header-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-text {
    display: inline;
}

.desktop-text {
    display: none;
}

@media (min-width: 768px) {
    .mobile-text { display: none; }
    .desktop-text { display: inline; }
    .header-btn { padding: 12px 28px; font-size: 16px; }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    background: linear-gradient(180deg, var(--bg-green-light) 0%, var(--bg-white) 100%);
    padding: 100px 0 60px;
    text-align: center;
}

.urgency-banner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 24px;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    animation: pulse-border 2s infinite;
}

.urgency-banner i {
    color: var(--secondary);
    font-size: 18px;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(234, 88, 12, 0); }
}

.hero-title {
    font-size: clamp(28px, 7vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.money {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--text-body);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.quick-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 32px;
}

.benefit-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.benefit-tag i {
    color: var(--primary);
    font-size: 16px;
}

/* ===================================
   CTA BUTTONS
   =================================== */
.cta-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(22, 163, 74, 0.3);
    transition: all 0.3s;
    width: 100%;
    max-width: 500px;
    justify-content: center;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(22, 163, 74, 0.4);
}

.cta-primary i {
    font-size: 20px;
}

.cta-subtext {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px 12px;
}

.cta-subtext i {
    color: var(--primary);
}

/* ===================================
   SOCIAL PROOF BAR
   =================================== */
.proof-bar {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.proof-item i {
    font-size: 28px;
    color: var(--primary);
}

.proof-item div {
    text-align: left;
}

.proof-item strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.proof-item span {
    font-size: 12px;
    color: var(--text-light);
}

/* ===================================
   MONEY POTENTIAL SECTION
   =================================== */
.money-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.section-title {
    font-size: clamp(24px, 6vw, 36px);
    font-weight: 900;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.money-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .money-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.money-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    text-align: center;
}

.money-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.money-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--bg-green-light), #dcfce7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.money-icon i {
    font-size: 32px;
    color: var(--primary);
}

.money-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.profit-example {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.profit-example div {
    padding: 6px 0;
    font-weight: 600;
}

.cost {
    color: var(--text-light);
    text-decoration: line-through;
}

.sell {
    color: var(--text-body);
}

.profit {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

.profit span {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profit-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.reality-check {
    background: linear-gradient(135deg, var(--bg-green-light), #dcfce7);
    border-left: 4px solid var(--primary);
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.reality-check i {
    font-size: 32px;
    color: var(--accent);
    flex-shrink: 0;
}

.reality-check p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* ===================================
   PROBLEM SECTION
   =================================== */
.problem-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    border-left: 4px solid var(--danger);
    transition: all 0.3s;
}

.problem-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.problem-card i {
    font-size: 40px;
    color: var(--danger);
    margin-bottom: 16px;
}

.problem-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.problem-card p {
    color: var(--text-body);
    line-height: 1.6;
}

.transition {
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    padding: 32px 24px;
    border-radius: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.transition h3 {
    font-size: clamp(20px, 5vw, 28px);
    font-weight: 900;
    line-height: 1.4;
}

.transition span {
    color: var(--accent);
}

/* ===================================
   SOLUTION/MODULES SECTION
   =================================== */
.solution-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.modules {
    max-width: 900px;
    margin: 0 auto 50px;
}

.module {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    display: flex;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.module:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.module-icon i {
    font-size: 28px;
    color: white;
}

.module-content {
    flex: 1;
}

.module-tag {
    display: inline-block;
    background: var(--bg-green-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 8px;
}

.module h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.module ul {
    list-style: none;
    padding: 0;
}

.module li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    color: var(--text-body);
    font-size: 15px;
}

.module li i {
    color: var(--primary);
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 767px) {
    .module {
        flex-direction: column;
    }
}

/* ===================================
   BONUSES
   =================================== */
.bonuses {
    background: linear-gradient(135deg, var(--bg-orange-light), #ffedd5);
    border: 2px solid var(--secondary);
    border-radius: 16px;
    padding: 32px 24px;
    max-width: 900px;
    margin: 0 auto;
}

.bonuses h3 {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.bonuses h3 i {
    color: var(--secondary);
    margin-right: 8px;
}

.bonus-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 768px) {
    .bonus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.bonus-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.bonus-card i {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.bonus-card h4 {
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 8px;
    font-size: 16px;
}

.bonus-card p {
    color: var(--text-body);
    font-size: 14px;
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials {
    padding: 60px 0;
    background: var(--bg-white);
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial {
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    transition: all 0.3s;
}

.testimonial:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.stars {
    color: var(--accent);
    font-size: 18px;
    margin-bottom: 12px;
}

.testimonial p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 16px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--bg-light);
}

.avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.author strong {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 15px;
}

.author span {
    font-size: 13px;
    color: var(--text-light);
}

.disclaimer {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: 60px 0;
    background: linear-gradient(180deg, var(--text-dark) 0%, #1e293b 100%);
    color: white;
}

.pricing-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
}

.urgency-tag {
    background: linear-gradient(135deg, #fee2e2, #fecaca);
    border: 2px solid var(--danger);
    color: var(--danger);
    padding: 12px 20px;
    border-radius: 50px;
    text-align: center;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.countdown-item {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    padding: 16px 12px;
    min-width: 80px;
    text-align: center;
}

.countdown-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    line-height: 1;
}

.countdown-label {
    display: block;
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-sep {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
}

.pricing-box h2 {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 32px;
}

.price-display {
    text-align: center;
    margin-bottom: 32px;
}

.old-price {
    position: relative;
    display: inline-block;
    margin-bottom: 12px;
}

.old-price span {
    font-size: 24px;
    color: var(--text-light);
    font-weight: 700;
}

.strike {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--danger);
    transform: rotate(-10deg);
}

.new-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
}

.currency {
    font-size: 36px;
    font-weight: 900;
    color: var(--primary);
}

.amount {
    font-size: 64px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.badge {
    background: var(--danger);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    display: inline-block;
}

.value-points {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 24px;
}

.value-points h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
}

.value-points ul {
    list-style: none;
    padding: 0;
}

.value-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 600;
    color: var(--text-body);
}

.value-points i {
    color: var(--primary);
    font-size: 20px;
}

.reality-box {
    background: var(--bg-orange-light);
    border-left: 4px solid var(--secondary);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.reality-box h4 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.reality-box p {
    margin: 8px 0;
    color: var(--text-body);
    font-size: 15px;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-green-light);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}

.guarantee i {
    font-size: 40px;
    color: var(--primary);
    flex-shrink: 0;
}

.guarantee strong {
    display: block;
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 4px;
}

.guarantee p {
    font-size: 14px;
    color: var(--text-body);
    margin: 0;
}

.scarcity-alerts {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.alert-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fef3c7;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.alert-item i {
    color: var(--accent);
    font-size: 18px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.faq-question i {
    color: var(--primary);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-question h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.faq-answer p {
    color: var(--text-body);
    line-height: 1.7;
    margin: 0;
    padding-left: 36px;
}

/* ===================================
   FINAL CTA
   =================================== */
.final-cta {
    padding: 60px 0;
    background: var(--bg-light);
}

.final-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 40px 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.final-box h2 {
    font-size: clamp(24px, 6vw, 32px);
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.final-box p {
    font-size: 18px;
    color: var(--text-body);
    margin-bottom: 16px;
}

.final-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin: 32px 0;
}

.stat strong {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
}

.stat span {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.final-warning {
    margin-top: 24px;
    color: var(--danger);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer-brand i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 12px;
}

.footer-brand h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 14px;
}

.footer-links h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-links p {
    color: #94a3b8;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links i {
    color: var(--primary);
}

.footer-links a {
    color: var(--primary);
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 20px;
    text-align: center;
    color: #94a3b8;
    font-size: 13px;
}

.footer-bottom p {
    margin: 8px 0;
}

/* ===================================
   MODAL
   =================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: calc(100% - 32px);
    max-height: calc(100vh - 32px);
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-dark);
    z-index: 1;
    transition: all 0.3s;
}

.modal-close:hover {
    background: var(--danger);
    color: white;
}

.modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 40px 24px 32px;
    border-radius: 20px 20px 0 0;
    text-align: center;
}

.modal-header i {
    font-size: 48px;
    margin-bottom: 16px;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
}

.modal-header p {
    opacity: 0.9;
    font-size: 15px;
}

.modal-body {
    padding: 32px 24px;
}

.modal-price {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.modal-old {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.modal-new {
    font-size: 40px;
    font-weight: 900;
    color: var(--primary);
}

.modal-save {
    background: var(--danger);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group label i {
    color: var(--primary);
}

.form-group input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--bg-light);
    border-radius: 8px;
    font-size: 15px;
    font-family: var(--font);
    transition: all 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.1);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 16px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.3);
}

.modal-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--bg-light);
}

.modal-footer p {
    font-size: 13px;
    color: var(--text-light);
    margin: 6px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.modal-footer i {
    color: var(--primary);
}

/* ===================================
   LIVE NOTIFICATION
   =================================== */
.live-notification {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translate(-50%, -200px);
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 40px);
    width: auto;
    z-index: 9998;
    opacity: 0;
    transition: transform 0.5s ease-out, opacity 0.5s ease-out;
}

.live-notification.show {
    transform: translate(-50%, 0);
    opacity: 1;
}

/* Desktop: Show from left bottom */
@media (min-width: 768px) {
    .live-notification {
        max-width: 350px;
        left: 20px;
        top: auto;
        bottom: 100px;
        transform: translateX(-400px);
        background: rgba(255, 255, 255, 1);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .live-notification.show {
        transform: translateX(0);
    }
}

.live-notification i {
    font-size: 20px;
    color: var(--primary);
}

.notification-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===================================
   MOBILE OPTIMIZATIONS
   =================================== */
@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }

    .hero {
        padding: 80px 0 40px;
    }

    .cta-primary {
        font-size: 14px;
        padding: 16px 28px;
    }

    .countdown-item {
        min-width: 70px;
        padding: 12px 8px;
    }

    .countdown-number {
        font-size: 28px;
    }

    .amount {
        font-size: 48px;
    }

    .proof-bar {
        gap: 16px;
    }

    .money-section,
    .problem-section,
    .solution-section,
    .testimonials,
    .pricing-section,
    .faq-section,
    .final-cta {
        padding: 40px 0;
    }
}

/* Show modal */
.modal.active {
    display: block;
}
