/* 🌌 GLOBAL RESET & BASICS */
:root {
    --bg-dark: #050511;
    --bg-panel: #0f1025;
    --primary: #6366f1;
    /* Indigo */
    --accent: #10b981;
    /* Emerald/Neon Green */
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --glow-color: rgba(99, 102, 241, 0.5);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ✨ UTILITIES */
.gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #6366f1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.badge-premium {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: glowPulse 2s infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0);
    }
}

/* 🌌 HEADER (Glassmorphism) */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(5, 5, 17, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.desktop-nav a:hover {
    color: #fff;
}

.cta-button-small {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.cta-button-small:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* 🚀 HERO SECTION */
.hero-section {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--glow-color) 0%, transparent 70%);
    opacity: 0.4;
    z-index: -1;
    filter: blur(80px);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.cta-button-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 30px -10px var(--glow-color);
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px var(--primary);
}

.cta-button-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-button-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hero-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2rem;
    color: var(--accent);
}

.stat-item span {
    font-size: 0.9rem;
    line-height: 1.3;
    color: var(--text-muted);
}

.stat-item strong {
    color: #fff;
    display: block;
    font-size: 1.1rem;
}

/* 📱 PHONE MOCKUP */
.phone-mockup {
    background: #000;
    border-radius: 40px;
    border: 8px solid #333;
    padding: 20px;
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    background-image: linear-gradient(to bottom, #111, #050511);
}

.chat-bubble {
    background: #202c33;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    width: fit-content;
    max-width: 85%;
    color: #e9edef;
    position: relative;
    animation: popIn 0.5s ease-out forwards;
    opacity: 0;
}

.chat-bubble.right {
    background: #005c4b;
    margin-left: auto;
    border-bottom-right-radius: 0;
}

.chat-bubble.left {
    border-top-left-radius: 0;
}

.chat-bubble:nth-child(1) {
    animation-delay: 0.2s;
}

.chat-bubble:nth-child(2) {
    animation-delay: 1.0s;
}

.chat-bubble:nth-child(3) {
    animation-delay: 2.5s;
}

.chat-bubble:nth-child(4) {
    animation-delay: 3.5s;
}

.chat-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 5px;
    display: block;
}

.caption {
    font-size: 0.85rem;
    color: #e9edef;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: #000;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes popIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* 🔄 FUNNEL SECTION */
.funnel-section {
    padding: 100px 0;
    text-align: center;
    background: #0a0b1a;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.funnel-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.funnel-step {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    padding: 20px 40px;
    border-radius: 16px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: 0.3s;
}

.funnel-step:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.funnel-step.highlight {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary);
}

.funnel-step.finale {
    background: rgba(16, 185, 129, 0.1);
    border-color: var(--accent);
}

.step-icon {
    font-size: 1.8rem;
    color: var(--text-muted);
}

.highlight .step-icon {
    color: var(--primary);
}

.finale .step-icon {
    color: var(--accent);
}

.arrow-down {
    color: var(--text-muted);
    opacity: 0.5;
    font-size: 1.5rem;
}

/* 🧠 SCRIPTS GRID */
.scripts-section {
    padding: 100px 0;
}

.scripts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.script-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
}

.script-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-header {
    padding: 20px;
    font-weight: 700;
    border-bottom: 1px solid var(--glass-border);
}

.card-body {
    padding: 30px;
}

.card-body p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-style: italic;
    color: #fff;
}

.card-body .note {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ⚡ FEATURES GRID */
.features-section {
    padding: 100px 0;
    background: #0b0c1e;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px -10px rgba(99, 102, 241, 0.2);
}

.feature-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    transition: 0.5s;
}

.feature-card:hover img {
    transform: scale(1.05);
}

.feature-content {
    padding: 30px;
    position: relative;
    z-index: 2;
    background: var(--bg-panel);
    /* Cover zoomed image overflow if any */
}

.feature-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #fff;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card img {
        height: 200px;
    }
}

/* 💲 PRICING */
.pricing-section {
    padding: 100px 0;
    background: #080816;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--bg-panel);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.price-card.popular {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.05);
    transform: scale(1.05);
    z-index: 2;
}

.pop-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.price-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--text-muted);
}

.features li i {
    color: var(--accent);
}

.cta-plan {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: transparent;
    color: #fff;
    font-weight: 700;
    margin-top: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.cta-plan.primary {
    background: var(--primary);
    border: none;
    box-shadow: 0 10px 20px -5px rgba(99, 102, 241, 0.5);
}

.cta-plan:hover {
    transform: translateY(-2px);
}

.setup-fee {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ❓ FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.faq-item h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: var(--text-muted);
}

/* 🌊 FOOTER */
footer {
    padding: 80px 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.brand h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.brand p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.socials {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    font-size: 1.5rem;
}

.copy {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
    .header-content {
        justify-content: space-between;
    }

    .desktop-nav {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .scripts-grid,
    .pricing-cards,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .price-card.popular {
        transform: scale(1);
    }
}