/* ============================================================
   EduSphere — 3D School ERP Marketing Site
   Premium SaaS / Glassmorphism / Neon Gradient Theme
   ============================================================ */

:root {
    --bg-0: #060611;
    --bg-1: #0a0a1a;
    --bg-2: #11112a;
    --surface: rgba(255, 255, 255, 0.04);
    --surface-strong: rgba(255, 255, 255, 0.07);
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.16);
    --text: #e9ecf5;
    --text-dim: #a4a9c1;
    --muted: #7c83a0;

    --neon-1: #7c5cff;   /* violet */
    --neon-2: #22d3ee;   /* cyan   */
    --neon-3: #ff5cdf;   /* pink   */
    --neon-4: #4ade80;   /* green  */

    --radius: 16px;
    --radius-lg: 22px;
    --shadow-1: 0 10px 40px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(124, 92, 255, 0.35);

    --grad-primary: linear-gradient(135deg, #7c5cff 0%, #22d3ee 50%, #ff5cdf 100%);
    --grad-text: linear-gradient(120deg, #b59dff 0%, #22d3ee 50%, #ff8be8 100%);
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    background: var(--bg-0);
    color: var(--text);
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(124, 92, 255, 0.25), transparent 60%),
        radial-gradient(900px 500px at 90% 10%, rgba(34, 211, 238, 0.20), transparent 60%),
        radial-gradient(800px 600px at 50% 100%, rgba(255, 92, 223, 0.18), transparent 60%),
        var(--bg-0);
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
}

a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: #fff; }

h1, h2, h3, h4, h5 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0 0 .6em;
    color: #fff;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); line-height: 1.05; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1.15; }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-dim); }
.muted { color: var(--muted); }
.small { font-size: .9rem; }

.grad-text {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

/* ====================== NAV ====================== */
.nav-glass {
    position: fixed;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 28px);
    max-width: 1200px;
    z-index: 50;
    background: rgba(10, 10, 26, 0.55);
    backdrop-filter: blur(18px) saturate(180%);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: all .3s ease;
}

.nav-glass.scrolled {
    background: rgba(10, 10, 26, 0.85);
    box-shadow: var(--shadow-1);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    color: #fff;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: var(--grad-primary);
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.6);
    position: relative;
}

.brand-mark::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 4px;
    background: rgba(10,10,26,0.85);
}

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-size: .95rem;
    color: var(--text-dim);
    font-weight: 500;
}

@media (max-width: 800px) {
    .nav-links { display: none; }
}

/* ====================== BUTTONS ====================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 10px 30px rgba(124, 92, 255, 0.45);
}
.btn-primary:hover {
    box-shadow: 0 14px 40px rgba(124, 92, 255, 0.6);
    color: #fff;
}

.btn-secondary {
    background: var(--surface-strong);
    color: #fff;
    border-color: var(--border-strong);
    backdrop-filter: blur(10px);
}

.btn-ghost {
    background: transparent;
    color: var(--text);
    border-color: var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.05); }

.w-100 { width: 100%; }

/* ====================== HERO ====================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 80px;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(6, 6, 17, 0.95) 0%, transparent 70%),
        linear-gradient(180deg, transparent 0%, rgba(6, 6, 17, 0.4) 60%, var(--bg-0) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-strong);
    color: var(--text-dim);
    font-size: .85rem;
    backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.pill-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--neon-4);
    box-shadow: 0 0 10px var(--neon-4);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: .4; }
}

.hero-title { margin-bottom: 18px; }
.hero-sub {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text);
    font-weight: 500;
    margin-bottom: 12px;
}
.hero-desc {
    font-size: 1rem;
    color: var(--muted);
    max-width: 680px;
    margin: 0 auto 36px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.hero-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats strong {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.6rem;
    color: #fff;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-stats span {
    font-size: .85rem;
    color: var(--muted);
    margin-top: 4px;
}

.scroll-hint {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--muted);
    font-size: .8rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-hint span {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, var(--neon-2), transparent);
    animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
    0%, 100% { transform: scaleY(1); opacity: .4; }
    50%      { transform: scaleY(1.4); opacity: 1; }
}

/* ====================== SECTIONS ====================== */
.section {
    padding: 120px 0;
    position: relative;
}
.section-alt {
    background: linear-gradient(180deg, transparent, rgba(124, 92, 255, 0.04), transparent);
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(124, 92, 255, 0.12);
    color: #b59dff;
    border: 1px solid rgba(124, 92, 255, 0.25);
    font-size: .8rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 18px;
}

/* ====================== FEATURES GRID ====================== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.feature-card {
    position: relative;
    padding: 28px 24px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background: var(--surface-strong);
}

.feature-card:hover .card-glow { opacity: 1; }

.feature-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.2), rgba(34, 211, 238, 0.15));
    border: 1px solid var(--border-strong);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-card h3 { margin-bottom: 8px; color: #fff; }
.feature-card p { color: var(--muted); font-size: .92rem; margin: 0; }

.card-glow {
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 0%), rgba(124, 92, 255, 0.25), transparent 40%);
    opacity: 0;
    transition: opacity .3s ease;
}

/* ====================== TWO COL ====================== */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 900px) {
    .two-col { grid-template-columns: 1fr; gap: 40px; }
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}
.check-list li {
    position: relative;
    padding: 10px 0 10px 32px;
    color: var(--text-dim);
    border-bottom: 1px solid var(--border);
}
.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 10px;
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    text-align: center;
    font-size: .8rem;
    line-height: 22px;
    font-weight: 700;
}

/* ====================== ORBIT ====================== */
.why-visual {
    display: flex; align-items: center; justify-content: center;
    min-height: 380px;
}
.orbit {
    position: relative;
    width: 340px; height: 340px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.12);
    animation: spin 30s linear infinite;
}
.orbit::before, .orbit::after {
    content: "";
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.08);
}
.orbit::after { inset: 70px; }

.orbit-core {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 110px; height: 110px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: var(--shadow-glow);
    animation: spin 30s linear infinite reverse;
}
.orbit-dot {
    position: absolute;
    width: 50px; height: 50px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    backdrop-filter: blur(10px);
}
.orbit-dot.d1 { top: -10px; left: 50%; transform: translateX(-50%); }
.orbit-dot.d2 { top: 50%; right: -10px; transform: translateY(-50%); }
.orbit-dot.d3 { bottom: -10px; left: 50%; transform: translateX(-50%); }
.orbit-dot.d4 { top: 50%; left: -10px; transform: translateY(-50%); }
.orbit-dot.d5 { top: 15%; right: 8%; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ====================== PRICING ====================== */
.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.price-card {
    position: relative;
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
}

.price-card.featured {
    border-color: rgba(124, 92, 255, 0.5);
    background: linear-gradient(180deg, rgba(124,92,255,0.10), rgba(34, 211, 238, 0.05));
    box-shadow: 0 0 40px rgba(124, 92, 255, 0.25);
    transform: translateY(-8px);
}

.badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--grad-primary);
    padding: 4px 14px;
    border-radius: 999px;
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    color: #fff;
    margin: 14px 0 18px;
    font-weight: 700;
}
.price span {
    font-size: .9rem;
    color: var(--muted);
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}
.price-card ul li {
    padding: 8px 0 8px 24px;
    color: var(--text-dim);
    position: relative;
    border-bottom: 1px solid var(--border);
}
.price-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--neon-2);
}

/* ====================== FORM ====================== */
.form-glass {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 32px;
    box-shadow: var(--shadow-1);
    position: relative;
    overflow: hidden;
}

.form-glass::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124,92,255,0.5), rgba(34, 211, 238, 0.2), transparent);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

.form-field { margin-bottom: 16px; }
.form-field label {
    display: block;
    font-size: .85rem;
    color: var(--text-dim);
    margin-bottom: 6px;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border-strong);
    color: #fff;
    font-family: inherit;
    font-size: .95rem;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--neon-1);
    background: rgba(124, 92, 255, 0.06);
    box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.15);
}

.form-field textarea { resize: vertical; }

.form-field .error,
.error {
    display: block;
    color: #ff8ba0;
    font-size: .8rem;
    margin-top: 4px;
}

.honeypot {
    position: absolute;
    left: -10000px;
    top: -10000px;
    height: 0; width: 0;
    overflow: hidden;
}

#submitBtn {
    position: relative;
    margin-top: 8px;
}
#submitBtn.loading .btn-label { opacity: 0; }
#submitBtn.loading .btn-spinner { opacity: 1; }
.btn-spinner {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    opacity: 0;
}

.form-success {
    margin-top: 18px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.3);
}
.form-success h4 { color: #4ade80; margin: 8px 0 4px; }
.form-success p { margin: 0; color: var(--text-dim); }

.check-anim {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 0 30px rgba(124, 92, 255, 0.6);
    animation: popIn .5s ease;
}

@keyframes popIn {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); }
}

.form-error {
    margin-top: 14px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(255, 92, 92, 0.08);
    border: 1px solid rgba(255, 92, 92, 0.3);
    color: #ff8ba0;
    font-size: .9rem;
}

/* Validation styling from jquery-validate */
input.input-validation-error,
textarea.input-validation-error {
    border-color: rgba(255, 92, 92, 0.6) !important;
}
.field-validation-error { color: #ff8ba0; font-size: .8rem; }

/* ====================== FOOTER ====================== */
.site-footer {
    border-top: 1px solid var(--border);
    padding: 60px 24px 110px; /* extra bottom space so chat launcher won't cover visitor counter */
    background: rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}
@media (max-width: 800px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}
.footer-inner h5 {
    color: #fff;
    font-size: .95rem;
    margin-bottom: 14px;
}
.footer-inner a {
    display: block;
    color: var(--muted);
    font-size: .9rem;
    padding: 4px 0;
}
.footer-inner a:hover { color: #fff; }

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    text-align: center;
}

/* ====================== ANIM HOOKS ====================== */
[data-anim] { opacity: 0; transform: translateY(20px); }
[data-anim].in-view { opacity: 1; transform: none; transition: all .8s cubic-bezier(.2,.7,.2,1); }


/* =========================================================
   EXTENDED SECTIONS — About / Services / Process / Industries
   / Stats Banner / CTA / Testimonials / Logos / FAQ
   ========================================================= */

/* ---- About mini stat cards ---- */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.mini-card {
    padding: 26px 22px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(18px);
    transition: transform .3s ease, border-color .3s ease;
}
.mini-card:hover { transform: translateY(-4px); border-color: rgba(124, 92, 255, 0.4); }
.mini-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}
.mini-lbl { color: var(--text-dim); font-size: .9rem; }

/* ---- Services grid ---- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.service-card {
    position: relative;
    padding: 30px 26px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.service-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-strong);
    background: var(--surface-strong);
}
.service-card h3 { color: #fff; margin-bottom: 10px; }
.service-card p  { color: var(--muted); font-size: .92rem; margin: 0; }
.service-card .tag {
    position: absolute;
    top: 16px; right: 16px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: var(--grad-primary);
    color: #fff;
}

/* ---- Stats banner ---- */
.stats-banner {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.04), rgba(124, 92, 255, 0.06));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.stats-banner-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}
.big-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}
.big-lbl { color: var(--muted); font-size: .95rem; letter-spacing: .03em; }

/* ---- Process / How it works ---- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    position: relative;
}
.process-step {
    padding: 30px 26px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    position: relative;
    overflow: hidden;
    transition: transform .3s ease, border-color .3s ease;
}
.process-step:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.process-step h3 { margin-bottom: 8px; }
.process-step p  { color: var(--muted); font-size: .92rem; margin: 0; }
.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 10px;
    line-height: 1;
}

/* ---- Industries grid ---- */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
}
.industry-card {
    padding: 22px 14px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    text-align: center;
    backdrop-filter: blur(14px);
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 92, 255, 0.4);
    background: var(--surface-strong);
}
.industry-card span { font-size: 2rem; display: block; margin-bottom: 8px; }
.industry-card h4   { color: #fff; font-size: .98rem; margin: 0; }

/* ---- CTA banner ---- */
.cta-banner { padding: 60px 0; }
.cta-glass {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 40px 44px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(34, 211, 238, 0.10));
    border: 1px solid rgba(124, 92, 255, 0.35);
    backdrop-filter: blur(22px);
    box-shadow: 0 20px 60px rgba(124, 92, 255, 0.25);
    flex-wrap: wrap;
}
.cta-glass h2 { margin: 6px 0 8px; }
.cta-glass p  { margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---- Testimonials ---- */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}
.testimonial {
    padding: 28px 26px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    transition: transform .3s ease, border-color .3s ease;
}
.testimonial:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.testimonial p {
    color: var(--text);
    font-size: .98rem;
    font-style: italic;
    margin: 12px 0 22px;
}
.stars {
    color: #ffd166;
    letter-spacing: 2px;
    font-size: 1.1rem;
}
.testimonial .author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-primary);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
}
.testimonial .author strong { display: block; color: #fff; font-size: .95rem; }
.testimonial .author span   { display: block; color: var(--muted); font-size: .8rem; }

/* ---- Logos / clients strip ---- */
.logo-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
}
.logo-strip span {
    padding: 14px 22px;
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-dim);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    letter-spacing: .02em;
    backdrop-filter: blur(12px);
    transition: color .25s ease, border-color .25s ease;
}
.logo-strip span:hover { color: #fff; border-color: rgba(124, 92, 255, 0.4); }

/* ---- FAQ ---- */
.faq-list { max-width: 860px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item {
    border-radius: 14px;
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(14px);
    transition: border-color .25s ease, background .25s ease;
    overflow: hidden;
}
.faq-item[open] {
    border-color: rgba(124, 92, 255, 0.4);
    background: var(--surface-strong);
}
.faq-item summary {
    cursor: pointer;
    padding: 18px 24px;
    font-weight: 600;
    color: #fff;
    list-style: none;
    position: relative;
    padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--neon-2);
    transition: transform .25s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
    margin: 0;
    padding: 0 24px 20px;
    color: var(--text-dim);
    font-size: .95rem;
}


/* =========================================================
   AI CHATBOT WIDGET
   ========================================================= */
.chat-launcher {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px; height: 60px;
    border-radius: 50%;
    background: var(--grad-primary);
    box-shadow: 0 14px 40px rgba(124, 92, 255, 0.55);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    z-index: 90;
    transition: transform .25s ease, opacity .25s ease;
}
.chat-launcher:hover { transform: scale(1.08); }
.chat-launcher.hidden { opacity: 0; pointer-events: none; transform: scale(0.6); }
.chat-launcher-icon { font-size: 1.7rem; }
.chat-launcher-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(124, 92, 255, 0.6);
    animation: chatPing 2s ease-out infinite;
}
@keyframes chatPing {
    0%   { transform: scale(1);   opacity: .8; }
    100% { transform: scale(1.7); opacity: 0;  }
}

.chat-window {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 380px;
    max-width: calc(100vw - 32px);
    height: 560px;
    max-height: calc(100vh - 48px);
    background: rgba(15, 15, 30, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid var(--border-strong);
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.55), 0 0 60px rgba(124, 92, 255, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 95;
    transform: translateY(20px) scale(0.96);
    opacity: 0;
    transition: transform .25s ease, opacity .25s ease;
}
.chat-window.open { transform: translateY(0) scale(1); opacity: 1; }

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.25), rgba(34, 211, 238, 0.15));
    border-bottom: 1px solid var(--border-strong);
}
.chat-header-info { display: flex; align-items: center; gap: 12px; }
.chat-header-info strong { display: block; color: #fff; font-size: .98rem; }
.chat-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: var(--grad-primary);
    font-size: 1.2rem;
    box-shadow: 0 0 20px rgba(124, 92, 255, 0.5);
}
.chat-status {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .75rem; color: var(--muted);
    margin-top: 2px;
}
.chat-status i {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--neon-4);
    box-shadow: 0 0 8px var(--neon-4);
    display: inline-block;
    animation: pulse 1.8s ease-in-out infinite;
}
.chat-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-strong);
    color: #fff;
    width: 30px; height: 30px;
    border-radius: 50%;
    font-size: 1.1rem; line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}
.chat-close:hover { background: rgba(255,92,92,0.18); }

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 18px 14px 8px;
    display: flex; flex-direction: column; gap: 10px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.15) transparent;
}
.chat-messages::-webkit-scrollbar { width: 6px; }
.chat-messages::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 3px; }

.msg { display: flex; gap: 8px; max-width: 92%; }
.msg-user { align-self: flex-end; }
.msg-bot  { align-self: flex-start; }
.msg .bubble {
    padding: 10px 14px;
    border-radius: 16px;
    font-size: .92rem;
    line-height: 1.45;
    word-wrap: break-word;
}
.msg-user .bubble {
    background: var(--grad-primary);
    color: #fff;
    border-bottom-right-radius: 4px;
    box-shadow: 0 6px 20px rgba(124, 92, 255, 0.35);
}
.msg-bot .bubble {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-left-radius: 4px;
}
.msg-bot .bubble b { color: #fff; }
.bot-avatar {
    width: 28px; height: 28px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.4), rgba(34, 211, 238, 0.3));
    display: flex; align-items: center; justify-content: center;
    font-size: .95rem;
    border: 1px solid var(--border-strong);
}

.bubble.typing {
    display: inline-flex; gap: 4px; padding: 14px 16px;
}
.bubble.typing span {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--text-dim);
    animation: typing 1.2s infinite ease-in-out;
}
.bubble.typing span:nth-child(2) { animation-delay: .15s; }
.bubble.typing span:nth-child(3) { animation-delay: .30s; }
@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: .4; }
    30%           { transform: translateY(-4px); opacity: 1; }
}

.chat-suggestions {
    display: flex; flex-wrap: wrap; gap: 6px;
    padding: 0 14px 8px;
}
.chip {
    background: rgba(124, 92, 255, 0.12);
    border: 1px solid rgba(124, 92, 255, 0.35);
    color: #e9ecf5;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: .8rem;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.chip:hover { background: rgba(124, 92, 255, 0.25); transform: translateY(-1px); }

.chat-form {
    display: flex; gap: 8px;
    padding: 12px 14px;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.25);
}
.chat-form input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-strong);
    color: #fff;
    font: inherit;
    font-size: .92rem;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}
.chat-form input:focus {
    border-color: var(--neon-1);
    background: rgba(124, 92, 255, 0.08);
}
.chat-send {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 6px 18px rgba(124, 92, 255, 0.45);
    transition: transform .2s ease;
}
.chat-send:hover { transform: scale(1.08); }

@media (max-width: 480px) {
    .chat-window {
        bottom: 12px; right: 12px; left: 12px;
        width: auto; height: calc(100vh - 24px);
        border-radius: 18px;
    }
    .chat-launcher { bottom: 16px; right: 16px; }
}


/* Chat window: respect [hidden] (display:flex would otherwise override it) */
.chat-window[hidden] { display: none !important; }

/* =========================================================
   MODULES — Real ERP Modules with Sub-Module Accordion
   ========================================================= */
.modules-wrap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
}
.module-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(18px);
    overflow: hidden;
    transition: border-color .25s ease, background .25s ease, transform .25s ease;
}
.module-card[open] {
    border-color: rgba(124, 92, 255, 0.5);
    background: var(--surface-strong);
    box-shadow: 0 14px 40px rgba(124, 92, 255, 0.18);
}
.module-card:hover { transform: translateY(-3px); border-color: var(--border-strong); }

.module-card summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
}
.module-card summary::-webkit-details-marker { display: none; }

.module-icon {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.25), rgba(34, 211, 238, 0.18));
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
}
.module-meta { flex: 1; min-width: 0; }
.module-meta h3 {
    margin: 0 0 4px;
    font-size: 1.05rem;
    color: #fff;
}
.module-meta .count {
    font-size: .8rem;
    color: var(--muted);
    letter-spacing: .03em;
}
.module-card summary::after {
    content: "+";
    font-size: 1.6rem;
    color: var(--neon-2);
    transition: transform .25s ease;
    line-height: 1;
}
.module-card[open] summary::after { content: "−"; }

.submodule-list {
    list-style: none;
    margin: 0;
    padding: 6px 22px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 14px;
    border-top: 1px dashed var(--border);
}
.submodule-list li {
    padding: 7px 0 7px 22px;
    color: var(--text-dim);
    font-size: .88rem;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}
.submodule-list li::before {
    content: "›";
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--neon-2);
    font-size: 1rem;
    font-weight: 700;
}
@media (max-width: 600px) {
    .submodule-list { grid-template-columns: 1fr; }
}


/* =========================================================
   PAYMENT GATEWAYS section
   ========================================================= */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    margin-bottom: 50px;
}
.payment-card {
    padding: 24px 22px;
    border-radius: var(--radius);
    background: var(--surface);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    text-align: center;
    transition: transform .25s ease, border-color .25s ease;
}
.payment-card:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 92, 255, 0.45);
}
.pg-logo {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 10px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .03em;
    margin-bottom: 14px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}
.payment-card h4 { color: #fff; margin: 0 0 4px; font-size: 1rem; }
.payment-card p  { color: var(--muted); font-size: .85rem; margin: 0; }

.payment-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}
.pf {
    padding: 22px 20px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.08), rgba(34, 211, 238, 0.05));
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(14px);
}
.pf span {
    display: inline-flex;
    width: 42px; height: 42px;
    border-radius: 12px;
    background: var(--grad-primary);
    align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(124, 92, 255, 0.35);
}
.pf h4 { color: #fff; margin: 0 0 4px; font-size: 1rem; }
.pf p  { color: var(--text-dim); font-size: .9rem; margin: 0; }

/* Highlight the special "Many More Features" module card */
.module-card:last-child {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.10), rgba(34, 211, 238, 0.06));
    border-color: rgba(124, 92, 255, 0.35);
}
.module-card:last-child .module-icon {
    background: var(--grad-primary);
    color: #fff;
}


/* Modules: simple non-expandable cards (no submodules, no chevron) */
.module-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 22px;
    cursor: default;
}
.module-card::after { content: none !important; }
.module-card .module-meta h3 { margin: 0; }
.module-card .count, .submodule-list { display: none !important; }


/* =========================================================
   HERO TOP FILLERS  — trust chips, floating badges, marquee
   ========================================================= */
.hero { padding-top: 90px; }

.trust-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 0 0 26px;
}
.trust-chip {
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-strong);
    color: var(--text);
    font-size: .82rem;
    font-weight: 500;
    backdrop-filter: blur(12px);
}

/* Floating glass badges decorating the hero corners */
.floating-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 14px;
    background: rgba(15, 15, 30, 0.55);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(18px) saturate(180%);
    color: #fff;
    font-size: .85rem;
    font-weight: 500;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    animation: floaty 6s ease-in-out infinite;
}
.floating-badge span { font-size: 1.1rem; }
.fb-1 { top: 16%; left: 4%;  animation-delay: 0s;    }
.fb-2 { top: 22%; right: 5%; animation-delay: -1.5s; }
.fb-3 { top: 50%; left: 3%;  animation-delay: -3s;   }
.fb-4 { top: 56%; right: 4%; animation-delay: -4.5s; }
.fb-5 { top: 80%; left: 6%;  animation-delay: -2s;   }

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}
@media (max-width: 1100px) {
    .floating-badge { display: none; }
}

/* Auto-scrolling feature marquee strip below hero */
.feature-marquee {
    position: relative;
    overflow: hidden;
    padding: 18px 0;
    background: linear-gradient(90deg, rgba(124,92,255,0.10), rgba(34,211,238,0.08), rgba(255,92,223,0.10));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marquee-track {
    display: flex;
    gap: 36px;
    white-space: nowrap;
    width: max-content;
    animation: marquee 55s linear infinite;
}
.marquee-track span {
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: .02em;
    opacity: .9;
}
@keyframes marquee {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Make hero-stats wrap nicely with 6 items */
.hero-stats { gap: 26px 34px; }

/* =========================================================
   "MANY MORE FEATURES" — button card + modal
   ========================================================= */
button.module-card {
    font: inherit; text-align: left;
    cursor: pointer; outline: none;
}
.more-card {
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.16), rgba(34, 211, 238, 0.10));
    border-color: rgba(124, 92, 255, 0.5);
    position: relative;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.more-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(124, 92, 255, 0.35);
    border-color: rgba(124, 92, 255, 0.75);
}
.more-card .module-icon {
    background: var(--grad-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(124, 92, 255, 0.5);
}
.more-hint {
    display: block;
    margin-top: 4px;
    color: #b59dff;
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .02em;
}

/* Modal */
.modal-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(8px);
    z-index: 200;
    display: flex; align-items: center; justify-content: center;
    padding: 24px;
    animation: fadeIn .25s ease;
}
.modal-backdrop[hidden] { display: none !important; }
@keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

.modal-card {
    width: 100%; max-width: 880px;
    max-height: 88vh;
    display: flex; flex-direction: column;
    background: rgba(15, 15, 30, 0.96);
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    box-shadow: 0 40px 100px rgba(0,0,0,0.6), 0 0 80px rgba(124, 92, 255, 0.3);
    overflow: hidden;
    animation: modalIn .3s cubic-bezier(.2,.7,.2,1);
}
@keyframes modalIn { from { transform: translateY(20px) scale(.96); opacity:0;} to { transform: none; opacity:1;} }

.modal-head {
    display: flex; align-items: flex-start; justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(34, 211, 238, 0.08));
}
.modal-head h3 { margin: 6px 0 0; color: #fff; font-size: 1.4rem; }
.modal-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--border-strong);
    color: #fff;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.4rem; line-height: 1;
    cursor: pointer;
    transition: background .2s ease;
}
.modal-close:hover { background: rgba(255, 92, 92, 0.2); }

.modal-body {
    padding: 24px 28px;
    overflow-y: auto;
}

.more-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.more-item {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.more-item:hover {
    transform: translateY(-2px);
    border-color: rgba(124, 92, 255, 0.45);
    background: rgba(124, 92, 255, 0.08);
}
.mi-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.3), rgba(34, 211, 238, 0.2));
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; flex-shrink: 0;
}
.mi-text { color: var(--text); font-size: .92rem; font-weight: 500; }

.modal-foot {
    display: flex; justify-content: flex-end; gap: 12px;
    padding: 18px 28px;
    border-top: 1px solid var(--border);
    background: rgba(0,0,0,0.25);
}
@media (max-width: 600px) {
    .modal-card { max-height: 92vh; }
    .modal-head, .modal-body, .modal-foot { padding-left: 18px; padding-right: 18px; }
}

body.modal-open { overflow: hidden; }


/* =========================================================
   HERO DECORATIVE ANIMATIONS — orbs, icons, particles
   Replaces the static corner badges with smoother motion.
   ========================================================= */

/* Hide old corner cards if they ever come back */
.floating-badge { display: none !important; }

/* ---- Background blurred gradient orbs (huge, slow) ---- */
.hero-orbs {
    position: absolute; inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .55;
    will-change: transform;
}
.orb-1 {
    width: 520px; height: 520px;
    top: -120px; left: -120px;
    background: radial-gradient(circle, #7c5cff 0%, transparent 65%);
    animation: orbDrift1 22s ease-in-out infinite;
}
.orb-2 {
    width: 460px; height: 460px;
    top: 30%; right: -140px;
    background: radial-gradient(circle, #22d3ee 0%, transparent 65%);
    animation: orbDrift2 28s ease-in-out infinite;
}
.orb-3 {
    width: 380px; height: 380px;
    bottom: -100px; left: 30%;
    background: radial-gradient(circle, #ff5cdf 0%, transparent 65%);
    animation: orbDrift3 25s ease-in-out infinite;
}
@keyframes orbDrift1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(80px, 60px) scale(1.15); }
}
@keyframes orbDrift2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(-90px, 50px) scale(1.1); }
}
@keyframes orbDrift3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(60px, -80px) scale(1.2); }
}

/* ---- Floating icon constellation ---- */
.hero-icons {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
}
.float-ico {
    position: absolute;
    width: 54px; height: 54px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(14px) saturate(160%);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35), inset 0 0 0 1px rgba(255,255,255,0.04);
    animation: icoFloat 7s ease-in-out infinite;
    will-change: transform;
}
.float-ico::before {
    content: '';
    position: absolute; inset: -1px;
    border-radius: 16px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124,92,255,.6), rgba(34,211,238,.4), rgba(255,92,223,.5));
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
    opacity: .7;
    pointer-events: none;
}

/* placement around the hero */
.fi-1  { top:  14%; left:  4%;  animation-delay: 0s;    }
.fi-2  { top:   8%; left: 22%;  animation-delay: -1s; width: 46px; height: 46px; font-size: 1.3rem; }
.fi-3  { top:  18%; right: 6%;  animation-delay: -2s;   }
.fi-4  { top:  10%; right: 26%; animation-delay: -3s; width: 44px; height: 44px; font-size: 1.25rem; }
.fi-5  { top:  46%; left:  3%;  animation-delay: -4s;   }
.fi-6  { top:  44%; right: 4%;  animation-delay: -1.5s; }
.fi-7  { top:  72%; left:  8%;  animation-delay: -2.5s; width: 46px; height: 46px; font-size: 1.3rem; }
.fi-8  { top:  74%; right: 10%; animation-delay: -3.5s; width: 44px; height: 44px; font-size: 1.2rem; }
.fi-9  { top:  30%; left: 12%;  animation-delay: -5s; width: 40px; height: 40px; font-size: 1.1rem; opacity: .8; }
.fi-10 { top:  62%; right: 18%; animation-delay: -4.5s; width: 42px; height: 42px; font-size: 1.15rem; opacity: .85; }

@keyframes icoFloat {
    0%, 100% { transform: translateY(0)    rotate(-3deg); }
    50%      { transform: translateY(-18px) rotate(3deg); }
}

/* ---- Animated tiny particles ---- */
.hero-particles {
    position: absolute; inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
}
.hero-particles span {
    position: absolute;
    width: 4px; height: 4px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 12px 2px rgba(124,92,255,0.8);
    opacity: 0;
    animation: particleRise 9s linear infinite;
}
.hero-particles span:nth-child(1)  { left:  8%;  animation-delay: 0s;   }
.hero-particles span:nth-child(2)  { left: 16%;  animation-delay: 1.2s; background: #22d3ee; box-shadow: 0 0 12px 2px rgba(34,211,238,.8); }
.hero-particles span:nth-child(3)  { left: 24%;  animation-delay: 2.4s; }
.hero-particles span:nth-child(4)  { left: 33%;  animation-delay: 0.6s; background: #ff5cdf; box-shadow: 0 0 12px 2px rgba(255,92,223,.8); }
.hero-particles span:nth-child(5)  { left: 41%;  animation-delay: 3.1s; }
.hero-particles span:nth-child(6)  { left: 50%;  animation-delay: 1.8s; background: #4ade80; box-shadow: 0 0 12px 2px rgba(74,222,128,.7); }
.hero-particles span:nth-child(7)  { left: 58%;  animation-delay: 4s;   }
.hero-particles span:nth-child(8)  { left: 66%;  animation-delay: 2.2s; background: #22d3ee; box-shadow: 0 0 12px 2px rgba(34,211,238,.8); }
.hero-particles span:nth-child(9)  { left: 74%;  animation-delay: 5.3s; }
.hero-particles span:nth-child(10) { left: 82%;  animation-delay: 3.6s; background: #ff5cdf; box-shadow: 0 0 12px 2px rgba(255,92,223,.8); }
.hero-particles span:nth-child(11) { left: 90%;  animation-delay: 0.9s; }
.hero-particles span:nth-child(12) { left: 12%;  animation-delay: 4.6s; }
.hero-particles span:nth-child(13) { left: 38%;  animation-delay: 6.1s; background: #4ade80; box-shadow: 0 0 12px 2px rgba(74,222,128,.7); }
.hero-particles span:nth-child(14) { left: 62%;  animation-delay: 7.3s; }
.hero-particles span:nth-child(15) { left: 86%;  animation-delay: 5.5s; }

@keyframes particleRise {
    0%   { transform: translateY(110vh) scale(0.5); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-20vh) scale(1.2);  opacity: 0; }
}

/* Make sure hero content sits above all the decorations */
.hero-content { position: relative; z-index: 5; }
.hero-gradient { z-index: 0; }
#hero-canvas   { z-index: 0; }

/* Mobile: hide floating icons to reduce clutter, keep orbs+particles */
@media (max-width: 900px) {
    .float-ico { display: none; }
    .orb { filter: blur(60px); opacity: .4; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .orb, .float-ico, .hero-particles span { animation: none !important; }
}


/* =========================================================
   GITL INDIA — Brand logo styling
   ========================================================= */
.brand-logo {
    height: 38px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    padding: 4px 8px;
    box-shadow: 0 4px 14px rgba(124, 92, 255, 0.25);
}
.brand-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: #fff;
    letter-spacing: 0.04em;
    display: flex; flex-direction: column;
    line-height: 1.05;
}
.brand-name-sub {
    font-size: .62rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #b59dff;
    margin-top: 1px;
}
.site-footer .brand-logo { height: 44px; }
.site-footer .brand-name { font-size: 1.05rem; }
@media (max-width: 720px) {
    .brand-name-sub { display: none; }
    .brand-logo { height: 32px; }
}


/* =========================================================
   Visitor counter (footer)
   ========================================================= */
.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-right: 90px; /* reserve room for fixed chat launcher (60px + 24px offset) */
}
.visitor-counter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(124, 92, 255, 0.18), rgba(34, 211, 238, 0.12));
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(10px);
    font-family: 'Space Grotesk', sans-serif;
    font-size: .82rem;
}
.vc-icon  { font-size: 1.05rem; }
.vc-label { color: var(--muted); font-weight: 600; letter-spacing: .03em; }
.vc-digits {
    display: inline-flex;
    gap: 3px;
    margin-left: 4px;
}
.vc-digit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 24px;
    padding: 0 5px;
    border-radius: 5px;
    background: #0a0a14;
    border: 1px solid rgba(124, 92, 255, 0.45);
    color: #fff;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    box-shadow: inset 0 0 8px rgba(124, 92, 255, 0.3);
}
@media (max-width: 600px) {
    .footer-bottom {
        justify-content: center;
        text-align: center;
        padding-right: 0;
        flex-direction: column-reverse; /* counter above copyright, both clear of launcher */
    }
}



/* =========================================================
   MOBILE / TABLET — Hamburger nav toggle + slide-in menu
   ========================================================= */
.nav-toggle {
    display: none;
    width: 44px; height: 44px;
    border: 1px solid var(--border-strong);
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    position: relative;
    backdrop-filter: blur(10px);
    transition: background .25s ease, transform .25s ease;
}
.nav-toggle:hover { background: rgba(255,255,255,0.08); }
.nav-toggle span {
    position: absolute;
    left: 11px; right: 11px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s ease, opacity .25s ease, top .3s ease;
}
.nav-toggle span:nth-child(1) { top: 14px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: inline-block; }
    .nav-cta-desktop { display: none !important; }
}

/* Slide-in mobile menu drawer */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
}
.mobile-menu[hidden] { display: none !important; }
.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 18, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity .3s ease;
}
.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu-panel {
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: min(340px, 86vw);
    background: linear-gradient(160deg, rgba(20, 16, 45, 0.96), rgba(10, 10, 26, 0.96));
    border-left: 1px solid var(--border-strong);
    box-shadow: -30px 0 60px rgba(0,0,0,0.55);
    padding: 22px 22px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    transform: translateX(100%);
    transition: transform .35s cubic-bezier(.2,.8,.2,1);
    overflow-y: auto;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-close {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.12); transform: rotate(90deg); }

.mobile-menu-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 6px;
}
.mobile-menu-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    font-weight: 500;
    border: 1px solid transparent;
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.mobile-menu-nav a span {
    width: 32px; height: 32px;
    display: inline-flex; align-items: center; justify-content: center;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(124,92,255,.22), rgba(34,211,238,.18));
    border: 1px solid var(--border-strong);
    font-size: 1rem;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus {
    background: rgba(124, 92, 255, 0.12);
    border-color: rgba(124, 92, 255, 0.35);
    transform: translateX(3px);
}
.mobile-menu-cta {
    margin-top: auto;
    text-align: center;
    justify-content: center;
}

body.menu-open { overflow: hidden; }

/* =========================================================
   MOBILE / TABLET — Attractive animated page background
   ========================================================= */
.mobile-bg-anim {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.mba-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: .55;
    will-change: transform;
}
.mba-b1 {
    width: 360px; height: 360px;
    top: -100px; left: -120px;
    background: radial-gradient(circle, #7c5cff 0%, transparent 65%);
    animation: mbaDrift1 18s ease-in-out infinite;
}
.mba-b2 {
    width: 320px; height: 320px;
    top: 40%; right: -110px;
    background: radial-gradient(circle, #22d3ee 0%, transparent 65%);
    animation: mbaDrift2 22s ease-in-out infinite;
}
.mba-b3 {
    width: 300px; height: 300px;
    bottom: -120px; left: 25%;
    background: radial-gradient(circle, #ff5cdf 0%, transparent 65%);
    animation: mbaDrift3 20s ease-in-out infinite;
}
@keyframes mbaDrift1 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(60px, 80px) scale(1.15); }
}
@keyframes mbaDrift2 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(-70px, 40px) scale(1.1); }
}
@keyframes mbaDrift3 {
    0%,100% { transform: translate(0,0) scale(1); }
    50%     { transform: translate(50px, -60px) scale(1.2); }
}
.mba-grid {
    position: absolute;
    inset: -2px;
    background-image:
        linear-gradient(rgba(124,92,255,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(34,211,238,0.07) 1px, transparent 1px);
    background-size: 44px 44px, 44px 44px;
    mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 25%, transparent 75%);
    animation: mbaGridShift 30s linear infinite;
    opacity: .7;
}
@keyframes mbaGridShift {
    0%   { background-position: 0 0, 0 0; }
    100% { background-position: 44px 44px, -44px 44px; }
}
.mba-particles span {
    position: absolute;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 10px 2px rgba(124,92,255,0.85);
    opacity: 0;
    animation: mbaParticleRise 10s linear infinite;
}
.mba-particles span:nth-child(1)  { left:  6%; animation-delay: 0s;   }
.mba-particles span:nth-child(2)  { left: 18%; animation-delay: 1.3s; background:#22d3ee; box-shadow: 0 0 10px 2px rgba(34,211,238,.85); }
.mba-particles span:nth-child(3)  { left: 28%; animation-delay: 2.6s; }
.mba-particles span:nth-child(4)  { left: 38%; animation-delay: 0.8s; background:#ff5cdf; box-shadow: 0 0 10px 2px rgba(255,92,223,.85); }
.mba-particles span:nth-child(5)  { left: 48%; animation-delay: 3.5s; }
.mba-particles span:nth-child(6)  { left: 58%; animation-delay: 1.7s; background:#4ade80; box-shadow: 0 0 10px 2px rgba(74,222,128,.8); }
.mba-particles span:nth-child(7)  { left: 68%; animation-delay: 4.2s; }
.mba-particles span:nth-child(8)  { left: 78%; animation-delay: 2.3s; background:#22d3ee; box-shadow: 0 0 10px 2px rgba(34,211,238,.85); }
.mba-particles span:nth-child(9)  { left: 88%; animation-delay: 5.1s; }
.mba-particles span:nth-child(10) { left: 14%; animation-delay: 4.7s; background:#ff5cdf; box-shadow: 0 0 10px 2px rgba(255,92,223,.85); }
.mba-particles span:nth-child(11) { left: 54%; animation-delay: 6.4s; }
.mba-particles span:nth-child(12) { left: 82%; animation-delay: 7.5s; background:#4ade80; box-shadow: 0 0 10px 2px rgba(74,222,128,.8); }

@keyframes mbaParticleRise {
    0%   { transform: translateY(110vh) scale(0.5); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { transform: translateY(-20vh) scale(1.3);  opacity: 0; }
}

/* Activate animated bg only on tablet & mobile viewports */
@media (max-width: 1024px) {
    .mobile-bg-anim { display: block; }
    /* Ensure content sits above background layer */
    main, .nav-glass, .site-footer, .chat-launcher, .chat-window { position: relative; z-index: 2; }
    .nav-glass { z-index: 50; }
    .chat-launcher { z-index: 90; }
    .chat-window { z-index: 95; }
}
@media (prefers-reduced-motion: reduce) {
    .mba-blob, .mba-particles span, .mba-grid { animation: none !important; }
}

/* =========================================================
   MOBILE / TABLET — Hero top banner (rotating tagline + icons)
   Hidden on desktop, fills the empty top on small viewports
   ========================================================= */
.hero-top-mobile { display: none; }

@media (max-width: 1024px) {
    .hero { padding-top: 110px; }
    .hero-top-mobile {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        position: absolute;
        top: 88px; left: 0; right: 0;
        z-index: 3;
        padding: 0 16px;
        pointer-events: none;
    }
    .htm-icon-strip {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .htm-ico {
        width: 40px; height: 40px;
        display: inline-flex; align-items: center; justify-content: center;
        font-size: 1.1rem;
        border-radius: 12px;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.16);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.35);
        animation: htmBob 4s ease-in-out infinite;
        will-change: transform;
    }
    .htm-ico:nth-child(1) { animation-delay: 0s;    }
    .htm-ico:nth-child(2) { animation-delay: -0.4s; }
    .htm-ico:nth-child(3) { animation-delay: -0.8s; }
    .htm-ico:nth-child(4) { animation-delay: -1.2s; }
    .htm-ico:nth-child(5) { animation-delay: -1.6s; }
    .htm-ico:nth-child(6) { animation-delay: -2.0s; }
    .htm-ico:nth-child(7) { animation-delay: -2.4s; }
    .htm-ico:nth-child(8) { animation-delay: -2.8s; }

    .htm-tagline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 9px 16px;
        border-radius: 999px;
        background: linear-gradient(135deg, rgba(124,92,255,0.20), rgba(34,211,238,0.16));
        border: 1px solid rgba(124,92,255,0.45);
        color: #fff;
        font-size: .88rem;
        font-weight: 600;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 10px 30px rgba(124, 92, 255, 0.25);
    }
    .htm-prefix { color: var(--text-dim); font-weight: 500; }
    .htm-rotator {
        position: relative;
        display: inline-block;
        min-width: 145px;
        height: 1.2em;
        overflow: hidden;
        vertical-align: bottom;
    }
    .htm-word {
        position: absolute;
        left: 0; top: 0;
        white-space: nowrap;
        background: linear-gradient(90deg, #b59dff, #22d3ee, #ff5cdf);
        background-size: 200% 100%;
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
        opacity: 0;
        transform: translateY(100%);
        transition: opacity .45s ease, transform .45s ease;
        animation: htmShine 4s linear infinite;
    }
    .htm-word.active {
        opacity: 1;
        transform: translateY(0);
    }
    .htm-word.leaving {
        opacity: 0;
        transform: translateY(-100%);
    }

    .htm-badges {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .htm-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 5px 11px;
        border-radius: 999px;
        background: rgba(15, 15, 30, 0.6);
        border: 1px solid rgba(255,255,255,0.14);
        color: #fff;
        font-size: .72rem;
        font-weight: 500;
        backdrop-filter: blur(10px);
    }
    .htm-badge i {
        width: 7px; height: 7px; border-radius: 50%;
        background: #4ade80;
        box-shadow: 0 0 8px #4ade80;
        animation: pulse 1.6s ease-in-out infinite;
    }
}

@media (max-width: 600px) {
    .hero-top-mobile { top: 80px; gap: 10px; }
    .htm-ico { width: 34px; height: 34px; font-size: .95rem; border-radius: 10px; }
    .htm-icon-strip { gap: 7px; }
    .htm-tagline { font-size: .8rem; padding: 7px 13px; }
    .htm-badge { font-size: .68rem; padding: 4px 9px; }
}

@keyframes htmBob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
@keyframes htmShine {
    0%   { background-position: 0% 0; }
    100% { background-position: 200% 0; }
}

@media (prefers-reduced-motion: reduce) {
    .htm-ico, .htm-word { animation: none !important; }
}
