/* -------------------- Header -------------------- */
.landing-header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
}
.landing-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
    padding: 20px 40px;
}
.landing-header .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.landing-header .brand .icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    overflow: hidden;
    flex-shrink: 0;
}
.landing-header .brand .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.brand-tagline {
    display: block;
    font-size: 11px;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 1px;
}
.landing-nav { display: flex; align-items: center; gap: 30px; }
.landing-nav a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.15s ease;
}
.landing-nav a:hover { color: var(--accent-purple); }
.landing-nav a.active { color: var(--accent-purple); font-weight: 600; }

.landing-nav .btn-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 26px;
    border-radius: 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(99,102,241,0.35);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.landing-nav .btn-login:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(99,102,241,0.45);
    color: #fff;
}

/* -------------------- Hero -------------------- */
.hero-band {
    background: var(--sidebar-bg);
    padding: 70px 40px;
}
.hero-band-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}
.hero-copy h1 {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}
.hero-copy p {
    color: rgba(255,255,255,0.65);
    font-size: 15.5px;
    max-width: 460px;
    margin-bottom: 26px;
    line-height: 1.6;
}
.hero-actions { display: flex; gap: 12px; }
.hero-preview-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}
.hero-preview-card .preview-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 14px;
}

/* -------------------- Generic inner page hero -------------------- */
.page-hero {
    background: var(--sidebar-bg);
    padding: 56px 40px;
    text-align: center;
}
.page-hero h1 { color: #fff; font-size: 32px; font-weight: 800; margin-bottom: 10px; }
.page-hero p { color: rgba(255,255,255,0.6); font-size: 15px; max-width: 560px; margin: 0 auto; }

.page-section { padding: 60px 40px; max-width: 900px; margin: 0 auto; }
.page-section h2 { font-size: 24px; font-weight: 800; color: var(--text-primary); margin-bottom: 18px; }
.page-section p { font-size: 14.5px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }

/* -------------------- Flow strip -------------------- */
.flow-section { padding: 50px 40px 10px; max-width: 900px; margin: 0 auto; }
.flow-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap;
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: var(--radius); padding: 22px;
}
.flow-step {
    font-size: 13px; font-weight: 600; color: var(--text-primary);
    padding: 8px 16px; border-radius: 20px; background: var(--bg-input);
}
.flow-arrow { color: var(--text-muted); font-size: 14px; }

/* -------------------- Features -------------------- */
.features-section { padding: 60px 40px; max-width: 1080px; margin: 0 auto; }
.features-section h2 {
    text-align: center; font-size: 26px; font-weight: 800;
    color: var(--text-primary); margin-bottom: 36px;
}
.feature-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.feature-item {
    background: var(--bg-card); border: 1px solid var(--border-card);
    border-radius: var(--radius); padding: 20px;
}
.feature-item .f-icon {
    width: 40px; height: 40px; border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; margin-bottom: 12px;
}
.feature-item h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.feature-item p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* -------------------- Contact card -------------------- */
.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border-card);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 560px;
    margin: 0 auto;
}

/* -------------------- Rich Footer -------------------- */
.landing-footer { background: var(--sidebar-bg); padding: 44px 40px 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr;
    gap: 28px;
    max-width: 1150px;
    margin: 0 auto;
    padding-bottom: 36px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}
.footer-brand .icon {
    width: 30px; height: 30px; border-radius: 8px;
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 13px; overflow: hidden; flex-shrink: 0;
}
.footer-brand .icon img { width: 100%; height: 100%; object-fit: cover; }

.footer-brand-col p {
    font-size: 12.5px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,0.35);
    margin-bottom: 14px;
}
.footer-col a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    margin-bottom: 11px;
}
.footer-col a i { font-size: 11px; width: 14px; color: rgba(255,255,255,0.35); flex-shrink: 0; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
    max-width: 1150px;
    margin: 0 auto;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    text-align: center;
}
.footer-bottom a { color: var(--accent-blue); font-weight: 600; text-decoration: none; }

/* -------------------- Responsive -------------------- */
@media (max-width: 860px) {
    .hero-band-inner { grid-template-columns: 1fr; }
    .hero-copy h1 { font-size: 30px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .landing-header-inner { padding: 14px 20px; }
    .hero-band { padding: 50px 20px; }
    .flow-section, .features-section, .page-section { padding-left: 20px; padding-right: 20px; }
    .page-hero { padding: 40px 20px; }
    .landing-footer { padding: 34px 20px 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}
/* Desktop par Drawer Header & Contact Info ko chhupane ke liye */
.drawer-header,
.drawer-contact-info {
    display: none;
}

.hamburger-btn,
.nav-close-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.2s ease;
}

.hamburger-btn:hover,
.nav-close-btn:hover {
    background: var(--bg-input);
}

.landing-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(2px);
    z-index: 998;
}

.landing-overlay.active {
    display: block;
}

/* Mobile & Tablet View (768px and lower) */
@media (max-width: 768px) {
    .hamburger-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .landing-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: var(--bg-card);
        border-left: 1px solid var(--border-subtle);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 20px;
        gap: 12px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
        transition: right 0.3s ease-in-out;
        z-index: 999;
        overflow-y: auto; /* Lambe screen ke liye scroll option */
    }

    .landing-nav.active {
        right: 0;
    }

    /* Drawer Top Header */
    .drawer-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--border-subtle);
        margin-bottom: 5px;
    }

    .nav-close-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: static;
    }

    .landing-nav > a:not(.btn-login) {
        font-size: 14px;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-subtle);
    }

    .landing-nav .btn-login {
        width: 100%;
        margin-top: 5px;
        text-align: center;
    }

    /* Drawer Contact Info Section (Login ke niche) */
    .drawer-contact-info {
        display: flex;
        flex-direction: column;
        width: 100%;
        margin-top: 15px;
        padding-top: 15px;
        border-top: 1px dashed var(--border-subtle);
        gap: 10px;
    }

    .drawer-contact-info h4 {
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-muted);
        margin-bottom: 2px;
    }

    .drawer-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 13px;
        color: var(--text-secondary);
        text-decoration: none;
        padding: 2px 0 !important;
        border-bottom: none !important;
        line-height: 1.4;
    }

    .drawer-contact-item i {
        font-size: 12px;
        color: var(--accent-blue);
        margin-top: 3px;
        flex-shrink: 0;
        width: 14px;
    }
}