:root {
    --primary: #a3e635;
    --primary-glow: rgba(163, 230, 53, 0.5);
    --bg-dark: #09090b;
    --bg-card: rgba(24, 24, 27, 0.6);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-stack);
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

.glow-text {
    text-shadow: 0 0 20px var(--primary-glow);
}

.glow-box {
    box-shadow: 0 0 20px rgba(163, 230, 53, 0.2);
}

/* Navbar */
/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
}

.logo {
    height: clamp(8rem, 20vw, 15rem);
    width: auto;
    flex-shrink: 0;
}


.nav-buttons {
    display: flex;
    gap: 1rem;
    margin-left: auto;
}

/* Trust Badges in Hero */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    animation: fadeIn 1s ease-out 0.5s both;
}

.badge-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: #cbd5e1;
    font-size: 0.85rem;
    /* Increased for desktop */
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.badge-pill i {
    font-size: 0.9rem;
}

.badge-pill .fa-whatsapp {
    color: #25d366;
}

.badge-pill .fa-meta {
    color: #0668E1;
}

.badge-pill:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* WhatsApp Float */

.btn {
    display: inline-block;
    /* Ensure vertical margins and transforms work correctly */
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-primary {
    background: linear-gradient(135deg,
            var(--primary),
            #84cc16);

    color: #000;
    border: none;

    box-shadow:
        0 0 20px rgba(163, 230, 53, 0.4);

    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow:
        0 0 35px rgba(163, 230, 53, 0.6);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    background: radial-gradient(ellipse at top, rgba(163, 230, 53, 0.05), transparent 50%);
}

.hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.highlight-whatsapp {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(163, 230, 53, 0.4);
    font-weight: 900;
}

.no-install-badge {
    display: inline-block;
    margin: 1.5rem 0 1.5rem 0;
    padding: 0.8rem 1.8rem;

    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;

    border-radius: 12px;

    background: linear-gradient(90deg,
            rgba(163, 230, 53, 0.25),
            rgba(163, 230, 53, 0.08));

    border: 1px solid rgba(163, 230, 53, 0.4);

    color: var(--primary);

    box-shadow:
        0 0 20px rgba(163, 230, 53, 0.25);

    animation: pulseBadge 2.5s ease-in-out infinite;
}

@keyframes pulseBadge {
    0% {
        box-shadow: 0 0 10px rgba(163, 230, 53, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(163, 230, 53, 0.4);
    }

    100% {
        box-shadow: 0 0 10px rgba(163, 230, 53, 0.2);
    }
}


.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    animation: fadeIn 1s ease-out;
    display: flex;
    align-items: center;
    gap: 3rem;
    text-align: left;
}

@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
        padding-top: 2rem;
    }

    .hero-subtitle {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
    }
}

.hero-text {
    flex: 1;
}

.hero-img-container {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-phone-img {
    max-width: 100%;
    height: auto;
    max-height: 80vh;
    transform: rotate(3deg);
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s ease;
}

.hero-phone-img:hover {
    transform: rotate(0deg) scale(1.02);
}



.hero-subtitle {
    font-size: 1.15rem;
    color: #d4d4d8;
    margin-bottom: 2rem;
    max-width: 550px;
    line-height: 1.7;
}


.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Trust Badges Section */
.trust-badges {
    padding: 2rem 2rem 1.5rem;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}




/* Features */
.features {
    padding: 3rem 2rem;
    background: #000;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.icon-box {
    width: 3rem;
    height: 3rem;
    background: rgba(163, 230, 53, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.feature-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works {
    padding: 3rem 2rem;
    position: relative;
    background: var(--bg-dark);
}


.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 1rem 0;
}

/* Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    z-index: 1;
}

@media (max-width: 640px) {
    .timeline::before {
        left: 1.5rem;
    }
}

.step {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number-box {
    flex-shrink: 0;
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
    .step-number-box {
        width: 3rem;
        height: 3rem;
        font-size: 1.2rem;
    }

    .step {
        gap: 1rem;
    }
}

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.step-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: white;
}

.step-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Infinite Marquee Section */
.marquee-section {
    padding: 4rem 0;
    background: #000;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 2rem;
    animation: scroll 40s linear infinite;
    padding: 2rem 0;
}

.marquee-card {
    flex-shrink: 0;
    width: 480px;
    height: 420px;
    background: linear-gradient(135deg, #0f4c81 0%, #00a884 100%);
    border-radius: 2.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    text-align: center;
    width: 100%;
    line-height: 1.1;
}

.whatsapp-mockup {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.message {
    max-width: 90%;
    padding: 0.8rem 1.25rem;
    border-radius: 1.25rem;
    font-size: 0.95rem;
    line-height: 1.4;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.message.user {
    align-self: flex-end;
    background: #005c4b;
    color: #fff;
    border-bottom-right-radius: 0.25rem;
}

.message.bot {
    align-self: flex-start;
    background: #fff;
    color: #0f172a;
    border-bottom-left-radius: 0.25rem;
}

.bot-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.75rem;
    background: #e2e8f0;
    border-radius: 20px;
    width: fit-content;
}

.bot-header img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.bot-header span {
    font-size: 0.7rem;
    font-weight: 800;
    color: #6366f1;
    letter-spacing: 0.5px;
}

.message p {
    margin: 0;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Pause on hover for better user experience */
.marquee-container:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-card {
        width: 300px;
        height: 620px;
        padding: 1.5rem 1rem 3rem 1rem;
        border-radius: 2rem;
        gap: 0.25rem;
    }

    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }

    .whatsapp-mockup {
        gap: 0.5rem;
    }

    .message {
        font-size: 0.75rem;
        line-height: 1.35;
        padding: 0.5rem 0.75rem;
    }

    .bot-header {
        padding: 0.1rem 0.4rem;
        margin-bottom: 0.15rem;
        font-size: 0.6rem;
    }

    .bot-header img {
        width: 0.8rem;
        height: 0.8rem;
    }

    .bot-header span {
        font-size: 0.6rem;
    }
}


/* Dashboard Preview Section */
.preview-section {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(to bottom, #000, #0c0c0e);
}

.preview-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.preview-img {
    width: 100%;
    height: auto;
    display: block;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background-image: url('assets/hero-bg.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.cta-content {
    position: relative;
    z-index: 10;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    background: #000;
    width: 100%;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(163, 230, 53, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(163, 230, 53, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question i {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

.cta-section .btn {
    margin-bottom: 2rem;
    /* Reduced to balance spacing */
}

.cta-subtext {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 1.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.cta-badge i {
    color: white;
    font-size: 1rem;
}

.cta-content .section-title {
    margin-left: auto;
    margin-right: auto;
}

.cta-content .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

.cta-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Footer */
footer {
    padding: 2rem;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: var(--text-muted);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulseWhatsApp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        height: 5rem;
        padding: 0 1.5rem;
    }

    .logo {
        height: 7rem;
    }

    .nav-buttons .btn-ghost {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-phone-img {
        max-height: 45vh;
        transform: rotate(0deg);
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .marquee-card {
        width: 320px;
        height: 250px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-btns .btn {
        width: 100%;
        text-align: center;
    }

    .no-install-badge {
        font-size: 1.1rem;
        padding: 0.6rem 1rem;
        line-height: 1.3;
    }

    .hero-title {
        font-size: 1.8rem;
    }
}