@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --accent: #84cc16;
    --accent-hover: #65a30d;
    --accent-glow: rgba(132, 204, 22, 0.4);
    --bg-primary: #030712;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --text-muted: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-primary);
    color: #fff;
    overflow-x: hidden;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--accent), #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-hero {
    background: linear-gradient(135deg, #facc15, var(--accent), #22d3ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Navbar */
.glass-nav {
    background: rgba(3, 7, 18, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

/* Glow Button */
.btn-glow {
    background: var(--accent);
    color: #000;
    font-weight: 800;
    padding: 18px 40px;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px var(--accent-glow), 0 0 60px rgba(132, 204, 22, 0.15);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-glow:hover {
    background: var(--accent-hover);
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 50px var(--accent-glow), 0 0 100px rgba(132, 204, 22, 0.2);
}

.btn-glow:hover::before {
    opacity: 1;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 10px 22px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Glass Card */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.15), transparent 50%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: rgba(132, 204, 22, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Pricing Card Featured */
.pricing-featured {
    border-color: var(--accent);
    background: rgba(132, 204, 22, 0.04);
    box-shadow: 0 0 40px rgba(132, 204, 22, 0.08);
}

.pricing-featured .badge {
    background: var(--accent);
    color: #000;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Icon Container */
.icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(132, 204, 22, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
}

/* Hero Background Effects */
.hero-bg {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(132, 204, 22, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
    border-radius: 50%;
    pointer-events: none;
}

/* Grid Background */
.grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Step Number */
.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(132, 204, 22, 0.1);
    line-height: 1;
    margin-bottom: 8px;
}

/* FAQ Accordion */
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: rgba(132, 204, 22, 0.2);
}

.faq-item summary {
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item .faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Testimonial */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(132, 204, 22, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #22d3ee);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: #000;
}

/* Sections */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 64px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Check list */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.feature-list li svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* Pricing button */
.btn-plan {
    display: block;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
    margin-top: 28px;
}

.btn-plan:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.btn-plan-featured {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.btn-plan-featured:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 30px var(--accent-glow);
}

/* Footer */
footer {
    border-top: 1px solid var(--border-subtle);
    padding: 48px 0;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-wa {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 40px rgba(37, 211, 102, 0.6);
    }
}

/* Rocket Animation */
.rocket-container {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.rocket-icon {
    font-size: 6rem;
    animation: float 3s ease-in-out infinite;
    display: block;
    text-align: center;
    line-height: 280px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(-15deg);
    }

    50% {
        transform: translateY(-20px) rotate(-15deg);
    }
}

.rocket-trail {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 80px;
    background: linear-gradient(to bottom, var(--accent), transparent);
    border-radius: 4px;
    opacity: 0.5;
    animation: trail 1.5s ease-in-out infinite;
}

@keyframes trail {

    0%,
    100% {
        height: 80px;
        opacity: 0.5;
    }

    50% {
        height: 50px;
        opacity: 0.2;
    }
}

/* Utility (before media queries for correct cascade) */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-4 {
    margin-bottom: 32px;
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .hero-title {
        font-size: 2.5rem !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
    }

    .btn-glow {
        padding: 16px 28px;
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .grid-3 {
        grid-template-columns: 1fr !important;
    }

    .grid-2 {
        grid-template-columns: 1fr !important;
    }

    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
    }

    .rocket-container {
        width: 200px;
        height: 200px;
    }

    .rocket-icon {
        font-size: 4rem;
        line-height: 200px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .grid-3 {
        grid-template-columns: 1fr 1fr !important;
    }
}