/* ========================= */
/* GOOGLE FONT */
/* ========================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');


/* ========================= */
/* ROOT DESIGN SYSTEM */
/* ========================= */

:root {

    /* ── BRAND COLORS ── */
    --primary: #6366F1;
    --glass: rgba(255, 255, 255, 0.65);
    /* main indigo */
    --primary-dark: #4F46E5;
    /* deeper indigo — hover states */
    --primary-darker: #3730A3;
    /* extra depth — active states */
    --primary-accent: #8B5CF6;
    /* soft purple — gradients end */
    --primary-light: #EEF2FF;
    /* very light indigo — backgrounds */
    --primary-soft: #E6EBFF;
    /* soft tint — subtle fills */
    --primary-soft2: #ECF0FA;
    /* hover bg on secondary elements */
    --primary-soft3: #DEE2F9;
    --shadow: 0 24px 70px rgba(99, 102, 241, 0.12);
    --bg-start: #eef2ff;
    --bg-end: #f0fdf9;
    --blob1: #6366f1;
    --blob2: #06b6d4;
    --blob3: #a855f7;
    --gradient-main: linear-gradient(135deg,
            #4F46E5 0%,
            #6366F1 45%,
            #8B5CF6 100%);
    --gradient-soft: linear-gradient(135deg,
            #EEF2FF 0%,
            #E0E4FC 100%);
    --primary-linear: linear-gradient(180deg,
            #F9FBFF 0%,
            #F1F4FA 40%,
            #E9EDF5 75%,
            #E2E7F0 100%);
    --primary-footer: linear-gradient(135deg,
            #1E2A55 0%,
            #0F1A38 50%,
            #060F22 100%);
    --primary-transparent: linear-gradient(135deg,
            rgba(255, 255, 255, 0.22) 0%,
            rgba(255, 255, 255, 0.10) 30%,
            rgba(255, 255, 255, 0.05) 100%),
        radial-gradient(circle at 20% 20%,
            rgba(255, 255, 255, 0.35),
            transparent 60%);


    /* ── STATUS COLORS ── */
    --success: #1EA672;
    /* green — positive states */
    --success-light: #D1FAE5;
    /* light green — success bg */
    --warning: #F59E0B;
    /* amber — stars, alerts */
    --warning-light: #FEF3C7;
    /* light amber — warning bg */
    --danger: #EF4444;
    /* red — errors */
    --danger-light: #FEE2E2;
    /* light red — error bg */


    /* ── TEXT ── */
    --text-main: #0F172A;
    /* headings, primary text */
    --text-secondary: #475569;
    /* body text, paragraphs */
    --text-ultra-light: #64748B;
    /* captions, placeholders */
    --text-light: #94A3B8;
    /* muted text, hints */
    --text-white: #FFFFFF;
    /* text on dark backgrounds */
    /* ── BACKGROUNDS ── */
    --bg-white: #FFFFFF;
    /* pure white — cards, modals */
    --bg-main: #F8FAFC;
    /* page background */
    --bg-soft: #F1F5F9;
    /* section alternates */
    --bg-muted: #E2E8F0;
    /* dividers, skeleton loaders */


    /* ── BORDERS ── */
    --border: 1px solid rgba(0, 0, 0, 0.06);
    /* default subtle border */
    --border-button: 1px solid rgba(0, 0, 0, 0.08);
    /* button borders */
    --border-medium: 1px solid rgba(0, 0, 0, 0.10);
    /* slightly more visible */
    --border-strong: 1px solid rgba(0, 0, 0, 0.16);
    /* inputs, focused states */
    --border-primary: 1px solid var(--primary-soft3);
    /* brand-colored border */


    /* ── SHADOWS ── */
    --shadow-xs: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04),
        0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.06),
        0 12px 28px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08),
        0 25px 60px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.14),
        0 40px 80px rgba(0, 0, 0, 0.10);
    --shadow-card: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 18px 35px rgba(0, 0, 0, 0.08);
    --shadow-primary: 0 8px 24px rgba(99, 102, 241, 0.25);
    --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    /* for cut line  */
    /* brand glow shadow */


    /* ── ICON ── */
    --icon-background: #EEF2FF;
    /* default icon bg */
    --icon-bg-hover: rgba(99, 102, 241, 0.15);
    /* icon bg on hover */


    /* ── BORDER RADIUS ── */
    --radius-xs: 4px;
    /* tags, tiny badges */
    --radius-sm: 6px;
    /* small inputs, chips */
    --radius-md: 10px;
    /* buttons, cards */
    --radius-lg: 16px;
    /* modals, large cards */
    --radius-xl: 24px;
    /* hero sections, big panels */
    --radius-full: 9999px;
    /* pills, avatars */


    /* ── TYPOGRAPHY — FONT FAMILY ── */
    --font-main: 'Inter', sans-serif;
    --font-display: 'Inter', sans-serif;
    /* swap to Syne/Clash if needed */
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;


    /* ── TYPOGRAPHY — SIZES ── */
    --fs-xs: 12px;
    /* tiny labels, badges */
    --fs-6: 14px;
    /* captions, small text */
    --fs-5: 16px;
    /* body text */
    --fs-4: 18px;
    /* large body / subheadings */
    --fs-3: 20px;
    /* h3 */
    --fs-2: 24px;
    /* h2 */
    --fs-1: 32px;
    /* h1 */
    --fs-bb: 40px;
    /* hero headings */
    --fs-hero: clamp(32px, 5vw, 56px);
    /* responsive hero h1 */


    /* ── TYPOGRAPHY — WEIGHTS ── */
    --fw-400: 400;
    /* regular */
    --fw-500: 500;
    /* medium */
    --fw-600: 600;
    /* semibold */
    --fw-700: 700;
    /* bold */
    --fw-800: 800;
    /* extrabold — hero numbers */


    /* ── SPACING ── */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 40px;
    --space-2xl: 64px;
    --space-3xl: 96px;


    /* ── TRANSITIONS ── */
    --transition-fast: 0.18s ease;
    --transition-normal: 0.32s ease;
    --transition-slow: 0.5s ease;


    /* ── LAYOUT ── */
    --container: 1400px;
    /* wide — full site max */
    --container-width: 1200px;
    /* standard content max */
    --container-sm: 860px;
    /* legal, blog, narrow pages */
    --container-xs: 640px;
    /* auth pages, modals */

}


/* ========================= */
/* RESET — SINGLE CLEAN BLOCK */
/* ========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}
html, body {
    min-height: 100%;
}
/* ─────────────────────────────────────────────────────────
   FIX #1 — body
   Global body sirf basic styles rakhta hai.
   display:flex / justify-content / align-items hata diya —
   ye sirf 404 / auth pages pe chahiye tha, poori site pe nahi.
   .page aur .auth-container apne andar ye centering khud karenge.
   padding: 20px bhi hataya — main pages pe unwanted white space deta tha.
───────────────────────────────────────────────────────── */
body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    /* min-height rakha — display:flex hata diya */
}


img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

input,
textarea,
select {
    font-family: inherit;
    outline: none;
    border: none;
}

::selection {
    background: var(--primary-soft3);
    color: var(--text-main);
}


/* ========================= */
/* GLOBAL TYPOGRAPHY */
/* ========================= */

h1 {
    font-size: var(--fs-1);
    font-weight: var(--fw-700);
    color: var(--text-main);
    line-height: 1.2;
}

h2 {
    font-size: var(--fs-2);
    font-weight: var(--fw-600);
    color: var(--text-main);
    line-height: 1.3;
}

h3 {
    font-size: var(--fs-3);
    font-weight: var(--fw-600);
    color: var(--text-main);
}

p {
    font-size: var(--fs-5);
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ========================= */
/* ANNOUNCEMENT BAR */
/* ========================= */

.announcement-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gradient-main);
    z-index: 2000;
}

.announcement-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
}

.announcement-text {
    color: rgba(255, 255, 255, 0.92);
    font-size: 13px;
    font-weight: 500;
    display: block;
}

.buy-button {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: var(--transition-fast);
    display: inline-block;
}

.buy-button:hover {
    background: rgba(255, 255, 255, 0.28);
}


/* =========================
   NAVBAR BASE
========================= */
.navbar {
    position: fixed;
    top: 33px;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    border-bottom: var(--border);
}

/* =========================
   CONTAINER
========================= */
.navbar-container {
    max-width: var(--container);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    position: relative;
}

/* =========================
   LOGO
========================= */
.logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
}

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

/* =========================
   NAV MENU (DESKTOP)
========================= */
#nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

/* NAV LINKS */
.header-nav {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-ultra-light);
    transition: color var(--transition-fast);
}

.header-nav:hover {
    color: var(--primary);
}

/* =========================
   BUTTONS
========================= */
.navbar-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    background: var(--gradient-main);
    color: var(--bg-white);
    padding: 9px 16px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: filter var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.navbar-btn:hover {
    filter: brightness(1.07);
}

.navbar-btn:active {
    transform: scale(0.97);
}

.btn-icon {
    transition: transform var(--transition-fast);
}

.navbar-btn:hover .btn-icon {
    transform: translateX(4px);
}

/* LOGIN BUTTON */
.login-btn {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    background: var(--bg-white);
    border: var(--border-button);
    padding: 9px 16px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    transition: background var(--transition-fast), color var(--transition-fast);
    text-decoration: none;
}

.login-btn:hover {
    background: var(--primary-soft2);
    color: var(--primary);
}

/* =========================
   PROFILE WRAPPER
========================= */
.profile-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* =========================
   PROFILE (MAIN)
========================= */
.profile {
    background: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;

    border: 1.5px solid rgba(0,0,0,0.06);
    transition: all 0.2s ease;
    cursor: pointer;
}

/* IMAGE */
.profile img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

/* HOVER */
.profile:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.12);
    border-color: var(--primary);
}

/* =========================
   DROPDOWN
========================= */
.profile-dropdown {
    position: absolute;
    top: 55px;
    right: 0;
    width: 180px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}

/* SHOW */
.profile-dropdown.active {
    display: flex;
}

/* ITEMS */
.dropdown-item {
    padding: 12px 14px;
    font-size: 14px;
    color: var(--text-main);
    text-decoration: none;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: var(--primary-soft2);
}

/* DIVIDER */
.dropdown-divider {
    height: 1px;
    background: #eee;
}

/* LOGOUT */
.logout {
    color: #e74c3c;
}

/* =========================
   BURGER
========================= */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--text-main);
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    /* NAV MENU */
    #nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        gap: 16px;
        display: none;
        box-shadow: var(--shadow-md);
    }

    #nav-menu.active {
        display: flex;
    }

    /* LINKS */
    .header-nav {
        width: 100%;
    }

    /* BUTTON */
    .navbar-btn {
        width: 100%;
        justify-content: center;
    }

    /* BURGER */
    .menu-toggle {
        display: block;
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* PROFILE FIX */
    .profile-wrapper {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
    }

    /* DROPDOWN MOBILE FIX */
    .profile-dropdown {
        right: 0;
        top: 55px;
    }
}
/* ========================= */
/* HERO SECTION */
/* ========================= */

.hero {
    background: var(--primary-linear);
    padding: 67px 24px 80px;
    border-bottom: var(--border);
}

.hero-div {
    max-width: var(--container);
    margin: 0 auto;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.hero-text {
    flex: 1;
    min-width: 0;
    max-width: 560px;
}

.trusted {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    background: var(--primary-soft3);
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.star {
    width: 16px;
    height: 16px;
    fill: var(--success);
    flex-shrink: 0;
    display: inline-block;
}

.h1-hero {
    font-size: clamp(30px, 4vw, 52px);
    font-weight: 700;
    line-height: 1.12;
    color: var(--text-main);
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.highlight {
    color: var(--primary);
}

.p-hero {
    font-size: 17px;
    color: var(--text-ultra-light);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.secondary-btn {
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    background: var(--bg-white);
    color: var(--text-main);
    padding: 9px 18px;
    border-radius: var(--radius-md);
    border: 1px solid #E2E8F0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    text-decoration: none;
}

.secondary-btn:hover {
    background: var(--primary-soft2);
    color: var(--primary);
    border-color: var(--primary-soft3);
    opacity: 1;
}

.hero-image {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 520px;
    max-height: 440px;
    border-radius: var(--radius-lg);
    object-fit: contain;
    box-shadow: var(--shadow-lg);
}


/* ========================= */
/* TRUST / MARQUEE SECTION */
/* ========================= */

.trust {
    padding: 36px 0;
    background: var(--bg-white);
    border-top: var(--border);
    border-bottom: var(--border);
}

.trust-title {
    text-align: center;
    font-size: 13px;
    color: var(--text-ultra-light);
    letter-spacing: 0.03em;
    margin-bottom: 22px;
}

.trust-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.trust-track {
    display: flex;
    gap: 80px;
    width: max-content;
    animation: scroll 25s linear infinite;
}

.trust-track span {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ========================= */
/* FEATURES / SERVICES SECTION */
/* ========================= */

.features {
    padding: 90px 24px;
    background: var(--primary-linear);
    border-bottom: var(--border);
}

.features-container {
    max-width: var(--container);
    margin: 0 auto;
    text-align: center;
}

.section-tag {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 52px;
    line-height: 1.2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-white);
    padding: 28px 24px 44px;
    border-radius: var(--radius-lg);
    box-shadow: var(--box-shadow);
    text-align: left;
    position: relative;
    cursor: pointer;
    border: var(--border);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    text-decoration: none;
    color: inherit;
    display: block;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--hover-shadow);
    opacity: 1;
}

.feature-card:hover .feature-icon {
    background: var(--icon-bg-hover);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--icon-background);
    color: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background var(--transition-fast);
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-ultra-light);
    line-height: 1.65;
}

.feature-arrow {
    position: absolute;
    bottom: 14px;
    right: 18px;
    width: 64px;
    height: 20px;
    display: flex;
    align-items: center;
    color: var(--primary);
    opacity: 0.6;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.feature-arrow svg {
    width: 100%;
    height: 100%;
}

.feature-card:hover .feature-arrow {
    transform: translateX(6px);
    opacity: 1;
}


/* ========================= */
/* STATS SECTION */
/* ========================= */

.stats {
    background: var(--gradient-main);
    padding: 80px 24px;
}

.stats-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
    align-items: center;
}

.stat-box h3 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    color: var(--bg-white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.80);
}


/* ========================= */
/* HOW IT WORKS SECTION */
/* ========================= */

.how-it-works {
    background: var(--primary-linear);
    padding: 90px 24px;
    text-align: center;
}

.steps-container {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.step-box h3 {
    margin-top: 18px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-main);
}

.step-box p {
    margin-top: 8px;
    font-size: 14px;
    color: var(--text-ultra-light);
    line-height: 1.6;
}

.icon-box {
    width: 68px;
    height: 68px;
    background: var(--primary-soft2);
    border: 2px solid var(--primary-soft3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    transition: background var(--transition-fast);
}

.step-box:hover .icon-box {
    background: var(--primary-light);
}

.icon-box svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    stroke: var(--primary);
}

.step-number {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: var(--success);
    color: var(--bg-white);
    font-size: 11px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ========================= */
/* ABOUT SECTION */
/* ========================= */

.about {
    padding: 90px 24px;
    background: var(--bg-main);
}

.about-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-tag {
    color: var(--success);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.about-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 16px;
    color: var(--text-ultra-light);
    line-height: 1.75;
    margin-bottom: 14px;
    max-width: 500px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-card {
    background: var(--bg-white);
    padding: 28px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card h3 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    line-height: 1;
}

.stat-card p {
    font-size: 14px;
    color: var(--text-ultra-light);
}

.about-image {
    display: none;
}

.about-image img {
    width: 100%;
    max-width: 460px;
    border-radius: var(--radius-lg);
}


/* ========================= */
/* TESTIMONIALS SECTION */
/* ========================= */

.testimonials {
    padding: 90px 24px;
    background: var(--bg-soft);
    text-align: center;
}

.testimonial-tag {
    display: block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testimonial-title {
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 52px;
}

.testimonial-grid {
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 26px;
    border-radius: var(--radius-lg);
    text-align: left;
    border: var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
}

.stars svg {
    width: 16px;
    height: 16px;
    fill: #F59E0B;
    stroke: #F59E0B;
    display: inline-block;
}

.testimonial-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ─────────────────────────────────────────────────────────
   FIX #2 — .avatar conflict
   .avatar globally define tha jisme display:flex tha jo
   .complete-page ke avatar ke saath clash kar raha tha.
   Ab dono separately define hain — conflict khatam.
───────────────────────────────────────────────────────── */
.testimonial-user .testimonial-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-soft2);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-user h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 2px;
}

.testimonial-user span {
    font-size: 12px;
    color: var(--text-light);
    display: block;
}


/* ========================= */
/* CTA SECTION */
/* ========================= */

.cta {
    background: var(--gradient-main);
    padding: 90px 24px;
    text-align: center;
}

.cta h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 14px;
    line-height: 1.15;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 34px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.cta-btn {
    background: var(--bg-white);
    color: var(--text-main);
    padding: 12px 28px;
    height: auto;
    width: auto;
    font-weight: 700;
    font-size: 15px;
    border-radius: var(--radius-md);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    opacity: 1;
    color: var(--primary);
}

.cta-btn .btn-icon {
    color: var(--primary);
}


/* ========================= */
/* FOOTER */
/* ========================= */

.footer {
    background: var(--primary-footer);
    color: var(--bg-white);
    padding: 64px 24px 28px;
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    padding-bottom: 48px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 160px;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 10px;
    display: block;
}

.footer-logo span {
    color: var(--primary-soft3);
    display: inline;
}

.footer-text {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.50);
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.90);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
}

.footer-col a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.80);
    text-decoration: none;
    transition: color var(--transition-fast);
    display: block;
}

.footer-col p {
    color: var(--primary-linear);
}

.footer-col a:hover {
    color: var(--bg-white);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-payment-prom {
    max-width: var(--container-width);
    margin: 0 auto 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;
    flex-wrap: wrap;
}

/* promo side */
.footer-prom {
    text-align: right;
    margin-bottom: 28px;
}

.footer-prom p {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
}

.footer-prom h4 {
    font-size: 13px;
    margin-bottom: 8px;
}

.promo-main {
    color: var(--primary);
    font-weight: 600;
}


/* container */
.footer-payments {
    margin-top: 24px;
}

/* label text */
.footer-payments p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.80);
    margin-bottom: 10px;
}

/* icons wrapper */
.payment-icons {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

/* icon style */
.payment-icons img {
    height: 34px;
    padding: 6px 10px;
    /* spacing inside */
    background: rgba(255, 255, 255, 0.05);
    /* subtle card */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    /* smooth corners */
    filter: grayscale(100%) brightness(0) invert(1);
    /* white icons for dark bg */

    opacity: 0.75;
    transition: all 0.25s ease;
}

/* hover effect */
.payment-icons img:hover {
    opacity: 1;
    transform: translateY(-2px);
    /* slight lift */
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}


/* ========================= */
/* PRIVACY / LEGAL PAGE */
/* ========================= */

.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.policy-box {
    background: var(--bg-white);
    padding: 52px 48px;
    border-radius: var(--radius-lg);
    border: var(--border);
    box-shadow: var(--shadow-md);
}

.policy-box h1 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: var(--text-main);
    margin-bottom: 8px;
    line-height: 1.2;
}

.policy-date {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 36px;
    display: block;
}

.policy-box h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 36px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: var(--border);
}

.policy-box p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
}

.policy-box ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 16px;
}

.policy-box li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.policy-box a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.policy-box a:hover {
    text-decoration: underline;
}

.policy-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.policy-breadcrumb a {
    color: var(--text-ultra-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.policy-breadcrumb span:last-child {
    color: var(--primary);
    font-weight: var(--fw-500);
}

.policy-date {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 28px;
    margin-top: -10px;
    display: block;
}

/* ========================= */
/* 404 ERROR PAGE */
/* ========================= */

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    z-index: 0;
}

.blob-1 {
    width: 460px;
    height: 460px;
    background: rgba(99, 102, 241, 0.09);
    top: -120px;
    right: -80px;
}

.blob-2 {
    width: 340px;
    height: 340px;
    background: rgba(139, 92, 246, 0.07);
    bottom: -80px;
    left: -60px;
}

/* ─────────────────────────────────────────────────────────
   FIX #3 — .page
   Ab .page apne andar centering karta hai.
   body pe ye kaam nahi karta tha isliye main pages break hote the.
───────────────────────────────────────────────────────── */
.page {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--primary-linear);
}

/* ─────────────────────────────────────────────────────────
   FIX #4 — .card
   Global .card tha jo .complete-page ke card ke saath clash
   kar raha tha. Ab dono pages apne context mein kaam karenge.
   .page .card = 404 page card
   .card-complete-page = complete page card (alag class)
───────────────────────────────────────────────────────── */
.page .card {
    background: var(--bg-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem 2.8rem 2.6rem;
    max-width: 620px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes card-in {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

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

.page .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.025) 1px, transparent 1px);
    background-size: 30px 30px;
    border-radius: var(--radius-lg);
}

.card-body {
    position: relative;
    z-index: 1;
}

.svg-wrap {
    width: 210px;
    margin: 0 auto 1.4rem;
    animation: float 4.5s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--primary-light);
    color: var(--primary);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    padding: 0.28rem 0.85rem;
    border-radius: 100px;
    border: 1px solid var(--primary-soft3);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
    animation: fade-up 0.4s 0.15s both;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    animation: blink 1.4s step-start infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.error-code {
    font-size: clamp(5rem, 15vw, 8rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.1rem;
    animation: fade-up 0.4s 0.1s both;
}

.error-h1 {
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    color: var(--text-main);
    margin-bottom: 0;
    animation: fade-up 0.4s 0.22s both;
}

.divider {
    width: 36px;
    height: 3px;
    background: var(--gradient-main);
    border-radius: 2px;
    margin: 0.85rem auto 0.95rem;
    animation: fade-up 0.4s 0.28s both;
}

.error-p {
    font-size: var(--fs-5);
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 360px;
    margin: 0 auto 1.8rem;
    animation: fade-up 0.4s 0.32s both;
}

.buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-up 0.4s 0.4s both;
}

.error-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.68rem 1.4rem;
    border-radius: var(--radius-md);
    font-family: var(--font-main);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    text-decoration: none;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.error-btn-primary {
    background: var(--gradient-main);
    color: var(--bg-white);
    border: none;
    box-shadow: var(--shadow-md);
}

.error-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow), 0 0 0 3px rgba(99, 102, 241, 0.15);
    opacity: 1;
}

.error-btn-primary:active {
    transform: translateY(0);
}

.error-btn-secondary {
    background: var(--bg-white);
    color: var(--text-main);
    border: var(--border-button);
    box-shadow: var(--shadow-sm);
}

.error-btn-secondary:hover {
    background: var(--primary-soft2);
    color: var(--primary);
    border-color: var(--primary-soft3);
    transform: translateY(-2px);
    box-shadow: var(--hover-shadow);
    opacity: 1;
}

.footer-note {
    margin-top: 1.6rem;
    font-size: var(--fs-6);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    animation: fade-up 0.4s 0.5s both;
}

.footer-note a {
    color: var(--primary);
    font-weight: var(--fw-500);
    text-decoration: none;
}

.footer-note a:hover {
    text-decoration: underline;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

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

/* ========================= */
/* COOKIE BANNER */
/* ========================= */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    width: calc(100% - 48px);
    max-width: 780px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.4s ease;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-banner.hide {
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
    pointer-events: none;
}

.cookie-banner-inner {
    background: var(--bg-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 3px solid transparent;
    background-image:
        linear-gradient(var(--bg-white), var(--bg-white)),
        var(--gradient-main);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid var(--primary-soft3);
}

.cookie-text {
    min-width: 0;
}

.cookie-title {
    font-size: var(--fs-6);
    font-weight: var(--fw-700);
    color: var(--text-main);
    margin-bottom: 3px;
    line-height: 1.3;
}

.cookie-desc {
    font-size: 13px;
    color: var(--text-ultra-light);
    line-height: 1.55;
    margin: 0;
}

.cookie-desc a {
    color: var(--primary);
    text-decoration: none;
    font-weight: var(--fw-500);
}

.cookie-desc a:hover {
    text-decoration: underline;
}

.cookie-desc strong {
    color: var(--text-secondary);
    font-weight: var(--fw-600);
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    font-family: var(--font-main);
    font-size: var(--fs-6);
    font-weight: var(--fw-600);
    padding: 9px 18px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: transform var(--transition-fast);
    border: none;
    line-height: 1;
}

.cookie-decline {
    background: var(--bg-white);
    color: var(--text-secondary);
    border: var(--border-button);
    box-shadow: var(--shadow-sm);
}

.cookie-decline:hover {
    background: var(--bg-soft);
    color: var(--text-main);
    transform: translateY(-1px);
}

.cookie-decline:active {
    transform: translateY(0);
}

.cookie-accept {
    background: var(--gradient-main);
    color: var(--bg-white);
    box-shadow: var(--shadow-md);
}

.cookie-accept:hover {
    filter: brightness(1.07);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.cookie-accept:active {
    transform: translateY(0);
    filter: brightness(0.95);
}

/* ========================= */
/* FAQ SECTION */
/* ========================= */

.faq-section {
    padding: 30px 24px;
    background: var(--bg-main);
    border-top: var(--border);
    border-bottom: var(--border);
}

.faq-container {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.faq-list {
    margin-top: 0;
    text-align: left;
}

.faq-item {
    background: var(--bg-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 10px;
    overflow: hidden;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-1px);
}

.faq-item.open {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft3);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-main);
    font-size: var(--fs-5);
    font-weight: var(--fw-600);
    color: var(--text-main);
    text-align: left;
    transition: color var(--transition-fast), background var(--transition-fast);
    line-height: 1.4;
}

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

.faq-item.open .faq-question {
    color: var(--primary);
    background: var(--primary-light);
}

.faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--text-light);
    transition: transform 0.3s ease, color var(--transition-fast);
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

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

.faq-item.open .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 16px 24px 20px;
    font-size: var(--fs-6);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
    border-top: var(--border);
}

.faq-answer a {
    color: var(--primary);
    font-weight: var(--fw-500);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-more {
    text-align: center;
    margin-top: 32px;
    font-size: var(--fs-6);
    color: var(--text-ultra-light);
}

.faq-more a {
    color: var(--primary);
    font-weight: var(--fw-600);
    text-decoration: none;
    margin-left: 4px;
    transition: opacity var(--transition-fast);
}

.faq-more a:hover {
    text-decoration: underline;
    opacity: 0.85;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.faq-hero {
    background: var(--primary-linear);
    padding: 120px 24px 60px;
    border-bottom: var(--border);
    text-align: center;
}

.faq-hero-inner {
    max-width: 680px;
    margin: 0 auto;
}

.faq-hero-title {
    font-size: clamp(28px, 5vw, 44px);
    font-weight: var(--fw-700);
    color: var(--text-main);
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.faq-hero-desc {
    font-size: var(--fs-5);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

.faq-hero-desc a {
    color: var(--primary);
    font-weight: var(--fw-500);
    text-decoration: none;
}

.faq-hero-desc a:hover {
    text-decoration: underline;
}

.faq-page-section {
    padding: 70px 24px 90px;
    background: var(--bg-main);
}

.faq-cta {
    text-align: center;
    margin-top: 52px;
    padding-top: 40px;
    border-top: var(--border);
}

.faq-cta p {
    font-size: var(--fs-5);
    color: var(--text-secondary);
    margin-bottom: 18px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.logo-link span {
    color: var(--primary);
    font-weight: 700;
    display: inline;
}

/* ========================= */
/* NAV DROPDOWN */
/* ========================= */

.nav-dropdown {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-ultra-light);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-main);
    transition: color var(--transition-fast);
}

.dropdown-trigger:hover,
.dropdown-trigger.active {
    color: var(--primary);
}

.dropdown-arrow {
    transition: transform var(--transition-fast);
    flex-shrink: 0;
}

.dropdown-trigger.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    background: var(--bg-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    min-width: 260px;
    padding: 8px;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--bg-white);
    border-left: var(--border);
    border-top: var(--border);
    transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown.open .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--text-main);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.dropdown-item:hover {
    background: var(--primary-light);
    opacity: 1;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    background: var(--icon-background);
    border-radius: var(--radius-sm);
}

.dropdown-icon svg,
.dropdown-icon i {
    width: 16px !important;
    height: 16px !important;
    display: block !important;
    color: var(--primary);
    stroke: var(--primary);
}

.dropdown-item:hover .dropdown-icon {
    background: var(--icon-bg-hover);
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
    display: block;
}

.dropdown-desc {
    font-size: 12px;
    color: var(--text-light);
    display: block;
    line-height: 1.4;
}

.dropdown-divider {
    height: 1px;
    background: var(--border);
    margin: 6px 0;
    border: none;
    background-color: rgba(0, 0, 0, 0.06);
}

.dropdown-item-all {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    justify-content: center;
    padding: 8px 12px;
}

.dropdown-item-all:hover {
    background: var(--primary-soft2);
    color: var(--primary);
}

/* ========================= */
/* SERVICE / GOOGLE REVIEW PAGE */
/* ========================= */

.service-hero {
    background: var(--primary-linear);
    padding: 130px 24px 70px;
    border-bottom: var(--border);
    text-align: center;
}

.service-hero-inner {
    max-width: 720px;
    margin: 0 auto;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 5px 14px;
    border-radius: 100px;
    border: 1px solid var(--primary-soft3);
    margin-bottom: 20px;
}

.service-hero-badge svg {
    width: 14px;
    height: 14px;
    stroke: var(--primary);
}

.service-hero-title {
    font-size: clamp(30px, 5vw, 50px);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.12;
    letter-spacing: -0.5px;
    margin-bottom: 18px;
}

.service-hero-title span {
    color: var(--primary);
}

.service-hero-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 32px;
}

.service-hero-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.service-features {
    padding: 80px 24px;
    background: var(--bg-white);
    border-bottom: var(--border);
}

.service-features-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.features-6-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-main);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 22px 20px;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.feature-box:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-box-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--primary-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-box-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--primary);
}

.feature-box-text h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 4px;
}

.feature-box-text p {
    font-size: 13px;
    color: var(--text-ultra-light);
    line-height: 1.5;
    margin: 0;
}

.service-hiw {
    padding: 80px 24px;
    background: var(--primary-linear);
    text-align: center;
    border-bottom: var(--border);
}

.service-hiw-inner {
    max-width: 900px;
    margin: 0 auto;
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.hiw-step {
    position: relative;
}

.hiw-step-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: var(--shadow-primary);
}

.hiw-step h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 8px;
}

.hiw-step p {
    font-size: 14px;
    color: var(--text-ultra-light);
    line-height: 1.6;
    margin: 0;
}

.service-packages {
    padding: 90px 24px;
    background: var(--bg-main);
}

.service-packages-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 52px;
}

.package-card {
    background: var(--bg-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

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

.package-card.popular {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-primary);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    white-space: nowrap;
}

.package-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--text-ultra-light);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.package-reviews {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px;
}

.package-reviews span {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.package-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-main);
    margin: 12px 0;
}

.package-price small {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 400;
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 18px 0 24px;
    text-align: left;
}

.package-features li {
    font-size: 13px;
    color: var(--text-secondary);
    padding: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
}

.package-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: filter var(--transition-fast), transform var(--transition-fast);
}

.package-btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.package-btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
    opacity: 1;
}

.package-btn-outline {
    background: var(--bg-white);
    color: var(--primary);
    border: 1px solid var(--primary-soft3);
}

.package-btn-outline:hover {
    background: var(--primary-light);
    opacity: 1;
}

.service-why {
    padding: 80px 24px;
    background: var(--bg-soft);
    border-top: var(--border);
}

.service-why-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.why-stat {
    background: var(--bg-white);
    border: var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    box-shadow: var(--shadow-sm);
}

.why-stat-num {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.why-stat p {
    font-size: 14px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.service-faq {
    padding: 80px 24px;
    background: var(--bg-main);
}

.service-faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.service-cta {
    background: var(--gradient-main);
    padding: 90px 24px;
    text-align: center;
}

.service-cta h2 {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.15;
}

.service-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #e53935;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
}

.base-price {
    text-decoration: line-through;
    color: #999;
    font-size: 16px;
    margin-right: 6px;
}

.selling-price {
    color: #e53935;
    font-size: 24px;
    font-weight: bold;
}

.urgency-bar {
    background: linear-gradient(90deg, #e53935, #c62828);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.urgency-bar span {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    margin: 0 4px;
}

.package-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: #e53935;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    z-index: 1;
}

.slots-badge {
    display: inline-block;
    background: #fff3e0;
    color: #e65100;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    border: 1px solid #ffcc80;
}

.base-price {
    text-decoration: line-through;
    color: #999;
    font-size: 15px;
    margin-right: 5px;
}

.selling-price {
    color: #e53935;
    font-size: 26px;
    font-weight: 700;
}

.savings-pill {
    display: inline-block;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 4px;
}

.guarantee-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 8px 14px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
}

.buyer-notif {
    position: fixed;
    bottom: 24px;
    left: 24px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    max-width: 300px;
    animation: slideIn 0.4s ease;
    transition: opacity 0.4s;
}

.buyer-notif.hide {
    opacity: 0;
    pointer-events: none;
}

.buyer-notif-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.buyer-notif-text {
    font-size: 13px;
    line-height: 1.4;
}

.buyer-notif-text strong {
    display: block;
    font-size: 13px;
}

.buyer-notif-text span {
    color: #6b7280;
    font-size: 12px;
}

.buyer-notif-close {
    position: absolute;
    top: 8px;
    right: 10px;
    cursor: pointer;
    color: #9ca3af;
    font-size: 16px;
    line-height: 1;
    border: none;
    background: none;
}

@keyframes slideIn {
    from {
        transform: translateX(-120%);
        opacity: 0;
    }

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

.wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.wa-btn svg {
    flex-shrink: 0;
}

.response-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: var(--success);
    font-weight: 500;
    margin-top: 6px;
}

.response-chip::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.pkg-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 0 auto 40px;
    background: var(--bg-secondary, #f3f4f6);
    border-radius: 12px;
    padding: 5px;
    width: fit-content;
}

.pkg-tab {
    padding: 10px 28px;
    border-radius: 9px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: transparent;
    color: var(--text-secondary, #6b7280);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pkg-tab.active {
    background: #fff;
    color: #6366f1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
}

.pkg-tab:hover:not(.active) {
    color: #374151;
}

.packages-panel {
    display: none;
}

.packages-panel.active {
    display: block;
}

.savings-pill {
    display: inline-block;
    background: var(--bg-main);
    color: var(--success);
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 4px;
}

.guarantee-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    padding: 8px 14px;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #15803d;
}

.urgency-bar {
    background: linear-gradient(90deg, #e53935, #c62828);
    color: #fff;
    text-align: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
}

.urgency-bar span {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    padding: 2px 8px;
    margin: 0 4px;
}

.response-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #15803d;
    font-weight: 500;
    margin-top: 6px;
}

/* ─────────────────────────────────────────────────────────
   FIX #5 — .page-wrapper
   Ab .page-wrapper apne andar display:flex centering karta hai.
   body se ye hata diya tha — ye sirf redirect/loading pages ke liye tha.
───────────────────────────────────────────────────────── */
.page-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 24px;
}

/* ── BACKGROUND BLOBS (page-wrapper version) ── */
.page-wrapper .blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    animation: blobFloat 8s ease-in-out infinite alternate;
}

.page-wrapper .blob-1 {
    width: 480px;
    height: 480px;
    background: var(--primary);
    top: -120px;
    left: -120px;
    animation-delay: 0s;
}

.page-wrapper .blob-2 {
    width: 360px;
    height: 360px;
    background: var(--primary-accent);
    bottom: -80px;
    right: -80px;
    animation-delay: 3s;
}

@keyframes blobFloat {
    from {
        transform: scale(1) translate(0, 0);
    }

    to {
        transform: scale(1.12) translate(20px, 20px);
    }
}

/* ─────────────────────────────────────────────────────────
   FIX #6 — .page-wrapper .card
   page-wrapper ke andar wala card — redirect/loading page.
   .page ke card se alag context isliye alag selector.
───────────────────────────────────────────────────────── */
.page-wrapper .card {
    position: relative;
    z-index: 1;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 48px 40px 40px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    animation: cardIn 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

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

.icon-ring {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    animation: iconPulse 2s ease-in-out infinite;
}

.icon-arrow {
    width: 28px;
    height: 28px;
    color: var(--primary);
    animation: arrowSlide 1.6s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.18);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(99, 102, 241, 0);
    }
}

@keyframes arrowSlide {

    0%,
    100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }
}

.page-wrapper .card h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.25;
    margin-bottom: 10px;
}

.page-wrapper .card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.progress-track {
    background: var(--primary-soft);
    border-radius: var(--radius-full);
    height: 6px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    width: 0%;
    border-radius: var(--radius-full);
    background: var(--gradient-main);
    transition: width 5s linear;
}

.timer-label {
    display: block;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.timer-label strong {
    color: var(--primary);
}

.url-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary-soft);
    border: 1px solid var(--primary-soft3);
    border-radius: var(--radius-full);
    padding: 7px 14px;
    font-size: 12px;
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 28px;
    max-width: 100%;
    overflow: hidden;
}

.url-chip span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 300px;
}

.url-chip svg {
    flex-shrink: 0;
    color: var(--primary);
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 28px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: var(--shadow-primary);
    transition: var(--transition-normal);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(99, 102, 241, 0.35);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    padding: 11px 24px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: var(--radius-full);
    font-family: var(--font-main);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-ghost:hover {
    background: var(--primary-soft);
    color: var(--primary-dark);
    border-color: var(--primary-soft3);
}

/* ========================= */
/* AUTH CONTAINER */
/* ========================= */

/* ─────────────────────────────────────────────────────────
   FIX #7 — .auth-container
   Ab .auth-container apne andar centering karta hai.
   body pe display:flex nahi dalna tha — ye fix.
───────────────────────────────────────────────────────── */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.28;
    animation: drift 12s ease-in-out infinite alternate;
    pointer-events: none;
}

.blob-1 {
    width: 520px;
    height: 520px;
    background: var(--blob1);
    top: -160px;
    left: -160px;
    animation-delay: 0s;
}

.blob-2 {
    position: fixed;
    /* ensure */
    width: 400px;
    height: 400px;
    background: var(--blob2);

    bottom: -120px;
    right: -100px;
    left: auto;
    /* fix conflict */

    animation-delay: -4s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--blob3);
    top: 50%;
    left: 55%;
    animation-delay: -8s;
}

.auth-container {
    padding: 100px 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    padding: 10px 20px 20px;
}
.input-group input.error {
    border: 1px solid red; /* red box */
}

.error-msg {
    color: var(--danger);
    font-size: 12px;
    margin-top: 4px;
    display: block;
}


.auth-card {

    width: 100%;
    max-width: 1000px;
    
    padding: var(--space-xl);
    border-radius: 20px;

    display: flex;
    
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    background: var(--primary-transparent);

    z-index: 10;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    
    border: none;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.2);
    background-clip: padding-box;

    position: relative;
    overflow: hidden;

    transition: all 0.35s ease;
}


/* LEFT */
.signin-auth-left {
    flex: 1;
}

/* RIGHT */
.main-form-signin {
    flex: 1;
    max-width: 400px;
}

.auth-title {
    font-size: var(--fs-2);
    font-weight: var(--fw-700);
    margin-bottom: 3px;
    text-align: center;
}

.auth-sub {
    text-align: center;
    margin-bottom: 5px !important;
    font-size: var(--fs-6);
    color: var(--text-ultra-light);
}

.signup-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.input-group input {
    width: 100%;
    padding: 14px 16px;
    border-radius: var(--radius-md);
    border: var(--border-medium);
    background: var(--glass);
    font-size: var(--fs-5);
    transition: var(--transition-fast);
}

.input-group input::placeholder {
    color: var(--text-light);
}

.input-group input:focus {
    border: 1px solid var(--primary);
    box-shadow: var(--shadow-primary);
}

.submit-btn {
    margin-top: var(--space-sm);
    padding: 14px;
    border-radius: var(--radius-md);
    background: var(--gradient-main);
    color: var(--text-white);
    font-weight: var(--fw-600);
    font-size: var(--fs-5);
    transition: var(--transition-fast);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.divider-signup {
    display: flex;
    align-items: center;
    text-align: center;
    margin: var(--space-lg) 0;
    font-size: var(--fs-6);
    color: var(--text-light);
}

.divider-signup::before,
.divider-signup::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--bg-muted);
}

.divider-signup span {
    margin: 0 var(--space-sm);
}

.google-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-md);
    border: var(--border-button);
    background: var(--glass);
    font-weight: var(--fw-500);
    transition: var(--transition-fast);
    overflow: hidden;
}

/* click feel */
.google-btn:active {
    transform: scale(0.97);
}

/* 🔥 LIGHT OVERLAY (NO HEAVY BLUR) */
.google-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;

    background: rgba(255, 255, 255, 0.08);
    /* 🔥 VERY LIGHT */
    backdrop-filter: blur(2px);
    /* 🔥 minimal blur */
    -webkit-backdrop-filter: blur(2px);

    opacity: 0;
    transition: 0.25s ease;
}

/* activate overlay */
.google-btn:focus::after {
    opacity: 1;
}

/* 🔥 KEEP TEXT CLEAR */
.google-btn .btn-text {
    position: relative;
    z-index: 1;
    /* above overlay */
}

/* icon also clear */
.google-btn img {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
}

/* 🔥 SPINNER */
.spinner {
    position: absolute;
    width: 20px;
    height: 20px;

    border: 2px solid rgba(0, 0, 0, 0.15);
    /* subtle base */
    border-top: 2px solid var(--primary);

    border-radius: 50%;
    opacity: 0;
    z-index: 2;
    /* above everything */
}

/* show spinner */
.google-btn:focus .spinner {
    opacity: 1;
    animation: spin 0.7s linear infinite;
}

/* animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* hover */
.google-btn:hover {
    background: var(--primary-soft);
}


.auth-footer {
    text-align: center;
    margin-top: var(--space-lg);
    font-size: var(--fs-6);
}

.auth-footer a {
    color: var(--primary);
    font-weight: var(--fw-600);
}

.auth-footer a:hover {
    text-decoration: underline;
}

.signin-header {

    box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.06),  /* 🔥 soft */
            0 1px 2px rgba(0, 0, 0, 0.04),   /* 🔥 minimal */
            inset 0 1px 0 rgba(255, 255, 255, 0.6);


    border: 1px solid var(--border);

    position: fixed;

    backdrop-filter: none;
    width: calc(100%);
    margin: 0 auto;

    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    padding: 0 40px;
}



.signin-auth-left img {

    height: 240px;

}

.signin-auth-left h1 {

    font-size: 33px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1px;
    text-align: left;
    margin-top: 15px;
}

.signin-auth-left p {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: left;
}

.error-box {
    position: fixed; /* top pe chipka hua */
    top: 5px;
    left: 50%;
    transform: translateX(-50%);

    width: 90%; /* 🔥 90% width */
    max-width: 900px; /* control for big screens */

    background: var(--bg-start);
    color: var(--danger);

    padding: 10px 16px; /* 🔥 kam height */
    border-radius: 8px;
    border: 1px solid var(--danger);

    display: flex;
    justify-content: space-between;
    align-items: center;

    box-shadow: 0 8px 20px rgba(0,0,0,0.1);

    z-index: 9999; /* sabse upar */
    margin: 10px ;


}

/* hidden by default */
.error-box.hidden {
    display: none;
}

/* text */
#error-text {
    font-size: 14px;
    font-weight: 500;
}

/* close button */
#error-close {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: var(--danger);
    margin-left: 10px;
}
.verify-email-second {
    max-width: 400px !important;
}

/* ========================= */
/* COMPLETE PAGE */
/* ========================= */

.logos-complete-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.logos-complete {
    height: 28px;
    object-fit: contain;
}

.card-complete-page {
    background: var(--primary-transparent);
    border-radius: 28px;
    
    width: 100%;
    max-width: 460px;
    padding: 29px 44px;
    border: none;
    box-shadow: 
        0 10px 30px rgba(0,0,0,0.1),
        0 0 0 1px rgba(255,255,255,0.2);
    animation: fadeUp .35s ease both;
    overflow: visible;
    z-index: 1;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

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

.logos-complete-page {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.Reviewsgateway {
    height: 40px;
}

.separator-complete {
    height: 14px;
    width: 14px;
    opacity: 0.5;
    filter: grayscale(100%) brightness(0.3);
    transition: all 0.2s ease;
}

.separator-complete:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.google {
    height: 36px;
}

.line-separator-complete {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            #cbd5e1,
            transparent);
    margin: 24px 0;
}

.welcome-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

/* ─────────────────────────────────────────────────────────
   FIX #8 — .avatar (complete page version)
   Complete page ka avatar — scoped to .card-complete-page
   taaki testimonial avatar ke saath clash na ho.
───────────────────────────────────────────────────────── */
.card-complete-page .avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    flex-shrink: 0;
    overflow: hidden;
}

.card-complete-page .avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text h2 {
    font-family: 'Google Sans', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 4px;
    
}

.welcome-text p {
    font-size: 13px;
    color: var(--text-ultra-light);
    line-height: 1.55;
}

.welcome-text p strong {
    color: var(--text-main);
    font-weight: 500;
}

.row-2-complete-page {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.row-2-complete-page .field-complete-page {
    flex: 1;
}

.field-complete-page {
    margin-bottom: 16px;
}

.field-complete-page label {
    display: block;
    font-size: 12px;
    color: var(--text-ultra-light);
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: .2px;
}

.field-complete-page input[type="text"],
.field-complete-page input[type="tel"],
.field-complete-page input[type="email"] {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--bg-muted);
    border-radius: 10px;
    font-size: 14px;
    color: #111827;
    background: var(--glass);
    outline: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
}

.field-complete-page input:hover {
    border-color: var(--bg-muted);
}

.field-complete-page input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.phone-block-complete-page {
    position: relative;
    margin-bottom: 16px;
    z-index: 10;
}

.phone-block-complete-page>label {
    display: block;
    font-size: 12px;
    color: var(--text-ultra-light);
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: .2px;
}

.phone-row-complete-page {
    display: flex;
    border: 1.5px solid var(--bg-muted);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.phone-row-complete-page:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.country-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 11px 12px;
    background: var(--bg-soft);
    border: none;
    border-right: 1.5px solid var(--bg-muted);
    cursor: pointer;
    font-size: 14px;
    color: var(--text-main);
    white-space: nowrap;
    font-family: inherit;
    transition: background .15s;
    min-width: 88px;
}

.country-btn:hover {
    background: var(--bg-muted);
}

.country-btn .flag {
    font-size: 18px;
}

.country-btn .dial {
    font-size: 13px;
    font-weight: 500;
}

.country-btn .arrow {
    font-size: 9px;
    color: var(--text-ultra-light);
    margin-left: 2px;
}

.phone-num {
    flex: 1;
    border: none;
    padding: 11px 14px;
    font-size: 14px;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    background: transparent;
}

.dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--bg-muted);
    border-radius: 12px;
    z-index: 999999;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
    display: none;
    animation: dropCm .18s ease both;
}

@keyframes dropCm {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

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

.dropdown.open {
    display: block;
}

.search-box {
    padding: 10px 10px 6px;
    border-bottom: 1px solid var(--bg-muted);
}

.search-box input {
    width: 100%;
    border: 1px solid var(--bg-muted);
    border-radius: 20px;
    padding: 8px 14px 8px 36px;
    font-size: 13px;
    color: var(--text-main);
    font-family: inherit;
    outline: none;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%235f6368' viewBox='0 0 16 16'%3E%3Cpath d='M11.742 10.344a6.5 6.5 0 1 0-1.397 1.398h-.001c.03.04.062.078.098.115l3.85 3.85a1 1 0 0 0 1.415-1.414l-3.85-3.85a1.007 1.007 0 0 0-.115-.099zm-5.242 1.656a5.5 5.5 0 1 1 0-11 5.5 5.5 0 0 1 0 11z'/%3E%3C/svg%3E") no-repeat 12px center;
    transition: border-color .2s;
}

.search-box input:focus {
    border-color: var(--primary);
}

.country-list {
    max-height: 210px;
    overflow-y: auto;
    padding: 4px 0;
}

.country-list::-webkit-scrollbar {
    width: 6px;
}

.country-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.c-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text-main);
    transition: background .12s;
}

.c-item:hover {
    background: var(--bg-soft);
}

.c-item.selected {
    background: var(--primary-light);
    color: var(--primary);
}

.c-item .cf {
    font-size: 18px;
    width: 22px;
    text-align: center;
    flex-shrink: 0;
}

.c-item .cn {
    flex: 1;
}

.c-item .cd {
    font-size: 12px;
    color: var(--text-ultra-light);
}

.c-item.selected .cd {
    color: var(--primary);
}

.no-result {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: var(--text-ultra-light);
}

.notice {
    font-size: 12.5px;
    color: var(--text-ultra-light);
    line-height: 1.65;
    margin-bottom: 20px;
    padding: 12px 14px;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary);
}

.notice a {
    color: var(--primary);
    text-decoration: none;
}

.notice a:hover {
    text-decoration: underline;
}

.btn-primary-complete-page {
    display: block;
    width: 50%;
    z-index: 1;
    padding: 12px 16px;
    background: var(--gradient-main);
    color: var(--text-white);
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    letter-spacing: 0.3px;
    margin: 16px auto;
    transition: all 0.2s ease;
}

.btn-primary-complete-page:hover {
    filter: brightness(1.05);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.35);
}

.btn-primary-complete-page:active {
    transform: scale(0.97);
}

.btn-primary-complete-page:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    box-shadow: none;
}

.footer-complete-page {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-ultra-light);
}

.verify-email-p {
    font-size: 20px !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    margin-top: 20px !important;
    margin-bottom: 14px !important;
}
/* Sub text */
.sub-text {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Info text */
.info-text {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Small text */
.small-text {
    font-size: 13px;
    color: #888;
    margin-bottom: 20px;
}
.verify-page-p {
    font-size: 15px !important;
    margin-bottom: 10px;

}
.redirect-svg {
    margin: 20px auto;
    width: 64px;              /* icon size */
    height: 64px;
    color: var(--primary);           /* main color (indigo premium feel) */
    
    padding: 18px;            /* space inside circle */
    border-radius: 50%;       /* perfect circle */

     background: radial-gradient(circle at center, 
        rgba(99, 102, 241, 0.12), 
        rgba(99, 102, 241, 0.04)
    );

    backdrop-filter: blur(6px); /* glass feel */
    
    position: relative;
    
    /* soft outer glow */
    box-shadow: 
        0 0 20px rgba(79, 70, 229, 0.25),
        0 0 40px rgba(79, 70, 229, 0.15);

    /* smooth animation */
    animation: pulseGlow 2s infinite ease-in-out;
}


@keyframes pulseGlow {
    0% {
        box-shadow: 
            0 0 10px rgba(99, 102, 241, 0.15),
            0 0 20px rgba(99, 102, 241, 0.08);
        transform: scale(1);
    }
    50% {
        box-shadow: 
            0 0 18px rgba(99, 102, 241, 0.25),
            0 0 35px rgba(99, 102, 241, 0.12);
        transform: scale(1.04);
    }
    100% {
        box-shadow: 
            0 0 10px rgba(99, 102, 241, 0.15),
            0 0 20px rgba(99, 102, 241, 0.08);
        transform: scale(1);
    }
}
.redirect-svg::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    
    background: radial-gradient(circle, rgba(79,70,229,0.4), transparent 70%);
    
    filter: blur(10px);
    z-index: -1;
}

/* ========================= */
/* TABLET — max 1024px */
/* ========================= */

@media (max-width: 1024px) {

    nav {
        gap: 20px;
    }

    .header-nav {
        font-size: 14px;
    }

    .navbar-btn,
    .login-btn {
        padding: 8px 12px;
        font-size: 13px;
    }

    .hero-div {
        gap: 40px;
    }

    .hero-image img {
        max-width: 420px;
    }

    .h1-hero {
        font-size: clamp(26px, 4vw, 42px);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust {
        padding: 28px 0;
    }

    .trust-track {
        gap: 60px;
    }

    .trust-track span {
        font-size: 14px;
    }

    .announcement-container {
        gap: 8px;
    }

    .announcement-text {
        font-size: 12px;
    }

    .buy-button {
        font-size: 11px;
        padding: 2px 7px;
    }

    .page .card {
        padding: 2.5rem 2rem 2.2rem;
    }

    .packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-6-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .auth-card {
        max-width: 800px;
        gap: 40px;
        padding: 30px;
        z-index: 10;
    }

    .main-form-signin {
        max-width: 350px;
    }
}


/* ========================= */
/* MOBILE — max 768px */
/* ========================= */

@media (max-width: 768px) {

    .announcement-container {
        flex-direction: column;
        gap: 4px;
        padding: 8px 12px;
    }

    .announcement-text {
        font-size: 12px;
    }

    .buy-button {
        font-size: 11px;
    }

    .navbar {
        top: 52px;
    }

    .menu-toggle {
        display: block;
    }

    .logo a {
        display: inline;
        color: inherit;
        text-decoration: none;
    }

    nav {
        flex-direction: column;
        gap: 4px;
        align-items: flex-start;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        padding: 12px 20px;
        box-shadow: var(--shadow-md);
        border-top: var(--border);
        transform: translateY(-8px);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition-fast), transform var(--transition-fast);
        z-index: 998;
    }

    nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .header-nav {
        font-size: 16px;
        display: block;
        padding: 10px 4px;
        width: 100%;
    }

    .navbar-div {
        gap: 8px;
    }

    .navbar-btn {
        width: 100%;
        justify-content: center;
    }

    .login-btn {
        display: none;
    }

    .hero {
        padding: 115px 20px 52px;
    }

    .hero-div {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
        margin-top: 20px;
    }

    .hero-text {
        max-width: 100%;
        flex: none;
    }

    .hero-image {
        flex: none;
        width: 100%;
        justify-content: center;
    }

    .hero-image img {
        max-width: 100%;
        border-radius: var(--radius-lg);
    }

    .h1-hero {
        font-size: clamp(30px, 7vw, 42px);
        line-height: 1.15;
    }

    .p-hero {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .secondary-btn {
        font-size: 15px;
        padding: 11px 20px;
    }

    .trust {
        padding: 24px 0;
    }

    .trust-track {
        gap: 40px;
        animation: scroll 16s linear infinite;
    }

    .trust-track span {
        font-size: 13px;
    }

    .features {
        padding: 60px 20px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 36px;
    }

    .stats {
        padding: 60px 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .how-it-works {
        padding: 60px 20px;
    }

    .steps-container {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about {
        padding: 60px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-image {
        display: block;
        width: 100%;
        margin: 0 auto;
    }

    .testimonials {
        padding: 60px 20px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonial-title {
        font-size: 26px;
        margin-bottom: 36px;
    }

    .cta {
        padding: 64px 20px;
    }

    .cta h2 {
        font-size: 26px;
    }

    .cta p {
        font-size: 15px;
    }

    .footer {
        padding: 48px 20px 24px;
    }

    .footer-container {
        flex-direction: column;
        gap: 28px;
    }

    .footer-col {
        max-width: 100%;
    }

    .container {
        padding: 90px 16px 60px;
    }

    .policy-box {
        padding: 28px 22px;
    }

    .policy-box h1 {
        font-size: 26px;
    }

    .policy-box h2 {
        font-size: 18px;
    }

    .policy-box p,
    .policy-box li {
        font-size: 14px;
    }

    .page .card {
        padding: 2rem 1.4rem 1.8rem;
    }

    .svg-wrap {
        width: 170px;
    }

    .error-code {
        font-size: clamp(4rem, 18vw, 6rem);
    }

    .buttons {
        flex-direction: column;
        align-items: center;
    }

    .error-btn {
        width: 100%;
        justify-content: center;
    }

    .cookie-banner {
        bottom: 16px;
        width: calc(100% - 32px);
    }

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 18px 18px;
    }

    .cookie-actions {
        width: 100%;
        gap: 8px;
    }

    .cookie-btn {
        flex: 1;
        text-align: center;
        padding: 11px 12px;
    }

    .cookie-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .faq-section {
        padding: 60px 20px;
    }

    .faq-question {
        font-size: var(--fs-6);
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 14px 18px 18px;
    }

    .faq-hero {
        padding: 100px 20px 48px;
    }

    .faq-hero-title {
        font-size: clamp(26px, 7vw, 36px);
    }

    .faq-page-section {
        padding: 48px 20px 60px;
    }

    .nav-dropdown {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        overflow: hidden;
    }

    .dropdown-trigger {
        width: 100%;
        font-size: 16px;
        text-align: left;
        justify-content: space-between;
        padding: 10px 4px;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--bg-soft);
        border-radius: var(--radius-md);
        padding: 0;
        margin-top: 0;
        width: 100%;
        opacity: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity var(--transition-fast), max-height var(--transition-normal);
        pointer-events: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        opacity: 1;
        max-height: 400px;
        pointer-events: auto;
        transform: none;
        padding: 6px;
        margin-top: 4px;
    }

    .dropdown-item {
        padding: 8px 10px;
    }

    .dropdown-title {
        font-size: 14px;
    }

    .dropdown-desc {
        font-size: 11px;
    }

    .login-btn {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .service-hero {
        padding: 110px 20px 56px;
    }

    .service-hero-title {
        font-size: clamp(26px, 7vw, 36px);
    }

    .service-hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .service-hero-btns a {
        width: 100%;
        justify-content: center;
    }

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

    .hiw-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-features {
        padding: 60px 20px;
    }

    .service-hiw {
        padding: 60px 20px;
    }

    .service-packages {
        padding: 60px 20px;
    }

    .service-why {
        padding: 60px 20px;
    }

    .service-faq {
        padding: 60px 20px;
    }

    .service-cta {
        padding: 64px 20px;
    }

    .page-wrapper .card {
        padding: 36px 24px 32px;
    }

    .page-wrapper .card h1 {
        font-size: 19px;
    }

    .actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .url-chip span {
        max-width: 200px;
    }

    .page-wrapper .blob-1 {
        width: 280px;
        height: 280px;
    }

    .page-wrapper .blob-2 {
        width: 220px;
        height: 220px;
    }

    .card-complete-page {
        padding: 20px;
        border-radius: 20px;
    }

    .row-2-complete-page {
        flex-direction: column;
        gap: 12px;
    }

    .btn-primary-complete-page {
        width: 100%;
    }

    .welcome-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .logos-complete-page {
        gap: 8px;
    }

    .google {
        height: 30px;
    }

    .Reviewsgateway {
        height: 34px;
    }

    .auth-title {
        font-size: var(--fs-3);
    }

    .footer-payment-prom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-prom {
        text-align: left;
    }

    .auth-card {
        flex-direction: column;
        /* 🔥 LEFT-RIGHT → UP-DOWN */
        align-items: center;
        /* center everything */
        text-align: center;
        gap: 8px;
        padding: var(--space-lg);
        z-index: 0;
    }

    .signin-auth-left {
        width: 100%;
    }

    .signin-auth-left img {
        max-width: 260px;
        margin: 0 auto;
        display: block;
    }

    .main-form-signin {
        width: 100%;
        max-width: 100%;
    }

    .auth-container {
        padding-top: 79px;
    }

    .signin-header {
        width: calc(100%);
        box-shadow:
            0 4px 12px rgba(0, 0, 0, 0.06),
            /* 🔥 soft */
            0 1px 2px rgba(0, 0, 0, 0.04),
            /* 🔥 minimal */
            inset 0 1px 0 rgba(255, 255, 255, 0.6);

        padding: 0 19px;
        z-index: 1000;

    }

    .signin-logo {
        font-size: 16px;
    }

    .navbar-btn {
        font-size: 12px;
        padding: 6px 10px;
        white-space: nowrap;
    }
    .blob-1 {
    width: 250px;
    height: 520px;
    background: var(--blob1);
    top: -160px;
    left: -160px;
    animation-delay: 0s;
}

}