:root {
    --bg-black: #080808;
    --bg-dark-gray: #111111;
    --color-lime: #C6E46B;
    --color-white: #FFFFFF;
    --text-soft: #BDBDBD;
    --color-red: #FF2D55;
    
    --font-main: 'Poppins', sans-serif;
    --glow-lime: 0 0 20px rgba(198, 228, 107, 0.4), 0 0 40px rgba(198, 228, 107, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    padding-bottom: 90px; /* for sticky cta */
}

/* Background Grid Overlay */
.bg-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
    pointer-events: none;
}

/* Glowing Lines */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(198, 228, 107, 0.05) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* Typography & Utilities */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

.text-center { text-align: center; }
.text-lime { color: var(--color-lime); }
.bg-dark-gray { background-color: var(--bg-dark-gray); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); }

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

.section-padding {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .section-padding { padding: 80px 0; }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
}

/* Top Notification Bar */
.top-bar {
    background-color: var(--color-lime);
    color: var(--bg-black);
    text-align: center;
    padding: 10px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

/* Brand Logo */
.brand-logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-lime);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-logo span {
    font-weight: 400;
    color: var(--color-white);
    font-size: 1.1rem;
    text-transform: none;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 100px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.highlight-lime {
    background-color: var(--color-lime);
    color: var(--bg-black);
    padding: 0 10px;
    display: inline-block;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-soft);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Authority Card */
.authority-card {
    display: flex;
    align-items: center;
    background: rgba(17, 17, 17, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(198, 228, 107, 0.2);
    border-radius: 16px;
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.authority-img-wrapper {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    border: 2px solid var(--color-lime);
}

.authority-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.authority-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--color-white);
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(198, 228, 107, 0.1);
    color: var(--color-lime);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Buttons */
.hero-cta { text-align: center; }

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--color-lime);
    color: var(--bg-black);
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--glow-lime);
}

.pulse-glow {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(198, 228, 107, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(198, 228, 107, 0); }
    100% { box-shadow: 0 0 0 0 rgba(198, 228, 107, 0); }
}

.secure-text {
    margin-top: 15px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

/* Agitation Section */
.agitation-points h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Self Diagnosis */
.diagnosis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.diag-card {
    background: var(--color-white);
    color: var(--bg-black);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.warning-icon {
    font-size: 2.5rem;
    color: var(--color-red);
    margin-bottom: 15px;
}

.diag-card p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Reframe Section */
.reframe-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.red-emphasis-box {
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 800;
    padding: 20px;
    margin: 30px auto;
    border-radius: 8px;
    display: inline-block;
}

.reframe-subtitle {
    font-size: 1.5rem;
    color: var(--text-soft);
    font-style: italic;
}

/* Lie vs Truth */
.vs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.vs-card {
    background: var(--bg-black);
    padding: 40px;
    border-radius: 16px;
}

.card-lie { border: 2px solid var(--color-red); }
.card-truth { border: 2px solid var(--color-lime); }

.card-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.card-lie .card-title { color: var(--color-red); }
.card-truth .card-title { color: var(--color-lime); }

.vs-list { list-style: none; }
.vs-list li {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.card-lie .vs-list i { color: var(--color-red); margin-top: 5px; }
.card-truth .vs-list i { margin-top: 5px; }

/* 4 Gaps */
.gaps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.gap-card {
    background: var(--bg-dark-gray);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: transform 0.3s, border-color 0.3s;
}

.gap-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-lime);
}

.gap-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(198, 228, 107, 0.2);
    line-height: 1;
    margin-bottom: 10px;
}

.gap-title {
    color: var(--color-lime);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.gap-card p { color: var(--text-soft); }

/* Future State */
.future-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.future-left { flex: 1; }
.future-right { flex: 1; }

.future-list { list-style: none; }
.future-list li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
}

.future-list i { color: var(--color-lime); font-size: 1.5rem; }

.mockup-container {
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.mockup-img-placeholder {
    background: var(--bg-black);
    height: 300px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-lime);
    border: 1px dashed rgba(198, 228, 107, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(198, 228, 107, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 42px;
    height: 42px;
    background: var(--bg-black);
    border: 2px solid var(--color-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--color-lime);
}

.timeline-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.timeline-content p { color: var(--text-soft); }

/* Checklist */
.checklist-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-black);
    border: 1px solid var(--color-lime);
    border-radius: 16px;
    padding: 50px;
    box-shadow: var(--glow-lime);
}

.checklist-items { list-style: none; }
.checklist-items li {
    font-size: 1.2rem;
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: center;
}

.checklist-items i { color: var(--color-lime); }

/* Social Proof */
.counters-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.counter {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-lime);
    line-height: 1;
}

.counter-item p {
    font-size: 1.1rem;
    color: var(--text-soft);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Carousel */
.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 150px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.testimonial-text {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--color-lime);
    font-weight: 600;
}

/* FAQ */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: var(--bg-dark-gray);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-soft);
}

.accordion-content.active {
    padding: 20px;
    max-height: 200px;
}

/* Calendly */
.calendly-placeholder {
    background: var(--bg-black);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 50px 20px;
    max-width: 600px;
    margin: 0 auto;
}

/* Final CTA */
.final-headline {
    font-size: 2.5rem;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Sticky CTA */
.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.9);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(198, 228, 107, 0.3);
    padding: 15px 24px;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    justify-content: center;
}

.sticky-cta-bar.visible {
    transform: translateY(0);
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
}

.sticky-text strong {
    font-size: 1.1rem;
    display: block;
}

.sticky-text p {
    font-size: 0.85rem;
    color: var(--text-soft);
    margin: 0;
}

.sticky-btn {
    padding: 12px 24px;
    font-size: 1rem;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 998;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Exit Popup */
.exit-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.exit-popup-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.exit-popup-content {
    background: var(--bg-dark-gray);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    border: 2px solid var(--color-red);
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-soft);
}

/* Animations */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal-fade-up.active { opacity: 1; transform: translateY(0); }

.reveal-fade-right { opacity: 0; transform: translateX(-40px); transition: all 0.8s ease; }
.reveal-fade-right.active { opacity: 1; transform: translateX(0); }

.reveal-fade-left { opacity: 0; transform: translateX(40px); transition: all 0.8s ease; }
.reveal-fade-left.active { opacity: 1; transform: translateX(0); }

/* Social Links from previous layout */
.social-links { display: flex; gap: 15px; }
.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border-radius: 50%;
    background: var(--bg-dark-gray); color: var(--color-lime);
    font-size: 1.3rem; text-decoration: none; transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--color-lime); color: var(--bg-black);
    transform: translateY(-3px); box-shadow: var(--glow-lime);
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .hero-title { font-size: 2.5rem; }
    .vs-grid, .future-content { grid-template-columns: 1fr; flex-direction: column; }
    .red-emphasis-box { font-size: 1.8rem; }
    .counters-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .sticky-content { flex-direction: column; gap: 10px; text-align: center; }
    .sticky-btn { width: 100%; }
    .checklist-card { padding: 30px 20px; }
    .agitation-points h3 { font-size: 1.5rem; }
}
@media (max-width: 768px) {
    .cta-btn {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        font-size: 1.1rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
}
