:root {
    --bg-primary: #050505;
    --bg-secondary: #121212;
    --bg-tertiary: #1E1E1E;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-tertiary: #808080;
    --accent: #00E359;
    /* Bright Neon Green from reference */
    --accent-glow: rgba(0, 227, 89, 0.3);
    --font-heading: 'Poppins', 'Inter', sans-serif;
    --font-body: 'Inter', 'Roboto', sans-serif;
    --nav-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

p {
    font-weight: 400;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    width: 100%;
    max-width: 1100px;
    /* Slightly tighter container for the app-like feel */
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: var(--accent);
    font-weight: 700;
}

.text-white {
    color: #fff;
}

.text-secondary {
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    gap: 10px;
}

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    /* White text as per reference image */
    box-shadow: 0 4px 15px var(--accent-glow);
}

.btn-primary:hover {
    background-color: #00c74f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: #000;
}

.btn-icon-circle {
    width: 16px;
    height: 16px;
    border: 2px solid #000;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background-color: #050505;
    background-image: url('./background-hero.webp') !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.9) 0%,
            rgba(5, 5, 5, 0.95) 60%,
            rgba(5, 5, 5, 1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* New Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 30px rgba(0, 227, 89, 0.2);
    border: 1px solid rgba(0, 227, 89, 0.1);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Hero Text */
.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    max-width: 900px;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 700px;
    font-weight: 400;
}

/* Feature Pills (Stack) */
.hero-features-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.08);
    /* Transparent / Glassy */
    backdrop-filter: blur(10px);
    border-radius: 50px;
    /* Full pill shape */
    padding: 12px 24px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
    text-align: left;
    transition: transform 0.2s ease, background 0.2s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-pill:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.12);
}

.check-icon {
    color: var(--accent);
    font-size: 1.1rem;
    min-width: 20px;
}

.btn-hero-cta {
    width: 100%;
    max-width: 500px;
    padding: 18px;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.hero-support {
    font-size: 0.9rem;
    color: var(--text-tertiary);
    opacity: 0.8;
}

.hero-platforms-img {
    width: 100% !important;
    max-width: 650px !important;
    height: auto !important;
    display: block;
    margin: 0 auto 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    object-fit: contain;
}

/* Section Padding */
.section-padding {
    padding: 80px 0;
}

/* Pricing Section */
.pricing {
    background-color: #050505;
}

.pricing-card-wrapper {
    position: relative;
    max-width: 420px;
    margin: 40px auto 0;
}

.badge-popular {
    background-color: rgba(0, 227, 89, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-bottom: 2rem;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card {
    background-color: #0F1014;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 32px;
    padding: 3rem 2.5rem;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 227, 89, 0.3);
}

.price {
    font-size: 4rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin: 1.5rem 0 2rem;
    letter-spacing: -2px;
}

.price span {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 400;
    letter-spacing: normal;
}

.pricing-features {
    text-align: left;
    margin: 2rem 0;
    border: none;
    padding: 0;
}

.pricing-features li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
}

.check-icon-svg {
    min-width: 20px;
}

/* Why Choose Section */
.why-choose {
    background-color: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background-color: var(--bg-secondary);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent);
    transform: translateY(-5px);
}


.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(0, 227, 89, 0.1);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(0, 227, 89, 0.2);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}


.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1.25rem;
}

/* Testimonials */
.testimonials {
    background-color: var(--bg-secondary);
}

.testimonial-card {
    background-color: var(--bg-tertiary);
    padding: 2rem;
    border-radius: 16px;
}

.stars {
    color: #FFD700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.quote {
    font-style: italic;
    font-size: 1rem;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    display: block;
    line-height: 1.6;
}

.client-name {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Final CTA */
.final-cta {
    background-color: #050505;
    background-image: radial-gradient(circle at center, rgba(0, 227, 89, 0.08) 0%, rgba(5, 5, 5, 1) 70%);
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 60px 20px;
}

.cta-badge {
    background: rgba(0, 20, 5, 0.8);
    color: var(--accent);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    margin-bottom: 30px;
    border: 1px solid rgba(0, 227, 89, 0.2);
    box-shadow: 0 0 30px rgba(0, 227, 89, 0.15);
}

.final-cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
}

/* Footer */
footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid #1A1A1A;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.footer-links a {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    color: var(--text-tertiary);
    font-size: 0.85rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        background-size: 180%;
        background-repeat: no-repeat;
        background-position: center 8%;
        /* Detached slightly from top */
        min-height: 100vh;
        align-items: center;
        /* Center content vertically */
        padding-bottom: 40px;
    }

    .hero-overlay {
        background: linear-gradient(to bottom,
                rgba(5, 5, 5, 0.75) 0%,
                rgba(5, 5, 5, 0.92) 50%,
                rgba(5, 5, 5, 1) 100%);
    }

    .hero-features-stack {
        width: 100%;
    }

    .pricing-card {
        padding: 2rem 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 350px;
    }
}

/* WhatsApp Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    /* Slightly darker backdrop */
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    /* Higher than everything */
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
    /* Blur effect */
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.whatsapp-modal {
    background: #fff;
    width: 90%;
    max-width: 320px;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .whatsapp-modal {
    transform: scale(1);
}

.close-modal-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
    line-height: 1;
    background: none;
    border: none;
    padding: 5px;
}

.wa-profile-pic {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid #00E359;
    padding: 2px;
    background: #fff;
    display: block;
}

.wa-name {
    color: #000;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.wa-status {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 25px;
}

.btn-wa-continue {
    background-color: #00E359;
    color: #fff;
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 227, 89, 0.3);
    transition: transform 0.2s, background-color 0.2s;
}

.btn-wa-continue:hover {
    transform: translateY(-2px);
    background-color: #00c74f;
    box-shadow: 0 6px 20px rgba(0, 227, 89, 0.4);
}