/* ==========================================================================
   WEBIXA — Public Website Theme
   White + Emerald + Gold • Playfair Display + DM Sans
   ========================================================================== */

/* ---------- TOKENS ---------- */
:root {
    --bg:         #FFFFFF;
    --bg-soft:    #F9FAFB;
    --bg-mist:    #F3F4F6;
    --bg-green:   #F0FDF4;
    --bg-gold:    #FFFBEB;

    --primary:    #10B981;
    --primary-dk: #059669;
    --primary-lt: #D1FAE5;
    --primary-05: rgba(16,185,129,.05);
    --primary-10: rgba(16,185,129,.10);
    --primary-20: rgba(16,185,129,.20);

    --accent:     #F59E0B;
    --accent-dk:  #D97706;
    --accent-lt:  #FEF3C7;

    --text:       #111827;
    --text-soft:  #374151;
    --text-mute:  #6B7280;
    --text-faint: #9CA3AF;

    --border:     #E5E7EB;
    --border-lt:  #F3F4F6;

    --success:    #22C55E;
    --danger:     #EF4444;
    --warning:    #F59E0B;

    --shadow-sm:  0 1px 2px rgba(16,185,129,.06);
    --shadow-md:  0 8px 24px rgba(16,185,129,.10);
    --shadow-lg:  0 24px 64px rgba(16,185,129,.15);
    --shadow-xl:  0 32px 80px rgba(16,185,129,.20);
    --shadow-gold: 0 12px 32px rgba(245,158,11,.20);

    --grad-hero: linear-gradient(135deg, #10B981 0%, #059669 50%, #F59E0B 100%);
    --grad-soft: linear-gradient(180deg, #FFFFFF 0%, #F0FDF4 100%);
    --grad-text: linear-gradient(135deg, #059669 0%, #10B981 50%, #F59E0B 100%);
    --grad-gold: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    --grad-glass: linear-gradient(135deg, rgba(255,255,255,.9), rgba(240,253,244,.7));

    --radius-sm:  8px;
    --radius-md:  14px;
    --radius-lg:  22px;
    --radius-xl:  32px;
    --radius-full: 999px;

    --ease:       cubic-bezier(.22,.61,.36,1);
    --ease-back:  cubic-bezier(.34,1.56,.64,1);

    /* Typography tokens — see wwwroot/css/fonts.css for the canonical
       definitions. These are kept here only as a safety net so the
       theme remains usable if fonts.css is ever unloaded. To switch
       fonts, edit fonts.css (NOT this file). */
    --font-head: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Exo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --container: 1240px;
    --nav-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--text);
    letter-spacing: -.015em;
    line-height: 1.15;
}
h1 { font-size: clamp(2.5rem, 5.2vw, 4.75rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 3.8vw, 3.25rem); font-weight: 700; }
h3 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

::selection { background: var(--primary-lt); color: var(--primary-dk); }

/* ---------- UTILITIES ---------- */
.container { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.grad-text { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gold-text { background: var(--grad-gold); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.sec-lbl {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 14px; border-radius: var(--radius-full);
    background: var(--primary-05); color: var(--primary-dk);
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; border: 1px solid var(--primary-20);
}
.sec-lbl::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--primary); box-shadow: 0 0 10px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}
.sec-h { font-family: var(--font-body); font-weight: 700; margin: 18px 0 14px; }
.sec-h em, .sec-h span { color: var(--primary); font-style: italic; font-weight: 700; }
.sec-sub { color: var(--text-mute); max-width: 640px; font-size: 1.05rem; }
.text-center { text-align: center; }

/* ---------- SCROLL PROGRESS ---------- */
#scroll-prog {
    position: fixed; top: 0; left: 0; height: 3px; width: 0;
    background: var(--grad-text); z-index: 9999;
    transition: width .1s linear;
    box-shadow: 0 0 12px var(--primary);
}

/* ---------- CUSTOM CURSOR ---------- */
#cur, #cur2 {
    position: fixed; pointer-events: none; z-index: 9998;
    top: 0; left: 0; transform: translate(-50%,-50%);
    mix-blend-mode: multiply;
}
#cur {
    width: 8px; height: 8px; background: var(--primary); border-radius: 50%;
    transition: transform .15s var(--ease);
}
#cur2 {
    width: 36px; height: 36px; border: 2px solid var(--primary);
    border-radius: 50%; opacity: .6;
    transition: width .3s var(--ease), height .3s var(--ease), border-color .3s;
}
body.hov #cur { transform: translate(-50%,-50%) scale(1.8); background: var(--accent); }
body.hov #cur2 { width: 56px; height: 56px; border-color: var(--accent); }
@media (max-width: 900px) { #cur, #cur2 { display: none; } }

/* ---------- PARTICLE CANVAS ---------- */
#cvs {
    position: fixed; inset: 0; z-index: 0; opacity: .6;
    pointer-events: none;
}

/* ---------- NAV ---------- */
#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 500;
    padding: 14px 0;
    background: rgba(255,255,255,.7); backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid transparent;
    transition: background .3s var(--ease), border-color .3s, padding .3s;
}
#nav.s {
    background: rgba(255,255,255,.92);
    border-bottom-color: var(--border-lt);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(16,185,129,.06);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    width: min(100% - 40px, var(--container)); margin-inline: auto;
    gap: 24px;
}
.nlogo img { height: 38px; width: auto; }
.nlogo .brand-sub {
    font-family: var(--font-body); font-style: italic;
    font-size: 12px; color: var(--primary); font-weight: 600;
    letter-spacing: .1em; margin-top: -2px;
}
.nlinks {
    display: flex; gap: 32px; align-items: center;
}
.nlinks a {
    position: relative; font-size: 15px; font-weight: 500;
    color: var(--text-soft); transition: color .2s;
    padding: 6px 0;
}
.nlinks a::after {
    content: ''; position: absolute; left: 50%; bottom: 0;
    width: 0; height: 2px; background: var(--grad-text);
    transition: width .3s var(--ease), left .3s var(--ease);
    border-radius: 2px;
}
.nlinks a:hover, .nlinks a.active { color: var(--primary-dk); }
.nlinks a:hover::after, .nlinks a.active::after { width: 100%; left: 0; }
.ncta { display: flex; gap: 10px; align-items: center; }
.nb {
    padding: 10px 20px; border-radius: var(--radius-full);
    font-size: 14px; font-weight: 600;
    transition: all .3s var(--ease);
    display: inline-flex; align-items: center; gap: 6px;
}
.nb.o { color: var(--primary-dk); border: 1.5px solid var(--primary-20); }
.nb.o:hover { background: var(--primary-lt); border-color: var(--primary); }
.nb.p {
    background: var(--grad-hero); color: #fff;
    box-shadow: var(--shadow-md);
}
.nb.p:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.hamburger {
    display: none; font-size: 24px; color: var(--primary-dk);
    cursor: pointer; padding: 4px 8px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative; padding: calc(var(--nav-h) + 80px) 0 90px;
    overflow: hidden;
    background: var(--grad-soft);
}
.hero-inner {
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px;
    align-items: center;
    width: min(100% - 40px, var(--container)); margin-inline: auto;
    position: relative; z-index: 2;
}
.hero-glow {
    position: absolute; width: 600px; height: 600px;
    border-radius: 50%; filter: blur(120px); opacity: .35;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -120px; right: -150px;
    animation: floatGlow 14s ease-in-out infinite;
}
.hero-glow2 {
    position: absolute; width: 500px; height: 500px;
    border-radius: 50%; filter: blur(120px); opacity: .25;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    bottom: -100px; left: -120px;
    animation: floatGlow 18s ease-in-out infinite reverse;
}
.hero-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 7px 16px; border-radius: var(--radius-full);
    background: #fff; border: 1px solid var(--primary-20);
    box-shadow: var(--shadow-sm); color: var(--primary-dk);
    font-size: 12px; font-weight: 600; letter-spacing: .08em;
    text-transform: uppercase; margin-bottom: 24px;
}
.chip-dot {
    width: 8px; height: 8px; background: var(--primary);
    border-radius: 50%; box-shadow: 0 0 12px var(--primary);
    animation: pulse 2s ease-in-out infinite;
}
.hero-h1 { font-size: clamp(2.75rem, 5.8vw, 5.25rem); margin-bottom: 24px; }
.hero-h1 .l1 { display: block; color: var(--text); }
.hero-h1 .l2 {
    display: block;
    background: var(--grad-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    font-style: italic;
}
.hero-h1 .l3 {
    display: block; color: var(--accent-dk); font-weight: 800;
    text-shadow: 0 4px 24px rgba(245,158,11,.25);
}
.hero-p {
    font-size: 1.15rem; color: var(--text-mute);
    max-width: 560px; margin-bottom: 34px; line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }
.hbtn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 15px 30px; border-radius: var(--radius-full);
    font-size: 15px; font-weight: 600;
    transition: all .35s var(--ease);
    position: relative; overflow: hidden;
}
.hbtn.a {
    background: var(--grad-hero); color: #fff;
    box-shadow: var(--shadow-md);
}
.hbtn.a::before {
    content: ''; position: absolute; inset: 0;
    background: var(--grad-gold); opacity: 0;
    transition: opacity .3s;
}
.hbtn.a span { position: relative; z-index: 1; }
.hbtn.a:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }
.hbtn.a:hover::before { opacity: 1; }
.hbtn.b {
    background: #fff; color: var(--primary-dk);
    border: 1.5px solid var(--primary-20);
}
.hbtn.b:hover { background: var(--primary-lt); border-color: var(--primary); transform: translateY(-2px); }
.hero-nums {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
    padding: 22px 0; border-top: 1px solid var(--border-lt);
}
.hn-val {
    font-family: var(--font-body); font-weight: 800;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    background: var(--grad-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hn-lbl {
    font-size: 11px; font-weight: 600; letter-spacing: .08em;
    color: var(--text-mute); text-transform: uppercase;
    margin-top: 4px;
}

/* ---------- HERO DASHBOARD CARD ---------- */
.hero-right { position: relative; perspective: 1200px; }
.card3d {
    background: #fff;
    border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg);
    padding: 22px; box-shadow: var(--shadow-xl);
    transform: rotateY(-10deg) rotateX(4deg);
    transform-style: preserve-3d;
    transition: transform .3s var(--ease);
    position: relative;
    overflow: hidden;
}
.card3d::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--primary-05), transparent, rgba(245,158,11,.05));
    pointer-events: none;
}
.c3-top {
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 18px;
}
.c3-dots { display: flex; gap: 6px; }
.c3-dot { width: 10px; height: 10px; border-radius: 50%; }
.c3-tag {
    font-size: 10px; font-weight: 700; letter-spacing: .12em;
    color: var(--text-mute); text-transform: uppercase;
}
.c3-band {
    background: var(--primary-lt); padding: 14px 16px;
    border-radius: var(--radius-md); display: flex;
    justify-content: space-between; margin-bottom: 14px;
    border: 1px solid var(--primary-20);
}
.c3-band-l { font-size: 11px; color: var(--text-mute); font-weight: 500; }
.c3-band-v {
    font-family: var(--font-body); font-weight: 700;
    font-size: 1.35rem; color: var(--primary-dk); margin-top: 3px;
}
.c3-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 12px; margin-bottom: 14px;
}
.c3-s {
    background: var(--bg-soft); border: 1px solid var(--border-lt);
    border-radius: var(--radius-md); padding: 10px; text-align: center;
}
.c3-sv { font-family: var(--font-body); font-weight: 700; font-size: 1.15rem; }
.c3-sl { font-size: 10px; color: var(--text-mute); margin-top: 2px; }
.c3-chart {
    background: var(--bg-soft); border: 1px solid var(--border-lt);
    border-radius: var(--radius-md); padding: 14px; margin-bottom: 12px;
}
.c3-cl {
    font-size: 10px; font-weight: 700; letter-spacing: .1em;
    color: var(--text-mute); text-transform: uppercase;
    margin-bottom: 10px;
}
.bars { display: flex; gap: 6px; align-items: flex-end; height: 72px; }
.bar {
    flex: 1; border-radius: 4px 4px 0 0; animation: barRise 1.2s var(--ease) backwards;
}
.bar:nth-child(1) { animation-delay: .1s; }
.bar:nth-child(2) { animation-delay: .2s; }
.bar:nth-child(3) { animation-delay: .3s; }
.bar:nth-child(4) { animation-delay: .4s; }
.bar:nth-child(5) { animation-delay: .5s; }
.bar:nth-child(6) { animation-delay: .6s; }
.bar:nth-child(7) { animation-delay: .7s; }
.c3-list { background: var(--bg-soft); border-radius: var(--radius-md); padding: 10px 14px; border: 1px solid var(--border-lt); }
.c3-row {
    display: flex; justify-content: space-between;
    padding: 6px 0; font-size: 12px;
    border-bottom: 1px dashed var(--border-lt);
}
.c3-row:last-child { border: 0; }
.floater {
    position: absolute; z-index: 3;
    display: flex; align-items: center; gap: 10px;
    padding: 10px 16px; border-radius: var(--radius-md);
    background: #fff; border: 1px solid var(--border-lt);
    box-shadow: var(--shadow-lg);
    animation: floatY 4s ease-in-out infinite;
}
.floater .f-ico { font-size: 22px; }
.fl1 { top: 8%; left: -30px; animation-delay: -1s; }
.fl2 { bottom: 10%; right: -30px; animation-delay: -2s; }
.fl-t { font-size: 12px; font-weight: 700; color: var(--text); }
.fl-s { font-size: 10px; color: var(--text-mute); }

/* ---------- MARQUEE ---------- */
.mq {
    overflow: hidden; padding: 28px 0;
    background: var(--bg-soft);
    border-block: 1px solid var(--border-lt);
    mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.mq-track {
    display: flex; gap: 48px; width: max-content;
    animation: scrollX 35s linear infinite;
}
.mq-item {
    display: flex; align-items: center; gap: 14px;
    font-family: var(--font-body); font-style: italic;
    font-size: 1.5rem; font-weight: 600;
    color: var(--text-mute); white-space: nowrap;
}
.mq-sep { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 10px var(--primary); }

/* ---------- SECTION BASE ---------- */
section.sec { padding: 100px 0; position: relative; }
section.sec.alt { background: var(--bg-soft); }
section.sec > .container { position: relative; z-index: 2; }
.sec-head { text-align: center; margin-bottom: 64px; }

/* ---------- BENTO ---------- */
.bgrid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    grid-auto-flow: dense;   /* auto-backfill any single-cell gaps */
    gap: 20px;
}
.bc {
    position: relative; padding: 28px; border-radius: var(--radius-lg);
    background: #fff; border: 1px solid var(--border-lt);
    box-shadow: var(--shadow-sm); overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
    display: flex; flex-direction: column; justify-content: space-between;
}
.bc:hover {
    transform: translateY(-8px); box-shadow: var(--shadow-lg);
    border-color: var(--primary-20);
}
.bc::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-text); transform: scaleX(0); transform-origin: left;
    transition: transform .5s var(--ease);
}
.bc:hover::before { transform: scaleX(1); }
.bc.s2 { grid-column: span 2; }
.bc.s3 { grid-column: 1 / -1; }
.bi {
    width: 58px; height: 58px; border-radius: var(--radius-md);
    background: var(--primary-lt); display: grid; place-items: center;
    font-size: 28px; margin-bottom: 18px;
    transition: transform .4s var(--ease-back);
}
.bc:hover .bi { transform: scale(1.1) rotate(-6deg); }
.bt { font-family: var(--font-body); font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.bd { color: var(--text-mute); font-size: .95rem; line-height: 1.65; }
.btag {
    position: absolute; top: 16px; right: 16px;
    font-size: 9.5px; font-weight: 700; letter-spacing: .1em;
    padding: 4px 10px; border-radius: var(--radius-full);
    background: var(--accent-lt); color: var(--accent-dk); text-transform: uppercase;
}
.mini-bar-wrap {
    display: flex; gap: 4px; align-items: flex-end; height: 56px; margin-top: 18px;
}
.mb {
    flex: 1; border-radius: 3px 3px 0 0;
    background: var(--grad-text);
    transform: scaleY(0); transform-origin: bottom;
    transition: transform .8s var(--ease);
}
.bc.vi .mb { transform: scaleY(1); }
.bc.vi .mb:nth-child(1) { transition-delay: .05s; }
.bc.vi .mb:nth-child(2) { transition-delay: .1s; }
.bc.vi .mb:nth-child(3) { transition-delay: .15s; }
.bc.vi .mb:nth-child(4) { transition-delay: .2s; }
.bc.vi .mb:nth-child(5) { transition-delay: .25s; }
.bc.vi .mb:nth-child(6) { transition-delay: .3s; }
.bc.vi .mb:nth-child(7) { transition-delay: .35s; }
.bc.vi .mb:nth-child(8) { transition-delay: .4s; }

/* ---------- MODULES (tabs) ---------- */
.mtabs { display: flex; gap: 10px; justify-content: center; margin-bottom: 40px; flex-wrap: wrap; }
.mtab {
    padding: 12px 26px; border-radius: var(--radius-full);
    background: #fff; border: 1.5px solid var(--border);
    font-weight: 600; color: var(--text-soft);
    transition: all .3s var(--ease);
}
.mtab.a { background: var(--grad-hero); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }
.mtab:not(.a):hover { border-color: var(--primary); color: var(--primary-dk); }
.mcon { display: none; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.mcon.a { display: grid; animation: fadeUp .6s var(--ease); }
.mh { margin-bottom: 14px; }
.mp { color: var(--text-mute); margin-bottom: 22px; font-size: 1.05rem; }
.mfl { margin-bottom: 28px; }
.mfl li {
    display: flex; gap: 12px; align-items: flex-start;
    padding: 10px 0; font-size: .98rem; color: var(--text-soft);
    border-bottom: 1px dashed var(--border-lt);
}
.mck {
    flex: none; width: 22px; height: 22px; border-radius: 50%;
    background: var(--primary-lt); color: var(--primary-dk);
    display: grid; place-items: center; font-size: 12px; font-weight: 700;
}
.mebtn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 26px; border-radius: var(--radius-full);
    background: var(--grad-hero); color: #fff; font-weight: 600;
    box-shadow: var(--shadow-md); transition: all .3s var(--ease);
}
.mebtn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.mvis {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 24px;
    box-shadow: var(--shadow-md);
}
.mvt {
    font-size: 11px; font-weight: 700; letter-spacing: .12em;
    color: var(--text-mute); text-transform: uppercase; margin-bottom: 14px;
}
.mt { width: 100%; border-collapse: collapse; }
.mt th, .mt td { padding: 10px 8px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--border-lt); }
.mt th { font-weight: 700; color: var(--text-mute); font-size: 11px; letter-spacing: .06em; text-transform: uppercase; }
.bg, .by, .br {
    display: inline-block; padding: 3px 10px; border-radius: var(--radius-full);
    font-size: 10.5px; font-weight: 700;
}
.bg { background: var(--primary-lt); color: var(--primary-dk); }
.by { background: var(--accent-lt); color: var(--accent-dk); }
.br { background: #FEE2E2; color: #991B1B; }

/* ---------- PANELS ---------- */
.pgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.pc {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 36px;
    transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.pc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary-20); }
.pc-icon {
    width: 64px; height: 64px; border-radius: var(--radius-md);
    background: var(--grad-hero); color: #fff;
    display: grid; place-items: center; font-size: 28px;
    margin-bottom: 18px; box-shadow: var(--shadow-md);
}
.pc-n { font-family: var(--font-body); font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.pc-s { color: var(--text-mute); margin-bottom: 22px; }
.pc-feats { display: grid; gap: 10px; }
.pf {
    padding: 10px 14px; background: var(--bg-soft);
    border-radius: var(--radius-md); font-size: .92rem;
    border-left: 3px solid var(--primary);
}

/* ---------- PRICING ---------- */
.pgri { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 40px; }
.prc {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 32px 26px;
    transition: all .4s var(--ease); position: relative;
    display: flex; flex-direction: column;
}
.prc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-20); }
.prc.feat {
    border-color: var(--primary); box-shadow: var(--shadow-lg);
    background: linear-gradient(180deg, #fff 0%, var(--bg-green) 100%);
    transform: scale(1.04);
}
.prc.feat:hover { transform: scale(1.04) translateY(-8px); box-shadow: var(--shadow-xl); }
.prc-pop {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 6px 18px; border-radius: var(--radius-full);
    background: var(--grad-gold); color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .08em;
    box-shadow: var(--shadow-gold); white-space: nowrap;
}
.prc-lbl {
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    color: var(--primary-dk); text-transform: uppercase; margin-bottom: 14px;
}
.prc-amt {
    display: flex; align-items: baseline; gap: 10px; margin-bottom: 4px;
    font-family: var(--font-body);
}
.prc-amt .mrp { font-size: 1.1rem; color: var(--text-faint); text-decoration: line-through; }
.prc-amt span:last-child {
    font-size: 2.75rem; font-weight: 800; color: var(--text);
    background: var(--grad-text);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.prc-per { font-size: 13px; color: var(--text-mute); margin-bottom: 20px; }
.prc-div { height: 1px; background: var(--border-lt); margin: 18px 0; }
.prc-feats { flex: 1; margin-bottom: 24px; }
.prc-feats li {
    padding: 7px 0; font-size: .92rem; color: var(--text-soft);
    display: flex; gap: 10px; align-items: flex-start;
}
.prc-feats li::before {
    content: '✓'; color: var(--primary-dk);
    background: var(--primary-lt); width: 18px; height: 18px;
    border-radius: 50%; display: grid; place-items: center;
    font-size: 11px; font-weight: 700; flex: none;
}
.prc-btn {
    display: block; text-align: center; padding: 13px;
    border-radius: var(--radius-full); font-weight: 600;
    background: var(--grad-hero); color: #fff;
    box-shadow: var(--shadow-md); transition: all .3s var(--ease);
}
.prc-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.prc:not(.feat) .prc-btn { background: #fff; color: var(--primary-dk); border: 1.5px solid var(--primary); box-shadow: none; }
.prc:not(.feat) .prc-btn:hover { background: var(--grad-hero); color: #fff; border-color: transparent; box-shadow: var(--shadow-md); }

/* ---------- TESTIMONIALS ---------- */
.strack-wrap { overflow: hidden; margin-top: 40px; }
.strack { display: flex; gap: 24px; transition: transform .6s var(--ease); padding: 10px 0; }
.slide {
    flex: none; width: 364px; padding: 30px;
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
    transition: box-shadow .3s, transform .3s;
}
.slide:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.s-stars { color: var(--accent); font-size: 16px; letter-spacing: 3px; margin-bottom: 12px; }
.s-qt { font-family: var(--font-body); font-size: 3rem; color: var(--primary-lt); line-height: .6; margin-bottom: 6px; }
.s-txt { color: var(--text-soft); line-height: 1.7; margin-bottom: 20px; font-size: .98rem; }
.s-pers { display: flex; align-items: center; gap: 14px; padding-top: 16px; border-top: 1px solid var(--border-lt); }
.s-av {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--grad-hero); color: #fff;
    display: grid; place-items: center;
    font-weight: 700; font-family: var(--font-body);
    box-shadow: var(--shadow-sm);
}
.s-nm { font-weight: 700; font-size: .95rem; }
.s-rl { font-size: .82rem; color: var(--text-mute); }
.s-nav { display: flex; gap: 14px; justify-content: center; align-items: center; margin-top: 28px; }
.snb {
    width: 44px; height: 44px; border-radius: 50%;
    background: #fff; border: 1.5px solid var(--border);
    color: var(--text-soft); font-size: 18px; font-weight: 600;
    transition: all .3s var(--ease);
}
.snb:hover { border-color: var(--primary); color: var(--primary-dk); transform: scale(1.08); }
.sdots { display: flex; gap: 8px; }
.sdot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); cursor: pointer;
    transition: all .3s var(--ease);
}
.sdot.a { background: var(--primary); width: 24px; border-radius: var(--radius-full); }

/* ---------- CTA ---------- */
.cta {
    position: relative; padding: 100px 0;
    background: var(--grad-hero); color: #fff; overflow: hidden;
}
.cta::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,.15), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,.1), transparent 50%);
}
.cta-inner { position: relative; z-index: 2; text-align: center; }
.cta-orb {
    position: absolute; width: 300px; height: 300px; border-radius: 50%;
    background: rgba(255,255,255,.1); top: -100px; right: -100px;
    animation: floatGlow 10s ease-in-out infinite;
}
.cta-h { color: #fff; font-size: clamp(2rem, 4.2vw, 3.5rem); margin-bottom: 16px; }
.cta-h span { color: var(--accent-lt); font-style: italic; }
.cta-p { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 32px; max-width: 640px; margin-inline: auto; }
.cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta .hbtn.a { background: #fff; color: var(--primary-dk); box-shadow: 0 12px 32px rgba(0,0,0,.18); }
.cta .hbtn.a::before { display: none; }
.cta .hbtn.a:hover { background: var(--accent-lt); color: var(--accent-dk); }
.cta .hbtn.b { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.cta .hbtn.b:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.cta-sub { margin-top: 26px; font-size: .92rem; color: rgba(255,255,255,.75); }
.cta-sub a { color: var(--accent-lt); font-weight: 600; border-bottom: 1px solid rgba(255,255,255,.4); }

/* ---------- FOOTER ---------- */
footer {
    background: var(--text); color: rgba(255,255,255,.75); padding: 72px 0 24px;
}
.fg { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.fb-brand p { margin-top: 18px; line-height: 1.75; color: rgba(255,255,255,.6); }
footer h4 { color: #fff; font-family: var(--font-body); font-size: 1.15rem; margin-bottom: 18px; }
footer .fc ul li { padding: 6px 0; }
footer .fc a { transition: color .2s; font-size: .93rem; }
footer .fc a:hover { color: var(--accent-lt); }
.fbot {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
    font-size: .88rem; color: rgba(255,255,255,.55);
}
.fbot a { color: var(--accent-lt); border-bottom: 1px solid rgba(245,158,11,.3); }
.fnews li {
    padding: 5px 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    font-size: .9rem;
}

/* ---------- CONTACT PAGE ---------- */
.contact-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 40px; align-items: stretch; }
.contact-info {
    position: relative; overflow: hidden;
    background: var(--grad-hero); color: #fff;
    border-radius: var(--radius-lg); padding: 44px;
    box-shadow: var(--shadow-xl);
}
.contact-info::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 80% 10%, rgba(255,255,255,.18), transparent 50%);
    pointer-events: none;
}
.contact-info h3 { color: #fff; margin-bottom: 10px; font-size: 2rem; }
.contact-info p.sub { color: rgba(255,255,255,.85); margin-bottom: 32px; line-height: 1.7; }
.ci-item {
    display: flex; gap: 18px; align-items: flex-start;
    padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18);
    position: relative; z-index: 2;
}
.ci-item:last-child { border-bottom: 0; }
.ci-ico {
    width: 48px; height: 48px; border-radius: var(--radius-md);
    background: rgba(255,255,255,.18); display: grid; place-items: center;
    font-size: 22px; flex: none;
    backdrop-filter: blur(10px);
}
.ci-lbl { font-size: 11px; font-weight: 600; letter-spacing: .1em; color: rgba(255,255,255,.7); text-transform: uppercase; margin-bottom: 4px; }
.ci-val { font-family: var(--font-body); font-size: 1.1rem; font-weight: 600; }
.ci-val a { color: #fff; transition: color .2s; }
.ci-val a:hover { color: var(--accent-lt); }
.contact-chart {
    position: absolute; bottom: 20px; right: 20px; opacity: .2;
    width: 140px; height: 80px; pointer-events: none;
}
.contact-form {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 44px;
    box-shadow: var(--shadow-md);
}
.contact-form h3 { margin-bottom: 10px; }
.contact-form > p { color: var(--text-mute); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 20px; }
.fld { position: relative; }
.fld input, .fld textarea {
    width: 100%; padding: 14px 16px;
    background: var(--bg-soft); border: 1.5px solid var(--border);
    border-radius: var(--radius-md); font: inherit; color: var(--text);
    transition: all .25s var(--ease);
}
.fld input:focus, .fld textarea:focus {
    outline: 0; border-color: var(--primary);
    background: #fff; box-shadow: 0 0 0 4px var(--primary-10);
}
.fld label {
    position: absolute; top: 50%; left: 16px; transform: translateY(-50%);
    color: var(--text-mute); font-size: 14px;
    pointer-events: none; transition: all .22s var(--ease);
    background: transparent; padding: 0 4px;
}
.fld textarea ~ label { top: 18px; transform: none; }
.fld input:focus ~ label,
.fld input:not(:placeholder-shown) ~ label,
.fld textarea:focus ~ label,
.fld textarea:not(:placeholder-shown) ~ label {
    top: -9px; transform: none;
    font-size: 12px; color: var(--primary-dk);
    background: #fff; font-weight: 600;
}
.fld input::placeholder, .fld textarea::placeholder { color: transparent; }

/* Force label float when Chrome / Edge / Safari autofilled the field.
   :-webkit-autofill does NOT trigger :not(:placeholder-shown) reliably,
   so we pair an explicit rule here and also suppress the yellow bg. */
.fld input:-webkit-autofill ~ label,
.fld input:-webkit-autofill:focus ~ label,
.fld input:-webkit-autofill:hover ~ label,
.fld input:autofill ~ label {
    top: -9px; transform: none;
    font-size: 12px; color: var(--primary-dk);
    background: #fff; font-weight: 600;
}
.fld input:-webkit-autofill,
.fld input:-webkit-autofill:hover,
.fld input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 30px #fff inset !important;
    -webkit-text-fill-color: var(--text) !important;
    caret-color: var(--text);
    transition: background-color 5000s ease-in-out 0s;
}
.fld textarea { min-height: 140px; resize: vertical; }
.fld.full { grid-column: 1 / -1; margin-bottom: 20px; }
.submit-btn {
    /* 13-May-2026 — hardened render so the Sign-In button is
       ALWAYS visible.  Several owners reported "Login button
       aavtu nathi" on stock Android browser + Samsung Internet
       + older iOS Safari.  Root cause was three combined gaps:
         1. No `-webkit-appearance: none` — system UA styling
            (rounded grey border) was overriding our gradient
            on Android stock browser, making the button look
            like a faint pill against the white form.
         2. No `border: 0` — UA's default 2px outset border
            stayed even when background loaded.
         3. The `background: var(--grad-hero)` is a CSS-variable
            gradient.  Some Android WebView builds resolve the
            variable AFTER paint, briefly rendering the button
            with no background.  An explicit solid-color
            fallback as the FIRST background declaration paints
            instantly so the button is never blank. */
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    width: 100%;
    min-height: 52px;
    padding: 16px;
    border-radius: var(--radius-md);
    /* Solid fallback first, gradient layered on top. */
    background-color: #10B981;
    background-image: var(--grad-hero);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .02em;
    box-shadow: var(--shadow-md);
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    font-family: inherit;
    /* Stops mobile-Safari from rendering big rounded corners + a
       blue border tint when the user taps. */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.submit-btn:hover  { transform: translateY(-2px); box-shadow: var(--shadow-xl); }
.submit-btn:active { transform: translateY(0); }
.toast {
    position: fixed; top: 100px; right: 24px; z-index: 9999;
    padding: 16px 22px; border-radius: var(--radius-md);
    background: var(--primary); color: #fff; font-weight: 600;
    box-shadow: var(--shadow-lg);
    animation: slideIn .4s var(--ease), slideOut .4s var(--ease) 4.6s forwards;
}
.toast.err { background: var(--danger); }

/* ---------- SERVICES PAGE ---------- */
.sgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.sc {
    position: relative;
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 36px 28px;
    transition: all .4s var(--ease); overflow: hidden;
}
.sc:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-20); }
.sc::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
    background: var(--grad-text);
    transform: scaleX(0); transform-origin: left;
    transition: transform .4s var(--ease);
}
.sc:hover::before { transform: scaleX(1); }
.sc-ico {
    width: 72px; height: 72px; border-radius: var(--radius-md);
    background: var(--primary-lt); display: grid; place-items: center;
    font-size: 32px; margin-bottom: 22px;
    transition: all .4s var(--ease-back);
}
.sc:hover .sc-ico { background: var(--grad-hero); color: #fff; transform: rotate(-8deg) scale(1.08); }
.sc-t { font-family: var(--font-body); font-size: 1.4rem; font-weight: 700; margin-bottom: 10px; }
.sc-d { color: var(--text-mute); line-height: 1.7; margin-bottom: 18px; font-size: .96rem; }
.sc-lnk {
    color: var(--primary-dk); font-weight: 600; font-size: .92rem;
    display: inline-flex; align-items: center; gap: 6px;
    transition: gap .2s;
}
.sc:hover .sc-lnk { gap: 12px; color: var(--accent-dk); }

.process {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    margin-top: 40px; position: relative;
}
.process::before {
    content: ''; position: absolute; top: 35px; left: 10%; right: 10%; height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    opacity: .3;
}
.pstep {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 28px 22px; text-align: center;
    position: relative; z-index: 2;
    transition: all .3s var(--ease);
}
.pstep:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pstep-num {
    font-family: var(--font-body); font-weight: 800; font-size: 2rem;
    width: 64px; height: 64px; border-radius: 50%;
    background: var(--grad-hero); color: #fff;
    margin: 0 auto 18px; display: grid; place-items: center;
    box-shadow: var(--shadow-md);
}
.pstep h4 { margin-bottom: 8px; }
.pstep p { color: var(--text-mute); font-size: .9rem; }

/* ---------- ABOUT ---------- */
.mvv { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.mvv-card {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 38px 30px;
    text-align: center; transition: all .4s var(--ease);
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--primary-20); }
.mvv-ico {
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--primary-lt); margin: 0 auto 22px;
    display: grid; place-items: center; font-size: 36px;
    transition: all .5s var(--ease-back);
}
.mvv-card:hover .mvv-ico { background: var(--grad-hero); color: #fff; transform: scale(1.12) rotate(-8deg); }
.mvv-card h3 { margin-bottom: 12px; }
.mvv-card p { color: var(--text-mute); line-height: 1.75; }

.stats-strip {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    background: var(--grad-hero); color: #fff;
    padding: 48px; border-radius: var(--radius-lg);
    margin-top: 40px; box-shadow: var(--shadow-xl);
}
.stat { text-align: center; }
.stat-v { font-family: var(--font-body); font-weight: 800; font-size: clamp(2rem, 3.5vw, 3rem); }
.stat-l { font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; opacity: .85; margin-top: 4px; }

/* ---------- FAQ ---------- */
.faq { max-width: 840px; margin: 0 auto; }
.faq-item {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-md); margin-bottom: 12px;
    overflow: hidden; transition: border-color .3s;
}
.faq-item.open { border-color: var(--primary); box-shadow: var(--shadow-md); }
.faq-q {
    padding: 20px 24px; display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--text);
    transition: background .2s;
}
.faq-q:hover { background: var(--bg-soft); }
.faq-q::after {
    content: '+'; font-size: 1.6rem; color: var(--primary);
    font-weight: 300; transition: transform .3s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
    max-height: 0; overflow: hidden; transition: max-height .4s var(--ease);
    padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p { color: var(--text-mute); line-height: 1.7; }

/* ---------- PAGE HERO (sub-page hero) ---------- */
.page-hero {
    padding: calc(var(--nav-h) + 80px) 0 80px;
    background: var(--grad-soft);
    position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
    content: ''; position: absolute; width: 500px; height: 500px;
    border-radius: 50%; filter: blur(120px); opacity: .3;
    background: radial-gradient(circle, var(--primary), transparent 70%);
    top: -150px; left: 50%; transform: translateX(-50%);
}
.page-hero-inner { position: relative; z-index: 2; }
.page-hero h1 { margin-top: 14px; margin-bottom: 14px; }
.page-hero p { color: var(--text-mute); max-width: 640px; margin: 0 auto; font-size: 1.1rem; }

/* ---------- TESTIMONIAL GRID (testimonials page) ---------- */
.tgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tcard {
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg); padding: 28px;
    transition: all .35s var(--ease);
}
.tcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ---------- REVEAL ---------- */
.rv { opacity: 0; transform: translateY(30px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.vi { opacity: 1; transform: translateY(0); }
.rv.d1 { transition-delay: .12s; }
.rv.d2 { transition-delay: .22s; }
.rv.d3 { transition-delay: .32s; }
.rv.d4 { transition-delay: .42s; }

/* ---------- KEYFRAMES ---------- */
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: .65; }
}
@keyframes floatGlow {
    0%, 100% { transform: translate(0,0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.12); }
}
@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
@keyframes scrollX {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes barRise {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}
@keyframes slideIn {
    from { transform: translateX(120%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}
@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(120%); opacity: 0; }
}
@keyframes growUp {
    from { transform: scaleY(0); transform-origin: bottom; }
    to { transform: scaleY(1); transform-origin: bottom; }
}

/* ---------- TRANSLATE WIDGET ---------- */
#google_translate_element { display: none !important; }
.goog-te-banner-frame, .goog-te-banner, iframe.goog-te-banner-frame.skiptranslate { display: none !important; visibility: hidden !important; }
body { top: 0 !important; }
.goog-logo-link, .goog-te-gadget span { display: none !important; }
.goog-te-gadget { color: transparent !important; font-size: 0 !important; }
.VIpgJd-ZVi9od-l4eHX-hSRGPd, .VIpgJd-ZVi9od-ORHb-OEVmcd { display: none !important; }
.skiptranslate > iframe { display: none !important; }
.goog-tooltip, .goog-tooltip:hover, .goog-text-highlight { display: none !important; background: none !important; box-shadow: none !important; }
font[style*="vertical-align"] { background: transparent !important; box-shadow: none !important; }

.wa-fab {
    position: fixed; right: 24px; bottom: 96px; z-index: 9990;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: grid; place-items: center;
    box-shadow: 0 10px 28px rgba(37,211,102,.35);
    cursor: pointer; transition: all .35s var(--ease);
    text-decoration: none;
}
.wa-fab:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 16px 36px rgba(37,211,102,.45);
    background: #20BA5A;
}
.wa-fab svg { width: 30px; height: 30px; fill: #fff; }
.wa-fab::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: .55;
    animation: waPulse 2s ease-out infinite;
    pointer-events: none;
}
.wa-fab::after {
    content: 'Chat with us'; position: absolute;
    right: 72px; top: 50%; transform: translateY(-50%) translateX(8px);
    padding: 8px 14px; border-radius: var(--radius-full);
    background: var(--text); color: #fff;
    font-size: 13px; font-weight: 600; white-space: nowrap;
    opacity: 0; pointer-events: none;
    transition: all .3s var(--ease);
    box-shadow: var(--shadow-md);
}
.wa-fab:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }
@keyframes waPulse {
    0% { transform: scale(.9); opacity: .8; }
    100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 600px) {
    .wa-fab { right: 16px; bottom: 80px; width: 52px; height: 52px; }
    .wa-fab::after { display: none; }
}

/* ============================================================
   Translate widget — May 2026 layout
   ----------------------------------------------------------
   The script chooses ONE rendering: the inline pill chip in the
   topbar (when #wxLangSlot exists) OR the legacy floating FAB
   for layouts without the slot.  Both styles below.
   Bottom of the file: @media print rules hide both so Bill
   Print stays clean.
   ============================================================ */

/* Inline pill chip — sits on the topbar next to the bell. */
.wx-lang-slot {
    display: inline-flex; align-items: center;
    margin-right: 6px;
}
.translate-pill {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 10px; border-radius: 999px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .2);
    cursor: pointer; transition: background .15s ease, border-color .15s ease;
    font-size: 12px; font-weight: 700; letter-spacing: .04em;
}
.translate-pill:hover {
    background: rgba(255, 255, 255, .22);
    border-color: rgba(255, 255, 255, .4);
}
.translate-pill svg { width: 16px; height: 16px; }
.translate-pill .active-lang {
    background: var(--accent, #FCD34D); color: #111827;
    padding: 1px 6px; border-radius: 999px;
    font-size: 11px; line-height: 1.4; font-weight: 800;
}

/* Legacy floating FAB — kept for partial layouts that don't carry
   the topbar slot.  Hidden in print. */
.translate-fab {
    position: fixed; right: 24px; bottom: 24px; z-index: 9990;
    width: 58px; height: 58px; border-radius: 50%;
    background: var(--grad-hero); color: #fff;
    display: grid; place-items: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer; transition: all .35s var(--ease);
    border: 0;
}
/* Print rules: hide every floating widget so the Tax Invoice
   and any other printable surface comes out clean. */
@media print {
    .translate-fab,
    .translate-pop,
    .translate-pill,
    .wa-fab,
    .wx-lang-slot { display: none !important; }
}
.translate-fab:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-xl);
}
.translate-fab svg { width: 26px; height: 26px; }
.translate-fab::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    opacity: .4;
    animation: guidePulse 2s ease-out infinite;
    pointer-events: none;
}
.translate-fab .active-lang {
    position: absolute; top: -6px; right: -6px;
    min-width: 26px; height: 26px; padding: 0 6px;
    border-radius: var(--radius-full);
    background: var(--accent); color: #111827;
    font-weight: 700; font-size: 11px; letter-spacing: .05em;
    display: grid; place-items: center;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body);
}

.translate-pop {
    position: fixed; right: 24px; bottom: 96px; z-index: 9991;
    width: 320px; max-width: calc(100vw - 48px);
    background: #fff; border: 1px solid var(--border-lt);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 22px;
    opacity: 0; transform: translateY(12px) scale(.96);
    pointer-events: none;
    transition: all .3s var(--ease);
}
/*  12-May-2026 fix: when the trigger lives in the topbar (#wxLangSlot)
    the popup is anchored BELOW the pill via JS (sets inline top/right).
    These rules reset the FAB-era bottom anchor so JS-set top/right
    actually win, and flip the speech-bubble arrow to point UP (toward
    the trigger above) instead of DOWN (toward the legacy FAB below). */
.translate-pop.from-pill {
    bottom: auto; right: auto;          /* JS controls placement now */
    transform: translateY(-12px) scale(.96);
    /*  12-May-2026 follow-up: at 1366×768 (most common Windows laptop)
        the 7-language list spilled past the bottom of the viewport,
        clipping Telugu.  Cap the popup at viewport-height minus a
        breathing margin, tighten the padding, and let the inner list
        scroll if it still won't fit.  Custom scrollbar styling below. */
    padding: 16px 16px 14px;
    max-height: calc(100vh - 80px);
    display: flex; flex-direction: column;
}
.translate-pop.from-pill .translate-pop-head { margin-bottom: 10px; padding-bottom: 10px; }
.translate-pop.from-pill .lang-list {
    gap: 6px;
    overflow-y: auto;
    flex: 1 1 auto; min-height: 0;      /* lets flex child shrink + scroll */
    padding-right: 4px;                 /* small gutter so scrollbar doesn't crowd checkmarks */
}
.translate-pop.from-pill .lang-opt    { padding: 9px 12px; }
.translate-pop.from-pill .lang-opt .flag { width: 34px; height: 34px; font-size: 16px; }
.translate-pop.from-pill .tp-foot     { margin-top: 10px; padding-top: 8px; }
/*  Pretty scrollbar so the cut-off Telugu now shows up as a clear
    "list is scrollable" affordance instead of a default-grey track. */
.translate-pop.from-pill .lang-list::-webkit-scrollbar { width: 6px; }
.translate-pop.from-pill .lang-list::-webkit-scrollbar-thumb {
    background: var(--border-lt); border-radius: 999px;
}
.translate-pop.from-pill .lang-list::-webkit-scrollbar-thumb:hover {
    background: var(--text-mute);
}
.translate-pop.from-pill.show {
    transform: translateY(0) scale(1);
}
.translate-pop.show {
    opacity: 1; transform: translateY(0) scale(1);
    pointer-events: auto;
}
.translate-pop::before {
    content: ''; position: absolute; right: 24px; bottom: -8px;
    width: 16px; height: 16px; background: #fff;
    border-right: 1px solid var(--border-lt);
    border-bottom: 1px solid var(--border-lt);
    transform: rotate(45deg);
}
/*  Arrow flip for the from-pill variant — moves the notch to the TOP
    of the popup, pointing up at the trigger chip. */
.translate-pop.from-pill::before {
    top: -8px; bottom: auto;
    border-right: none; border-bottom: none;
    border-top:   1px solid var(--border-lt);
    border-left:  1px solid var(--border-lt);
}
.translate-pop-head {
    display: flex; align-items: center; gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-lt);
}
.translate-pop-head .tp-ico {
    width: 38px; height: 38px; border-radius: var(--radius-md);
    background: var(--primary-lt); color: var(--primary-dk);
    display: grid; place-items: center;
}
.translate-pop-head .tp-t {
    font-family: var(--font-body);
    font-size: 1.1rem; font-weight: 700; color: var(--text);
}
.translate-pop-head .tp-s {
    font-size: .78rem; color: var(--text-mute);
}
.lang-list { display: grid; gap: 8px; }
.lang-opt {
    display: flex; align-items: center; gap: 14px;
    padding: 12px 14px; border-radius: var(--radius-md);
    background: var(--bg-soft); border: 1.5px solid transparent;
    cursor: pointer; transition: all .25s var(--ease);
    text-align: left; width: 100%;
    font-family: var(--font-body);
}
.lang-opt:hover {
    background: var(--primary-lt);
    border-color: var(--primary-20);
    transform: translateX(2px);
}
.lang-opt.active {
    background: var(--primary-lt);
    border-color: var(--primary);
}
.lang-opt .flag {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; display: grid; place-items: center;
    font-size: 20px; flex: none;
    box-shadow: var(--shadow-sm);
    font-family: var(--font-body); font-weight: 700;
    color: var(--primary-dk);
}
.lang-opt.active .flag {
    background: var(--grad-hero); color: #fff;
}
.lang-opt .lang-info { flex: 1; }
.lang-opt .lang-name {
    font-weight: 700; font-size: .98rem; color: var(--text);
}
.lang-opt .lang-native {
    font-size: .82rem; color: var(--text-mute); margin-top: 2px;
}
.lang-opt .check {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--primary); color: #fff;
    display: none; place-items: center;
    font-size: 13px; font-weight: 700;
    flex: none;
}
.lang-opt.active .check { display: grid; }
.tp-foot {
    margin-top: 14px; padding-top: 12px;
    border-top: 1px solid var(--border-lt);
    font-size: .72rem; color: var(--text-faint); text-align: center;
}

@media (max-width: 600px) {
    .translate-fab { right: 16px; bottom: 16px; width: 52px; height: 52px; }
    .translate-pop { right: 16px; bottom: 80px; }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1100px) {
    .hero-inner { grid-template-columns: 1fr; gap: 50px; }
    .contact-split { grid-template-columns: 1fr; }
    .mcon { grid-template-columns: 1fr; gap: 30px; }
    .sgrid { grid-template-columns: repeat(2, 1fr); }
    .mvv { grid-template-columns: 1fr; }
    .pgri { grid-template-columns: repeat(2, 1fr); }
    .tgrid { grid-template-columns: repeat(2, 1fr); }
    .fg { grid-template-columns: 1fr 1fr; }
    .stats-strip { grid-template-columns: repeat(2, 1fr); }
    .bgrid { grid-template-columns: repeat(2, 1fr); }
    .bc.s2 { grid-column: span 2; }
    .bc.s3 { grid-column: 1 / -1; }
    .process { grid-template-columns: repeat(2, 1fr); }
    .process::before { display: none; }
    .pgrid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
    .nav-inner {
        width: min(100% - 24px, var(--container));
        gap: 10px;
    }
    .nlogo img { height: 32px; }
    .nlinks {
        display: none; position: absolute; top: 100%; left: 0; right: 0;
        flex-direction: column; background: #fff; gap: 0;
        box-shadow: var(--shadow-lg); padding: 20px;
        border-top: 1px solid var(--border-lt);
    }
    .nlinks.show { display: flex; }
    .nlinks a { padding: 14px 0; border-bottom: 1px solid var(--border-lt); width: 100%; }
    .hamburger { display: block; }
    /* Login + Sign-up buttons stay visible on mobile but shrink so they
       fit the narrow top bar next to the hamburger. Previously .nb.o
       was display:none - that's why "Login nu button show nathi". */
    .ncta { gap: 6px; }
    .nb { padding: 7px 12px; font-size: 12.5px; }
    .nb.o { display: inline-flex; }
    .nb.p span { display: inline; }

    /* -------- rules that existed BEFORE my header edit --------
       These were accidentally bumped outside the @media block in a
       previous edit, which broke Login (and every other auth / public
       page) on desktop. Restoring them inside the max-width: 760px
       scope so they only fire on mobile, as originally intended. */
    .hero          { padding-top: calc(var(--nav-h) + 50px); }
    .hero-h1       { font-size: clamp(2.25rem, 9vw, 3.5rem); }
    .bgrid         { grid-template-columns: 1fr; }
    .bc.s2, .bc.s3 { grid-column: auto; }
    .pgri          { grid-template-columns: 1fr; }
    .prc.feat      { transform: none; }
    .prc.feat:hover{ transform: translateY(-8px); }
    .sgrid         { grid-template-columns: 1fr; }
    .tgrid         { grid-template-columns: 1fr; }
    .fg            { grid-template-columns: 1fr; gap: 30px; }
    .stats-strip   { grid-template-columns: 1fr; padding: 32px; }
    .process       { grid-template-columns: 1fr; }
    .contact-info, .contact-form { padding: 28px; }
    .form-row      { grid-template-columns: 1fr; }
    .hero-nums     { grid-template-columns: 1fr 1fr; }
    .floater       { display: none; }
    section.sec    { padding: 60px 0; }
    .fbot          { flex-direction: column; text-align: center; }
}
@media (max-width: 380px) {
    /* Very small phones: drop the outline Login, keep the prominent
       Sign-up CTA. Hamburger still gives access to the Login link via
       the top-link list. */
    .nb.o  { display: none; }
    .nb.p  { padding: 6px 10px; font-size: 12px; }
}

/* ---------- AUTH PAGES (Login / Register) ---------- */
.auth-wrap {
    min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr;
    background: var(--grad-soft);
}
.auth-art {
    position: relative; overflow: hidden;
    background: var(--grad-hero); color: #fff;
    display: flex; flex-direction: column; justify-content: center; padding: 60px;
}
.auth-art::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 20%, rgba(255,255,255,.2), transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(245,158,11,.25), transparent 50%);
}
.auth-art-inner { position: relative; z-index: 2; max-width: 440px; }
.auth-logo {
    display: inline-flex; align-items: center; gap: 10px; margin-bottom: 40px;
    background: rgba(255,255,255,.15); padding: 8px 16px; border-radius: var(--radius-full);
    backdrop-filter: blur(10px); font-weight: 600; font-family: var(--font-body); font-style: italic;
}
.auth-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-bottom: 18px; color: #fff; }
.auth-title em { font-style: italic; color: var(--accent-lt); }
.auth-sub { color: rgba(255,255,255,.85); line-height: 1.7; margin-bottom: 32px; }
.auth-feats li {
    padding: 10px 0; display: flex; gap: 12px; align-items: center;
    color: rgba(255,255,255,.9); font-size: .96rem;
}
.auth-feats li::before {
    content: '✓'; background: rgba(255,255,255,.2); color: #fff;
    width: 24px; height: 24px; border-radius: 50%;
    display: grid; place-items: center; font-weight: 700; flex: none;
}
.auth-chart {
    position: absolute; bottom: 40px; right: 40px; opacity: .3;
    width: 180px; height: 100px;
}
.auth-form-side {
    display: flex; align-items: center; justify-content: center; padding: 40px;
}
.auth-form {
    width: 100%; max-width: 440px;
}
.auth-form h2 { font-size: 2rem; margin-bottom: 10px; }
.auth-form .sub { color: var(--text-mute); margin-bottom: 30px; }
.auth-row { margin-bottom: 18px; }
.auth-bot {
    text-align: center; margin-top: 26px; color: var(--text-mute); font-size: .9rem;
}
.auth-bot a { color: var(--primary-dk); font-weight: 600; }
.auth-bot a:hover { text-decoration: underline; }
.alt-btn {
    width: 100%; padding: 12px; margin-top: 12px;
    background: #fff; color: var(--primary-dk);
    border: 1.5px solid var(--primary-20);
    border-radius: var(--radius-md); font-weight: 600;
    transition: all .3s var(--ease);
}
.alt-btn:hover { background: var(--primary-lt); border-color: var(--primary); }
@media (max-width: 900px) {
    .auth-wrap { grid-template-columns: 1fr; }
    .auth-art { padding: 40px 28px; min-height: 40vh; }
    .auth-chart { display: none; }
}

/* ------------------------------------------------------------------
   12-May-2026 mobile-first auth pages
   ------------------------------------------------------------------
   Owner spotted that on phones the existing ≤900px stack put the hero
   art ABOVE the form — users had to scroll past the marketing block
   to reach the mobile/password fields.  At ≤768px we collapse the
   hero down to a compact logo strip (~60px tall) and let the form
   take the rest of the viewport, so login/register/forgot-password
   fields are visible the instant the page loads.
   ------------------------------------------------------------------ */
@media (max-width: 768px) {
    .auth-wrap {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        min-height: 100vh;
    }
    .auth-art {
        min-height: auto !important;
        padding: 14px 18px !important;
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    /* Hide the marketing copy — keep just the logo pill at the top. */
    .auth-art .auth-title,
    .auth-art .auth-sub,
    .auth-art .auth-feats,
    .auth-art .auth-chart {
        display: none !important;
    }
    .auth-art-inner { max-width: 100%; }
    .auth-logo {
        margin: 0 !important;
        padding: 6px 14px;
        background: rgba(255, 255, 255, .18);
        font-size: .9rem;
    }
    .auth-form-side {
        padding: 22px 18px 32px !important;
        align-items: flex-start !important;
    }
    .auth-form { padding-top: 8px; }
    .auth-form h2 { font-size: 1.5rem; margin-bottom: 8px; }
    .auth-form .sub { margin-bottom: 22px; font-size: .9rem; }
    .auth-row { margin-bottom: 14px; }
}

/* Tiny phones — squeeze even further so heading + email field
   land entirely above the keyboard when it pops up. */
@media (max-width: 380px) {
    .auth-art       { padding: 10px 14px !important; }
    .auth-logo      { font-size: .82rem; padding: 5px 10px; }
    .auth-form-side { padding: 18px 14px 28px !important; }
    .auth-form h2   { font-size: 1.3rem; }
}

/* =========================================================================
   PUBLIC-SITE MOBILE POLISH  (max-width: 760px)
   -------------------------------------------------------------------------
   The About / Services / Features / Pricing / Contact pages lean heavily
   on inline style="grid-template-columns: 1.1fr .9fr; gap:60px;" blocks
   for their 2-up / 3-up sections. Without these overrides those grids
   never collapse on phones, and 100px section padding eats the fold.
   ========================================================================= */
@media (max-width: 760px) {
    /* Tighten the whole-section vertical rhythm. 100px top+bottom x
       ~5 sections = 1000px of whitespace - way too much on a phone. */
    section.sec { padding: 48px 0; }
    .sec-head   { margin-bottom: 28px; }

    .page-hero            { padding: 100px 0 40px; }
    .page-hero h1         { font-size: clamp(1.8rem, 8vw, 2.4rem); }
    .page-hero p          { font-size: 1rem; padding: 0 8px; }

    /* Any inline-styled 2-up / 3-up grid on the public pages stacks
       vertically on phones - and its gap shrinks from 40-60px to 24px. */
    [style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }

    /* Inline "padding:44px" hero cards on About shrink down too, else
       the Mission quote becomes a 500px vertical slab of text. */
    [style*="padding:44px"]  { padding: 28px !important; }
    [style*="padding:40px"]  { padding: 24px !important; }
    [style*="padding: 60px"] { padding: 32px !important; }

    /* Home hero polish - the .hero-row + cards have their own rules
       in the 900px breakpoint, but copy paddings here so 320-600px
       screens don't overflow. */
    .hero    { padding: 80px 0 40px; }
    .hero-h1 { font-size: clamp(2rem, 9vw, 3rem); }

    /* Common wide cards / bento grids collapse. */
    .bgrid,
    .pgrid,
    .pgri,
    .sgrid,
    .tgrid,
    .process { grid-template-columns: 1fr !important; }

    /* CTA banner spacing. */
    section.cta { padding: 40px 0 !important; }
    .cta-h      { font-size: clamp(1.6rem, 7vw, 2rem); }
}
@media (max-width: 480px) {
    section.sec  { padding: 36px 0; }
    .page-hero   { padding: 90px 0 28px; }
    /* Inline button rows often carry 10-14px gap which looks
       crammed on <360px screens - give them a tiny bit more. */
    [style*="display:flex"][style*="gap:"] { flex-wrap: wrap; }
}
