:root {
    --bg-body: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #fcfcfc;
    --primary: #25d366;
    --primary-dark: #128c7e;
    --text-main: #1a202c;
    /* Sedikit lebih terang dari #0f172a */
    --text-muted: #64748b;
    /* Strong Slate 600 */
    --border: #e5e7eb;
    --glass-bg: rgba(255, 255, 255, 0.98);
    --glass-border: rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    /* For absolute positioned lightning */
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    /* Above lightning animation */
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.mobile-menu-btn {
    display: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.brand-logo-img {
    height: 40px;
    /* Lebar akan otomatis presisi persegi panjang */
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a:not(.btn-primary):not(.btn-text) {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary):not(.btn-text):hover {
    color: var(--text-main);
}

.auth-buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
    align-items: center;
}

/* BUTTONS */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background: #008f61;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    font-size: 0.95rem;
}

.btn-primary:hover {
    background: #1ebc57;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* User Profile Nav Styling */
.user-profile-nav {
    display: none;
    /* Hidden by default */
    align-items: center;
    gap: 12px;
    padding: 6px 16px;
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    margin-right: 10px;
}

.user-profile-nav:hover {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.1);
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.user-info-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.2;
}

.user-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.user-email {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border);
    background: transparent;
    color: #0e5a18;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-text {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid var(--border);
    margin-right: 10px;
}

.btn-text:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
    display: flex;
    justify-content: center;
}

/* HERO */
.hero {
    padding: 160px 0 100px;
    background:
        radial-gradient(circle at 10% 20%, rgba(37, 211, 102, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(37, 211, 102, 0.05) 0%, transparent 40%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-hero {
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    display: inline-block;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
}

.hero-text h1 .highlight {
    color: #008d5d;
    /* SIMPLER COLOR, NO GRADIENT BUG */
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.badge-item i {
    color: var(--primary);
}

.hero-main-img {
    width: 100%;
    max-width: 650px;
    /* Ukuran yang pas agar tidak terlalu besar */
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: block;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.hero-main-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 35px 70px -15px rgba(37, 211, 102, 0.15);
}

/* FAKE INTERFACE ANIMATION NUCHAT STYLE (KEEP FOR LEGACY IF NEEDED, OR REMOVE) */
.glass-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    max-width: 600px;
    margin: 0 auto;
}

.card-header-fake {
    background: #1a1a1a;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #222;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.fake-url {
    background: #000;
    color: #666;
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 4px;
    margin-left: 15px;
    width: 60%;
}

.card-body-fake {
    padding: 30px;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #fdfdfd;
}

.chat-bubble {
    padding: 12px 18px;
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    width: fit-content;
    max-width: 85%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.chat-bubble.left {
    background: #2a2a2a;
    color: #eee;
    border-bottom-left-radius: 2px;
}

.chat-bubble.right {
    background: var(--primary-dark);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 2px;
}

.stats-fake {
    display: flex;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 8px;
    text-align: center;
}

.stat-box span {
    display: block;
    font-size: 0.75rem;
    color: #aaa;
    margin-bottom: 4px;
}

.stat-box strong {
    font-size: 1.1rem;
    color: #fff;
}

.stat-box.active strong {
    color: var(--primary);
}

/* DETAILED FEATURES GRID */
.features {
    padding: 100px 0;
    background: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    letter-spacing: -1px;
    color: var(--text-main);
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* --- FEATURE GRID LAYOUT FIXES (7 ITEMS) --- */
.feature-grid-detailed {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* Mobile: 1 Col */
    gap: 25px;
}

/* Tablet: 2 Columns */
@media (min-width: 768px) {
    .feature-grid-detailed {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop: 3 Columns */
@media (min-width: 1100px) {
    .feature-grid-detailed {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    /* Horizontal Layout */
    align-items: flex-start;
    gap: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Equal Height */
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(37, 211, 102, 0.05), transparent 40%);
    opacity: 0;
    transition: 0.4s;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 211, 102, 0.3);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.feature-item:hover::before {
    opacity: 1;
}

.feature-item.highlight {
    background: linear-gradient(145deg, #ffffff, #f0fff4);
    /* Light green tint */
    border: 1px solid rgba(37, 211, 102, 0.3);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.1);
}

.f-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: rgba(37, 211, 102, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0;
    /* Reset */
    transition: 0.3s;
}

.feature-item:hover .f-icon {
    background: var(--primary);
    color: #000;
    transform: scale(1.1) rotate(5deg);
}

.feature-content {
    flex: 1;
}

.feature-item h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-main);
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* WARMER SECTION */
.warmer-info {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: #f8fafc;
}

.warmer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.badge-mini {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    display: block;
}

.warmer-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--text-main);
}

.feature-list-check {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.check-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.check-item i {
    color: var(--primary);
    font-size: 1.3rem;
    margin-top: 4px;
}

.check-item strong {
    display: block;
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.check-item small {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Phone Mockup */
.warmer-visual-nuchat {
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 600px;
    background: #ffffff;
    border-radius: 45px;
    border: 12px solid #0f172a;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.screen {
    background: #f0f2f5;
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 15px;
    padding-bottom: 50px;
}

.chat-row {
    display: flex;
    width: 100%;
}

.chat-row.left .bubble {
    background: #e2e8f0;
    color: var(--text-main);
    border-radius: 12px 12px 12px 0;
    max-width: 80%;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.chat-row.right {
    justify-content: flex-end;
}

.chat-row.right .bubble {
    background: var(--primary);
    color: #fff;
    border-radius: 12px 12px 0 12px;
    max-width: 80%;
    padding: 12px 16px;
    font-size: 0.9rem;
}

.typing-indicator {
    padding: 10px 15px;
    background: #e1e9eb;
    border-radius: 20px;
    display: inline-block;
}

.typing-indicator span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #888;
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(1) {
    animation-delay: 0s;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

.status-overlay {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--border);
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    width: max-content;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes typing {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* PRICING */
.pricing {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Responsive: Tablet - 2 columns */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: Mobile - 1 column */
@media (max-width: 640px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: var(--bg-card);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--primary);
}

.price-card.popular {
    border: 2px solid var(--primary);
    background: rgba(37, 211, 102, 0.03);
    position: relative;
    transform: scale(1.05);
    z-index: 2;
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.price-header {
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.price-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
}

.price .period {
    color: #888;
    font-size: 1rem;
}

.price-body {
    flex: 1;
}

.price-body ul li {
    margin-bottom: 16px;
    color: var(--text-main);
    display: flex;
    gap: 12px;
    font-size: 1rem;
    align-items: center;
}

.pricing-note {
    text-align: center;
    margin-top: 50px;
    color: #666;
    font-size: 0.9rem;
}

/* FOOTER */
footer {
    padding: 80px 0 40px;
    background: #ffffff;
    border-top: 1px solid var(--border);
    margin-top: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding-bottom: 40px;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 0;
    max-width: 550px;
    /* Lebar ditambah agar teks memanjang ke kanan */
    line-height: 1.8;
}

.footer-links {
    display: flex;
    gap: 80px;
}

.link-col h4 {
    margin-bottom: 25px;
    color: var(--text-main);
    font-size: 1.1rem;
}

.link-col a {
    display: block;
    margin-bottom: 12px;
    color: #888;
    text-decoration: none;
    transition: 0.3s;
}

.link-col a:hover {
    color: var(--primary);
}

.copyright {
    text-align: center;
    margin-top: 40px;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--border);
    padding-top: 30px;
}

/* MODAL STYLES FIX */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    width: 90%;
    max-width: 420px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    align-items: center;
}

.modal-header h2 {
    font-size: 1.5rem;
    color: var(--text-main);
}

.close-modal {
    background: none;
    border: none;
    color: #888;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-modal:hover {
    color: var(--text-main);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;
    left: 16px;
    top: 14px;
    color: #666;
    font-size: 1rem;
}

.input-icon input {
    width: 100%;
    padding: 14px 14px 14px 45px;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-main);
    font-size: 1rem;
    transition: 0.3s;
}

.input-icon input:focus {
    border-color: var(--primary);
    outline: none;
    background: #ffffff;

}

.input-icon input::placeholder {
    color: #666;
}

.auth-switch {
    text-align: center;
    margin-top: 25px;
    font-size: 0.95rem;
    color: #888;
}

.auth-switch a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    margin-left: 5px;
}

@media(max-width: 768px) {
    .navbar {
        display: block;
    }

    /* Temp fix */
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .warmer-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
        color: var(--text-main);
        cursor: pointer;
    }

    /* Mobile Styles End */
}


/* LOADING SPINNER */
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#paymentLoading p {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 10px;
}


/* PULSE DOT ANIMATION */
.pulse-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse-dot-anim 1.5s infinite ease-in-out;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
}

@keyframes pulse-dot-anim {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.6;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* --- PAYMENT MODAL FIXES (GLOBAL) --- */
#paymentModal .modal-content {
    max-width: 420px !important;
    text-align: center;
}

#qrisImage {
    max-width: 100% !important;
    width: 250px !important;
    height: auto !important;
    border-radius: 12px;
    margin: 20px auto;
    display: block;
    border: 4px solid #fff;
    background: #fff;
    padding: 10px;
}

.payment-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin: 10px 0;
}

.payment-timer {
    font-size: 0.9rem;
    color: #000000;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgb(94 255 0 / 10%);
    padding: 8px;
    border-radius: 8px;
    border: 1px solid rgb(67 255 0 / 30%);
}

.payment-status-row {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* FAQ SECTION */
.faq-section {
    padding: 100px 0 60px;
    background: #fdfdfd;
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-header {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    background: #fff;
    user-select: none;
}

.faq-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.faq-title {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfcfc;
}

.faq-item.active .faq-body {
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-body p {
    padding: 24px 24px 24px 76px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 640px) {
    .faq-body p {
        padding: 20px;
    }

    .faq-header {
        padding: 20px;
        gap: 15px;
    }
}

/* Fix floating elements - prevent wrong positioning */
.floating-badge,
[class*="badge"],
[class*="floating"] {
    z-index: 100 !important;
}

/* Ensure pricing section has proper stacking */
#pricing,
.pricing-section,
[id*="pricing"] {
    position: relative;
    z-index: 10;
}