:root {
    --primary: #a3e635;
    /* Bright LIVESTREAM lime */
    --primary-glow: rgba(163, 230, 53, 0.2);
    --bg-dark: #0f0c29;
    /* Deep navy from the new hero */
    --bg-card: #1e1b4b;
    /* Solid deep indigo for cards */
    --border-subtle: rgba(255, 255, 255, 0.1);
    --text-main: #ffffff;
    --text-muted: #cbd5e1;
    --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: 0.5rem;
    margin-left: auto;
    align-items: center;
}

/* 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: var(--primary);
    color: #0f0c29;
    /* Dark text for contrast */
    border: none;
    box-shadow: 0 4px 14px rgba(163, 230, 53, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 800;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(163, 230, 53, 0.6);
}


/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    /* Mesh Gradient Base */
    background: #0f0c29;
    /* Fallback deep navy */
    background-image:
        radial-gradient(at 100% 0%, #2563eb 0px, transparent 50%),
        radial-gradient(at 0% 100%, #6d28d9 0px, transparent 50%),
        radial-gradient(at 100% 100%, #a3e635 0px, transparent 50%);
}

/* Ambient radial glow - top left */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.1) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* Ambient radial glow - bottom right */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-title {
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 800;
    /* Extra bold */
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 2rem;
    color: #ffffff;
}

.hero-label {
    display: inline-block;
    color: #a3e635;
    /* Bright lime green like LIVESTREAM */
    font-weight: 800;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.highlight-whatsapp {
    color: var(--primary);
    text-shadow: 0 0 30px rgba(163, 230, 53, 0.4);
    font-weight: 900;
}

/* Removed the old no-install-badge animation that throbbed */


.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    width: 100%;
    animation: fadeIn 1s ease-out;
    display: flex;
    align-items: center;
    gap: 1rem;
    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.2;
    padding-right: 2rem;
}

.hero-img-container {
    flex: 1;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-phone-img {
    max-width: 100%;
    height: auto;
    max-height: 85vh;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
    transition: transform 0.4s ease;
}

.hero-phone-img:hover {
    transform: translateY(-10px);
}



.hero-subtitle {
    font-size: 1.25rem;
    color: #f1f5f9;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.6;
}


.hero-btns {
    display: flex;
    gap: 1rem;
}

/* Trust Badges Section */
/* Stats Banner Section */
.stats-banner {
    background: #0a081a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem 0;
    position: relative;
    z-index: 10;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.stat-item {
    flex: 1;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.25rem;
    line-height: 1;
}

.stat-highlight {
    color: rgba(255, 255, 255, 0.6);
}

.stat-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding-bottom: 1.5rem;
        width: 100%;
    }

    .stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

/* 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;
    overflow: hidden;
}

/* Ambient glow for features section disabled for clean look */
.features::before {
    display: none;
}

.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;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.feature-card {
    background: linear-gradient(145deg, rgba(30, 33, 75, 0.4) 0%, rgba(15, 12, 41, 0.2) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 10px 30px rgba(0, 0, 0, 0.5);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(163, 230, 53, 0.7),
            rgba(99, 102, 241, 0.5),
            transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-6px);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(99, 102, 241, 0.12);
}

.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, #2563eb, #6d28d9);
    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(37, 99, 235, 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(163, 230, 53, 0.15);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.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(145deg, rgba(50, 60, 120, 0.55) 0%, rgba(15, 12, 41, 0.2) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-radius: 2.5rem;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        inset 0 2px 3px rgba(255, 255, 255, 0.25),
        inset 0 -1px 3px rgba(255, 255, 255, 0.05),
        0 20px 40px rgba(0, 0, 0, 0.6);
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.marquee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(163, 230, 53, 0.7),
            rgba(99, 102, 241, 0.5),
            transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.marquee-card:hover::before {
    opacity: 1;
}

.marquee-card:hover {
    border-color: rgba(99, 102, 241, 0.35);
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 1px rgba(255, 255, 255, 0.08),
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 50px rgba(99, 102, 241, 0.12);
}

.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%);
    }
}

/* Removed pause on hover so it keeps moving as requested */

@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: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(74, 222, 128, 0.08) 0%, transparent 65%);
    filter: blur(80px);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 65%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 10;
}

/* Technologies Section */
.technologies-section {
    padding: 2rem 2rem;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.tech-title {
    color: #6b7280;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 2.5rem;
    letter-spacing: 0.5px;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3.5rem;
    margin-bottom: 2rem;
}

.tech-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #f8fafc;
    font-size: 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.tech-logo i {
    font-size: 1.8rem;
}

.tech-logo:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.tech-logo.google {
    color: #4285F4;
}

.tech-logo.microsoft {
    color: #00a4ef;
}

.tech-logo.openai {
    color: white;
}

.tech-logo.meta {
    color: #0668E1;
}

.tech-logo.supabase {
    color: #3ECF8E;
}

.tech-logo.supabase svg {
    color: #3ECF8E;
}

.tech-quote {
    font-size: 2.2rem;
    font-weight: 700;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.35;
    letter-spacing: -0.5px;
}

@media (max-width: 768px) {
    .tech-quote {
        font-size: 1.6rem;
    }

    .tech-logos {
        gap: 2rem;
    }

    .tech-logo {
        font-size: 1.25rem;
    }

    .tech-logo i {
        font-size: 1.5rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 2rem 2rem 6rem;
    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: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 1rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(74, 222, 128, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(74, 222, 128, 0.04);
}

.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: 3.5rem;
    }

    .nav-buttons .btn {
        padding: 0.4rem 0.7rem;
        font-size: 0.75rem;
    }

    .nav-buttons .btn-ghost {
        display: inline-block;
    }

    .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;
    }
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: -150px; /* Start hidden below */
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: bottom 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    justify-content: center;
    padding: 1rem;
    pointer-events: none; /* Let clicks pass through empty space */
}

.cookie-banner.show {
    bottom: 0;
}

.cookie-content {
    background: linear-gradient(145deg, rgba(30, 33, 75, 0.8) 0%, rgba(15, 12, 41, 0.95) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    max-width: 1000px;
    width: 100%;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    pointer-events: auto; /* Re-enable clicks inside the box */
}

.cookie-text {
    flex: 1;
}

.cookie-text h4 {
    color: var(--primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-shrink: 0;
}

.btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
        border-radius: 1rem;
    }
    
    .cookie-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}