/* 
 * ASVYBE 2026 AWARD-WINNING AGENCY DESIGN SYSTEM v25
 * Colors: Deep Near-Black (#0A0A0F), Electric Indigo/Violet (#6C4CFF), Soft White (#F5F5F7)
 */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&display=swap');

:root {
    --bg-dark: #0A0A0F;
    --bg-card: rgba(16, 17, 26, 0.88);
    --accent-violet: #6C4CFF;
    --accent-cyan: #00f2fe;
    --accent-pink: #ff007f;
    --accent-gold: #ffe066;
    --text-primary: #F5F5F7;
    --text-secondary: #a1a1aa;
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-violet: rgba(108, 76, 255, 0.45);
    --shadow-violet: 0 0 45px rgba(108, 76, 255, 0.35);
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(rgba(108, 76, 255, 0.12) 1px, transparent 0),
        radial-gradient(rgba(0, 242, 254, 0.06) 1px, transparent 0);
    background-size: 40px 40px, 80px 80px;
    background-position: 0 0, 20px 20px;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

.ambient-blur-1 {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 76, 255, 0.25) 0%, rgba(0, 242, 254, 0.15) 40%, transparent 70%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-panel:hover {
    border-color: var(--border-violet);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(108, 76, 255, 0.25);
    transform: translateY(-3px);
}

.text-gradient {
    background: linear-gradient(135deg, #00f2fe 0%, #6C4CFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-gold-gradient {
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #00f2fe 0%, #6C4CFF 100%);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-violet);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 50px rgba(108, 76, 255, 0.6);
    color: #fff;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 36px;
    background: linear-gradient(135deg, #ffe066 0%, #d4af37 100%);
    color: #000;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.7);
    color: #000;
}

.btn-check-website {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(108, 76, 255, 0.15) 0%, rgba(0, 242, 254, 0.15) 100%);
    border: 1.5px solid var(--accent-violet);
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(108, 76, 255, 0.2);
}

.btn-check-website:hover {
    background: linear-gradient(135deg, #00f2fe 0%, #6C4CFF 100%);
    color: #fff;
    box-shadow: 0 0 30px rgba(108, 76, 255, 0.5);
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: rgba(108, 76, 255, 0.12);
    border: 1px solid rgba(108, 76, 255, 0.4);
    border-radius: 30px;
    color: #a78bfa;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 20px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    color: #ffe066;
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
}

/* TRUST STRIP BELOW HERO */
.trust-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 20px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 50px;
    max-width: 900px;
    margin: 40px auto 0;
    font-size: 0.95rem;
    color: #e4e4e7;
    font-weight: 600;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* PROCESS FLOW CONNECTED STEPS */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    position: relative;
}

.process-step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.process-step-card:hover {
    border-color: var(--accent-violet);
    box-shadow: 0 0 30px rgba(108, 76, 255, 0.3);
}

.process-step-number {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #6C4CFF, #00f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    color: #fff;
    margin: 0 auto 16px;
    box-shadow: 0 0 15px rgba(108, 76, 255, 0.4);
}

/* TESTIMONIAL CARDS */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--accent-violet);
}

/* 5-MINUTE COUNTDOWN TIMER DISPLAY */
.timer-container {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(108, 76, 255, 0.15);
    border: 1px solid rgba(108, 76, 255, 0.4);
    padding: 8px 20px;
    border-radius: 30px;
    color: #a78bfa;
    font-weight: 800;
    font-size: 1rem;
    margin-bottom: 20px;
    animation: pulseTimer 2s infinite ease-in-out;
}

@keyframes pulseTimer {
    0%, 100% { box-shadow: 0 0 10px rgba(108, 76, 255, 0.2); }
    50% { box-shadow: 0 0 25px rgba(108, 76, 255, 0.5); }
}

.timer-digits {
    font-family: 'Space Grotesk', monospace;
    font-size: 1.4rem;
    color: #ffe066;
    letter-spacing: 2px;
}

/* Accordion FAQ */
.faq-accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion-item.active {
    border-color: var(--accent-violet);
    box-shadow: 0 0 30px rgba(108, 76, 255, 0.25);
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.faq-accordion-item.active .faq-title {
    color: #a78bfa;
}

.faq-icon {
    font-size: 1.4rem;
    font-weight: 800;
    color: #a78bfa;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(108, 76, 255, 0.15);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
    padding: 0 28px;
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-accordion-item.active .faq-body {
    max-height: 500px;
    padding: 0 28px 24px;
}

/* MOBILE HAMBURGER BUTTON & DRAWER SYSTEM */
.mobile-hamburger-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(108, 76, 255, 0.15);
    border: 1.5px solid rgba(108, 76, 255, 0.4);
    border-radius: 12px;
    color: #a78bfa;
    font-size: 1.3rem;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-hamburger-btn:hover {
    background: rgba(108, 76, 255, 0.3);
    color: #fff;
}

.mobile-nav-drawer {
    display: none;
    max-height: 0;
    overflow: hidden;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1.5px solid rgba(108, 76, 255, 0.35);
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-drawer.open {
    display: block;
    max-height: 600px;
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.2s ease;
}

.mobile-nav-link:hover {
    color: #a78bfa;
}

/* MOBILE OPTIMIZATION RESPONSIVE MEDIA QUERIES */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    .desktop-nav {
        display: none !important;
    }
    .mobile-hamburger-btn {
        display: flex !important;
    }
    .header-cta-btn {
        padding: 8px 14px !important;
        font-size: 0.82rem !important;
    }
    .glass-panel {
        padding: 24px 18px !important;
        border-radius: 20px !important;
    }
    .btn-primary, .btn-gold {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px 20px !important;
        font-size: 1rem !important;
    }
    .section-title {
        font-size: 2.1rem !important;
    }
    .section-header {
        margin-bottom: 35px !important;
    }
    .trust-strip {
        border-radius: 20px !important;
        gap: 15px !important;
        padding: 16px 20px !important;
    }
}
