/* Landing Page Specific Styles */
:root {
    --nav-bg-dark: rgba(15, 23, 42, 0.9);
    --nav-bg-light: rgba(255, 255, 255, 0.9);
    --primary-gradient: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --auth-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --hero-glow: radial-gradient(circle at 18% 12%, rgba(99, 102, 241, 0.45), transparent 50%),
        radial-gradient(circle at 82% 78%, rgba(34, 197, 94, 0.28), transparent 42%),
        radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.18), transparent 55%);
    --card-surface: linear-gradient(180deg, rgba(18, 28, 46, 0.95), rgba(11, 18, 32, 0.95));
    --card-surface-soft: linear-gradient(180deg, rgba(21, 34, 56, 0.9), rgba(12, 19, 33, 0.9));
    --card-border: rgba(124, 137, 255, 0.16);
    --card-border-strong: rgba(124, 137, 255, 0.26);
    --card-shadow: 0 24px 60px rgba(2, 6, 23, 0.38);
    --glass-surface: rgba(12, 19, 33, 0.6);
    --glass-border: rgba(148, 163, 184, 0.16);
    --section-pad: clamp(3.25rem, 5vw, 5rem);
    --cta-glow: 0 18px 50px rgba(99, 102, 241, 0.35);
}

html[data-theme="light"] {
    --hero-glow: radial-gradient(circle at 18% 12%, rgba(99, 102, 241, 0.22), transparent 50%),
        radial-gradient(circle at 82% 78%, rgba(16, 185, 129, 0.18), transparent 42%),
        radial-gradient(circle at 50% 30%, rgba(168, 85, 247, 0.12), transparent 55%);
    --card-surface: linear-gradient(180deg, #ffffff, #f3f6ff);
    --card-surface-soft: linear-gradient(180deg, #ffffff, #f7f9ff);
    --card-border: rgba(79, 70, 229, 0.12);
    --card-border-strong: rgba(79, 70, 229, 0.2);
    --card-shadow: 0 20px 50px rgba(15, 23, 42, 0.14);
    --glass-surface: rgba(255, 255, 255, 0.78);
    --glass-border: rgba(79, 70, 229, 0.12);
    --cta-glow: 0 18px 50px rgba(79, 70, 229, 0.24);
}

html {
    scroll-behavior: smooth;
}

.landing-page {
    min-height: 100vh;
    position: relative;
    isolation: isolate;
    font-family: "Poppins", "Manrope", system-ui, -apple-system, sans-serif;
}

.landing-page section {
    scroll-margin-top: 96px;
}

.landing-page section:not(#hero) {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

/* Common Transitions for Buttons & Cards */
.navbar-btn,
.btn-hero-primary,
.btn-hero-secondary,
.btn-hero-secondary1,
.btn-primary,
.modal-btn,
.feature-card,
.faq-item,
.scroll-top-btn {
    transition: all 0.2s ease;
}

.landing-page a:focus-visible,
.landing-page button:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: linear-gradient(180deg, rgba(8, 13, 24, 0.94), rgba(8, 13, 24, 0.72));
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-strong);
    padding: 0.85rem 1rem;
    box-shadow: 0 18px 40px rgba(2, 6, 23, 0.35);
}

html[data-theme="light"] .navbar {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.82));
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    /* "AnviPayz" text par subtle glow */
    text-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}

.navbar-logo-img {
    width: 2rem;
    height: 2rem;
    border-radius: 8px;
    /* Logo icon par glow effect */
    filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.6));
}

.navbar-actions {
    display: flex;
    gap: 0.75rem;
}

.navbar-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.navbar-btn-login {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.navbar-btn-login:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.navbar-btn-register {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.navbar-btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

.navbar-btn-theme {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border);
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.navbar-btn-theme:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: rotate(10deg);
}

.navbar-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

html[data-theme="light"] .navbar-btn-theme {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    border: 1px solid rgba(15, 23, 42, 0.15);
}

html[data-theme="light"] .navbar-btn-login {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.15);
}

html[data-theme="light"] .navbar-btn-login:hover {
    background: rgba(15, 23, 42, 0.14);
}

html[data-theme="light"] .navbar-btn-register {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.25);
}

html[data-theme="light"] .navbar-btn-register:hover {
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.35);
}

html[data-theme="light"] .navbar-btn-theme:hover {
    background: rgba(15, 23, 42, 0.12);
}

html[data-theme="light"] .navbar-hamburger {
    background: rgba(15, 23, 42, 0.08);
    color: #0f172a;
    border-color: rgba(15, 23, 42, 0.15);
}

/* Light mode mein glow hatane ya kam karne ke liye */
html[data-theme="light"] .navbar-logo {
    text-shadow: none;
}

html[data-theme="light"] .navbar-logo-img {
    filter: none;
}

/* Dark Mode Overrides */
html[data-theme="dark"] .feature-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

html[data-theme="dark"] .auth-card {
    background: var(--card-surface);
    border-color: var(--card-border-strong);
}

html[data-theme="dark"] .faq-item {
    background: var(--card-surface);
    border-color: var(--card-border);
}

html[data-theme="dark"] .modal-content {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--hero-glow);
    z-index: -1;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), transparent 35%, rgba(2, 6, 23, 0.2));
    z-index: -1;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    background: rgba(99, 102, 241, 0.16);
    border: 1px solid rgba(99, 102, 241, 0.32);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.1rem;
    box-shadow: 0 10px 22px rgba(2, 6, 23, 0.18);
}

.hero-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 6.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.85rem;
    letter-spacing: -0.03em;
}

.hero-title span {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.2rem;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    border: none;
    box-shadow: var(--cta-glow);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(99, 102, 241, 0.45);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border);
    backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.22);
}

.btn-hero-secondary1 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1rem 2.2rem;
    font-size: 1rem;
    border-radius: var(--radius-md);
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #25d366, #00b749);
    border: none;
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    transition: 0.3s;
}

.btn-hero-secondary1 i {
    color: #ffffff;
}

.btn-hero-secondary1:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 50px rgba(37, 211, 102, 0.45);
    background: linear-gradient(135deg, #2ec278, #13d862);
}

@media (max-width: 768px) {
    .btn-hero-secondary1 {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
}

.navbar-btn-login,
.navbar-btn-register {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
}

.navbar-btn-login {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border);
}

.navbar-btn-login:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
}

.navbar-btn-register {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.navbar-btn-register:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
}

@media (max-width: 820px) {
    .navbar-btn-login,
    .navbar-btn-register {
        gap: 0 !important;
    }

    .btn-text {
        display: none;
    }

    .navbar-btn-login,
    .navbar-btn-register {
        width: 2.5rem;
        height: 2.5rem;
        padding: 0;
        justify-content: center;
        flex-shrink: 0;
    }

    .landing-page {
        padding-bottom: 0;
    }

    .desktop-only {
        display: none !important;
    }

    .navbar-hamburger {
        display: flex;
    }
}

@media (min-width: 821px) {
    .btn-text {
        display: inline;
    }
}

/* Features Section */
.features-section {
    padding: var(--section-pad) 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* SEO Highlights Section */
.seo-section {
    padding: calc(var(--section-pad) - 0.5rem) 1rem 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.seo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.seo-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

html[data-theme="light"] .seo-card {
    background: var(--card-surface);
}

.seo-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.65rem;
    color: var(--text-main);
}

.seo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.35);
}

.seo-list {
    list-style: none;
    display: grid;
    gap: 0.55rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.seo-list li::before {
    content: "-";
    color: var(--primary);
    margin-right: 0.5rem;
}

.seo-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Modules Section */
.modules-section {
    padding: 3.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
}

.module-card {
    background: var(--card-surface-soft);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: var(--card-shadow);
}

html[data-theme="light"] .module-card {
    background: var(--card-surface-soft);
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.35);
}

.module-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.18);
    color: var(--primary);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    box-shadow: 0 12px 24px rgba(2, 6, 23, 0.18);
}

.module-icon.tasks {
    background: rgba(16, 185, 129, 0.18);
    color: #10b981;
}

.module-icon.refer {
    background: rgba(34, 197, 94, 0.18);
    color: #22c55e;
}

.module-icon.spin {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.module-icon.wallet {
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
}

.module-icon.support {
    background: rgba(99, 102, 241, 0.2);
    color: #a855f7;
}

/* Wallet Section */
.wallet-section {
    padding: 3.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wallet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.wallet-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

html[data-theme="light"] .wallet-card {
    background: var(--card-surface);
}

.wallet-card.secondary {
    background: var(--card-surface-soft);
    border-color: var(--card-border-strong);
}

.wallet-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.35);
}

.wallet-balance {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.wallet-balance span {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.wallet-balance strong {
    font-size: 1.8rem;
}

.wallet-token strong {
    font-size: 1.4rem;
}

.wallet-btn {
    border: none;
    padding: 0.9rem 1rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.wallet-btn.ghost {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wallet-list {
    list-style: none;
    display: grid;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    color: var(--text-muted);
}

.wallet-list strong {
    color: #22c55e;
}

/* Smart Features */
.smart-section {
    padding: 3.5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.smart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.4rem;
}

.smart-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: grid;
    gap: 0.85rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.smart-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.35);
}

.seo-section,
.modules-section,
.features-section,
.wallet-section,
.smart-section,
.video-section,
.how-it-works-section,
.faq-section {
    padding: var(--section-pad) 1rem;
}

html[data-theme="light"] .smart-card {
    background: var(--card-surface);
}

.streak-bar {
    display: flex;
    gap: 0.4rem;
}

.streak {
    flex: 1;
    height: 0.4rem;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.3);
}

.streak.active {
    background: linear-gradient(90deg, #22c55e, #4ade80);
}

.badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    padding: 0 0.9rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.16);
    border: 1px solid rgba(99, 102, 241, 0.32);
    color: #c7d2fe;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2px;
}

html[data-theme="light"] .badge {
    background: rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.2);
    color: var(--primary-strong);
}

.notif-list {
    display: grid;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.notif-item {
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 12px;
    padding: 0.6rem 0.75rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(1.75rem, 6vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
}

.section-title::after {
    content: "";
    width: 56px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

.social-proof-section {
    padding: calc(var(--section-pad) - 2rem) 1rem 0;
}

.social-proof-card {
    max-width: 980px;
    margin: 0 auto;
    background: var(--glass-surface);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    box-shadow: var(--card-shadow);
}

.social-proof-item {
    display: grid;
    gap: 0.35rem;
    text-align: center;
}

.social-proof-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.social-proof-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonials-section {
    padding: var(--section-pad) 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.6rem;
    display: grid;
    gap: 1rem;
    box-shadow: var(--card-shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(2, 6, 23, 0.35);
}

.testimonial-quote {
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.65;
}

.testimonial-user {
    display: grid;
    gap: 0.2rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-main);
}

.testimonial-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--card-shadow);
}

html[data-theme="light"] .feature-card {
    background: var(--card-surface);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 60px rgba(2, 6, 23, 0.35);
}

/* Performance: defer heavy sections */
.features-section,
.video-section,
.how-it-works-section,
.auth-section-wrapper,
.faq-section,
.seo-section,
.modules-section,
.wallet-section,
.smart-section {
    content-visibility: auto;
    contain-intrinsic-size: 800px;
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    display: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.4rem;
    padding: 0.65rem 1rem calc(0.75rem + var(--safe-bottom));
    border-radius: 18px 18px 0 0;
    border: 1px solid var(--border);
    border-bottom: 0;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(20px);
    box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.35);
    z-index: 90;
}

html[data-theme="light"] .mobile-bottom-nav {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.12);
}

.mobile-bottom-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 0.35rem 0.2rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.mobile-bottom-link i {
    font-size: 1.1rem;
}

.mobile-bottom-link.active {
    color: var(--text-main);
    background: rgba(99, 102, 241, 0.16);
    box-shadow: inset 0 0 0 1px rgba(99, 102, 241, 0.25);
}

.mobile-bottom-link.active i {
    color: var(--primary);
}

@media (max-width: 820px) {
    .mobile-bottom-nav {
        display: none !important;
    }

    .scroll-top-btn {
        bottom: calc(0.9rem + var(--safe-bottom));
        right: 1.25rem;
    }
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.2);
}

.feature-icon.tasks {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
}

.feature-icon.refer {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent);
}

.feature-icon.recharge {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.feature-icon.rewards {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Video Section */
.video-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, var(--bg-body-soft), var(--bg-body));
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-card), var(--bg-card-2));
    color: var(--text-muted);
    gap: 1rem;
}

.video-placeholder i {
    font-size: 4rem;
    color: var(--primary);
}

/* How It Works */
.how-it-works-section {
    padding: 5rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background: radial-gradient(circle at 25% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 75% 70%, rgba(168, 85, 247, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-body-soft), var(--bg-body));
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    box-shadow: var(--card-shadow);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(2, 6, 23, 0.3);
    border-color: var(--card-border-strong);
}

.step-icon {
    width: 4.5rem;
    height: 4.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    font-size: 2rem;
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.step-icon::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed rgba(99, 102, 241, 0.25);
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    to {
        transform: rotate(360deg);
    }
}

.step-icon i {
    font-family: "remixicon";
    font-style: normal;
    line-height: 1;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-main);
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 280px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .step-card {
        padding: 1.75rem 1.25rem;
    }

    .step-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.5rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-card:not(:last-child)::after {
        display: none;
    }
}

.step-number {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 800;
    border-radius: 50%;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Auth Section */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

.auth-section-wrapper {
    padding: var(--section-pad) 0;
    background: radial-gradient(circle at 10% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 45%),
        linear-gradient(180deg, var(--bg-body), var(--bg-body-soft));
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-grid-container {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 3.5rem;
    margin: 0 auto;
    align-items: center;
}

.auth-info-panel {
    display: grid;
    gap: 1.5rem;
}

.brand-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.info-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--primary);
    font-weight: 600;
}

.auth-card {
    background: var(--card-surface);
    border: 1px solid var(--card-border-strong);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--card-shadow);
}

html[data-theme="light"] .auth-card {
    background: var(--card-surface);
    border-color: var(--card-border-strong);
    box-shadow: var(--card-shadow);
}

.auth-title {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 0.35rem;
}

.auth-subtitle {
    color: var(--text-muted);
    font-size: 0.98rem;
    margin-bottom: 1.8rem;
}

.auth-card h1 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.auth-section {
    animation: fadeIn 0.3s ease;
}

.d-none {
    display: none !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-size: 1rem;
}

.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--focus-ring);
}

.form-input::placeholder {
    color: var(--text-faint);
}

html[data-theme="light"] .form-input {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(15, 23, 42, 0.14);
    color: var(--text-main);
}

.form-input:-webkit-autofill {
    -webkit-text-fill-color: var(--text-main);
    transition: background-color 9999s ease-in-out 0s;
}

.btn-primary {
    width: 100%;
    padding: 0.875rem 1.5rem;
    background: var(--auth-gradient);
    color: #ffffff;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    box-shadow: var(--cta-glow);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 45px rgba(99, 102, 241, 0.35);
}

/* Terms Checkbox */
.terms-check {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border-radius: 18px;
    border: 1px solid rgba(127, 144, 170, 0.22);
    background: rgba(255, 255, 255, 0.04);
    margin-bottom: 14px;
}

html[data-theme="light"] .terms-check {
    border-color: rgba(15, 23, 42, 0.12);
    background: rgba(79, 70, 229, 0.06);
}

.terms-check input {
    width: 22px;
    height: 22px;
    margin-top: 2px;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.terms-check label {
    margin: 0;
    color: var(--text);
    font-size: 0.94rem;
    line-height: 1.65;
}

.terms-check a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1rem;
    background: linear-gradient(180deg, var(--bg-body-soft), var(--bg-body));
}

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

.faq-item {
    background: var(--card-surface);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin-bottom: 1rem;
    transition: all 0.2s ease;
    box-shadow: var(--card-shadow);
}

.faq-item:hover {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 28px 60px rgba(99, 102, 241, 0.18);
    transform: translateY(-2px);
}

.faq-item:hover .faq-question i {
    color: var(--primary-strong);
}

html[data-theme="light"] .faq-item {
    background: var(--card-surface);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.05rem;
    line-height: 1.4;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.12);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    background: rgba(99, 102, 241, 0.2);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.25rem;
}

/* Footer */
/* ========== FOOTER ========== */
.landing-footer {
    padding: 0 1rem 2rem;
    background: var(--bg-body);
    margin-top: 2rem;
    position: relative;
}

/* Footer CTA Bar */
.footer-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.12) 100%);
    border-top: 1px solid rgba(99, 102, 241, 0.15);
    border-bottom: 1px solid rgba(99, 102, 241, 0.15);
    margin-bottom: 3rem;
}

.footer-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-cta-text h3 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.footer-cta-text p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}

.footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.45);
    filter: brightness(1.1);
}

.footer-cta-btn i {
    font-size: 1.1rem;
}

/* Footer Container */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Footer Grid - 4 columns: brand + 3 nav */
.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr repeat(3, minmax(0, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}

/* Footer Brand */
.footer-brand .navbar-logo {
    margin-bottom: 0.75rem;
    display: inline-flex;
}

.footer-brand-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    max-width: 340px;
    margin-bottom: 1.25rem;
}

/* Footer Nav Columns */
.footer-nav-col h4 {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Footer Links */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
}

.footer-links a i {
    font-size: 0.85rem;
    color: var(--primary);
    opacity: 0.5;
    transition: all 0.2s ease;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-links a:hover i {
    opacity: 1;
}

/* Footer Contact Info */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

.contact-item i {
    font-size: 1rem;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Footer Social Links */
.footer-social-links {
    display: flex;
    gap: 0.6rem;
}

.footer-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 10px;
    color: var(--primary);
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.footer-social-links a:hover {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(99, 102, 241, 0.3);
    border-color: transparent;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-copyright {
    color: var(--text-faint);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Policy Links */
.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    font-size: 0.85rem;
}

.footer-policy-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
}

.footer-policy-links a:hover {
    color: var(--primary);
}

html[data-theme="light"] .footer-links a {
    color: var(--text-muted);
}

html[data-theme="light"] .contact-item a {
    color: var(--text-muted);
}

html[data-theme="light"] .footer-copyright {
    color: var(--text-faint);
}

html[data-theme="light"] .footer-cta {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.06) 0%, rgba(168, 85, 247, 0.06) 100%);
}

/* Social Proof */
.social-proof-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.social-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.social-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
}

.social-proof-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.social-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent);
}

/* Navigation UI */
.scroll-top-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
    border-radius: 50%;
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    z-index: 100;
}

.scroll-top-btn.visible {
    display: flex;
}

.nav-dots {
    position: fixed;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 50;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.2s ease;
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.98), rgba(15, 23, 42, 0.98));
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    max-width: 550px;
    width: 95%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

html[data-theme="light"] .modal-content {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 247, 255, 0.98));
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 1.5rem 1.5rem 0;
    display: flex;
    justify-content: space-between;
}

.modal-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-muted);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
}

.modal-feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.modal-feature-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.modal-feature-icon.points {
    background: rgba(99, 102, 241, 0.15);
    color: var(--primary);
}

.modal-feature-icon.token {
    background: rgba(34, 197, 94, 0.15);
    color: var(--accent);
}

.modal-feature-icon.discount {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.modal-footer {
    padding: 0 1.5rem 1.5rem;
    display: flex;
    gap: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    border: none;
    cursor: pointer;
}

.modal-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
    color: #ffffff;
}

.modal-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border: 1px solid var(--border);
}

/* Guide Section */
.signup-guide {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.24);
    border-radius: var(--radius-lg);
    box-shadow: 0 14px 30px rgba(2, 6, 23, 0.15);
}

.signup-guide h3 {
    font-size: 1.1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

html[data-theme="light"] .signup-guide {
    background: rgba(79, 70, 229, 0.08);
    border-color: rgba(79, 70, 229, 0.18);
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.guide-list {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0 0;
    display: grid;
    gap: 0.9rem;
}

.guide-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.45;
}

.guide-list strong {
    color: var(--text-main);
    font-weight: 700;
}

.dot {
    width: 2rem;
    height: 2rem;
    flex-shrink: 0;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.18);
    border: 1px solid rgba(99, 102, 241, 0.35);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.9rem;
}

html[data-theme="light"] .dot {
    background: rgba(79, 70, 229, 0.12);
    border-color: rgba(79, 70, 229, 0.22);
    color: var(--primary-strong);
}

.signup-step {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.signup-step-num {
    width: 1.5rem;
    height: 1.5rem;
    background: var(--primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.signup-step-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Media Queries Grouped */
@media (max-width: 1080px) {
    .navbar-btn i {
        display: none;
    }

    .navbar-btn-theme i {
        display: inline-flex;
    }
}

@media (max-width: 968px) {
    .auth-grid-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .auth-info-panel {
        text-align: center;
        justify-items: center;
    }

    .auth-card {
        padding: 2rem 1.5rem;
        margin: 0 auto;
        max-width: 520px;
        width: 100%;
    }

    .guide-list li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1rem 3rem;
    }

    .nav-dots {
        display: none;
    }

    .navbar-btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        gap: 0.75rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-secondary1 {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

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

/* Mobile Sidebar Menu */
.mobile-sidebar {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-sidebar.active {
    opacity: 1;
    visibility: visible;
}

.mobile-sidebar-content {
    position: fixed;
    right: -300px;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-body);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

.mobile-sidebar.active .mobile-sidebar-content {
    right: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.mobile-menu-link {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    text-decoration: none;
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.5rem 0.75rem;
    }

    .navbar-container {
        gap: 0.5rem;
    }

    .navbar-logo span {
        display: none;
    }

    .navbar-actions {
        gap: 0.5rem;
    }

    .landing-footer {
        padding: 3rem 1rem 1.5rem;
        margin-top: 1.5rem;
    }

    .navbar-logo-img {
        width: 1.75rem;
        height: 1.75rem;
    }

    .navbar-logo {
        font-size: 1rem;
    }

    .navbar-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .navbar-btn-theme {
        width: 2.25rem;
        height: 2.25rem;
    }

    .hero-section {
        padding: 5rem 1rem 2rem;
        min-height: auto;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .section-container {
        padding: 0 1rem;
    }

    .auth-section-wrapper {
        padding: 2.5rem 0 4rem;
        min-height: auto;
    }

    .brand-large {
        font-size: 2.4rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-secondary1 {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .features-section,
    .how-it-works-section,
    .video-section,
    .faq-section {
        padding: 2.5rem 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .feature-icon {
        width: 3.5rem;
        height: 3.5rem;
        font-size: 1.25rem;
    }

    .feature-title {
        font-size: 1.1rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    .step-card {
        padding: 1rem 0;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.1rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .step-desc {
        font-size: 0.9rem;
    }

    .video-section {
        padding: 2.5rem 1rem;
    }

    .form-input {
        padding: 0.75rem 0.875rem;
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .btn-primary {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        max-height: 400px;
        padding: 0 1.25rem 1rem;
    }

    .scroll-top-btn {
        bottom: calc(1rem + var(--mobile-nav-height) + var(--safe-bottom));
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
    }

    /* Modal Mobile Adjustments */
    .modal-content {
        border-radius: var(--radius-lg);
        max-width: 95vw;
    }

    .modal-header {
        padding: 1.25rem 1.25rem 0;
    }

    .modal-header h2 {
        font-size: 1.25rem;
    }

    .modal-body {
        padding: 1.25rem;
        font-size: 0.9rem;
    }

    .modal-feature-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .modal-feature-icon {
        width: 2rem;
        height: 2rem;
        font-size: 1.1rem;
    }

    .modal-feature-text h4 {
        font-size: 1rem;
    }

    .modal-footer {
        padding: 0 1.25rem 1.25rem;
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }

    /* Auth card adjustments */
    .auth-section-wrapper {
        padding: 2rem 1rem;
    }

    .auth-card {
        padding: 1.5rem 1.25rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .auth-subtitle {
        font-size: 0.9rem;
    }

    .terms-check {
        padding: 0.875rem 1rem;
        gap: 0.75rem;
    }

    .terms-check input {
        width: 18px;
        height: 18px;
    }

    .terms-check label {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .footer-top-row {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .footer-brand {
        border-bottom: 1px solid rgba(99, 102, 241, 0.2);
        padding-bottom: 1.5rem;
    }

    .footer-contact-info {
        align-items: center;
        gap: 0.5rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .payment-methods {
        gap: 0.75rem;
    }

    .payment-badge {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .footer-links {
        align-items: center;
        gap: 0.75rem;
    }

    .footer-middle {
        flex-direction: column;
        gap: 1.25rem;
    }

    .footer-social-links {
        gap: 0.75rem;
    }

    .footer-social-links a {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .whatsapp-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .footer-nav-col h4 {
        font-size: 0.95rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }

    .social-proof-stats {
        gap: 1.5rem;
    }

    .social-stat-value {
        font-size: 1.1rem;
    }

    .social-stat-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 375px) {
    .navbar {
        padding: 0.4rem 0.5rem;
    }

    .navbar-logo {
        font-size: 0.9rem;
    }

    .navbar-logo-img {
        width: 1.5rem;
        height: 1.5rem;
    }

    .navbar-btn {
        padding: 0.35rem 0.5rem;
        font-size: 0.7rem;
    }

    .navbar-btn-theme {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .hero-section {
        padding: 4.5rem 0.75rem 1.5rem;
    }

    .hero-title {
        font-size: 1.5rem;
        letter-spacing: -0.02em;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.625rem;
        gap: 0.25rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
        gap: 0.25rem;
    }

    .features-section {
        padding: 2rem 0.75rem;
    }

    .features-grid {
        gap: 1rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.1rem;
        margin: 0 auto 0.75rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .feature-desc {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .section-title {
        font-size: 1.35rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .steps-grid {
        gap: 1.25rem;
    }

    .step-number {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }

    .step-title {
        font-size: 1rem;
    }

    .step-desc {
        font-size: 0.8rem;
    }

    .form-input {
        padding: 0.65rem 0.75rem;
        font-size: 1rem;
    }

    .form-group label {
        font-size: 0.85rem;
    }

    .btn-primary {
        padding: 0.65rem 0.875rem;
        font-size: 0.9rem;
    }

    .faq-question {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }

    .faq-question i {
        font-size: 1.2rem;
    }

    .auth-card {
        padding: 1.25rem 1rem;
    }

    .auth-title {
        font-size: 1.35rem;
    }

    .auth-subtitle {
        font-size: 0.85rem;
    }

    .brand-large {
        font-size: 2rem;
    }

    .modal-header h2 {
        font-size: 1.1rem;
    }

    .modal-body {
        font-size: 0.85rem;
    }

    .modal-feature-text h4 {
        font-size: 0.9rem;
    }

    .modal-feature-text p {
        font-size: 0.8rem;
    }

    .footer-brand-text {
        font-size: 0.85rem;
    }

    .landing-footer {
        padding: 2.5rem 0.75rem 1.25rem;
        margin-top: 1.25rem;
    }

    .footer-top-row {
        gap: 1.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .footer-middle {
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.75rem;
    }

    .footer-contact-info {
        gap: 0.5rem;
    }

    .contact-item {
        font-size: 0.8rem;
    }

    .contact-item i {
        font-size: 0.9rem;
    }

    .payment-methods {
        gap: 0.5rem;
    }

    .payment-badge {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    .footer-copyright {
        font-size: 0.75rem;
    }

    .social-stat-value {
        font-size: 1rem;
    }

    .social-stat-label {
        font-size: 0.75rem;
    }

    .social-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }

    .signup-guide {
        padding: 1rem;
        margin-top: 1.25rem;
    }

    .signup-guide h3 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .guide-list li {
        font-size: 0.85rem;
        gap: 0.75rem;
    }

    .dot {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .footer-social-links {
        gap: 0.5rem;
    }

    .footer-social-links a {
        width: 2rem;
        height: 2rem;
        font-size: 0.9rem;
    }

    .whatsapp-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        gap: 0.4rem;
    }

    .whatsapp-btn i {
        font-size: 1rem;
    }

    .footer-nav-col h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
}


/* ========== RESPONSIVE FOOTER ========== */
@media (max-width: 768px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .footer-cta-text h3 {
        font-size: 1.25rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .footer-policy-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-cta-inner {
        padding: 1.5rem 1rem;
    }

    .footer-cta-text h3 {
        font-size: 1.1rem;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .footer-brand .navbar-logo {
        justify-content: center;
    }

    .footer-brand-text {
        max-width: 100%;
    }

    .footer-brand .footer-social-links {
        justify-content: center;
    }

    .footer-nav-col {
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-contact-info {
        align-items: center;
    }

    .footer-social-links a {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }

    .footer-copyright {
        font-size: 0.8rem;
    }

    .footer-policy-links {
        font-size: 0.8rem;
        gap: 0.5rem 1rem;
    }
}

@media (max-width: 375px) {
    .footer-cta-inner {
        padding: 1.5rem 0.75rem;
    }

    .footer-cta-text h3 {
        font-size: 1rem;
    }

    .footer-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 0.65rem 1.25rem;
        font-size: 0.9rem;
    }
}