/* --- Lead Gen Hero --- */
.leads-hero-universe {
    height: 100vh;
    background: #050505;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center; justify-content: center;
}

/* Radar Sweep Animation */
.radar-container {
    position: absolute;
    width: 500px; height: 500px;
    border-radius: 50%;
    z-index: 1;
}

.radar-sweep {
    position: absolute;
    width: 50%; height: 50%;
     background: linear-gradient(55deg, rgba(160, 32, 240, 0.6) 0%, transparent 50%);
    top: 0; left: 50%;
    transform-origin: bottom left;
    animation: sweep 4s linear infinite;
    z-index: 2;
}

@keyframes sweep {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-rings span {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border: 10px solid rgba(161, 24, 247, 0.15);
    border-radius: 50%;
}

.radar-rings span:nth-child(1) { width: 100%; height: 100%; }
.radar-rings span:nth-child(2) { width: 66%; height: 66%; }
.radar-rings span:nth-child(3) { width: 33%; height: 33%; }

.target-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 1.5rem;
    text-shadow: 0 0 20px var(--accent-purple);
    z-index: 3;
}

/* --- Content Styling --- */
.leads-content { text-align: center; z-index: 10; }

.intel-tag {
    font-family: 'Space Mono', monospace;
    font-size: 0.8rem;
    color: var(--accent-purple);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.blink { animation: blinker 1s linear infinite; color: #ff0000; }
@keyframes blinker { 50% { opacity: 0; } }

.leads-title {
    font-family: 'Audiowide', cursive;
    font-size: 5rem;
    color: white;
}

.leads-lead {
    max-width: 650px;
    margin: 25px auto;
    font-family: 'Space Mono', monospace;
    color: #888;
    line-height: 1.8;
}

.leads-stats-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item { font-family: 'Space Mono', monospace; }
.stat-item strong { display: block; font-size: 1.5rem; color: #fff; }
.stat-item span { font-size: 0.7rem; color: var(--accent-purple); text-transform: uppercase; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .leads-title { font-size: 3.5rem; }
    .radar-container { width: 350px; height: 350px; }
}

@media (max-width: 768px) {
    .leads-title { font-size: 2.5rem; }
    .leads-stats-row { flex-direction: column; gap: 20px; }
    .radar-container { display: none; } /* Hide heavy animation for mobile performance */
    .leads-hero-universe { height: auto; padding: 120px 0; }
}
/* --- Mobile Radar Visibility Fix --- */
@media (max-width: 768px) {
    /* 1. Ensure the container shows up */
    .radar-container {
        display: block !important;
        width: 280px !important; /* Smaller for mobile */
        height: 280px !important;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 1; /* Lowered so text stays readable */
        z-index: 1;
    }

    /* 2. Adjust the Sweep for the smaller size */
    .radar-sweep {
        background: linear-gradient(55deg, rgba(160, 32, 240, 0.6) 0%, transparent 50%);
    }

    /* 3. Ensure the content sits on top clearly */
    .leads-content {
        position: relative;
        z-index: 10;
        padding-top: 20px;
    }

    /* 4. Make sure the Hero height fits the animation */
    .leads-hero-universe {
        min-height: 100vh;
        display: flex;
        align-items: center;
    }
    
    .leads-title {
        font-size: 2.8rem !important;
        line-height: 1.2;
    }
}

/* Extra small screens (iPhone SE, etc) */
@media (max-width: 400px) {
    .radar-container {
        width: 220px !important;
        height: 220px !important;
    }
    .leads-title {
        font-size: 2.2rem !important;
    }
}
/* --- Lead Sources (White Theme) --- */
.lead-sources-section {
    padding: 120px 0;
    background-color: #ffffff; /* 70% White */
}

.sources-title {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: #111; /* 25% Black */
    margin-bottom: 20px;
}

.sources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 70px;
}

.source-card {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.source-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-purple);
    box-shadow: 0 20px 40px rgba(160, 32, 240, 0.05);
}

.source-icon {
    font-size: 2.5rem;
    color: #111; /* 25% Black */
    margin-bottom: 20px;
    transition: 0.3s;
}

.source-card:hover .source-icon {
    color: var(--accent-purple); /* 5% Purple on hover */
    transform: scale(1.1);
}

.source-card h3 {
    font-family: 'Audiowide', cursive;
    font-size: 1.2rem;
    color: #111;
    margin-bottom: 15px;
}

.source-card p {
    font-family: 'Space Mono', monospace;
    color: #666;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.source-tag {
    display: inline-block;
    font-family: 'Space Mono', monospace;
    font-size: 0.65rem;
    padding: 5px 12px;
    background: #f0f0f0;
    border-radius: 4px;
    color: #999;
}

/* --- RESPONSIVE --- */
@media (max-width: 1200px) {
    .sources-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .sources-grid { grid-template-columns: 1fr; }
    .sources-title { font-size: 2.2rem; }
}
/* --- Prosperity Filter (Black Theme) --- */
.leads-filter-section {
    padding: 140px 0;
    background: #050505;
    position: relative;
    overflow: hidden;
}

.filter-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(160, 32, 240, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.filter-title {
    font-family: 'Audiowide', cursive;
    font-size: 3.5rem;
    color: #fff;
    z-index: 5;
    position: relative;
}

.filter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 5;
}

.filter-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 50px 30px;
    border-radius: 2px; /* Sharp, professional edges */
    transition: 0.4s;
    position: relative;
}

.filter-card:hover {
    background: rgba(160, 32, 240, 0.03);
    border-color: var(--accent-purple);
    transform: translateY(-10px);
}

.filter-icon {
    font-size: 2.5rem;
    color: var(--accent-purple);
    margin-bottom: 25px;
    filter: drop-shadow(0 0 10px rgba(160, 32, 240, 0.5));
}

.filter-card h3 {
    font-family: 'Audiowide', cursive;
    color: #fff;
    margin-bottom: 20px;
}

.filter-card p {
    font-family: 'Space Mono', monospace;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-family: 'Space Mono', monospace;
    color: #fff;
    font-size: 0.75rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.check-list i { color: var(--accent-purple); font-size: 0.7rem; }
/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .filter-grid { grid-template-columns: 1fr; }
    .filter-title { font-size: 2.5rem; }
    .leads-cta-box { padding: 40px 20px; }
}
/* CTA - Section */
.leads-cta-section {
    padding: 100px 0 150px;
    background-color: #0a0a0a;
    display: flex;
    justify-content: center;
}

.cta-terminal {
    background: #f1e5e5;
    border: 1px solid rgba(160, 32, 240, 0.3);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8);
}

.terminal-header {
    background: rgba(86, 88, 88, 0.1);
    padding: 12px 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid rgba(160, 32, 240, 0.2);
}

.terminal-header .dots {
    display: flex;
    gap: 8px;
}

.terminal-header .dots span {
    width: 10px; height: 10px; border-radius: 50%; background: rgba(243, 8, 8, 0.2);
}

.terminal-title {
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    color: var(--accent-purple);
    letter-spacing: 2px;
}

.cta-content {
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Live Status Pulse */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(40, 167, 69, 0.1);
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.pulse {
    width: 8px; height: 8px;
    background: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
}

.status-text {
    color: #28a745;
    font-family: 'Space Mono', monospace;
    font-size: 0.75rem;
    font-weight: bold;
}

.cta-title {
    font-family: 'Audiowide', cursive;
    font-size: 3rem;
    color: rgb(8, 8, 8);
    margin-bottom: 20px;
}

.cta-desc {
    font-family: 'Space Mono', monospace;
    color: #0f0f0f;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Calendly Button */
.calendly-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: black;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Audiowide', cursive;
    font-size: 1.1rem;
    transition: 0.4s;
    border: 2px solid white;
}

.calendly-btn:hover {
    background: transparent;
    color: rgb(17, 17, 17);
    border-color: var(--accent-purple);
    box-shadow: 0 0 30px rgba(160, 32, 240, 0.5);
    transform: translateY(-5px);
}

.btn-icon { margin-left: 15px; color: var(--accent-purple); }

.timezone-note {
    margin-top: 20px;
    font-family: 'Space Mono', monospace;
    font-size: 0.7rem;
    color: #555;
}

/* Decorative Background Glow */
.cta-glow-bg {
    position: absolute;
    bottom: -50%; left: 50%;
    transform: translateX(-50%);
    width: 300px; height: 300px;
    background: var(--accent-purple);
    filter: blur(120px);
    opacity: 0.2;
    z-index: 1;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cta-title { font-size: 2rem; }
    .cta-content { padding: 40px 20px; }
}