/* assets/css/landing.css */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    --primary: #4f46e5;
    --primary-light: #e0e7ff;
    --primary-hover: #4338ca;
    --secondary: #0f172a;
    --accent: #06b6d4;
    --accent-light: #ecfeff;
    --dark: #090d16;
    --dark-card: #111827;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --white: #ffffff;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --shadow-sm: 0 2px 8px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 12px 20px -8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 1.25rem;
}

body {
    font-family: var(--font-body);
    background-color: #03091f;
    color: var(--gray-400);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--white) !important;
    font-weight: 700;
}

/* NAVBAR */
.navbar-custom {
    background: rgba(3, 9, 31, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1050;
}
.navbar-custom.scrolled {
    padding: 0.65rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    background: rgba(3, 9, 31, 0.9);
}

.brand-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo i {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-link-custom {
    font-weight: 600;
    color: var(--gray-400) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.5rem;
    transition: var(--transition);
    font-size: 0.95rem;
}
.nav-link-custom:hover, 
.nav-link-custom.active {
    color: var(--white) !important;
    background-color: rgba(255, 255, 255, 0.08);
}

/* Toggler Icon Change to X */
.navbar-toggler[aria-expanded="true"] i::before {
    content: "\f00d"; /* FontAwesome Xmark/times */
}

/* HERO SECTION */
.hero-section {
    position: relative;
    padding: 9rem 0 7rem;
    background: radial-gradient(circle at 80% 20%, rgba(79, 70, 229, 0.15) 0%, rgba(3, 9, 31, 0) 60%),
                radial-gradient(circle at 15% 80%, rgba(6, 182, 212, 0.1) 0%, rgba(3, 9, 31, 0) 50%),
                #03091f;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    animation: float-blob-1 15s ease-in-out infinite alternate;
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(6, 182, 212, 0) 70%);
    filter: blur(60px);
    z-index: -1;
    animation: float-blob-2 12s ease-in-out infinite alternate;
    pointer-events: none;
}

@keyframes float-blob-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 30px) scale(1.1); }
    100% { transform: translate(-20px, 60px) scale(0.9); }
}
@keyframes float-blob-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-40px, -40px) scale(1.15); }
    100% { transform: translate(30px, 20px) scale(0.95); }
}

.hero-badge {
    background-color: var(--primary-light);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.08);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

@media (max-width: 991.98px) {
    /* Navbar Collapse Mobile Card */
    .navbar-collapse {
        background: rgba(3, 9, 31, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 1.25rem;
        padding: 1.5rem;
        margin-top: 1rem;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .navbar-btns-group {
        flex-direction: column;
        align-items: stretch !important;
        width: 100%;
        margin-top: 1rem;
        gap: 0.75rem !important;
    }
    
    .navbar-btns-group .btn, 
    .navbar-btns-group .dropdown,
    .navbar-btns-group .dropdown > button {
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
    
    .dropdown-menu-register,
    .user-profile-menu {
        position: static !important;
        float: none;
        width: 100%;
        box-shadow: none;
        border: 1px solid var(--gray-100);
        background-color: var(--gray-50);
        margin-top: 0.5rem !important;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-dashboard-preview {
        margin-top: 3rem;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        font-size: 1.2rem;
    }
    .hero-title {
        font-size: 2.15rem;
        line-height: 1.2;
    }
    .hero-badge {
        font-size: 0.78rem;
        padding: 0.4rem 1rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
    }
    .hero-btns .btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--gray-400);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-primary-custom {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 20px -6px rgba(79, 70, 229, 0.4);
    transition: var(--transition);
}
.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -6px rgba(79, 70, 229, 0.55);
    color: var(--white);
}

.btn-secondary-custom {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}
.btn-secondary-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-dashboard-preview {
    position: relative;
    background: transparent !important;
    box-shadow: none !important;
    padding: 0 !important;
    border: none !important;
    transition: var(--transition);
    text-align: center;
}
.hero-dashboard-preview img {
    filter: drop-shadow(0 20px 40px rgba(79, 70, 229, 0.25)) drop-shadow(0 0 100px rgba(6, 182, 212, 0.15));
    border-radius: 1.5rem;
    animation: float-dashboard 6s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}
@keyframes float-dashboard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
}

/* STATS */
.stats-section {
    padding: 4rem 0;
    background-color: var(--secondary);
    background-image: radial-gradient(ellipse at 50% 0%, #1e293b 0%, #0f172a 80%);
    color: var(--white);
    position: relative;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray-400);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* FEATURES */
.features-section {
    padding: 7rem 0;
    background-color: #03091f;
}

.section-tag {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray-400);
    max-width: 600px;
    margin: 0 auto 3.5rem;
}

.feature-pill-btn {
    border: none;
    background: transparent;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    color: var(--gray-400);
    transition: var(--transition);
}

.feature-pill-btn.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.25);
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.25rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 70, 229, 0.3);
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon-box {
    transform: scale(1.1);
}

/* PRICING */
.pricing-section {
    padding: 7rem 0;
}

.pricing-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 3rem 2.25rem;
    position: relative;
    transition: var(--transition);
}
 
.pricing-card.popular {
    background-color: rgba(79, 70, 229, 0.08);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.pricing-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background-color: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
}

.price-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: var(--font-heading);
    margin: 1.5rem 0;
}
.price-period {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-400);
}

.pricing-list {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.pricing-list li {
    margin-bottom: 0.85rem;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.pricing-list li i {
    color: var(--primary);
}

.pricing-list li.disabled {
    color: var(--gray-400);
    text-decoration: line-through;
}
.pricing-list li.disabled i {
    color: var(--gray-300);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* TESTIMONIALS */
.testimonials-section {
    padding: 7rem 0;
    background-color: #020617;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition);
}
.testimonial-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 70, 229, 0.3);
}

.quote-icon {
    font-size: 2rem;
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.testimonial-user img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.user-name {
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.1rem;
}
.user-title {
    font-size: 0.8rem;
    color: var(--gray-400);
    font-weight: 600;
}

/* CTA */
.cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-section p {
    color: var(--gray-300);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* FOOTER */
.landing-footer {
    background-color: var(--dark);
    color: var(--gray-400);
    padding: 4.5rem 0 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.landing-footer h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.6rem;
    margin-bottom: 1.25rem;
}
.landing-footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
    border-radius: 2px;
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

.footer-link {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    margin-bottom: 0.75rem;
}
.footer-link:hover {
    color: var(--primary-light);
    transform: translateX(3px);
}

.footer-bottom {
    margin-top: 3.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.social-btn {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
}
.social-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

/* REGISTER DROPDOWN MENU */
.dropdown-menu-register {
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    padding: 0.75rem;
    min-width: 260px;
    margin-top: 0.5rem !important;
}

.dropdown-item-register {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 0.75rem;
    color: var(--gray-700);
    transition: var(--transition);
    font-weight: 600;
    text-decoration: none;
}

.dropdown-item-register:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.dropdown-item-register .icon-holder {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background-color: var(--gray-50);
    color: var(--gray-600);
    transition: var(--transition);
}

.dropdown-item-register:hover .icon-holder {
    background-color: var(--white);
    color: var(--primary);
}

.user-profile-menu {
    border-radius: 12px;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    min-width: 200px;
}
.user-profile-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 0.85rem;
    border-radius: 8px;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
}
.user-profile-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

/* ========================================= */
/* ADDITIONAL PREMIUM STYLES                 */
/* ========================================= */

/* BRAND TRUST MARQUEE */
.marquee-container {
    overflow: hidden;
    padding: 2.5rem 0;
    background-color: rgba(255, 255, 255, 0.01);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-content {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.marquee-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-400);
    transition: var(--transition);
}

.marquee-logo i {
    font-size: 1.5rem;
}

.marquee-logo:hover {
    color: var(--primary);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* WORKFLOW TIMELINE */
.workflow-section {
    padding: 7rem 0;
    background: radial-gradient(circle at 10% 20%, rgba(79, 70, 229, 0.1) 0%, rgba(3, 9, 31, 0) 50%), #03091f;
}

.timeline-flow {
    position: relative;
    max-width: 900px;
    margin: 3.5rem auto 0;
}

.timeline-flow::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light), var(--accent-light));
    transform: translateX(-50%);
}

@media (max-width: 767.98px) {
    .timeline-flow::before {
        left: 20px;
    }
}

.timeline-step {
    position: relative;
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

@media (max-width: 767.98px) {
    .timeline-step, .timeline-step:nth-child(even) {
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 45px;
    }
}

.timeline-img {
    width: 45%;
    display: flex;
    justify-content: center;
}
.timeline-step:nth-child(even) .timeline-img {
    justify-content: center;
}

@media (max-width: 767.98px) {
    .timeline-img {
        display: none;
    }
}

.timeline-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    z-index: 2;
}
 
.timeline-content:hover {
    transform: translateY(-3px);
    background-color: rgba(255, 255, 255, 0.04);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 70, 229, 0.3);
}

@media (max-width: 767.98px) {
    .timeline-content {
        width: 100%;
    }
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #03091f;
    border: 4px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 3;
}

@media (max-width: 767.98px) {
    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
    }
}

/* DYNAMIC PRICING CALCULATOR */
.calc-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-top: 4rem;
}

.calc-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.calc-slider-box {
    margin-bottom: 2rem;
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
    transition: background 450ms ease-in;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
    transition: var(--transition);
}

.calc-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-result-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

.calc-recommended-badge {
    background: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
}

/* FAQ SECTION */
.faq-section {
    padding: 7rem 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: var(--transition);
}

.faq-header {
    width: 100%;
    background: transparent;
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: var(--white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    outline: none;
}

.faq-header:hover {
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--gray-400);
}

.faq-header.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    background-color: transparent;
}

.faq-body-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-400);
    font-size: 0.95rem;
}

/* NEWSLETTER */
.newsletter-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 2rem;
    padding: 4.5rem 3rem;
    color: var(--white);
    box-shadow: 0 0 60px rgba(79, 70, 229, 0.12), 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.newsletter-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.12) 0%, rgba(79, 70, 229, 0) 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.newsletter-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0) 70%);
    filter: blur(40px);
    z-index: -1;
    pointer-events: none;
}

.newsletter-card h3 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 800;
}

.newsletter-card p {
    color: var(--gray-400);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.newsletter-input-group {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    padding: 6px;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.newsletter-input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0.75rem 1.25rem;
    width: 100%;
    outline: none;
    font-weight: 500;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.btn-newsletter {
    background-color: var(--white);
    color: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-newsletter:hover {
    background-color: var(--primary-light);
    color: var(--primary-hover);
    transform: scale(1.02);
}

@media (max-width: 575.98px) {
    .newsletter-input-group {
        flex-direction: column;
        border-radius: 1.5rem;
        gap: 0.5rem;
        background: transparent;
        border: none;
        padding: 0;
    }
    .newsletter-input {
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.25);
        border-radius: 50px;
        text-align: center;
    }
    .btn-newsletter {
        width: 100%;
    }
}

/* BACK TO TOP BUTTON */
.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}
.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.5);
    color: var(--white);
}

@media (max-width: 767.98px) {
    .back-to-top-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

/* MOBILE APP DOWNLOAD SECTION */
.app-download-section {
    padding: 7rem 0;
    background: radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.15) 0%, rgba(15, 23, 42, 0) 50%),
                linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
    color: var(--white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.app-download-section h2 {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 800;
}

.app-download-mockup {
    position: relative;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5));
    animation: float-phone 6s ease-in-out infinite;
}

@keyframes float-phone {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

.app-download-badge {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.app-feature-list {
    list-style: none;
    padding-left: 0;
    margin: 2rem 0;
}

.app-feature-list li {
    font-size: 1.05rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    color: var(--gray-300);
}

.app-feature-list li i {
    color: var(--accent);
}

@media (max-width: 991.98px) {
    .app-download-section {
        padding: 5rem 0;
        text-align: center;
    }
    .app-download-mockup {
        max-width: 380px;
        margin-top: 3rem;
    }
    .app-feature-list {
        display: inline-block;
        text-align: left;
    }
    .qr-code-box {
        margin: 1.5rem auto 0 !important;
    }
}

/* Dark theme utility overrides for text visibility */
.text-muted {
    color: #94a3b8 !important;
}
.text-dark {
    color: #ffffff !important;
}
.text-secondary {
    color: #cbd5e1 !important;
}
.text-gray-300 {
    color: #cbd5e1 !important;
}
.italic {
    font-style: italic;
}

