/* ========================================
   CLICKCASZ - UNIFIED STYLE GUIDE
   Architected for UI/UX Excellence
   ======================================== */

/* Color Palette & Variables */
:root {
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);

    /* Brand Colors */
    --primary: #667eea;
    --primary-dark: #764ba2;
    --secondary: #ec4899;
    --success: #10b981;
    --success-dark: #059669;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;

    /* Neutral Colors */
    --dark: #111827;
    --light: #f8f9fb;
    --white: #ffffff;

    /* Text Colors */
    --text-dark: #1f2937;
    --text-light: #6b7280;

    /* Borders & Shadows */
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 32px rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-family-mobile: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.6;
}

body {
    overflow-x: hidden;
}

/* ========================================
   HEADER STYLES
   ======================================== */

.header-navbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.navbar-brand i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-logo {
    max-width: 100%;
    height: auto;
    display: block;
    max-height: 50px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    width: 100%;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-login {
    background: var(--gradient-primary);
    color: var(--white) !important;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-login:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.dropdown-menu {
    border: 1px solid var(--border) !important;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--light);
    color: var(--primary);
}

.dropdown-item.active,
.dropdown-item:active {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Hamburger Menu (Hidden Desktop) */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    margin-right: 1rem;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Sidebar Menu */
.sidebar-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.sidebar-menu.active {
    transform: translateX(0);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.sidebar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--dark);
}

.sidebar-brand i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    padding: 0;
    transition: all 0.2s ease;
}

.sidebar-close:hover {
    color: var(--primary);
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.sidebar-link:hover {
    background: var(--light);
    color: var(--primary);
    border-left-color: var(--primary);
}

.sidebar-link.active {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.sidebar-link i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

.sidebar-divider {
    margin: 1rem 0;
    border-color: var(--border);
}

.sidebar-section {
    padding: 0.5rem 0;
}

.sidebar-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.75rem 1.5rem 0.5rem;
    margin: 0;
    letter-spacing: 0.5px;
}

.sidebar-sublink {
    padding-left: 3rem;
    font-size: 0.95rem;
}

.sidebar-sublink i {
    width: 20px;
    font-size: 1rem;
}

.btn-login-sidebar {
    background: var(--gradient-primary);
    color: var(--white) !important;
    font-weight: 600;
    margin: 1rem 1.5rem;
    border-radius: 8px;
}

.btn-login-sidebar:hover {
    color: var(--white) !important;
    opacity: 0.9;
}

/* Desktop Nav (Show on Desktop) */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.desktop-nav .nav-link {
    padding: 0.5rem 0;
    white-space: nowrap;
}

.desktop-nav .btn-login {
    margin-left: 1rem;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--primary);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   LAYOUT & CONTAINERS
   ======================================== */

section {
    padding: 50px 0;
    width: 100%;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: slideInUp 0.8s ease-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 600px;
    line-height: 1.8;
    animation: slideInUp 0.8s ease-out 0.1s backwards;
}

.hero-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 1rem;
    margin-bottom: 0;
    font-style: italic;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: slideInUp 0.8s ease-out 0.2s backwards;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    user-select: none;
}

.btn-primary {
    background: var(--success);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.btn-primary:hover {
    background: var(--success-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ========================================
   SECTION TITLES
   ======================================== */

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--text-dark);
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works {
    background: var(--light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

.step-content {
    flex: 1;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.step-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}


/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-block {
    margin-bottom: 4rem;
}

.about-block h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid var(--primary);
}

.about-block p {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
}

/* How Works List */
.how-works-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.work-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.work-number {
    min-width: 50px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.3rem;
}

.work-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.work-content p {
    color: var(--text-light);
    margin: 0;
}

/* Reasons Grid */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.reason-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.reason-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.reason-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.reason-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
}

.reason-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    margin-bottom: 1rem;
    background: var(--light);
    border-radius: 8px;
    border-left: 4px solid var(--success);
}

.feature-title {
    font-weight: 700;
    color: var(--primary);
    min-width: 150px;
}

.feature-desc {
    color: var(--text-dark);
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: 12px;
}

.info-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--primary);
}

.info-card ul {
    list-style: none;
    margin: 0;
}

.info-card ul li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.info-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #f0f4ff 0%, #f0f8ff 100%);
    border-left: 4px solid var(--primary);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: var(--text-dark);
}

.highlight-box.warning {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 100%);
    border-left-color: var(--warning);
}

.highlight-box strong {
    color: var(--primary);
}

.highlight-box.warning strong {
    color: var(--warning);
}

.highlight-box ul {
    margin-top: 1rem;
    margin-left: 2rem;
}

.highlight-box ul li {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

/* Contact Info */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    align-items: flex-start;
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    margin: 0;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.about-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.content-list {
    list-style: none;
    margin-left: 0;
}

.content-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
}

.content-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   ABOUT SECTION - MOBILE RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
    /* Hero Section Mobile */
    .about-hero {
        padding: 50px 0 40px;
    }

    .about-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .about-hero-content p {
        font-size: 1rem;
    }

    /* About Content Mobile */
    .about-section {
        padding: 40px 0;
    }

    .about-content {
        padding: 0 15px;
    }

    .about-block {
        margin-bottom: 3rem;
    }

    .about-block h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.6rem;
    }

    .about-block p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    /* How Works List Mobile */
    .how-works-list {
        gap: 1.2rem;
        margin: 1.5rem 0;
    }

    .work-item {
        gap: 1rem;
        padding: 1.2rem;
    }

    .work-number {
        min-width: 45px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .work-content h4 {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }

    .work-content p {
        font-size: 0.9rem;
    }

    /* Reasons Grid Mobile */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 1.5rem 0;
    }

    .reason-card {
        padding: 1.5rem;
    }

    .reason-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .reason-card h4 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .reason-card p {
        font-size: 0.9rem;
    }

    /* Features List Mobile */
    .features-list {
        margin: 1.5rem 0;
    }

    .features-list li {
        padding: 0.9rem;
        margin-bottom: 0.8rem;
        gap: 0.8rem;
        flex-direction: column;
    }

    .feature-title {
        min-width: auto;
        color: var(--primary);
        font-size: 0.95rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }

    /* Info Cards Mobile */
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 1.5rem 0;
    }

    .info-card {
        padding: 1.5rem;
    }

    .info-card h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

    .info-card ul li {
        padding: 0.5rem 0;
        padding-left: 1.2rem;
        font-size: 0.9rem;
    }

    /* Highlight Box Mobile */
    .highlight-box {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .highlight-box ul {
        margin-left: 1.5rem;
    }

    .highlight-box ul li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    /* Contact Info Mobile */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        margin: 1.5rem 0;
    }

    .contact-item {
        gap: 1rem;
        padding: 1.5rem;
    }

    .contact-item i {
        font-size: 2rem;
    }

    .contact-details h5 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    /* CTA Section Mobile */
    .cta-section {
        padding: 40px 0;
        margin: 30px 0;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Hero Section Extra Small */
    .about-hero {
        padding: 40px 0 30px;
    }

    .about-hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .about-hero-content p {
        font-size: 0.9rem;
    }

    /* About Content Extra Small */
    .about-section {
        padding: 30px 0;
    }

    .about-content {
        padding: 0 12px;
    }

    .about-block {
        margin-bottom: 2.5rem;
    }

    .about-block h2 {
        font-size: 1.3rem;
        margin-bottom: 0.9rem;
        padding-bottom: 0.5rem;
    }

    .about-block p {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
        line-height: 1.5;
    }

    /* How Works List Extra Small */
    .how-works-list {
        gap: 1rem;
        margin: 1.2rem 0;
    }

    .work-item {
        gap: 0.8rem;
        padding: 1rem;
    }

    .work-number {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }

    .work-content h4 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .work-content p {
        font-size: 0.85rem;
        margin: 0;
    }

    /* Reasons Grid Extra Small */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.2rem 0;
    }

    .reason-card {
        padding: 1.2rem;
    }

    .reason-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .reason-card h4 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .reason-card p {
        font-size: 0.85rem;
    }

    /* Features List Extra Small */
    .features-list {
        margin: 1.2rem 0;
    }

    .features-list li {
        padding: 0.8rem;
        margin-bottom: 0.7rem;
        gap: 0.6rem;
    }

    .feature-title {
        font-size: 0.9rem;
    }

    .feature-desc {
        font-size: 0.85rem;
    }

    /* Info Cards Extra Small */
    .info-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.2rem 0;
    }

    .info-card {
        padding: 1.2rem;
    }

    .info-card h4 {
        font-size: 1rem;
        margin-bottom: 0.7rem;
    }

    .info-card ul li {
        padding: 0.4rem 0;
        padding-left: 1.2rem;
        font-size: 0.85rem;
    }

    /* Highlight Box Extra Small */
    .highlight-box {
        padding: 1.2rem;
        margin: 1.2rem 0;
    }

    .highlight-box ul {
        margin-left: 1.3rem;
        margin-top: 0.8rem;
    }

    .highlight-box ul li {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    /* Contact Info Extra Small */
    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin: 1.2rem 0;
    }

    .contact-item {
        gap: 0.8rem;
        padding: 1.2rem;
    }

    .contact-item i {
        font-size: 1.8rem;
    }

    .contact-details h5 {
        font-size: 0.95rem;
        margin-bottom: 0.3rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }

    /* CTA Section Extra Small */
    .cta-section {
        padding: 30px 0;
        margin: 25px 0;
    }

    .cta-section h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .cta-section p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }

    .cta-section .btn {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
    }
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 12px 12px 0 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 2.8rem;
    margin-bottom: 1.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   STATS SECTION
   ======================================== */

.stats {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   ELIGIBILITY SECTION - MATERIAL DESIGN
   ======================================== */

.eligibility-section {
    background: #f5f5f5;
    padding: 40px 0;
}

.eligibility-title {
    font-size: 1.75rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.eligibility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.eligibility-item {
    display: grid;
    grid-template-columns: 50px 1fr 50px;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    transition: background 0.2s ease;
}

.eligibility-item:last-child {
    border-bottom: none;
}

.eligibility-item:hover {
    background: #fafafa;
}

.eligibility-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.eligibility-item-content {
    display: flex;
    align-items: center;
}

.eligibility-item-content h5 {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.5;
}

.eligibility-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    color: #4caf50;
    font-size: 1.3rem;
    flex-shrink: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .eligibility-section {
        padding: 30px 0;
    }

    .eligibility-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .eligibility-list {
        max-width: 100%;
        margin: 0 20px;
        grid-template-columns: 1fr;
    }

    .eligibility-item {
        grid-template-columns: 44px 1fr 44px;
        gap: 0.8rem;
        padding: 1rem 1.2rem;
    }

    .eligibility-item-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .eligibility-item-content h5 {
        font-size: 0.95rem;
    }

    .eligibility-check {
        width: 28px;
        height: 28px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .eligibility-section {
        padding: 25px 0;
    }

    .eligibility-title {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }

    .eligibility-list {
        margin: 0 15px;
    }

    .eligibility-item {
        grid-template-columns: 40px 1fr 40px;
        gap: 0.7rem;
        padding: 0.9rem 1rem;
    }

    .eligibility-item-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .eligibility-item-content h5 {
        font-size: 0.9rem;
    }

    .eligibility-check {
        width: 26px;
        height: 26px;
        font-size: 1.1rem;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
    border-radius: 16px;
    margin: 50px 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* ========================================
   DISCLAIMER SECTION
   ======================================== */

.disclaimer-section {
    background: #f3f4f6;
    padding: 50px 0;
    margin: 30px 0;
}

.disclaimer-box {
    background: var(--white);
    border-left: 4px solid var(--warning);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.disclaimer-box h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warning);
    margin-bottom: 1rem;
}

.disclaimer-box p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   RULES & FACTS SECTIONS
   ======================================== */

.rules-section {
    background: var(--light);
    padding: 50px 0;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.rule-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--warning);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.rule-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.rule-card.warning {
    border-left-color: #f59e0b;
}

.rule-icon {
    width: 50px;
    height: 50px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #f59e0b;
    margin-bottom: 1rem;
}

.rule-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.rule-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.facts-section {
    background: var(--white);
    padding: 50px 0;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.fact-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--light);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fact-item:hover {
    background: var(--gradient-primary);
    color: var(--white);
    transform: translateX(8px);
}

.fact-item i {
    font-size: 1.5rem;
    color: var(--success);
    min-width: 30px;
}

.fact-item:hover i {
    color: var(--white);
}

.fact-item span {
    font-weight: 600;
    font-size: 0.95rem;
}

/* ========================================
   COMPARISON SECTION
   ======================================== */

.comparison-section {
    background: var(--white);
    padding: 50px 0;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.comparison-card {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.comparison-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.comparison-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.comparison-card .earning {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.comparison-card .earning-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.comparison-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-section {
    background: var(--white);
    padding: 50px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    margin: 0 0 1rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.faq-toggle-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    display: none;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Mobile - Collapsed by default */
@media (max-width: 768px) {
    .faq-toggle-icon {
        display: inline-block;
    }

    .faq-item.collapsed .faq-answer {
        display: none;
    }

    .faq-item.collapsed .faq-toggle-icon {
        transform: rotate(-90deg);
    }
}

.support-section {
    background: var(--gradient-primary);
    padding: 60px 0;
}

.support-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.support-icon {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.support-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.support-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ========================================
   AUTH STYLES (Login & OTP Verify)
   ======================================== */

.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    padding: 1rem;
    position: relative;
}

.auth-content {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.auth-header {
    text-align: center;
}

.auth-icon {
    font-size: 4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.auth-icon-small {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.auth-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.auth-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

.otp-timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 10px;
    color: #92400e;
    font-size: 0.95rem;
}

.otp-timer i {
    font-size: 1.2rem;
}

.auth-debug {
    padding: 0.75rem 1rem;
    background: #e0e7ff;
    border-radius: 8px;
    color: #3730a3;
    font-size: 0.75rem;
}

.auth-form-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-auth-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.95rem 1.5rem;
    background: var(--white);
    border: 1px solid #dadce0;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #3c4043;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.btn-auth-social:hover,
.btn-auth-social:active {
    background: #f8f9fa;
    border-color: #dadce0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
    transform: translateY(-1px);
}

.btn-auth-social i {
    font-size: 1.2rem;
    background: linear-gradient(to right, #4285f4 0%, #34a853 25%, #fbbc04 50%, #ea4335 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.google-logo {
    width: 24px;
    height: 24px;
}

.auth-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group-auth {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label-auth {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input-auth {
    padding: 0.95rem 1.2rem;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input-auth:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-input-otp {
    font-size: 1.4rem;
    letter-spacing: 0.5rem;
    text-align: center;
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.form-help-auth {
    font-size: 0.8rem;
    color: var(--text-light);
}

.btn-auth-primary {
    padding: 0.95rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-auth-primary:hover,
.btn-auth-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-auth-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-auth-secondary {
    padding: 0.75rem 1.5rem;
    background: var(--white);
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-auth-secondary:hover:not(:disabled),
.btn-auth-secondary:active:not(:disabled) {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.btn-auth-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.auth-terms {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.5;
}

.auth-terms a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-terms a:hover {
    text-decoration: underline;
}

.auth-referral {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 10px;
}

.auth-referral i {
    font-size: 1.5rem;
    color: var(--success);
    min-width: 32px;
    text-align: center;
}

.auth-referral strong {
    color: var(--success);
}

.auth-referral p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0.25rem 0 0 0;
}

.auth-resend {
    text-align: center;
}

.auth-resend-text {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.auth-resend-form {
    margin-bottom: 1rem;
}

.auth-back-link {
    display: inline-block;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-back-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* ========================================
   CONTACT STYLES
   ======================================== */

.contact-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-form-box .section-title {
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-box {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.contact-info-box .section-title {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.contact-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-info-icon {
    font-size: 1.8rem;
    color: var(--primary);
    min-width: 50px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 0.25rem;
}

.contact-info-content h6 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
}

.contact-info-content a {
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

/* ========================================
   APP SIDEBAR & TOPBAR (Logged-in Users)
   ======================================== */

.app-sidebar {
    background: var(--white);
    border-right: 1px solid var(--border);
    width: 260px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    overflow-y: auto;
    transition: all 0.3s ease;
}

.sidebar-header-app {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.sidebar-logo i {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sidebar-close-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

.sidebar-nav-app {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
}

.sidebar-nav-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    position: relative;
}

.sidebar-nav-item:hover {
    background: var(--light);
    color: var(--primary);
}

.sidebar-nav-item.active {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary);
    border-left-color: var(--primary);
    font-weight: 600;
}

.sidebar-nav-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.sidebar-nav-logout {
    color: var(--danger) !important;
    margin-top: auto;
}

.sidebar-nav-logout:hover {
    background: rgba(239, 68, 68, 0.08);
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.sidebar-overlay.active {
    display: block;
}

/* App Topbar */
.app-topbar {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.5rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
    margin-left: 260px;
}

.wrapper-app {
    display: flex;
    min-height: 100vh;
}

.main-content-app {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-left: 260px;
}

.content-area-app {
    flex: 1;
    padding: 2rem;
    background: var(--light);
    overflow-y: auto;
}

.topbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hamburger-app {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    padding: 0;
}

.hamburger-app span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.topbar-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.topbar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-info {
    text-align: right;
}

.user-greeting {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.user-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.user-wallet {
    font-size: 1.2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.user-avatar {
    font-size: 2rem;
    color: var(--primary);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light);
    border-radius: 50%;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer-main {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px 0 0;
    margin-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    padding: 20px 0 15px;
}

.footer-section h6 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.footer-brand i {
    font-size: 1.5rem;
    color: var(--white);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-size: 0.85rem;
    max-width: 300px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-link.active {
    color: var(--white);
    font-weight: 600;
    padding-left: 4px;
}

.footer-divider {
    background-color: rgba(255, 255, 255, 0.2) !important;
    margin: 12px 0;
}

.footer-bottom {
    text-align: center;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-contact-info {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: all 0.3s ease;
}

.footer-contact-info:hover {
    color: var(--white);
}

.footer-contact-info i {
    color: var(--white);
    font-size: 1.1rem;
}

/* ========================================
   TABLET RESPONSIVENESS (≤768px)
   ======================================== */

@media (max-width: 768px) {

    /* Hero */
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    /* Titles */
    .section-title {
        font-size: 1.8rem;
    }

    /* Buttons */
    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* Grids */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .facts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Header */
    .header-navbar {
        padding: 0.75rem 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand {
        font-size: 1.2rem;
        gap: 0.4rem;
    }

    .navbar-brand i {
        font-size: 1.4rem;
    }

    .nav-link {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .nav-link::after {
        display: none;
    }

    .desktop-nav {
        gap: 1.5rem;
    }

    .btn-login {
        padding: 8px 16px;
        font-size: 0.8rem;
        border-radius: 6px;
    }

    .dropdown-menu {
        min-width: auto;
        font-size: 0.85rem;
    }

    .dropdown-item {
        padding: 0.5rem 1rem;
    }

    .gap-4 {
        gap: 0.75rem !important;
    }

    /* Footer */
    .footer-content {
        padding: 40px 0;
    }

    .footer-brand {
        font-size: 1.3rem;
    }

    .footer-section h6 {
        font-size: 1rem;
    }

    .footer-bottom {
        padding: 20px 0;
    }
}

/* ========================================
   MOBILE RESPONSIVENESS (≤480px)
   Android App Style - Material Design
   ======================================== */

@media (max-width: 480px) {

    /* Base */
    html,
    body {
        font-size: 14px;
        font-family: var(--font-family-mobile);
        overflow-x: hidden;
        width: 100%;
        max-width: 100%;
    }

    section {
        padding: 20px 0;
        width: 100%;
        overflow-x: hidden;
    }

    .container {
        padding: 0 16px;
        max-width: 100%;
        width: 100%;
    }

    /* ---- Header Mobile ---- */
    .header-navbar {
        padding: 0.75rem 0;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    }

    .navbar-brand {
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .navbar-brand i {
        font-size: 1.4rem;
    }

    .navbar-logo {
        max-height: 35px;
    }

    .hamburger-menu {
        display: flex;
    }

    .hamburger-menu span {
        background: var(--text-dark);
    }

    .desktop-nav {
        display: none !important;
    }

    .nav-link {
        font-size: 0.85rem;
        font-weight: 500;
    }

    .nav-link::after {
        display: none;
    }

    /* ---- Hero Mobile ---- */
    .hero {
        padding: 24px 16px 32px 16px;
        background: var(--gradient-primary);
        margin: 0;
        width: 100%;
    }

    .hero::before,
    .hero::after {
        display: none;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 1.5rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 0.5rem;
        letter-spacing: -0.5px;
    }

    .hero p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        opacity: 0.9;
        line-height: 1.4;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 0.9rem;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.2s ease;
    }

    .btn-primary {
        box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    }

    .btn-primary:active {
        transform: scale(0.98);
    }

    .btn-secondary:active {
        transform: scale(0.98);
    }

    /* ---- How It Works Mobile ---- */
    .how-it-works {
        background: #f5f7fa;
        padding: 24px 0;
        display: block;
    }

    .section-title {
        font-size: 1.2rem;
        font-weight: 800;
        margin-bottom: 1.2rem;
        letter-spacing: -0.3px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .step-card {
        background: var(--white);
        padding: 16px;
        border-radius: 12px;
        border: none;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: flex-start;
        gap: 12px;
    }

    .step-card:active {
        background: #f9f9f9;
    }

    .step-number {
        width: 44px;
        height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: var(--gradient-primary);
        color: var(--white);
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 0;
    }

    .step-content {
        flex: 1;
        padding-top: 2px;
    }

    .step-icon {
        display: none;
    }

    /* ---- Auth Pages Mobile ---- */
    .auth-container {
        min-height: 100vh;
        padding: 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .auth-content {
        gap: 1.5rem;
        max-width: 100%;
    }

    .auth-header {
        margin-bottom: 0.5rem;
        margin-top: 2rem;
    }

    .auth-icon {
        font-size: 3.2rem;
        margin-bottom: 0.8rem;
    }

    .auth-icon-small {
        font-size: 2.4rem;
        margin-bottom: 0.8rem;
    }

    .auth-title {
        font-size: 1.6rem;
        margin-bottom: 0.4rem;
    }

    .auth-subtitle {
        font-size: 0.9rem;
    }

    .btn-auth-social {
        padding: 0.85rem 1.2rem;
        font-size: 0.95rem;
        gap: 0.6rem;
        border-radius: 10px;
    }

    .btn-auth-primary {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        font-weight: 700;
        border-radius: 10px;
    }

    .form-input-auth {
        padding: 0.9rem 1.2rem;
        font-size: 1rem;
        border-radius: 10px;
    }

    .form-input-otp {
        font-size: 1.6rem;
        letter-spacing: 0.6rem;
    }

    .auth-terms {
        font-size: 0.75rem;
        margin-top: -0.5rem;
    }

    .auth-referral {
        padding: 1rem;
        border-radius: 10px;
        gap: 0.8rem;
    }

    .auth-resend-text {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .btn-auth-secondary {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
    }

    /* ---- App Sidebar & Topbar Mobile ---- */
    .app-sidebar {
        position: fixed;
        left: -260px;
        width: 260px;
        top: 0;
        bottom: 0;
        transition: left 0.3s ease;
    }

    .app-sidebar.active {
        left: 0;
    }

    .sidebar-close-btn {
        display: block;
    }

    .app-topbar {
        margin-left: 0 !important;
    }

    .main-content-app {
        margin-left: 0 !important;
    }

    .hamburger-app {
        display: block;
    }

    .topbar-title {
        font-size: 1.1rem;
    }

    .user-greeting {
        display: none;
    }

    .user-info {
        display: block;
    }

    .user-wallet {
        font-size: 1rem;
    }

    .user-avatar {
        width: 36px;
        height: 36px;
        font-size: 1.8rem;
    }

    .content-area-app {
        padding: 1.5rem;
    }

    .step-card h5 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
    }

    .step-card p {
        font-size: 0.8rem;
        color: #6b7280;
        line-height: 1.4;
        margin: 0;
    }

    /* ---- Stats Mobile (Hidden) ---- */
    .stats {
        display: none;
    }

    /* ---- Features Mobile ---- */
    .features {
        background: var(--white);
        padding: 24px 0;
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .feature-card {
        background: var(--white);
        padding: 16px;
        border-radius: 12px;
        border: 1px solid var(--border);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    }

    .feature-card:nth-child(n+4) {
        display: none;
    }

    .feature-card::before {
        display: none;
    }

    .feature-card:active {
        background: #fafbfc;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
        background: none;
        color: var(--primary);
    }

    .feature-card h5 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
    }

    .feature-card p {
        font-size: 0.8rem;
        color: #6b7280;
        line-height: 1.4;
        margin: 0;
    }

    /* ---- CTA Mobile ---- */
    .cta-section {
        background: var(--gradient-primary);
        padding: 28px 16px;
        margin: 20px 0 0 0;
        border-radius: 0;
        text-align: center;
        display: block;
        width: 100%;
    }

    .cta-section h2 {
        font-size: 1.3rem;
        font-weight: 800;
        margin-bottom: 0.6rem;
        letter-spacing: -0.3px;
    }

    .cta-section p {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
        opacity: 0.9;
    }

    .cta-section .btn {
        background: var(--white);
        color: var(--primary);
        font-weight: 700;
    }

    /* ---- Footer Mobile ---- */
    .footer-main {
        display: none;
    }

    /* ---- How It Works Mobile (Short & Sweet) ---- */
    .rules-section {
        display: none;
    }

    .facts-section {
        display: none;
    }

    /* ---- FAQ Mobile (Short & Sweet) ---- */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        padding: 1rem;
    }

    .faq-question {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .faq-answer {
        font-size: 0.85rem;
    }

    /* ---- Earn Page Mobile (Widget Style) ---- */
    /* Show all content as distinct widgets */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .feature-card {
        padding: 1.2rem;
        border-radius: 12px;
        background: var(--white);
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
    }

    .feature-card:active {
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        transform: translateY(-2px);
    }

    .feature-icon {
        font-size: 2.2rem;
        margin-bottom: 0.6rem;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--gradient-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .feature-card h5 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.4rem;
        color: var(--text-dark);
    }

    .feature-card p {
        font-size: 0.75rem;
        line-height: 1.4;
        color: var(--text-light);
    }

    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .comparison-card {
        padding: 1.2rem;
        border-radius: 12px;
        background: var(--white);
        border: 1px solid var(--border-color);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        text-align: center;
        transition: all 0.3s ease;
    }

    .comparison-card:active {
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
        transform: translateY(-2px);
    }

    .comparison-icon {
        font-size: 2.4rem;
        margin-bottom: 0.5rem;
    }

    .comparison-card h5 {
        font-size: 0.95rem;
        font-weight: 700;
        margin-bottom: 0.3rem;
        color: var(--text-dark);
    }

    .comparison-card .earning {
        font-size: 1.3rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 0.1rem;
    }

    .comparison-card .earning-text {
        font-size: 0.7rem;
        color: var(--text-light);
        margin-bottom: 0.4rem;
    }

    .comparison-card p:not(.earning):not(.earning-text) {
        font-size: 0.75rem;
        line-height: 1.4;
        color: var(--text-light);
    }

    /* Show 4 earning potential cards in 2x2 grid on mobile */
    @media (max-width: 480px) {
        .comparison-grid {
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
        }
    }

    /* ---- Cards & Grids Mobile ---- */
    .rules-grid,
    .facts-grid,
    .comparison-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .rule-card,
    .fact-item,
    .comparison-card,
    .faq-item {
        padding: 1.2rem;
    }

    /* ---- Contact Page Mobile ---- */
    .contact-wrapper {
        display: grid;
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-box,
    .contact-info-box {
        width: 100%;
    }

    .contact-info-item {
        display: flex;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
}

.fact-item {
    gap: 0.8rem;
}

.comparison-card .earning {
    font-size: 1.5rem;
}

.support-card {
    padding: 1.5rem;
}

.support-icon {
    font-size: 2.5rem;
}

.support-card h3 {
    font-size: 1.3rem;
}

.cta-section h2 {
    font-size: 1.5rem;
}

.cta-section p {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ---- Utilities Mobile ---- */
html {
    scroll-behavior: smooth;
}

.step-card,
.feature-card,
.btn {
    user-select: none;
    -webkit-user-select: none;
}