/* =========================================================================
   VyapariZone — site theme
   Colours come straight from the logo: royal blue V, orange growth arrow,
   dark navy wordmark on white.
   ========================================================================= */

:root {
    --blue: #1557B0;
    --blue-deep: #0B3F8F;
    --blue-sky: #2A8BE0;
    --orange: #F7931E;
    --orange-deep: #F26A10;
    --orange-soft: #FFB14A;
    --navy: #1B2F6B;
    --ink: #0F1B3D;
    --muted: #56648A;
    --line: #E3E9F5;
    --bg: #FFFFFF;
    --bg-soft: #F5F8FE;
    --white: #FFFFFF;

    --grad-blue: linear-gradient(135deg, var(--blue-sky) 0%, var(--blue) 55%, var(--blue-deep) 100%);
    --grad-orange: linear-gradient(135deg, var(--orange-soft) 0%, var(--orange) 45%, var(--orange-deep) 100%);
    --grad-brand: linear-gradient(90deg, var(--blue) 0%, var(--blue-sky) 45%, var(--orange) 100%);

    --shadow-sm: 0 2px 8px rgba(15, 27, 61, .06);
    --shadow: 0 18px 50px -18px rgba(21, 87, 176, .28);
    --shadow-lg: 0 30px 80px -30px rgba(11, 63, 143, .45);

    --radius: 22px;
    --radius-sm: 14px;
    --wrap: 1240px;
    --hdr-h: 84px;

    --font: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
    --ease: cubic-bezier(.22, .9, .25, 1);
}

html[data-lang="gu"] {
    --font: "Hind Vadodara", "Poppins", system-ui, sans-serif;
    --font-head: "Hind Vadodara", "Poppins", system-ui, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--hdr-h) + 12px);
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.7;
    color: var(--ink);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

html[data-lang="hi"] body,
html[data-lang="gu"] body { line-height: 1.85; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
h1, h2, h3 { font-family: var(--font-head); color: var(--navy); margin: 0; line-height: 1.2; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.wrap {
    width: 100%;
    max-width: var(--wrap);
    margin-inline: auto;
    padding-inline: 24px;
}

.ic { width: 20px; height: 20px; flex: none; }
.ic-sm { width: 14px; height: 14px; }

.skip {
    position: absolute; left: 16px; top: -60px; z-index: 200;
    background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 10px;
    transition: top .2s;
}
.skip:focus { top: 12px; }

:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

/* ---------- scroll progress ---------- */
.progress {
    position: fixed; inset: 0 0 auto 0; height: 3px; z-index: 120; pointer-events: none;
}
.progress span {
    display: block; height: 100%; width: 100%;
    background: var(--grad-brand);
    transform-origin: 0 50%;
    transform: scaleX(var(--p, 0));
}

/* ---------- floating background icons ---------- */
.float-layer {
    position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
    transform: translate3d(var(--mx, 0), var(--my, 0), 0);
    transition: transform .6s var(--ease);
}
.fi {
    position: absolute;
    left: var(--x); top: var(--y);
    width: var(--s); height: var(--s);
    opacity: .085;
    animation: drift var(--d) ease-in-out var(--dl) infinite alternate;
}
.fi svg { width: 100%; height: 100%; }
.fi-b { color: var(--blue); }
.fi-o { color: var(--orange-deep); opacity: .1; }

@keyframes drift {
    0%   { transform: translate(0, 0) rotate(-8deg) scale(1); }
    33%  { transform: translate(22px, -34px) rotate(6deg) scale(1.06); }
    66%  { transform: translate(-18px, -12px) rotate(-3deg) scale(.96); }
    100% { transform: translate(14px, 26px) rotate(10deg) scale(1.03); }
}

main, .ftr { position: relative; z-index: 1; }
/* The tilted ribbon and hero glows reach past the edges; never let them add a sideways scroll. */
main { overflow-x: clip; }

/* ---------- header ---------- */
.hdr {
    position: fixed; inset: 0 0 auto 0; z-index: 100;
    height: var(--hdr-h);
    transition: height .35s var(--ease), background-color .35s, box-shadow .35s, backdrop-filter .35s;
}
.hdr.is-scrolled {
    --hdr-h: 70px;
    background: rgba(255, 255, 255, .82);
    backdrop-filter: saturate(160%) blur(16px);
    -webkit-backdrop-filter: saturate(160%) blur(16px);
    box-shadow: 0 10px 30px -18px rgba(15, 27, 61, .35);
}
.hdr-in {
    height: 100%;
    display: flex; align-items: center; gap: 18px;
}
.hdr .wrap { max-width: 1380px; }
.brand { flex: none; }
.brand img { height: 50px; width: auto; transition: height .35s var(--ease); }
.hdr.is-scrolled .brand img { height: 44px; }
/* Inner pages start with a coloured banner, so the header is solid from the start there. */
body:not(.is-home) .hdr { background: rgba(255,255,255,.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); }

.nav { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-link {
    position: relative; padding: 10px 12px; border-radius: 999px; white-space: nowrap;
    font-weight: 500; color: var(--navy); font-size: 15px;
    transition: color .25s, background-color .25s;
}
.nav-link::after {
    content: ""; position: absolute; left: 12px; right: 12px; bottom: 5px; height: 2px; border-radius: 2px;
    background: var(--grad-orange); transform: scaleX(0); transform-origin: left;
    transition: transform .35s var(--ease);
}
.nav-link:hover { color: var(--blue); }
.nav-link:hover::after, .nav-link.is-active::after { transform: scaleX(1); }

.hdr-tools { display: flex; align-items: center; gap: 10px; }

/* dropdowns: language and account */
.drop { position: relative; }
.drop-btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 14px; border-radius: 999px;
    border: 1.5px solid var(--line); background: rgba(255,255,255,.75);
    color: var(--navy); font-weight: 500; font-size: 14px; white-space: nowrap;
    transition: border-color .25s, box-shadow .25s;
}
.drop-btn:hover, .drop.is-open .drop-btn { border-color: var(--blue); box-shadow: 0 6px 20px -10px rgba(21,87,176,.5); }
.drop-btn .chev { transition: transform .3s var(--ease); }
.drop.is-open .drop-btn .chev { transform: rotate(180deg); }
.drop-list {
    position: absolute; right: 0; top: calc(100% + 10px); min-width: 220px; z-index: 5;
    background: #fff; border-radius: 16px; padding: 8px;
    box-shadow: var(--shadow-lg); border: 1px solid var(--line);
    opacity: 0; visibility: hidden; transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .25s, transform .3s var(--ease), visibility .25s;
}
.drop.is-open .drop-list { opacity: 1; visibility: visible; transform: none; }
.drop-list a {
    display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 10px;
    color: var(--navy); font-size: 15px; white-space: nowrap;
}
.drop-list a .ic { color: var(--blue); }
.drop-list a b {
    display: grid; place-items: center; width: 30px; height: 30px; border-radius: 9px;
    background: var(--bg-soft); color: var(--blue); font-size: 12px;
}
.drop-list a:hover { background: var(--bg-soft); }
.drop-list a.is-current { color: var(--blue); font-weight: 600; }
.drop-list a.is-current b { background: var(--grad-blue); color: #fff; }
.drop-list a .tick { margin-left: auto; color: var(--orange-deep); }
.nav-mobile-extra { display: none; }

.burger {
    display: none; width: 46px; height: 46px; border-radius: 14px; border: 0;
    background: var(--grad-blue); color: #fff; place-items: center;
    box-shadow: 0 10px 24px -12px rgba(21,87,176,.8);
}
.burger .ic { width: 22px; height: 22px; }
.burger .ic-close { display: none; }
.burger[aria-expanded="true"] .ic-open { display: none; }
.burger[aria-expanded="true"] .ic-close { display: block; }

/* ---------- buttons ---------- */
.btn {
    position: relative; isolation: isolate; overflow: hidden;
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 15px 28px; border-radius: 999px;
    font-weight: 600; font-size: 16px; line-height: 1.2; border: 0;
    transition: transform .35s var(--ease), box-shadow .35s;
}
.btn .ic { transition: transform .35s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn:hover .ic { transform: translateX(4px); }
.btn::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.45) 50%, transparent 80%);
    transform: translateX(-120%);
    transition: transform .8s var(--ease);
}
.btn:hover::before { transform: translateX(120%); }
.btn-primary { background: var(--grad-blue); color: #fff; box-shadow: 0 16px 34px -14px rgba(21,87,176,.75); }
.btn-primary:hover { box-shadow: 0 22px 44px -14px rgba(21,87,176,.85); }
.btn-orange { background: var(--grad-orange); color: #fff; box-shadow: 0 16px 34px -14px rgba(242,106,16,.8); }
.btn-ghost {
    color: var(--navy); background: rgba(255,255,255,.7);
    box-shadow: inset 0 0 0 1.5px var(--line);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px var(--orange), 0 14px 30px -18px rgba(242,106,16,.6); color: var(--orange-deep); }

/* ---------- kicker / section heads ---------- */
.kicker {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 7px 16px 7px 10px; border-radius: 999px;
    background: rgba(21, 87, 176, .07); color: var(--blue);
    font-weight: 600; font-size: 14px; letter-spacing: .02em; margin-bottom: 22px;
}
.kicker-dot {
    position: relative; width: 10px; height: 10px; border-radius: 50%; background: var(--orange);
}
.kicker-dot::after {
    content: ""; position: absolute; inset: -5px; border-radius: 50%;
    border: 2px solid var(--orange); opacity: 0;
    animation: ping 2.2s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(.4); opacity: .9; } 100% { transform: scale(1.6); opacity: 0; } }

.grad-blue, .grad-orange {
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad-blue { background-image: var(--grad-blue); }
.grad-orange { background-image: var(--grad-orange); }

.section { position: relative; padding: 120px 0; }
.sec-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.sec-title { font-size: clamp(1.9rem, 3.6vw, 3rem); font-weight: 700; letter-spacing: -.01em; }
.sec-lead { margin-top: 18px; font-size: 1.1rem; color: var(--muted); }

/* ---------- hero ---------- */
.hero {
    position: relative; min-height: 100vh; min-height: 100svh;
    display: flex; flex-direction: column; justify-content: center;
    padding: calc(var(--hdr-h) + 40px) 0 110px;
}
/* The glows are clipped here, not on .hero, so the search suggestions can open below the hero. */
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob {
    position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55;
    animation: blob 18s ease-in-out infinite alternate;
}
.blob-1 { width: 520px; height: 520px; background: #CFE2FF; top: -120px; right: -80px; }
.blob-2 { width: 420px; height: 420px; background: #FFE2C2; bottom: -120px; left: -100px; animation-delay: -6s; }
.blob-3 { width: 300px; height: 300px; background: #DDEBFF; top: 40%; left: 38%; animation-delay: -11s; opacity: .45; }
@keyframes blob {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.12); }
    100% { transform: translate(-30px, 30px) scale(.94); }
}
.grid-lines {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(21,87,176,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(21,87,176,.06) 1px, transparent 1px);
    background-size: 56px 56px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 30%, transparent 75%);
}

.hero-grid {
    display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 48px;
}
.hero-title {
    font-size: clamp(2.3rem, 5.2vw, 4.3rem);
    font-weight: 800; letter-spacing: -.02em; line-height: 1.12;
    margin-bottom: 26px;
}
html[data-lang="hi"] .hero-title,
html[data-lang="gu"] .hero-title { line-height: 1.35; letter-spacing: 0; font-size: clamp(2.1rem, 4.6vw, 3.8rem); }
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero-title .line > span { display: inline-block; }
.swoosh-wrap { position: relative; }
.swoosh {
    position: absolute; left: -2%; bottom: -.12em; width: 104%; height: .42em; overflow: visible;
}
.swoosh path {
    fill: none; stroke: var(--orange); stroke-width: 6; stroke-linecap: round;
    stroke-dasharray: 320; stroke-dashoffset: 320;
    animation: draw 1.2s var(--ease) 1.3s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.lead { font-size: 1.14rem; color: var(--muted); max-width: 560px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }

.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 14px; border-radius: 12px;
    background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
    font-size: 14px; font-weight: 500; color: var(--navy);
    transition: transform .3s var(--ease), border-color .3s;
}
.chip:hover { transform: translateY(-3px); border-color: currentColor; }
.chip .ic { width: 18px; height: 18px; }
.chip-b .ic { color: var(--blue); }
.chip-o .ic { color: var(--orange-deep); }

/* entrance: each piece rises in order */
.rise {
    opacity: 0; transform: translateY(40px);
    animation: rise .95s var(--ease) forwards;
    animation-delay: calc(.12s * var(--i, 0) + .15s);
}
.hero-title .rise { transform: translateY(105%); }
@keyframes rise { to { opacity: 1; transform: none; } }

/* ---------- hero visual: logo mark in orbit ---------- */
.hero-visual { position: relative; display: grid; place-items: center; }
.stage {
    --size: min(520px, 42vw);
    position: relative; width: var(--size); aspect-ratio: 1;
    transform: perspective(1000px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg));
    transition: transform .5s var(--ease);
    animation: appear 1.2s var(--ease) .3s both;
}
@keyframes appear { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: none; } }

.ring {
    position: absolute; inset: 0; margin: auto; border-radius: 50%;
}
.ring-1 { width: 100%; height: 100%; border: 1.5px dashed rgba(21,87,176,.22); animation: spin 60s linear infinite; }
.ring-2 { width: 74%; height: 74%; border: 1.5px solid rgba(247,147,30,.28); }
.ring-3 {
    width: 50%; height: 50%;
    background: radial-gradient(circle, rgba(42,139,224,.16), transparent 70%);
}
.ring-2::before {
    content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; border-radius: 50%;
    background: var(--orange); box-shadow: 0 0 0 6px rgba(247,147,30,.18);
}
.ring-2 { animation: spin 14s linear infinite; }

.orbit { position: absolute; inset: 0; animation: spin 36s linear infinite; }
.orbit-slow { animation-duration: 70s; animation-direction: reverse; }
.orbiter {
    position: absolute; top: 50%; left: 50%; width: 0; height: 0;
    transform: rotate(var(--a)) translateX(calc(var(--size) * .37)) rotate(calc(-1 * var(--a)));
}
.orbiter-far { transform: rotate(var(--a)) translateX(calc(var(--size) * .5)) rotate(calc(-1 * var(--a))); }
.orb {
    position: absolute; left: 0; top: 0; translate: -50% -50%;
    display: grid; place-items: center;
    width: 64px; height: 64px; border-radius: 20px;
    background: #fff; box-shadow: var(--shadow);
    animation: spin 36s linear infinite reverse;
}
.orbit-slow .orb { animation-duration: 70s; animation-direction: normal; }
.orb svg { width: 30px; height: 30px; }
.orb-b { color: var(--blue); }
.orb-o { color: var(--orange-deep); }
.orb-b::after, .orb-o::after {
    content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1.5px;
    background: var(--grad-brand);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor; mask-composite: exclude;
}
.orb-mini { width: 40px; height: 40px; border-radius: 50%; color: var(--blue-sky); box-shadow: var(--shadow-sm); }
.orb-mini svg { width: 18px; height: 18px; }
@keyframes spin { to { rotate: 360deg; } }

.core {
    position: absolute; inset: 0; margin: auto;
    width: 46%; height: 46%; border-radius: 50%;
    display: grid; place-items: center;
    background: radial-gradient(circle at 30% 25%, #fff, #F1F6FF 70%);
    box-shadow: 0 30px 70px -25px rgba(11,63,143,.55), inset 0 -8px 24px rgba(21,87,176,.08);
    animation: bob 6s ease-in-out infinite;
}
.core img { width: 78%; height: auto; }
.core-pulse {
    position: absolute; inset: 0; border-radius: 50%;
    border: 2px solid rgba(21,87,176,.35);
    animation: pulse 3.2s ease-out infinite;
}
.core-pulse-2 { border-color: rgba(247,147,30,.4); animation-delay: 1.6s; }
@keyframes pulse { 0% { transform: scale(1); opacity: .9; } 100% { transform: scale(1.55); opacity: 0; } }
@keyframes bob { 0%, 100% { translate: 0 0; } 50% { translate: 0 -12px; } }

.fcard {
    position: absolute; display: flex; align-items: center; gap: 10px;
    padding: 10px 16px 10px 10px; border-radius: 16px;
    background: rgba(255,255,255,.88); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,.9);
    font-weight: 600; font-size: 14px; color: var(--navy); white-space: nowrap;
    z-index: 3;
    animation: bob 5s ease-in-out infinite;
}
.fcard-a { left: -4%; top: 16%; }
.fcard-b { right: -6%; bottom: 14%; animation-delay: -2.5s; }
.fcard-ic { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 11px; color: #fff; }
.fcard-ic-b { background: var(--grad-blue); }
.fcard-ic .ic { width: 18px; height: 18px; }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 30px; padding: 0 4px; }
.bars i {
    width: 6px; border-radius: 3px; background: var(--grad-orange);
    animation: bar 2.4s ease-in-out infinite;
}
.bars i:nth-child(1) { height: 35%; }
.bars i:nth-child(2) { height: 55%; animation-delay: .2s; }
.bars i:nth-child(3) { height: 75%; animation-delay: .4s; }
.bars i:nth-child(4) { height: 100%; animation-delay: .6s; }
@keyframes bar { 0%, 100% { transform: scaleY(1); } 50% { transform: scaleY(.55); } }
.bars i { transform-origin: bottom; }

.spark { position: absolute; color: var(--orange); animation: twinkle 3s ease-in-out infinite; }
.spark-1 { width: 22px; height: 22px; top: 6%; right: 18%; }
.spark-2 { width: 14px; height: 14px; bottom: 8%; left: 20%; color: var(--blue-sky); animation-delay: -1s; }
.spark-3 { width: 18px; height: 18px; top: 48%; right: -2%; animation-delay: -2s; }
@keyframes twinkle { 0%, 100% { transform: scale(.6) rotate(0); opacity: .4; } 50% { transform: scale(1.1) rotate(45deg); opacity: 1; } }

.scroll-hint {
    position: absolute; left: 50%; bottom: 26px; translate: -50% 0;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; color: var(--muted);
}
.mouse {
    width: 24px; height: 38px; border: 2px solid rgba(27,47,107,.35); border-radius: 14px;
    display: flex; justify-content: center; padding-top: 7px;
}
.mouse i { width: 4px; height: 8px; border-radius: 2px; background: var(--orange); animation: wheel 1.8s ease-in-out infinite; }
@keyframes wheel { 0% { transform: translateY(0); opacity: 1; } 80% { transform: translateY(12px); opacity: 0; } 100% { opacity: 0; } }

/* ---------- ribbon ---------- */
.ribbon {
    position: relative; z-index: 2;
    background: var(--grad-blue); color: #fff;
    transform: rotate(-2deg) scale(1.04);
    padding: 18px 0; overflow: hidden;
    box-shadow: 0 20px 50px -25px rgba(11,63,143,.7);
}
.ribbon::after {
    content: ""; position: absolute; inset: auto 0 -10px 0; height: 10px;
    background: var(--grad-orange); transform: rotate(1.2deg);
}
.ribbon-track {
    display: flex; width: max-content;
    animation: marquee 38s linear infinite;
}
.ribbon:hover .ribbon-track { animation-play-state: paused; }
.ribbon-item {
    display: inline-flex; align-items: center; gap: 12px; padding-right: 36px;
    font-family: var(--font-head); font-weight: 600; font-size: clamp(1rem, 1.6vw, 1.3rem); white-space: nowrap;
}
.ribbon-item .ic { width: 22px; height: 22px; opacity: .9; }
.ribbon-star { color: var(--orange-soft); width: 16px !important; height: 16px !important; margin-left: 24px; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- services ---------- */
#services { padding-top: 150px; }
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.svc {
    position: relative; overflow: hidden; isolation: isolate;
    padding: 34px 28px 36px; border-radius: var(--radius);
    background: rgba(255,255,255,.9); border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0));
    transition: transform .45s var(--ease), box-shadow .45s, border-color .45s;
}
.svc:hover { --ty: -8px; box-shadow: var(--shadow-lg); border-color: transparent; }
.svc-glow {
    position: absolute; inset: 0; z-index: -1; opacity: 0; transition: opacity .4s;
    background: radial-gradient(360px circle at var(--gx, 50%) var(--gy, 50%), rgba(42,139,224,.14), transparent 60%);
}
.svc-o .svc-glow { background: radial-gradient(360px circle at var(--gx, 50%) var(--gy, 50%), rgba(247,147,30,.16), transparent 60%); }
.svc:hover .svc-glow { opacity: 1; }
.svc-no {
    position: absolute; right: 22px; top: 14px;
    font-family: var(--font-head); font-weight: 800; font-size: 56px; line-height: 1;
    color: transparent; -webkit-text-stroke: 1.5px rgba(21,87,176,.14);
    transition: -webkit-text-stroke-color .4s, transform .5s var(--ease);
}
.svc:hover .svc-no { -webkit-text-stroke-color: rgba(247,147,30,.5); transform: translateY(-4px); }
.svc-icon {
    display: grid; place-items: center; width: 70px; height: 70px; border-radius: 22px;
    margin-bottom: 26px; color: #fff;
    box-shadow: 0 16px 30px -14px rgba(21,87,176,.8);
    transition: transform .5s var(--ease);
}
.svc-b .svc-icon { background: var(--grad-blue); }
.svc-o .svc-icon { background: var(--grad-orange); box-shadow: 0 16px 30px -14px rgba(242,106,16,.8); }
.svc:hover .svc-icon { transform: rotate(-8deg) scale(1.08); }
.svc-icon svg { width: 34px; height: 34px; }
.svc h3 { font-size: 1.28rem; font-weight: 700; margin-bottom: 12px; }
.svc p { color: var(--muted); font-size: .98rem; margin: 0; text-align: justify; hyphens: auto; }
.svc-line {
    position: absolute; left: 0; bottom: 0; height: 4px; width: 100%;
    background: var(--grad-brand); transform: scaleX(0); transform-origin: left;
    transition: transform .6s var(--ease);
}
.svc:hover .svc-line { transform: scaleX(1); }

/* ---------- journey ---------- */
.journey { background: linear-gradient(180deg, transparent, var(--bg-soft) 18%, var(--bg-soft) 82%, transparent); }
.steps-wrap { position: relative; }
.steps-rail {
    position: absolute; left: 12.5%; right: 12.5%; top: 44px; height: 4px; border-radius: 4px;
    background: var(--line); overflow: hidden;
}
.steps-fill {
    display: block; height: 100%; width: 100%; background: var(--grad-brand);
    transform-origin: left; transform: scaleX(var(--p, 0));
    transition: transform .2s linear;
}
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; counter-reset: s; }
.step { text-align: center; padding: 0 6px; }
.step-node {
    position: relative; display: grid; place-items: center; margin: 0 auto 26px;
    width: 92px; height: 92px; border-radius: 50%;
    background: #fff; color: var(--blue);
    box-shadow: 0 0 0 10px var(--bg-soft), var(--shadow);
    transition: transform .5s var(--ease), color .4s;
}
.step:nth-child(even) .step-node { color: var(--orange-deep); }
.step-node svg { width: 38px; height: 38px; }
.step-node b {
    position: absolute; right: -4px; top: -4px;
    display: grid; place-items: center; width: 32px; height: 32px; border-radius: 50%;
    background: var(--grad-orange); color: #fff; font-size: 14px;
    box-shadow: 0 6px 14px -6px rgba(242,106,16,.9);
}
.step:nth-child(even) .step-node b { background: var(--grad-blue); box-shadow: 0 6px 14px -6px rgba(21,87,176,.9); }
.step:hover .step-node { transform: translateY(-6px) scale(1.05); }
.step h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: .97rem; margin: 0; }

/* ---------- call to action ---------- */
.cta-sec { padding: 40px 0 130px; }
.cta {
    position: relative; overflow: hidden; isolation: isolate;
    display: flex; align-items: center; justify-content: space-between; gap: 32px;
    padding: 64px 64px; border-radius: 32px;
    background: linear-gradient(120deg, var(--navy) 0%, var(--blue-deep) 45%, var(--blue) 100%);
    color: #fff; box-shadow: var(--shadow-lg);
}
.cta h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 700; margin-bottom: 12px; }
.cta p { margin: 0; color: rgba(255,255,255,.82); font-size: 1.08rem; max-width: 620px; }
.cta .btn { flex: none; }
.cta-actions { flex: none; display: flex; flex-direction: column; gap: 14px; min-width: 250px; }
.cta-actions .btn { width: 100%; }
.cta-ring {
    position: absolute; z-index: -1; right: -120px; top: -160px; width: 420px; height: 420px; border-radius: 50%;
    border: 60px solid rgba(247,147,30,.16);
    animation: spin 30s linear infinite;
}
.cta-ring-2 { right: auto; left: -140px; top: auto; bottom: -220px; border-color: rgba(42,139,224,.22); border-width: 40px; }
.cta-float { position: absolute; z-index: -1; color: rgba(255,255,255,.13); animation: drift 14s ease-in-out infinite alternate; }
.cta-float-1 { width: 70px; height: 70px; right: 30%; top: 14%; }
.cta-float-2 { width: 54px; height: 54px; right: 6%; bottom: 10%; animation-delay: -4s; }
.cta-float-3 { width: 60px; height: 60px; left: 44%; bottom: -8px; animation-delay: -8s; }

/* ---------- footer ---------- */
.ftr {
    overflow: hidden; background: var(--ink); color: rgba(255,255,255,.72);
    padding-top: 90px;
}
.ftr-glow {
    position: absolute; inset: -40% 20% auto 20%; height: 420px; border-radius: 50%;
    background: radial-gradient(closest-side, rgba(21,87,176,.45), transparent);
    filter: blur(20px); pointer-events: none;
}
.ftr-grid {
    position: relative; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 48px;
    padding-bottom: 50px;
}
.ftr-logo {
    display: inline-block; background: #fff; border-radius: 18px; padding: 12px 18px; margin-bottom: 22px;
    box-shadow: 0 16px 40px -20px rgba(0,0,0,.6);
}
.ftr-logo img { height: 52px; width: auto; }
.ftr-brand p { max-width: 380px; text-align: justify; }
.ftr-tag { color: var(--orange-soft); font-weight: 600; }
.ftr-h { color: #fff; font-size: 1.05rem; font-weight: 600; margin-bottom: 22px; position: relative; padding-bottom: 12px; }
.ftr-h::after { content: ""; position: absolute; left: 0; bottom: 0; width: 36px; height: 3px; border-radius: 3px; background: var(--grad-orange); }
.ftr-h-2 { margin-top: 30px; }
.ftr-links li + li { margin-top: 12px; }
.ftr-links a, .ftr-links span {
    display: inline-flex; align-items: flex-start; gap: 10px; transition: color .25s, transform .3s var(--ease);
}
.ftr-links .ic { width: 18px; height: 18px; margin-top: 4px; color: var(--orange); }
.ftr-links a:hover { color: #fff; transform: translateX(4px); }
.ftr-social { display: flex; gap: 10px; }
.ftr-social a {
    display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px;
    background: rgba(255,255,255,.08); color: #fff; transition: background .3s, transform .3s var(--ease);
}
.ftr-social a:hover { background: var(--orange); transform: translateY(-4px); }
.ftr-bottom {
    position: relative; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
    padding-top: 24px; padding-bottom: 28px; border-top: 1px solid rgba(255,255,255,.1);
    font-size: 14px;
}
.ftr-pillars { color: rgba(255,255,255,.5); }

/* ---------- back to top ---------- */
.to-top {
    position: fixed; right: 22px; bottom: 22px; z-index: 90;
    display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%;
    background: #fff; color: var(--blue); box-shadow: var(--shadow);
    opacity: 0; visibility: hidden; transform: translateY(16px);
    transition: opacity .3s, transform .4s var(--ease), visibility .3s;
}
.to-top.is-on { opacity: 1; visibility: visible; transform: none; }
.to-top .ring { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); }
.to-top .ring circle {
    fill: none; stroke: var(--orange); stroke-width: 3; stroke-linecap: round;
    stroke-dasharray: 132; stroke-dashoffset: calc(132 - 132 * var(--p, 0));
}
.to-top:hover { transform: translateY(-4px); }

/* ---------- error page ---------- */
.err { min-height: 80vh; display: flex; align-items: center; padding-top: calc(var(--hdr-h) + 60px); }
.err-in { text-align: center; }
.err-code { font-family: var(--font-head); font-weight: 800; font-size: clamp(5rem, 16vw, 10rem); line-height: 1; margin-bottom: 10px; }
.err .btn { margin-top: 24px; }

/* ---------- scroll reveal ---------- */
.reveal {
    opacity: 0; transform: translateY(46px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
    transition-delay: calc(.1s * var(--i, 0));
}
.reveal.is-in { opacity: 1; transform: none; }
.svc.reveal.is-in { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0)); }
.no-js .reveal { opacity: 1; transform: none; }


/* =========================================================================
   Shared building blocks for the inner pages, panels and back office
   ========================================================================= */

.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.muted { color: var(--muted); }
.fine { font-size: .85rem; color: var(--muted); margin-top: 14px; }
.fine a, .prose a, .auth-switch a, .muted a { color: var(--blue); font-weight: 600; }
.pre { white-space: pre-line; }
.txt-err { color: #C62828; font-weight: 600; }
.center-cta { display: flex; justify-content: center; margin-top: 44px; }
.band-soft { background: linear-gradient(180deg, transparent, var(--bg-soft) 12%, var(--bg-soft) 88%, transparent); }
.section-tight { padding-top: 56px; }

.btn-sm { padding: 10px 18px; font-size: 14px; gap: 8px; }
.btn-sm .ic { width: 18px; height: 18px; }
.btn-block { width: 100%; }
.btn-light { background: rgba(255,255,255,.14); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.4); }
.btn-light:hover { background: rgba(255,255,255,.22); }
.btn-wa { background: #1FA855; color: #fff; box-shadow: 0 14px 30px -14px rgba(31,168,85,.8); }
.btn-icon { width: 50px; height: 50px; padding: 0; border-radius: 50%; background: #fff; color: var(--muted); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-icon.is-fav { color: #E53935; box-shadow: inset 0 0 0 1.5px #E53935; }
.btn-icon.is-fav .ic { fill: currentColor; }
.btn-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }

.ticks { display: grid; gap: 10px; margin: 18px 0; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; }
.ticks .ic { flex: none; margin-top: 5px; width: 18px; height: 18px; padding: 3px; border-radius: 50%; background: rgba(21,87,176,.1); color: var(--blue); }
.ticks-light li { color: rgba(255,255,255,.9); }
.ticks-light .ic { background: rgba(255,255,255,.18); color: #fff; }

.tag { display: inline-flex; align-items: center; gap: 6px; padding: 5px 12px; border-radius: 999px; background: var(--bg-soft); color: var(--blue); font-size: 13px; font-weight: 600; }
.tag-gold { background: #FFF4E0; color: #B26A00; }
.tag-ok { background: #E8F7EE; color: #1B7F45; }

/* ---------- page banner for inner pages ---------- */
.phero {
    position: relative; overflow: hidden; isolation: isolate;
    padding: calc(var(--hdr-h) + 56px) 0 64px;
    background: linear-gradient(135deg, #F4F8FF 0%, #FFFFFF 55%, #FFF5EA 100%);
    border-bottom: 1px solid var(--line);
}
.phero-bg { position: absolute; inset: 0; z-index: -1; }
.phero .blob-1 { width: 420px; height: 420px; top: -180px; right: 8%; }
.phero .blob-2 { width: 320px; height: 320px; bottom: -200px; left: -60px; }
.phero-mark { position: absolute; right: 6%; top: 50%; width: 220px; height: 220px; translate: 0 -40%; color: var(--blue); opacity: .06; animation: drift 18s ease-in-out infinite alternate; }
.phero-in { max-width: 900px; margin-inline: 0; }
.phero-in.wrap { margin-inline: auto; max-width: var(--wrap); }
.phero-title { font-size: clamp(2rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -.015em; max-width: 860px; }
html[data-lang="hi"] .phero-title, html[data-lang="gu"] .phero-title { line-height: 1.35; letter-spacing: 0; }
.phero-lead { margin: 18px 0 0; max-width: 720px; font-size: 1.12rem; color: var(--muted); }
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; margin-bottom: 18px; font-size: 14px; color: var(--muted); }
.crumbs a { color: var(--blue); font-weight: 500; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .ic-sm { rotate: -90deg; opacity: .6; }
.crumbs-light, .crumbs-light a { color: rgba(255,255,255,.85); }

/* ---------- search bar ---------- */
.search {
    display: grid; grid-template-columns: 1.6fr 1fr 1fr auto; gap: 6px; align-items: stretch;
    padding: 8px; border-radius: 22px; background: #fff;
    box-shadow: 0 30px 70px -30px rgba(11,63,143,.45), 0 0 0 1px var(--line);
}
.search-field { position: relative; display: flex; align-items: center; gap: 10px; padding: 0 16px; border-radius: 16px; transition: background .25s; }
.search-field:hover, .search-field:focus-within { background: var(--bg-soft); }
.search-field + .search-field::before { content: ""; position: absolute; left: -3px; top: 22%; bottom: 22%; width: 1px; background: var(--line); }
.search-field .ic { color: var(--blue); flex: none; }
.search-city .ic { color: var(--orange-deep); }
.search-field input, .search-field select {
    width: 100%; min-width: 0; height: 56px; border: 0; background: transparent; outline: none;
    font: inherit; font-size: 15px; color: var(--ink); appearance: none; -webkit-appearance: none; cursor: pointer;
}
.search-field input { cursor: text; }
.search-go { border-radius: 16px; padding: 0 28px; min-height: 52px; }
.search-compact .search-field input, .search-compact .search-field select { height: 48px; }
.hero-search { margin-top: 40px; position: relative; z-index: 30; }

/* ---------- search as you type ---------- */
.search { position: relative; }
.search-what input::-webkit-search-cancel-button { cursor: pointer; }
.suggest {
    position: absolute; left: 0; right: 0; top: calc(100% + 10px); z-index: 60;
    max-height: min(460px, 70vh); overflow: auto; overscroll-behavior: contain;
    padding: 10px; border-radius: 20px; background: #fff; border: 1px solid var(--line);
    box-shadow: 0 30px 70px -20px rgba(11,63,143,.4);
    animation: sgIn .22s var(--ease);
}
@keyframes sgIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.sg-head { margin: 8px 10px 4px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.sg-head:first-child { margin-top: 2px; }
.sg-item { display: flex; align-items: center; gap: 12px; padding: 9px 10px; border-radius: 12px; color: var(--ink); }
.sg-item > .ic { margin-left: auto; width: 16px; height: 16px; color: var(--muted); opacity: 0; transform: translateX(-4px); transition: opacity .2s, transform .2s; }
.sg-item.is-active, .sg-item:focus-visible { background: var(--bg-soft); outline: none; }
.sg-item.is-active > .ic { opacity: 1; transform: none; color: var(--blue); }
.sg-ic { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px; overflow: hidden; color: #fff; background: var(--accent, var(--blue)); }
.sg-ic .ic { width: 19px; height: 19px; }
.sg-ic img { width: 100%; height: 100%; object-fit: cover; background: #fff; }
.sg-city .sg-ic { background: #FFF4E8; color: var(--orange-deep); }
.sg-txt { display: flex; flex-direction: column; min-width: 0; }
.sg-txt b { font-weight: 600; color: var(--navy); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sg-txt b mark { background: none; color: var(--orange-deep); font-weight: 800; }
.sg-txt small { font-size: 12px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sg-none { margin: 10px; color: var(--muted); font-size: 14px; }
.sg-all { display: flex; align-items: center; gap: 8px; margin-top: 6px; padding: 12px 10px 6px; border-top: 1px solid var(--line); font-weight: 600; font-size: 14px; color: var(--blue); }
.search.is-loading .search-what > .ic { animation: sgPulse .8s ease-in-out infinite alternate; }
@keyframes sgPulse { to { opacity: .35; } }
.search-float { margin-top: -94px; margin-bottom: 40px; position: relative; z-index: 3; }

/* ---------- hero facts ---------- */
.hero-facts { display: flex; flex-wrap: wrap; gap: 26px; }
.hero-facts li { display: flex; flex-direction: column; }
.hero-facts b { font-family: var(--font-head); font-size: 1.9rem; font-weight: 800; line-height: 1.1; background: var(--grad-blue); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-facts li:nth-child(even) b { background-image: var(--grad-orange); }
.hero-facts span { font-size: 13px; color: var(--muted); font-weight: 500; }
.hero-facts li + li { padding-left: 26px; border-left: 1px solid var(--line); }

/* ---------- category tiles ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-tile {
    position: relative; overflow: hidden; isolation: isolate;
    display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; gap: 2px 16px; align-items: center;
    padding: 20px 44px 20px 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line);
    transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.cat-tile::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--accent); opacity: 0; transition: opacity .4s; }
.cat-tile:hover { transform: translateY(-6px); box-shadow: 0 24px 50px -24px var(--accent); border-color: transparent; }
.cat-tile:hover::before { opacity: .07; }
.cat-ic {
    grid-row: span 2; display: grid; place-items: center; width: 56px; height: 56px; border-radius: 17px;
    color: #fff; background: var(--accent);
    box-shadow: 0 12px 24px -12px var(--accent);
    transition: transform .5s var(--ease);
}
.cat-tile:hover .cat-ic { transform: rotate(-8deg) scale(1.08); }
.cat-ic svg { width: 28px; height: 28px; }
.cat-name { font-family: var(--font-head); font-weight: 600; color: var(--navy); line-height: 1.3; }
.cat-meta { font-size: 13px; color: var(--muted); }
.cat-go { position: absolute; right: 18px; top: 50%; translate: 0 -50%; color: var(--accent); opacity: .5; transition: transform .35s var(--ease), opacity .35s; }
.cat-tile:hover .cat-go { opacity: 1; transform: translateX(4px); }

.cat-jump { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.cat-jump a {
    display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; border-radius: 999px;
    background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 500; color: var(--navy);
    transition: border-color .25s, color .25s, transform .3s var(--ease);
}
.cat-jump a .ic { color: var(--accent, var(--blue)); }
.cat-jump a:hover, .cat-jump a.is-on { border-color: var(--accent, var(--blue)); color: var(--accent, var(--blue)); transform: translateY(-2px); }
.cat-jump a.is-on { background: var(--blue); color: #fff; border-color: var(--blue); }
.cat-blocks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cat-block { padding: 26px; border-radius: 22px; background: #fff; border: 1px solid var(--line); scroll-margin-top: calc(var(--hdr-h) + 20px); position: relative; overflow: hidden; }
.cat-block::after { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--accent); }
.cat-block header { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; }
.cat-block header .cat-ic { grid-row: auto; }
.cat-block header > div { flex: 1; }
.cat-block h2 { font-size: 1.2rem; }
.cat-block h2 a:hover { color: var(--accent); }
.cat-block header p { margin: 2px 0 0; font-size: 13px; color: var(--muted); }
.cat-block ul { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-block li a { display: inline-block; padding: 6px 12px; border-radius: 10px; background: var(--bg-soft); font-size: 14px; color: var(--ink); transition: background .25s, color .25s; }
.cat-block li a:hover { background: var(--accent); color: #fff; }

/* ---------- who it is for ---------- */
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.who {
    position: relative; overflow: hidden; isolation: isolate; padding: 34px 30px; border-radius: var(--radius);
    background: #fff; border: 1px solid var(--line);
    transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0));
    transition: transform .45s var(--ease), box-shadow .45s;
}
.who:hover { --ty: -8px; box-shadow: var(--shadow-lg); }
.who:hover .svc-glow { opacity: 1; }
.who-ic { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; color: #fff; margin-bottom: 20px; }
.who-ic svg { width: 32px; height: 32px; }
.who-o .who-ic { background: var(--grad-orange); }
.who-b .who-ic { background: var(--grad-blue); }
.who-g .who-ic { background: linear-gradient(135deg, #FF9933, #FFFFFF 50%, #138808); color: var(--navy); }
.who h3 { font-size: 1.3rem; }
.who-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 6px; font-weight: 600; color: var(--blue); }
.who-link .ic { transition: transform .3s var(--ease); }
.who-link:hover .ic { transform: translateX(4px); }
.who.reveal.is-in { transform: perspective(900px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translateY(var(--ty, 0)); }

.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; max-width: none; text-align: left; }

/* ---------- business cards ---------- */
.bcard-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.bcard-grid-2 { grid-template-columns: repeat(2, 1fr); }
.bcard-list { display: grid; gap: 16px; }
.bcard {
    position: relative; display: flex; flex-direction: column; justify-content: space-between; gap: 14px;
    padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line);
    transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: transparent; }
.bcard-flag { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 999px; background: #FFF4E0; color: #B26A00; font-size: 12px; font-weight: 600; }
.bcard-main { display: flex; gap: 16px; align-items: flex-start; }
.bcard-logo {
    flex: none; display: grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; overflow: hidden;
    background: var(--accent); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 1.2rem;
}
.bcard-logo img { width: 100%; height: 100%; object-fit: cover; background: #fff; }
.bcard-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; padding-right: 60px; }
.bcard h3 { font-size: 1.08rem; line-height: 1.35; }
.bcard-cat { font-size: 13px; font-weight: 600; color: var(--accent); }
.bcard-place, .bcard-rate { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--muted); }
.bcard-rate .ic { color: #F9A825; fill: #F9A825; }
.bcard-rate em { font-style: normal; }
.bcard-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.chip-btn { display: inline-flex; align-items: center; gap: 6px; padding: 7px 12px; border-radius: 10px; background: var(--bg-soft); color: var(--blue); font-size: 13px; font-weight: 600; transition: background .25s, color .25s; }
.chip-btn:hover { background: var(--blue); color: #fff; }
.chip-wa { color: #1B7F45; background: #E8F7EE; }
.chip-wa:hover { background: #1FA855; color: #fff; }
.chip-more { margin-left: auto; }

/* ---------- offers ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.ocard { display: flex; flex-direction: column; border-radius: 20px; overflow: hidden; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.ocard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.ocard-img { position: relative; display: grid; place-items: center; aspect-ratio: 16 / 9; background: linear-gradient(135deg, #FFF1E0, #E8F0FF); color: var(--orange); }
.ocard-img img { width: 100%; height: 100%; object-fit: cover; }
.ocard-img > svg { width: 64px; height: 64px; opacity: .6; }
.ocard-badge { position: absolute; left: 14px; top: 14px; padding: 6px 12px; border-radius: 10px; background: var(--grad-orange); color: #fff; font-weight: 700; font-size: 14px; box-shadow: 0 8px 18px -8px rgba(242,106,16,.9); }
.ocard-body { display: flex; flex-direction: column; gap: 6px; padding: 18px 20px 20px; }
.ocard h3 { font-size: 1.05rem; }
.ocard-biz, .ocard-ends { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--muted); }

/* ---------- vyapari questions ---------- */
.qa-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.qa-copy { position: sticky; top: calc(var(--hdr-h) + 30px); }
.qa-copy .btn { margin-top: 26px; }
.qa-list { display: grid; gap: 14px; counter-reset: q; }
.qa-list li {
    display: grid; gap: 8px; padding: 18px 22px; border-radius: 18px; background: #fff; border: 1px solid var(--line);
    box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s;
}
.qa-list li:hover { transform: translateX(6px); box-shadow: var(--shadow); }
.qa-q { display: flex; gap: 10px; align-items: flex-start; font-weight: 600; color: var(--navy); }
.qa-q .ic { flex: none; color: var(--orange-deep); margin-top: 3px; }
.qa-a { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); font-size: .95rem; padding-left: 30px; }
.qa-a .ic { flex: none; color: #1B7F45; margin-top: 5px; }

/* ---------- package ---------- */
.pkg { display: grid; grid-template-columns: .85fr 1.15fr; border-radius: 32px; overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.pkg-price {
    position: relative; overflow: hidden; isolation: isolate; padding: 48px 40px; color: #fff;
    background: linear-gradient(150deg, var(--navy) 0%, var(--blue-deep) 50%, var(--blue) 100%);
    display: flex; flex-direction: column; align-items: flex-start;
}
.pkg-price::before { content: ""; position: absolute; z-index: -1; right: -90px; bottom: -90px; width: 280px; height: 280px; border-radius: 50%; border: 40px solid rgba(247,147,30,.25); animation: spin 30s linear infinite; }
.pkg-price-blue::before { border-color: rgba(255,255,255,.12); }
.pkg-badge { display: inline-flex; align-items: center; gap: 6px; padding: 6px 14px; border-radius: 999px; background: rgba(255,255,255,.14); font-size: 13px; font-weight: 600; }
.pkg-only { margin: 22px 0 0; font-size: 1.05rem; opacity: .8; }
.pkg-amount { margin: 0; font-family: var(--font-head); font-size: clamp(3rem, 6vw, 4.4rem); font-weight: 800; line-height: 1.05; background: linear-gradient(135deg, #FFD08A, var(--orange)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pkg-per { margin: 6px 0 0; font-weight: 500; }
.pkg-daily { display: inline-flex; align-items: center; gap: 6px; margin: 14px 0 26px; padding: 6px 12px; border-radius: 10px; background: rgba(255,255,255,.12); font-size: 14px; }
.pkg-note { margin: 16px 0 0; font-size: 13px; opacity: .75; }
.pkg-features { padding: 44px 40px; }
.pkg-features h2 { font-size: 1.35rem; margin-bottom: 20px; }
.pkg-features ul { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin-bottom: 18px; }
.pkg-list-full { grid-template-columns: 1fr 1fr; }
.pkg-features li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; }
.pkg-f-ic { flex: none; display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; background: var(--bg-soft); color: var(--blue); }
.pkg-features li:nth-child(even) .pkg-f-ic { color: var(--orange-deep); background: #FFF4E8; }
.pkg-f-ic svg { width: 19px; height: 19px; }
.pkg-mini { display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start; padding: 20px; border-radius: 18px; background: var(--bg-soft); margin: 16px 0 24px; }
.pkg-mini-name { display: block; font-family: var(--font-head); color: var(--navy); }
.pkg-mini-price { font-family: var(--font-head); font-size: 1.8rem; font-weight: 800; color: var(--orange-deep); }
.pkg-mini-price small { display: block; font-size: 13px; font-weight: 500; color: var(--muted); }
.pkg-mini .ticks { margin: 0; }
.pay-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 14px 0; }

/* ---------- smart card ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.split-center { align-items: center; }
.smart-card-demo { display: grid; place-items: center; perspective: 1000px; }
.smart-card-demo .scard { transform: rotateY(-12deg) rotateX(6deg); animation: bob 6s ease-in-out infinite; }
.scard {
    position: relative; overflow: hidden; width: min(100%, 420px); border-radius: 22px; background: #fff;
    box-shadow: 0 40px 80px -30px rgba(11,63,143,.55); border: 1px solid var(--line);
}
.scard::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 8px; background: linear-gradient(90deg, var(--orange) 50%, var(--navy) 50%); }
.scard-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 22px 22px 10px; }
.scard-top img { height: 40px; width: auto; }
.scard-top span { font-family: var(--font-head); font-weight: 700; color: #C62828; font-size: 14px; text-align: right; }
.scard-body { display: grid; grid-template-columns: 96px 1fr; gap: 18px; padding: 10px 22px 18px; }
.scard-photo { display: grid; place-items: center; width: 96px; height: 116px; border-radius: 14px; background: var(--bg-soft); color: var(--blue); overflow: hidden; border: 1px dashed #C8D5EE; }
.scard-photo svg { width: 48px; height: 48px; }
.scard-photo img { width: 100%; height: 100%; object-fit: cover; }
.scard dl { display: grid; grid-template-columns: auto 1fr; gap: 3px 10px; margin: 0; font-size: 13px; }
.scard dt { color: var(--muted); }
.scard dd { margin: 0; font-weight: 600; color: var(--navy); word-break: break-word; }
.scard-id { color: #C62828 !important; letter-spacing: .06em; }
.scard-foot { padding: 10px 22px; background: linear-gradient(90deg, var(--navy) 50%, var(--orange) 50%); color: #fff; font-size: 12px; font-weight: 500; text-align: center; }
.scard-stage { display: grid; place-items: center; padding: 30px 0; }
.scard-real { width: min(100%, 520px); }
.scard.is-inactive { filter: grayscale(.6); }
.scard-stamp { position: absolute; right: 18px; bottom: 54px; padding: 6px 14px; border: 3px solid #C62828; color: #C62828; border-radius: 8px; font-weight: 800; rotate: -12deg; opacity: .75; }

/* ---------- steps as cards / advertising ---------- */
.steps-cards { gap: 22px; }
.steps-cards .step { padding: 30px 22px; border-radius: 22px; background: #fff; border: 1px solid var(--line); }
.ad-split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.ad-split .btn { margin-top: 26px; }
.ad-types { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.ad-type { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; padding: 22px; border-radius: 20px; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.ad-type:hover { transform: translateY(-6px) rotate(-1deg); box-shadow: var(--shadow); }
.ad-type-ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 15px; background: var(--grad-blue); color: #fff; }
.ad-type:nth-child(even) .ad-type-ic { background: var(--grad-orange); }
.ad-type-ic svg { width: 24px; height: 24px; }
.ad-type b { color: var(--navy); line-height: 1.35; }
.svc-grid-3 { grid-template-columns: repeat(3, 1fr); }
.flow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 12px; position: relative; }
.flow::before { content: ""; position: absolute; left: 7%; right: 7%; top: 32px; height: 3px; background: var(--grad-brand); border-radius: 3px; opacity: .35; }
.flow li { position: relative; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.flow-ic { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--blue); box-shadow: 0 0 0 8px var(--bg-soft), var(--shadow); }
.flow li:nth-child(even) .flow-ic { color: var(--orange-deep); }
.flow-ic svg { width: 28px; height: 28px; }
.flow b { font-size: 14px; color: var(--navy); line-height: 1.35; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 900px; }
.faq { display: grid; gap: 12px; }
.faq-item { border-radius: 18px; background: #fff; border: 1px solid var(--line); overflow: hidden; transition: box-shadow .3s; }
.faq-item[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-item summary { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .ic { flex: none; transition: transform .35s var(--ease); color: var(--blue); }
.faq-item[open] summary .ic { transform: rotate(180deg); }
.faq-item p { margin: 0; padding: 0 22px 20px; color: var(--muted); text-align: justify; }
.faq-group { display: flex; align-items: center; gap: 10px; font-size: 1.2rem; margin: 40px 0 16px; }
.faq-group:first-child { margin-top: 0; }
.faq-group .ic { color: var(--orange-deep); }
.free-banner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px; margin: 40px 0; padding: 22px 26px; border-radius: 20px; background: linear-gradient(120deg, #EAF2FF, #FFF3E6); }
.free-banner p { margin: 0; font-weight: 500; color: var(--navy); }
.free-badge { padding: 8px 16px; border-radius: 12px; background: var(--grad-orange); color: #fff; font-weight: 800; font-family: var(--font-head); }

/* ---------- about ---------- */
.prose p { text-align: justify; }
.about-visual { position: relative; min-height: 420px; }
.about-mark { position: absolute; z-index: 3; left: 50%; top: 50%; translate: -50% -50%; width: 200px; height: auto; padding: 18px; border-radius: 50%; background: radial-gradient(circle at 30% 25%, #fff, #F1F6FF 70%); box-shadow: 0 30px 70px -25px rgba(11,63,143,.55); animation: bob 6s ease-in-out infinite; }
.about-card { position: absolute; display: grid; gap: 4px; width: 230px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.92); box-shadow: var(--shadow); border: 1px solid var(--line); animation: bob 7s ease-in-out infinite; z-index: 1; }
.about-card svg { width: 30px; height: 30px; color: var(--blue); }
.about-card b { color: var(--navy); }
.about-card span { font-size: 13px; color: var(--muted); }
.about-card-1 { left: 0; top: 0; }
/* The logo stays in front: the cards sit around it, never over it. */
.about-visual { min-height: 480px; }
.about-card-2 { right: 0; top: 8%; animation-delay: -2s; }
.about-card-2 svg { color: var(--orange-deep); }
.about-card-3 { left: 0; bottom: 0; animation-delay: -4s; }
.about-card-3 svg { color: #138808; }
.mission { position: relative; max-width: 900px; margin: 0 auto 64px; padding: 44px 48px; border-radius: 28px; text-align: center; background: linear-gradient(135deg, var(--navy), var(--blue)); color: #fff; box-shadow: var(--shadow-lg); overflow: hidden; }
.mission-q { position: absolute; left: 24px; top: 20px; width: 48px; height: 48px; color: var(--orange); opacity: .8; }
.mission-text { font-family: var(--font-head); font-size: clamp(1.2rem, 2.2vw, 1.6rem); font-weight: 600; line-height: 1.55; margin: 0; }
.mission-by { margin: 16px 0 0; color: var(--orange-soft); font-weight: 600; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-grid-3 { grid-template-columns: repeat(3, 1fr); }
.value { padding: 26px; border-radius: 22px; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value-ic { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 16px; background: var(--bg-soft); color: var(--blue); margin-bottom: 16px; }
.value:nth-child(even) .value-ic { background: #FFF4E8; color: var(--orange-deep); }
.value-ic svg { width: 26px; height: 26px; }
.value h3 { font-size: 1.1rem; margin-bottom: 8px; }
.value p { margin: 0; color: var(--muted); font-size: .95rem; text-align: justify; }

/* ---------- listing page ---------- */
.list-layout { display: grid; grid-template-columns: 280px 1fr; gap: 30px; align-items: start; }
.filters { display: grid; gap: 18px; position: sticky; top: calc(var(--hdr-h) + 16px); }
.filter-box { padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line); }
.filter-box h2 { font-size: 1rem; margin-bottom: 12px; }
.filter-box ul { display: grid; gap: 2px; max-height: 360px; overflow: auto; }
.filter-box li a { display: block; padding: 7px 10px; border-radius: 10px; font-size: 14px; color: var(--ink); }
.filter-box li a:hover { background: var(--bg-soft); }
.filter-box li a.is-on { background: var(--blue); color: #fff; font-weight: 600; }
.filter-box .pills { display: flex; flex-wrap: wrap; gap: 6px; }
.filter-box .pills a { padding: 6px 12px; border: 1px solid var(--line); border-radius: 999px; }
.filter-promo { display: grid; gap: 6px; padding: 22px; border-radius: 20px; background: var(--grad-orange); color: #fff; box-shadow: 0 20px 40px -20px rgba(242,106,16,.9); transition: transform .35s var(--ease); }
.filter-promo:hover { transform: translateY(-4px); }
.filter-promo .ic { width: 30px; height: 30px; }
.filter-promo span { font-size: 14px; opacity: .9; }
.empty { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 60px 30px; border-radius: 24px; background: #fff; border: 1px dashed #C8D5EE; }
.empty-ic { display: grid; place-items: center; width: 84px; height: 84px; border-radius: 50%; background: var(--bg-soft); color: var(--blue); margin-bottom: 8px; animation: bob 5s ease-in-out infinite; }
.empty-ic svg { width: 40px; height: 40px; }
.empty h2 { font-size: 1.35rem; }
.empty p { max-width: 520px; color: var(--muted); }
.empty-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }

/* ---------- business profile ---------- */
.bhero { position: relative; padding: calc(var(--hdr-h) + 30px) 0 0; isolation: isolate; }
.bhero-cover { position: absolute; inset: 0 0 90px 0; z-index: -1; overflow: hidden; background: linear-gradient(135deg, var(--navy), var(--accent)); }
.bhero-cover img { width: 100%; height: 100%; object-fit: cover; }
.bhero-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,27,61,.55), rgba(15,27,61,.25)); }
.bhero-in { padding-bottom: 10px; }
.bhero-card {
    display: grid; grid-template-columns: auto 1fr auto; gap: 26px; align-items: center; margin-top: 70px;
    padding: 28px; border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line);
}
.bhero-logo { display: grid; place-items: center; width: 112px; height: 112px; border-radius: 26px; overflow: hidden; background: var(--accent); color: #fff; font-family: var(--font-head); font-size: 2rem; font-weight: 800; box-shadow: 0 16px 30px -16px var(--accent); }
.bhero-logo img { width: 100%; height: 100%; object-fit: cover; background: #fff; }
.bhero-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.bhero h1 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; }
.bhero-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.bhero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.bhero-rate .ic { color: #F9A825; fill: #F9A825; }
.bhero-actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; max-width: 380px; }
.bpage { display: grid; grid-template-columns: 1fr 380px; gap: 28px; align-items: start; }
.bpage-main, .bpage-side { display: grid; gap: 22px; }
.box { padding: 26px; border-radius: 24px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.box + .box { margin-top: 0; }
.pmain > .box + .box, .amain .box + .box { margin-top: 22px; }
.box-h { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; margin-bottom: 16px; }
.box-h .ic { color: var(--orange-deep); }
.box-sticky { position: sticky; top: calc(var(--hdr-h) + 16px); }
.box-narrow { max-width: 520px; }
.box-map { padding: 0; overflow: hidden; }
.box-map iframe { display: block; width: 100%; height: 260px; border: 0; }
.box-hero { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 50px 30px; }
.about-text { margin: 0; white-space: pre-line; text-align: justify; }
.contact-list { display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; }
.contact-list .ic { flex: none; color: var(--blue); margin-top: 3px; }
.contact-list a { color: var(--blue); font-weight: 500; word-break: break-word; }
.boffers { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.boffer { position: relative; padding: 18px; border-radius: 16px; background: linear-gradient(135deg, #FFF4E8, #FFFFFF); border: 1px dashed var(--orange); }
.boffer-badge { display: inline-block; padding: 4px 10px; border-radius: 8px; background: var(--grad-orange); color: #fff; font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.boffer h3 { font-size: 1rem; }
.boffer p { margin: 6px 0; font-size: 14px; color: var(--muted); }
.boffer-ends { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; color: var(--muted); }
.bitems { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.bitem { display: flex; gap: 14px; padding: 14px; border-radius: 16px; background: var(--bg-soft); }
.bitem img { width: 72px; height: 72px; border-radius: 12px; object-fit: cover; }
.bitem h3 { font-size: 1rem; }
.bitem p { margin: 4px 0; font-size: 13px; color: var(--muted); }
.price b { color: var(--orange-deep); }
.price s { color: var(--muted); font-size: 13px; }
.bgallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.bgallery img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 14px; transition: transform .4s var(--ease); }
.bgallery a:hover img { transform: scale(1.03); }
.review { padding: 16px 0; border-bottom: 1px solid var(--line); }
.review-top { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.review-top time { margin-left: auto; font-size: 13px; color: var(--muted); }
.review p { margin: 8px 0 0; }
.review-reply { padding: 10px 14px; border-radius: 12px; background: var(--bg-soft); font-size: 14px; }
.stars { display: inline-flex; gap: 1px; }
.stars .ic { color: #D5DCEA; }
.stars .ic.on { color: #F9A825; fill: #F9A825; }
.review-form { display: grid; gap: 12px; margin-top: 20px; }
.review-form textarea { width: 100%; }
.rate-pick { display: inline-flex; flex-direction: row-reverse; justify-content: flex-end; gap: 4px; border: 0; padding: 0; margin: 0; }
.rate-pick legend { width: 100%; margin-bottom: 6px; font-weight: 600; color: var(--navy); float: left; }
.rate-pick input { position: absolute; opacity: 0; }
.rate-pick label { cursor: pointer; color: #D5DCEA; transition: transform .2s; }
.rate-pick label .ic { width: 30px; height: 30px; }
.rate-pick label:hover, .rate-pick label:hover ~ label, .rate-pick input:checked ~ label { color: #F9A825; }
.rate-pick label:hover .ic, .rate-pick label:hover ~ label .ic, .rate-pick input:checked ~ label .ic { fill: #F9A825; }
.rate-pick label:hover { transform: scale(1.15); }

/* ---------- forms ---------- */
.form { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 6px; min-width: 0; }
.field > span:first-child { font-weight: 600; font-size: 14px; color: var(--navy); }
.field input, .field select, .field textarea, .review-form textarea, .asearch input {
    width: 100%; padding: 13px 15px; border-radius: 13px; border: 1.5px solid var(--line); background: #fff;
    font: inherit; font-size: 15px; color: var(--ink); outline: none; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus, .review-form textarea:focus, .asearch input:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(21,87,176,.12); }
.field input:disabled { background: var(--bg-soft); color: var(--muted); }
.field input.input-validation-error, .field select.input-validation-error, .field textarea.input-validation-error { border-color: #E53935; }
.field-grow { grid-column: span 1; }
.input-ic { position: relative; display: block; }
.input-ic .ic { position: absolute; left: 14px; top: 50%; translate: 0 -50%; color: var(--muted); pointer-events: none; }
.input-ic input { padding-left: 44px; }
.err { color: #C62828; font-size: 13px; }
.err:empty { display: none; }
.hint { color: var(--muted); font-size: 12px; }
.check { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; }
.check input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--blue); }
.check a { color: var(--blue); font-weight: 600; }
.form-inline { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 10px; }
.link-sm { font-size: 14px; font-weight: 600; color: var(--blue); }
.link-sm:hover { text-decoration: underline; }
.link-btn { border: 0; background: none; padding: 4px 0 0; cursor: pointer; font-family: inherit; font-size: 12px; }
.help-box { margin-top: 22px; padding: 16px 18px; border-radius: 16px; background: var(--bg-soft); font-size: 14px; color: var(--muted); }
.help-box p { margin: 0 0 12px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 6px; }
.form-actions p { margin: 0; }
.upload input[type=file] { padding: 10px; }
.upload-preview { width: 90px; height: 90px; border-radius: 14px; object-fit: cover; border: 1px solid var(--line); }
.upload-wide { width: 220px; }
.img-row { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0; }
.form-box { padding: 30px; }
.note { display: flex; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: 14px; font-size: 14px; margin: 0 0 16px; }
.note .ic { flex: none; margin-top: 2px; }
.note-ok { background: #E8F7EE; color: #1B6B3E; }
.note-err { background: #FDECEC; color: #B3261E; }
.note-err ul { margin: 0; padding-left: 18px; }
.note-warn { background: #FFF6E5; color: #8A5300; }
.note-warn a { font-weight: 700; color: inherit; text-decoration: underline; }
.validation-summary-valid { display: none; }

/* ---------- contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 56px; }
.ccard { display: flex; flex-direction: column; gap: 4px; padding: 24px; border-radius: 22px; background: #fff; border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s; }
.ccard:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.ccard-ic { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 16px; background: var(--grad-blue); color: #fff; margin-bottom: 12px; }
.ccard-wa { background: #1FA855; }
.ccard-ic svg { width: 26px; height: 26px; }
.ccard b { color: var(--navy); }
.ccard span:last-child { color: var(--muted); font-size: 14px; word-break: break-word; }
.contact-split { align-items: start; }
.office p { margin: 0 0 14px; }
.box.office + .box-map { margin-top: 18px; }
.legal-wrap { max-width: 900px; }
.legal h2 { font-size: 1.3rem; margin: 26px 0 10px; }
.legal h2:first-child { margin-top: 0; }
.legal h3 { font-size: 1.08rem; margin: 18px 0 8px; }
.legal p, .legal li { text-align: justify; }
.legal ul { list-style: disc; padding-left: 22px; margin: 0 0 1em; }
.legal a { color: var(--blue); font-weight: 600; }

/* ---------- sign in / register ---------- */
.auth { padding: calc(var(--hdr-h) + 40px) 0 90px; background: linear-gradient(135deg, #F4F8FF, #FFFFFF 50%, #FFF5EA); }
.auth-grid { display: grid; grid-template-columns: .9fr 1.1fr; border-radius: 32px; overflow: hidden; background: #fff; box-shadow: var(--shadow-lg); border: 1px solid var(--line); max-width: 1080px; padding: 0; }
.auth-side { position: relative; overflow: hidden; isolation: isolate; padding: 50px 44px; color: #fff; background: linear-gradient(150deg, var(--navy), var(--blue-deep) 55%, var(--blue)); }
.auth-side-o { background: linear-gradient(150deg, #7A2E00, var(--orange-deep) 55%, var(--orange)); }
.auth-side h2 { color: #fff; font-size: 1.6rem; margin: 18px 0 8px; }
.auth-side-ic { display: grid; place-items: center; width: 64px; height: 64px; border-radius: 20px; background: rgba(255,255,255,.16); }
.auth-side-ic svg { width: 32px; height: 32px; }
.auth-side-bg { position: absolute; z-index: -1; right: -40px; bottom: -40px; width: 240px; height: 240px; opacity: .12; animation: drift 14s ease-in-out infinite alternate; }
.auth-side-note { margin-top: 24px; padding: 14px 16px; border-radius: 14px; background: rgba(255,255,255,.12); font-size: 14px; }
.auth-box { padding: 48px 44px; }
.auth-box h1 { font-size: 1.8rem; margin-bottom: 6px; }
.auth-box > .muted { margin-bottom: 26px; }
.auth-switch { margin: 20px 0 0; text-align: center; }
.auth-other { margin: 10px 0 0; text-align: center; font-size: 14px; }
.auth-other a { color: var(--muted); text-decoration: underline; }

/* ---------- member panels ---------- */
.panel { padding: calc(var(--hdr-h) + 34px) 0 90px; background: var(--bg-soft); min-height: 80vh; }
.panel-grid { display: grid; grid-template-columns: 270px 1fr; gap: 28px; align-items: start; }
.pside { position: sticky; top: calc(var(--hdr-h) + 16px); padding: 18px; border-radius: 24px; background: #fff; border: 1px solid var(--line); }
.pside-me { display: flex; align-items: center; gap: 12px; padding: 6px 6px 16px; border-bottom: 1px solid var(--line); margin-bottom: 10px; }
.pside-avatar { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 14px; background: var(--grad-orange); color: #fff; font-weight: 700; font-size: 1.2rem; }
.pside-me b { display: block; color: var(--navy); line-height: 1.3; }
.pside-me span { font-size: 12px; color: var(--muted); }
.pnav { display: grid; gap: 2px; }
.pnav-link { display: flex; align-items: center; gap: 12px; width: 100%; padding: 11px 12px; border-radius: 12px; border: 0; background: none; font: inherit; font-size: 15px; font-weight: 500; color: var(--ink); text-align: left; cursor: pointer; transition: background .25s, color .25s; }
.pnav-link .ic { color: var(--muted); }
.pnav-link:hover { background: var(--bg-soft); }
.pnav-link.is-on { background: var(--grad-blue); color: #fff; }
.pnav-link.is-on .ic { color: #fff; }
.pnav-out { color: #C62828; }
.pnav-out .ic { color: #C62828; }
.pmain { min-width: 0; }
.phead { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 16px; margin-bottom: 22px; }
.phead h1 { font-size: 1.7rem; }
.phead p { margin: 4px 0 0; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 22px; }
.stat { display: grid; gap: 4px; padding: 20px; border-radius: 20px; background: #fff; border: 1px solid var(--line); transition: transform .35s var(--ease), box-shadow .35s; }
a.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 13px; background: var(--bg-soft); color: var(--blue); margin-bottom: 6px; }
.stat-ic-o { background: #FFF4E8; color: var(--orange-deep); }
.stat-ic svg { width: 22px; height: 22px; }
.stat-label { font-size: 13px; color: var(--muted); }
.stat b { font-family: var(--font-head); font-size: 1.35rem; color: var(--navy); }
.stat small { color: #1B7F45; font-size: 12px; }
.status { display: inline-block; padding: 4px 12px; border-radius: 999px; font-size: 13px; font-weight: 600; background: var(--bg-soft); color: var(--muted); }
b.status { font-size: 14px; }
.status-1 { background: #FFF4E0; color: #B26A00; }
.status-2 { background: #E8F7EE; color: #1B7F45; }
.status-3, .status-4 { background: #FDECEC; color: #B3261E; }
.status-pay-1 { background: #E8F7EE; color: #1B7F45; }
.status-pay-2, .status-pay-3 { background: #FDECEC; color: #B3261E; }
.status-msg-0 { background: #FFF4E0; color: #B26A00; }
.status-msg-2 { background: #E8F7EE; color: #1B7F45; }
.status-btn { border: 0; cursor: pointer; font: inherit; font-size: 13px; }
.checklist { display: grid; gap: 10px; counter-reset: c; }
.checklist li { display: flex; align-items: center; gap: 12px; padding: 12px 14px; border-radius: 14px; background: var(--bg-soft); color: var(--muted); }
.checklist li .ic { flex: none; color: var(--muted); }
.checklist li a { margin-left: auto; font-size: 13px; font-weight: 600; color: var(--blue); }
.checklist li.is-done { background: #E8F7EE; color: #1B6B3E; }
.checklist li.is-done .ic { color: #1B7F45; }
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th { text-align: left; padding: 10px 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); border-bottom: 1px solid var(--line); white-space: nowrap; }
.table td { padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.table tr.is-new td { background: #FFFBF3; }
.table a { color: var(--blue); font-weight: 500; }
.table small { color: var(--muted); }

/* ---------- back office ---------- */
.is-admin { background: var(--bg-soft); }
.admin { display: grid; grid-template-columns: 250px 1fr; min-height: 100vh; }
.aside { position: sticky; top: 0; height: 100vh; overflow: auto; padding: 22px 16px; background: var(--ink); color: rgba(255,255,255,.8); }
.aside-brand { display: flex; flex-direction: column; gap: 6px; padding: 12px; margin-bottom: 18px; border-radius: 16px; background: #fff; }
.aside-brand img { height: 42px; width: auto; }
.aside-brand span { font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--orange-deep); }
.anav { display: grid; gap: 2px; }
.anav-link { display: flex; align-items: center; gap: 12px; width: 100%; padding: 11px 12px; border-radius: 12px; border: 0; background: none; font: inherit; font-size: 14px; color: rgba(255,255,255,.78); cursor: pointer; text-align: left; transition: background .25s, color .25s; }
.anav-link:hover { background: rgba(255,255,255,.08); color: #fff; }
.anav-link.is-on { background: var(--blue); color: #fff; }
.amain { padding: 26px 32px 60px; min-width: 0; }
.atop { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 22px; }
.atop h1 { font-size: 1.6rem; }
.atop-me { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; }
.atools { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; margin-bottom: 18px; }
.tabs { display: flex; flex-wrap: wrap; gap: 6px; }
.tabs a { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: 14px; font-weight: 500; }
.tabs a.is-on { background: var(--blue); color: #fff; border-color: var(--blue); }
.asearch { display: flex; gap: 8px; }
.asearch input { width: 260px; padding: 9px 14px; }
.admin-cols { display: grid; grid-template-columns: 1.3fr 1fr; gap: 22px; align-items: start; }
.admin-cols > div { display: grid; gap: 22px; }
.dl { display: grid; grid-template-columns: 130px 1fr; gap: 8px 14px; margin: 0 0 12px; font-size: 14px; }
.dl dt { color: var(--muted); }
.dl dd { margin: 0; font-weight: 500; word-break: break-word; }
.msg { padding: 16px 0; border-bottom: 1px solid var(--line); }
.msg header { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; font-size: 14px; }
.msg header a { color: var(--blue); }
.msg header time { margin-left: auto; }
.msg p { margin: 10px 0; }
.pager { display: flex; justify-content: center; align-items: center; gap: 18px; margin-top: 18px; font-size: 14px; }
.pager a { color: var(--blue); font-weight: 600; }
.alogin { min-height: 100vh; display: grid; place-items: center; padding: 20px; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.alogin-box { width: min(100%, 420px); padding: 40px; border-radius: 28px; background: #fff; box-shadow: var(--shadow-lg); text-align: center; }
.alogin-box img { margin: 0 auto 14px; height: 60px; width: auto; }
.alogin-box h1 { font-size: 1.3rem; margin-bottom: 20px; }
.alogin-box .form { text-align: left; }

/* ---------- footer additions ---------- */
.ftr-langs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.ftr-langs a { padding: 6px 12px; border-radius: 999px; background: rgba(255,255,255,.08); font-size: 13px; transition: background .25s; }
.ftr-langs a:hover, .ftr-langs a.is-current { background: var(--orange); color: #fff; }
.ftr-contact span { line-height: 1.5; }
.ftr-social { margin-top: 18px; }
.ftr-legal { display: flex; flex-wrap: wrap; gap: 8px 22px; padding-top: 22px; padding-bottom: 22px; border-top: 1px solid rgba(255,255,255,.1); font-size: 14px; }
.ftr-legal a { color: rgba(255,255,255,.65); transition: color .25s; }
.ftr-legal a:hover { color: #fff; }
.ftr-dev { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.6); }
.webixa { position: relative; font-weight: 800; letter-spacing: .08em; color: #fff; transition: color .25s; }
.webixa:hover { color: var(--orange-soft); }
/* The trademark sits over the final A, in small type. */
.webixa-a { display: inline; }
.webixa-a sup { position: relative; top: -.15em; margin-left: 1px; font-size: .55em; font-weight: 700; letter-spacing: 0; line-height: 0; vertical-align: super; }

/* ---------- print: the smart card alone ---------- */
@media print {
    .hdr, .ftr, .pside, .phead .btn, .to-top, .float-layer, .progress, .note { display: none !important; }
    .panel { padding: 0; background: #fff; }
    .panel-grid { display: block; }
    .scard { box-shadow: none; }
}

/* ---------- responsive ---------- */
@media (max-width: 1280px) {
    .hide-md { display: none !important; }
}

@media (max-width: 1180px) {
    .burger { display: grid; }
    .nav {
        position: fixed; inset: var(--hdr-h) 0 auto 0; margin: 0;
        flex-direction: column; align-items: stretch; gap: 4px;
        padding: 16px 20px 24px; background: rgba(255,255,255,.98);
        backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 24px 40px -24px rgba(15,27,61,.4);
        clip-path: inset(0 0 100% 0); visibility: hidden;
        transition: clip-path .45s var(--ease), visibility .45s;
        max-height: calc(100vh - var(--hdr-h)); overflow: auto;
    }
    .nav.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
    .nav-link { padding: 14px 16px; font-size: 16px; border-radius: 12px; }
    .nav-link:hover, .nav-link.is-active { background: var(--bg-soft); }
    .nav-link::after { display: none; }
    .nav-mobile-extra { display: grid; gap: 10px; padding-top: 14px; margin-top: 8px; border-top: 1px solid var(--line); }
    .hdr-tools { margin-left: auto; }
    .svc-grid, .bcard-grid, .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .ftr-grid { grid-template-columns: 1fr 1fr; }
    .flow { grid-template-columns: repeat(4, 1fr); row-gap: 30px; }
    .flow::before { display: none; }
    .stat-grid, .contact-cards { grid-template-columns: repeat(2, 1fr); }
    .value-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
    :root { --hdr-h: 72px; }
    .brand img { height: 42px; }
    .hero { min-height: auto; padding-top: calc(var(--hdr-h) + 36px); }
    .hero-grid { grid-template-columns: 1fr; gap: 20px; }
    .hero-copy { text-align: center; }
    .lead { margin-inline: auto; }
    .hero-actions, .chips, .hero-facts { justify-content: center; }
    .stage { --size: min(420px, 82vw); }
    .scroll-hint { display: none; }
    .search { grid-template-columns: 1fr 1fr; }
    .search-what, .search-go { grid-column: span 2; }
    .search-field + .search-field::before { display: none; }

    .section { padding: 80px 0; }
    .steps { grid-template-columns: 1fr 1fr; row-gap: 48px; }
    .steps-rail { display: none; }
    .cta { flex-direction: column; text-align: center; padding: 48px 28px; }
    .who-grid, .offer-grid, .svc-grid-3, .value-grid-3 { grid-template-columns: 1fr 1fr; }
    .qa-grid, .ad-split, .split, .pkg, .auth-grid, .admin-cols { grid-template-columns: 1fr; }
    .qa-grid, .ad-split, .split { gap: 36px; }
    .qa-copy { position: static; }
    .cta-actions { width: 100%; min-width: 0; }
    .about-visual { min-height: 380px; }
    .cat-blocks { grid-template-columns: 1fr; }
    .list-layout { grid-template-columns: 1fr; }
    .filters { position: static; order: 2; }
    .bhero-card { grid-template-columns: auto 1fr; }
    .bhero-actions { grid-column: 1 / -1; justify-content: flex-start; max-width: none; }
    .bpage { grid-template-columns: 1fr; }
    .box-sticky { position: static; }
    .panel-grid { grid-template-columns: 1fr; }
    .pside { position: static; }
    .pnav { grid-template-columns: repeat(2, 1fr); }
    .admin { grid-template-columns: 1fr; }
    .aside { position: static; height: auto; }
    .anav { grid-template-columns: repeat(2, 1fr); }
    .search-float { margin-top: -70px; }
}

@media (max-width: 600px) {
    .wrap { padding-inline: 16px; }
    .drop-label { display: none; }
    .drop-btn { padding: 11px; }
    .btn { width: 100%; }
    .btn-row .btn, .pay-actions .btn, .phead .btn, .chip-btn { width: auto; }
    .btn-icon { width: 50px; }
    .hero-actions { flex-direction: column; }
    .hero-facts { gap: 14px; }
    .hero-facts li + li { padding-left: 14px; }
    .hero-facts b { font-size: 1.5rem; }
    .search { grid-template-columns: 1fr; border-radius: 18px; }
    .search-what, .search-go { grid-column: auto; }
    .svc-grid, .bcard-grid, .bcard-grid-2, .cat-grid, .who-grid, .offer-grid, .svc-grid-3, .value-grid, .value-grid-3,
    .ad-types, .stat-grid, .contact-cards, .boffers, .bitems, .form-row, .pkg-features ul, .pkg-list-full { grid-template-columns: 1fr; }
    .flow { grid-template-columns: 1fr 1fr; }
    .steps { grid-template-columns: 1fr; }
    .step { display: grid; grid-template-columns: 76px 1fr; gap: 0 18px; text-align: left; align-items: start; }
    .step-node { width: 70px; height: 70px; margin: 0; grid-row: span 2; box-shadow: 0 0 0 6px var(--bg-soft), var(--shadow); }
    .step-node svg { width: 30px; height: 30px; }
    .step-node b { width: 26px; height: 26px; font-size: 12px; }
    .step h3 { margin-top: 6px; }
    .orb { width: 50px; height: 50px; border-radius: 16px; }
    .orb svg { width: 24px; height: 24px; }
    .orb-mini { width: 32px; height: 32px; }
    .orb-mini svg { width: 15px; height: 15px; }
    .fcard { font-size: 12px; padding: 8px 12px 8px 8px; }
    .fcard-a { left: 0; top: 4%; }
    .fcard-b { right: 0; bottom: 2%; }
    .fi { --s: 34px !important; }
    .ftr-grid { grid-template-columns: 1fr; gap: 36px; }
    .ftr-bottom { flex-direction: column; text-align: center; align-items: center; }
    .sec-head { margin-bottom: 40px; }
    .sec-head-row { flex-direction: column; align-items: flex-start; }
    .pkg-price, .pkg-features, .auth-side, .auth-box { padding: 32px 22px; }
    .bhero-card { grid-template-columns: 1fr; text-align: left; margin-top: 40px; padding: 22px; }
    .bhero-logo { width: 84px; height: 84px; }
    .bgallery { grid-template-columns: 1fr 1fr; }
    .about-card { width: 190px; padding: 14px; }
    .about-mark { width: 140px; }
    .mission { padding: 36px 24px; }
    .pkg-mini { grid-template-columns: 1fr; }
    .scard-body { grid-template-columns: 80px 1fr; }
    .scard-photo { width: 80px; height: 96px; }
    .amain { padding: 20px 16px 50px; }
    .asearch, .asearch input { width: 100%; }
    .dl { grid-template-columns: 1fr; }
    .dl dt { margin-top: 6px; }
    /* Tables become stacked cards on a phone. */
    .table thead { display: none; }
    .table tr { display: block; padding: 10px 0; border-bottom: 1px solid var(--line); }
    .table td { display: grid; grid-template-columns: 110px 1fr; gap: 10px; padding: 6px 4px; border: 0; }
    .table td::before { content: attr(data-label); color: var(--muted); font-size: 12px; }
}

/* Visitors who ask their device for less motion get a still page. */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important; animation-iteration-count: 1 !important;
        transition-duration: .001ms !important; scroll-behavior: auto !important;
    }
    .rise, .reveal { opacity: 1 !important; transform: none !important; }
    .swoosh path { stroke-dashoffset: 0; }
}
