/* ============================================================================
   Nirbhoy GPS — home page, built to the client's PDF mockup
   (Nirbhoy_GPS_High_Resolution_Mockup(7).pdf, 2026-08-23).

   Scope: referenced ONLY by Views/Home/IndexNirbhoy.cshtml, which is a standalone
   view (Layout = null) served only when ASPNETCORE_ENVIRONMENT=Nirbhoy. It shares
   nothing with site.css or _Layout.cshtml, so no other tenant can be affected.

   Palette note: the mockup's green is #12A150. White text on it reaches only
   3.37:1, below the 4.5:1 AA floor, so text and buttons use #0E8040 (5.02:1) and
   #12A150 is kept for fills, icons and gradients where contrast does not apply.
   ============================================================================ */
:root {
    --navy:        #101F35;   /* dark bands, headings, footer */
    --navy-soft:   #16294A;   /* gradient partner inside dark bands */
    --green:       #12A150;   /* mockup green — fills, icons, gradients */
    --green-dark:  #0E8040;   /* AA-safe green — text, links, buttons */
    --green-deep:  #0B6E37;   /* pressed / hover */
    --green-tint:  #E8F6EE;   /* pale green surfaces */
    --green-line:  #C7E7D5;   /* green hairlines */
    --ink:         #101F35;   /* headings */
    --body:        #4A5A6B;   /* body copy — 6.9:1 on white */
    --muted:       #6B7C8D;   /* meta text */
    --ground:      #FFFFFF;
    --mist:        #F6F9FB;   /* section tint */
    --line:        #E3E9EF;
    --amber:       #F5A524;   /* star ratings only */
    --radius:      14px;
    --radius-lg:   20px;
    --shadow:      0 1px 2px rgba(16,31,53,.05), 0 10px 30px -14px rgba(16,31,53,.18);
    --shadow-lg:   0 2px 6px rgba(16,31,53,.07), 0 28px 56px -22px rgba(16,31,53,.28);
    /* the mockup is set in Poppins (geometric, round dots) with Hind Siliguri for Bengali */
    --font:        "Poppins", "Hind Siliguri", "Segoe UI", system-ui, -apple-system, sans-serif;
    --font-bn:     "Hind Siliguri", "Poppins", system-ui, sans-serif;
    --mono:        ui-monospace, "Cascadia Code", Consolas, "SF Mono", monospace;
}

/* This page deliberately commits to one light visual world, matching the mockup's
   white ground and the brand guideline. Every colour is painted explicitly. */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; color-scheme: light; }
body { font-family: var(--font); color: var(--body); background: var(--ground);
       font-size: 16px; line-height: 1.65; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: var(--green-dark); text-decoration: none; }
h1, h2, h3, h4, h5 { color: var(--ink); line-height: 1.2; text-wrap: balance; font-weight: 800; }
:focus-visible { outline: 2.5px solid var(--green-dark); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.bn { font-family: var(--font-bn); }

/* ============ shared section furniture ============ */
.eyebrow { font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: .16em;
           text-transform: uppercase; color: var(--green-dark); text-align: center; }
.sec-head { text-align: center; margin: 0 auto 46px; max-width: 720px;
            display: flex; flex-direction: column; gap: 12px; }
.sec-head h2 { font-size: clamp(1.6rem, 3.2vw, 2.15rem); letter-spacing: -.02em; }
.sec-head p { color: var(--body); }
.sec { padding: 84px 0; }
.sec-mist { background: var(--mist); }
.more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: .85rem;
        color: var(--green-dark); }
.more::after { content: "→"; transition: transform .18s ease; }
.more:hover::after { transform: translateX(3px); }

/* ============ buttons ============ */
/* rounded rectangles, per the mockup — not pills */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px;
       padding: 14px 30px; border-radius: 14px; font-weight: 600; font-size: .95rem;
       border: 2px solid transparent; cursor: pointer; transition: background .18s, color .18s, box-shadow .18s; }
.btn-green { background: var(--green-dark); color: #fff; }
.btn-green:hover { background: var(--green-deep); color: #fff; box-shadow: 0 10px 24px -10px rgba(11,110,55,.55); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #1a3050; color: #fff; }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green-dark); color: var(--green-dark); }
.btn-white { background: #fff; color: var(--green-dark); }
.btn-white:hover { background: var(--green-tint); color: var(--green-deep); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-white:hover { background: rgba(255,255,255,.14); color: #fff; }

/* ============ NAV — white, sticky ============ */
.nav { position: sticky; top: 0; z-index: 60; background: #fff; border-bottom: 1px solid var(--line); }
.nav-in { display: flex; align-items: center; gap: 28px; height: 74px; }
.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand-mark { width: 38px; height: 38px; flex: none; }
.brand-txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name { font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.015em; }
.brand-name span { color: var(--green-dark); }
/* mockup sets the tagline in title case, not uppercase mono */
.brand-tag { font-size: .68rem; color: var(--muted); font-weight: 500; }
.nav-links { display: flex; align-items: center; gap: 26px; margin-left: auto; }
.nav-links > li { list-style: none; position: relative; }
.nav-links a { color: var(--ink); font-size: .93rem; font-weight: 600; padding: 6px 0; display: inline-block; }
.nav-links a:hover { color: var(--green-dark); }
.nav-links .caret::after { content: "▾"; font-size: .7em; margin-left: 5px; color: var(--muted); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex: none; }
.nav-cta .btn { padding: 10px 18px; font-size: .85rem; }

/* dropdowns — CSS only, keyboard reachable via :focus-within */
.drop { position: absolute; top: 100%; left: -14px; min-width: 224px; background: #fff;
        border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow-lg);
        padding: 8px; opacity: 0; visibility: hidden; transform: translateY(6px);
        transition: opacity .16s, transform .16s, visibility .16s; }
.nav-links > li:hover .drop, .nav-links > li:focus-within .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop li { list-style: none; }
.drop a { display: block; padding: 9px 12px; border-radius: 8px; font-weight: 600; font-size: .88rem; }
.drop a:hover { background: var(--green-tint); color: var(--green-deep); }

/* mobile nav */
.nav-toggle { display: none; margin-left: auto; width: 42px; height: 42px; border: 1px solid var(--line);
              border-radius: 10px; background: #fff; color: var(--ink); font-size: 1.15rem; cursor: pointer; }

/* ============ HERO ============ */
.hero { padding: 62px 0 78px; background:
        radial-gradient(900px 420px at 88% -8%, rgba(18,161,80,.09), transparent 68%),
        linear-gradient(180deg, #FBFDFC 0%, #FFFFFF 60%); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1fr 1.04fr; gap: 46px; align-items: center; }
/* neutral badge, as in the mockup — not a green chip */
.pill { display: inline-flex; align-items: center; gap: 8px; background: #F4F7FA;
        color: var(--ink); border: 1px solid var(--line); border-radius: 999px;
        padding: 8px 16px; font-size: .78rem; font-weight: 600; }
/* The mockup sets "Track. Protect. Control." on one line, so the size is capped by the
   column width rather than the viewport and the phrase is kept from breaking mid-line. */
.hero h1 { font-size: clamp(1.85rem, 3.1vw, 2.62rem); letter-spacing: -.03em; margin: 18px 0 16px;
           text-wrap: nowrap; }
.hero h1 em { font-style: normal; color: var(--green); display: block; }
.hero-lede { font-size: 1rem; max-width: 32rem; color: var(--body); }
.hero-chips { display: flex; flex-wrap: wrap; gap: 40px; margin: 34px 0 36px; }
/* bare two-tone outline icons with labels beneath — no circles, per the mockup */
.chip { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
.chip svg { width: 30px; height: 30px; }
.chip svg .o { fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.chip svg .g { fill: none; stroke: var(--green); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.chip span { font-size: .78rem; font-weight: 500; color: var(--ink); line-height: 1.35; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero device composition. The mockup's photographic hero (monitor + phone with three
   cut-out vehicles in front) lives only inside a flattened 714px raster, so it is rebuilt
   here: real UI drawn in CSS, vehicles as SVG silhouettes. Photos are deliberately not
   used — a rectangular JPG cannot sit "in front" of the monitor without reading as a
   pasted box, which is exactly how the first attempt failed. */
/* the hero composition is now a single extracted image */
.hero-shot { width: 100%; height: auto; display: block; }
.stage { position: relative; padding: 0 0 74px; }
/* faint box/map graphic behind the composition, echoing the mockup's backdrop */
.stage::before { content: ""; position: absolute; inset: -8% -4% 18% 30%; z-index: 0;
    background:
      linear-gradient(45deg, transparent 46%, rgba(18,161,80,.10) 46%, rgba(18,161,80,.10) 54%, transparent 54%),
      linear-gradient(-45deg, transparent 46%, rgba(16,31,53,.06) 46%, rgba(16,31,53,.06) 54%, transparent 54%),
      radial-gradient(closest-side, rgba(18,161,80,.07), transparent);
    border-radius: 24px; pointer-events: none; }
.stage > * { position: relative; z-index: 1; }
.monitor { background: var(--navy); border-radius: 16px; padding: 11px; box-shadow: var(--shadow-lg);
           margin-right: 52px; }
.monitor-screen { position: relative; aspect-ratio: 16/10; border-radius: 9px; overflow: hidden; background: #EDF3F8; }
.map { position: absolute; inset: 0; background:
       linear-gradient(0deg, rgba(16,31,53,.05) 1px, transparent 1px) 0 0/100% 30px,
       linear-gradient(90deg, rgba(16,31,53,.05) 1px, transparent 1px) 0 0/30px 100%,
       #EDF3F8; }
.map-blk { position: absolute; background: #DFE8F1; border-radius: 3px; }
.map-park { position: absolute; background: #D8EBDF; border-radius: 6px; }
.map-road { position: absolute; background: #fff; }
.route { position: absolute; inset: 0; }
.route .ln { fill: none; stroke: var(--green); stroke-width: 3.4; stroke-linecap: round; }
.route .dot { fill: #fff; stroke: var(--green); stroke-width: 3; }
.pin { position: absolute; width: 26px; height: 26px; border-radius: 50% 50% 50% 0;
       background: #E5484D; transform: rotate(-45deg); display: grid; place-items: center;
       box-shadow: 0 8px 18px -6px rgba(229,72,77,.55); }
.pin::after { content: ""; width: 9px; height: 9px; border-radius: 50%; background: #fff; }
/* the big floating pin OUTSIDE the monitor, right side — a signature of the mockup */
.pin-float { position: absolute; right: -34px; top: 9%; width: 54px; height: 54px; z-index: 5;
             border-radius: 50% 50% 50% 0; background: #E5484D; transform: rotate(-45deg);
             display: grid; place-items: center; box-shadow: 0 18px 30px -10px rgba(229,72,77,.55); }
.pin-float::after { content: ""; width: 20px; height: 20px; border-radius: 50%; background: #fff; }
.pin-float::before { content: ""; position: absolute; left: 50%; top: 108%;
                     width: 34px; height: 10px; border-radius: 50%;
                     background: rgba(16,31,53,.16); transform: translateX(-50%) rotate(45deg); }
/* richer in-screen sidebar rows: icon square + two text lines, per mockup */
.veh-row .ic { width: 12px; height: 12px; border-radius: 4px; background: var(--green-tint); flex: none; }
.veh-row .tt { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.veh-row .tt b { display: block; height: 4px; border-radius: 2px; background: #C4D2DF; width: 70%; }
.veh-row .tt s { display: block; height: 3px; border-radius: 2px; background: #E1E9F0; width: 92%; }
.veh-row.act .tt b { background: #7FCBA0; }
.veh-row.act .tt s { background: #B9E4CC; }
.veh-row .st { width: 14px; height: 8px; border-radius: 4px; background: #DDE6EE; flex: none; }
.veh-row.act .st { background: var(--green); }
/* map header strip so the screen reads as an application, not an empty box */
.map-bar { position: absolute; top: 0; left: 0; right: 0; height: 30px; background: #fff;
           border-bottom: 1px solid #E6EDF4; display: flex; align-items: center; gap: 6px; padding: 0 10px; }
.map-bar b { font-size: .58rem; color: var(--ink); font-weight: 800; }
.map-bar .sp { flex: 1; }
.map-bar .tab { font-size: .5rem; color: var(--muted); background: #F1F5F9; border-radius: 4px; padding: 2px 6px; }
.map-side { position: absolute; top: 30px; left: 0; bottom: 0; width: 31%; background: #fff;
            border-right: 1px solid #E6EDF4; padding: 8px; display: flex; flex-direction: column; gap: 6px; }
.veh-row { display: flex; align-items: center; gap: 6px; background: #F7FAFC; border-radius: 5px; padding: 5px 6px; }
.veh-row i { width: 5px; height: 5px; border-radius: 50%; background: var(--green); flex: none; }
.veh-row .t { height: 4px; border-radius: 2px; background: #D8E2EC; flex: 1; }
.veh-row.act { background: var(--green-tint); }
.veh-row.act .t { background: #A7DCC0; }

/* mockup layout: "Live Tracking" label; "All Vehicles" in green; big 32 with "Online" under it */
.live-card { position: absolute; top: -16px; right: -16px; background: #fff; border-radius: 12px;
             box-shadow: var(--shadow-lg); padding: 11px 15px; display: flex; align-items: center; gap: 14px; z-index: 3; }
.live-card .lk { font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
                 font-weight: 700; display: block; }
.live-card .lv { font-size: .74rem; font-weight: 700; color: var(--green-dark); }
.live-card .nu { display: flex; flex-direction: column; align-items: center; line-height: 1; }
.live-card .num { font-size: 1.5rem; font-weight: 800; color: var(--green-dark); }
.live-card .onl { font-size: .56rem; color: var(--muted); margin-top: 2px; }
.live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); flex: none;
            box-shadow: 0 0 0 3px rgba(18,161,80,.18); }

.hero-phone { position: absolute; right: 0; top: 20%; width: 104px; aspect-ratio: 9/19;
              background: var(--navy); border-radius: 16px; padding: 6px; box-shadow: var(--shadow-lg); z-index: 2; }
.hero-phone .scr { height: 100%; border-radius: 11px; background: #fff; padding: 7px;
                   display: flex; flex-direction: column; gap: 5px; overflow: hidden; }
.hero-phone .hd { height: 6px; width: 60%; border-radius: 3px; background: var(--green); }
.hero-phone .rw { display: flex; align-items: center; gap: 4px; }
.hero-phone .rw span:first-child { width: 12px; height: 12px; border-radius: 4px; background: var(--green-tint); flex: none; }
.hero-phone .rw span:last-child { height: 4px; border-radius: 2px; background: #E3E9EF; flex: 1; }

/* vehicles in front, overlapping the monitor's lower edge — as in the mockup */
.fleet { position: absolute; left: 4%; right: 16%; bottom: 0; display: flex; align-items: flex-end;
         justify-content: center; gap: 4px; z-index: 4; }
.fleet svg { height: auto; filter: drop-shadow(0 14px 18px rgba(16,31,53,.26)); }
.fleet .v-truck { width: 44%; }
.fleet .v-car   { width: 33%; }
.fleet .v-bike  { width: 23%; }

/* ============ STATS BAND — inset rounded card with dividers, per mockup ============ */
.stats { background: transparent; padding: 0 0 8px; }
.stats-card { background: linear-gradient(120deg, var(--navy), var(--navy-soft));
              border-radius: 18px; padding: 26px 14px; box-shadow: var(--shadow-lg); }
.stats-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.stat { display: flex; align-items: center; gap: 13px; justify-content: center; padding: 4px 10px;
        border-right: 1px solid rgba(255,255,255,.13); }
.stat:last-child { border-right: 0; }
.stat i { width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center;
          background: rgba(255,255,255,.09); color: var(--green); font-size: .98rem; }
.stat b { display: block; color: #fff; font-size: 1.14rem; font-weight: 800; line-height: 1.15;
          font-variant-numeric: tabular-nums; }
.stat span { display: block; color: #B9C7D6; font-size: .74rem; line-height: 1.3; }

/* ============ PROBLEMS WE SOLVE ============ */
.prob-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.prob { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
        overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.prob:hover { box-shadow: var(--shadow-lg); }
/* art crops carry their own pale-green backdrop from the mockup raster */
.prob-art { background: #fff; padding: 12px 12px 0; }
.prob-art img { width: 100%; height: auto; display: block; border-radius: 8px; }
.prob-b { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.prob-b h3 { font-size: 1.06rem; }
.prob-b p { font-size: .9rem; flex: 1; }

/* ============ KEY FEATURES — 11 tiles, 6 + 5 with the short row centred ============ */
.feat-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.feat { flex: 0 0 calc((100% - 5 * 16px) / 6);
        background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 12px;
        text-align: center; display: flex; flex-direction: column; align-items: center; gap: 11px;
        transition: border-color .18s, transform .18s, box-shadow .18s; }
.feat:hover { border-color: var(--green-line); transform: translateY(-3px); box-shadow: var(--shadow); }
.feat i { width: 40px; height: 40px; border-radius: 11px; background: var(--green-tint); color: var(--green-dark);
          display: grid; place-items: center; font-size: 1rem; }
.feat span { font-size: .78rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
.feat-more { text-align: center; margin-top: 32px; }

/* ============ OUR PRODUCTS ============ */
.prod-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.prod { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
        display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.prod:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.prod-art { aspect-ratio: 4/3; background: var(--mist); overflow: hidden; }
.prod-art img { width: 100%; height: 100%; object-fit: cover; }
.prod-art.icon { display: grid; place-items: center; background: linear-gradient(150deg, var(--green-tint), #DCEBE2);
                 color: var(--green-dark); font-size: 1.9rem; }
.prod-b { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.prod-b h3 { font-size: .88rem; }
.prod-b p { font-size: .74rem; color: var(--muted); flex: 1; line-height: 1.45; }
.prod-b .more { font-size: .74rem; }

/* ============ PRICING ============ */
.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px 26px;
        display: flex; flex-direction: column; gap: 18px; position: relative; transition: transform .18s, box-shadow .18s; }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan.pop { border-color: var(--green); box-shadow: var(--shadow-lg); }
.plan .pop-tag { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green-dark);
                 color: #fff; font-size: .72rem; font-weight: 700; padding: 5px 16px; border-radius: 999px; }
.plan h3 { font-size: 1.1rem; }
.plan .price { display: flex; align-items: baseline; gap: 6px; }
.plan .price .amt { font-size: 2.1rem; font-weight: 800; color: var(--ink); }
.plan .price .per { font-size: .85rem; color: var(--muted); }
.plan .dev-note { font-size: .78rem; color: var(--muted); margin-top: -10px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 11px; flex: 1; }
.plan ul li { display: flex; align-items: flex-start; gap: 9px; font-size: .88rem; color: var(--body); }
.plan ul li .ck { width: 17px; height: 17px; flex: none; margin-top: 2px; fill: none; stroke: var(--green-dark);
                  stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.plan .btn { width: 100%; }
.plan .btn-ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.plan .btn-ghost:hover { border-color: var(--green-dark); color: var(--green-dark); }

/* ============ INDUSTRIES — 9 flat tiles ============ */
.ind-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 14px; }
.ind { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 8px;
       display: flex; flex-direction: column; align-items: center; gap: 9px; text-align: center; }
.ind:hover { border-color: var(--green-line); box-shadow: var(--shadow); }
.ind i { font-size: 1.35rem; color: var(--green-dark); }
.ind span { font-size: .72rem; font-weight: 700; color: var(--ink); }

/* ============ LIVE DASHBOARD (dark) ============ */
.dash { background: linear-gradient(120deg, var(--navy), var(--navy-soft)); padding: 74px 0; }
.dash-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 44px; align-items: center; }
.dash .eyebrow { text-align: left; color: #7FD8A8; }
.dash h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin: 12px 0 24px; }
.dash-list { display: flex; flex-direction: column; gap: 14px; }
.dash-list li { list-style: none; display: flex; align-items: center; gap: 11px; color: #E6EEF6; font-size: .95rem; }
.dash-list i { width: 24px; height: 24px; flex: none; border-radius: 50%; background: rgba(18,161,80,.22);
               color: #7FD8A8; display: grid; place-items: center; font-size: .68rem; }
/* Band artwork comes verbatim from the mockup raster. Its own navy surround blends into
   the band, so the band is a flat colour sampled from the crop rather than a gradient. */
.dash-shot-img { width: 100%; height: auto; display: block; border-radius: 10px; }
.phones-img { width: 100%; max-width: 640px; height: auto; display: block; margin: 0 auto; }
.dash-shots { display: grid; grid-template-columns: 1.6fr 1fr; gap: 16px; align-items: start; }
.shot { border-radius: 12px; overflow: hidden; border: 1px solid rgba(255,255,255,.16);
        box-shadow: 0 26px 50px -22px rgba(0,0,0,.6); background: #fff; }
.ui { background: #fff; }
.ui-bar { height: 26px; background: #F7FAFC; border-bottom: 1px solid #E6EDF4;
          display: flex; align-items: center; gap: 6px; padding: 0 9px; }
.ui-bar b { font-size: .55rem; color: var(--ink); }
.ui-bar .sp { flex: 1; }
.ui-bar .chip { font-size: .48rem; background: var(--green-tint); color: var(--green-deep);
                border-radius: 4px; padding: 2px 5px; font-weight: 700; }
.ui-body { display: flex; }
.ui-side { width: 30%; padding: 8px; display: flex; flex-direction: column; gap: 5px;
           border-right: 1px solid #E6EDF4; }
.ui-main { flex: 1; position: relative; aspect-ratio: 16/9; }
.ui-map { position: absolute; inset: 0; background:
          linear-gradient(0deg, rgba(16,31,53,.05) 1px, transparent 1px) 0 0/100% 22px,
          linear-gradient(90deg, rgba(16,31,53,.05) 1px, transparent 1px) 0 0/22px 100%, #EDF3F8; }
.ui-stat { display: flex; flex-direction: column; gap: 3px; background: #F7FAFC; border-radius: 5px; padding: 5px 6px; }
.ui-stat b { font-size: .6rem; color: var(--ink); }
.ui-stat span { height: 3px; border-radius: 2px; background: #D8E2EC; }
.ui-stat.g b { color: var(--green-dark); }
.ui-stat.g span { background: #A7DCC0; }
.ui-tall { aspect-ratio: 10/16; position: relative; }

/* ============ MOBILE APP ============ */
.app-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.app .eyebrow { text-align: left; }
.app h2 { font-size: clamp(1.6rem, 3.2vw, 2.1rem); margin: 12px 0 14px; }
.store-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.store { display: inline-flex; align-items: center; gap: 10px; background: var(--navy); color: #fff;
         border-radius: 11px; padding: 10px 18px; }
.store i { font-size: 1.45rem; }
.store .s1 { display: block; font-size: .56rem; letter-spacing: .1em; text-transform: uppercase; color: #B9C7D6; }
.store .s2 { display: block; font-size: .92rem; font-weight: 700; line-height: 1.15; }
.phones { display: flex; align-items: flex-end; justify-content: center; gap: 12px; }
.ph { width: 88px; aspect-ratio: 9/19; background: var(--navy); border-radius: 16px; padding: 6px;
      box-shadow: var(--shadow-lg); flex: none; }
.ph .scr { height: 100%; border-radius: 12px; background: #EDF3F8; overflow: hidden; position: relative; }
.ph.tall { width: 104px; }
.ph.brand .scr { background: linear-gradient(165deg, var(--green-dark), #0A5C2F); display: grid; place-items: center; }
.ph.brand svg { width: 42px; height: 42px; color: #fff; }
.ph .scr img { width: 100%; height: 100%; object-fit: cover; }
/* drawn app screens */
.app-scr { padding: 7px; display: flex; flex-direction: column; gap: 5px; }
.app-scr .hd { height: 6px; width: 58%; border-radius: 3px; background: var(--green); flex: none; }
.app-scr .rw { display: flex; align-items: center; gap: 4px; flex: none; }
.app-scr .rw span:first-child { width: 12px; height: 12px; border-radius: 4px; background: var(--green-tint); flex: none; }
.app-scr .rw span:last-child { height: 4px; border-radius: 2px; background: #E3E9EF; flex: 1; }
.app-scr .mini-map { flex: 1; border-radius: 6px; background:
    linear-gradient(0deg, rgba(16,31,53,.05) 1px, transparent 1px) 0 0/100% 12px,
    linear-gradient(90deg, rgba(16,31,53,.05) 1px, transparent 1px) 0 0/12px 100%, #EDF3F8; overflow: hidden; }
.app-scr .mini-map svg { width: 100%; height: 100%; }
.app-scr .mini-map .ln { fill: none; stroke: var(--green); stroke-width: 4; stroke-linecap: round; }
.app-scr .bars { flex: 1; display: flex; align-items: flex-end; gap: 4px; padding: 4px 2px 0; }
.app-scr .bars i { flex: 1; border-radius: 2px 2px 0 0; background: #A7DCC0; }
.app-scr .bars i:nth-child(4) { background: var(--green-dark); }

/* ============ TESTIMONIALS ============ */
.quote-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px 24px;
         display: flex; flex-direction: column; gap: 14px; box-shadow: var(--shadow); }
.quote-mark { font-family: Georgia, serif; font-size: 2.6rem; line-height: .6; color: var(--green-line); }
.quote p { font-size: .92rem; flex: 1; }
.quote-who { display: flex; align-items: center; gap: 11px; border-top: 1px solid var(--line); padding-top: 14px; }
.avatar { width: 36px; height: 36px; flex: none; border-radius: 50%; background: var(--green-tint);
          color: var(--green-deep); display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.quote-who .n { font-size: .86rem; font-weight: 700; color: var(--ink); }
.quote-who .r { font-size: .74rem; color: var(--muted); }
.dots { display: flex; justify-content: center; gap: 7px; margin-top: 28px; }
.dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--line); }
.dots span[aria-current="true"] { background: var(--green-dark); width: 22px; border-radius: 999px; }

/* ============ TRUSTED BY — wordmark strip ============ */
.logos { display: flex; align-items: center; justify-content: center; gap: 42px; flex-wrap: wrap; }
.logo-w { font-weight: 800; font-size: 1.02rem; letter-spacing: -.01em; color: #94A3B4;
          filter: grayscale(1); transition: color .18s, filter .18s; }
.logo-w:hover { color: var(--ink); filter: none; }

/* ============ BLOG ============ */
.blog-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 34px; }
.blog-head h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.post { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
        display: flex; flex-direction: column; transition: transform .18s, box-shadow .18s; }
.post:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.post-art { aspect-ratio: 16/10; background: linear-gradient(150deg, #E7F1EA, #D6E7DD); position: relative;
            display: grid; place-items: center; color: var(--green-dark); font-size: 1.5rem; }
.post-art img { width: 100%; height: 100%; object-fit: cover; }
.post-b { padding: 16px 16px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.post-b h3 { font-size: .93rem; line-height: 1.4; }
.post-date { font-size: .7rem; color: var(--muted); font-family: var(--mono); }
.post-b .more { font-size: .75rem; margin-top: auto; }

/* ============ FAQ — two columns ============ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.faq details[open] { border-color: var(--green-line); box-shadow: var(--shadow); }
.faq summary { list-style: none; cursor: pointer; padding: 16px 18px; display: flex; align-items: center;
               justify-content: space-between; gap: 14px; font-weight: 700; font-size: .92rem; color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.15rem; font-weight: 400; color: var(--green-dark); flex: none; }
.faq details[open] summary::after { content: "–"; }
.faq .ans { padding: 0 18px 18px; font-size: .89rem; }

/* ============ GREEN CTA BAND ============ */
.cta { background: linear-gradient(110deg, var(--green-dark), var(--green)); padding: 44px 0; }
.cta-in { display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap; }
.cta h2 { color: #fff; font-size: clamp(1.3rem, 2.6vw, 1.7rem); }
.cta p { color: rgba(255,255,255,.9); font-size: .93rem; margin-top: 5px; }
.cta-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============ FOOTER — navy, 5 columns ============ */
.foot { background: var(--navy); padding: 62px 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.15fr 1fr 1.35fr; gap: 34px; }
.foot h4 { color: #fff; font-size: .93rem; margin-bottom: 16px; }
.foot ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot a, .foot li { color: #A9B8C8; font-size: .87rem; }
.foot a:hover { color: #fff; }
.foot .brand-name { color: #fff; }
.foot .brand-name span { color: #7FD8A8; }
.foot .brand-tag { color: #7E8FA1; }
.foot-about { color: #A9B8C8; font-size: .85rem; margin: 16px 0 18px; }
.socials { display: flex; gap: 9px; }
.socials a { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,.08);
             display: grid; place-items: center; color: #C9D6E2; font-size: .85rem; }
.socials a:hover { background: var(--green-dark); color: #fff; }
.contact-list li { display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.contact-list i { color: #7FD8A8; margin-top: 4px; flex: none; font-size: .82rem; }
.foot-bar { margin-top: 52px; border-top: 1px solid rgba(255,255,255,.1); padding: 20px 0;
            text-align: center; color: #7E8FA1; font-size: .8rem; }

/* ============ WhatsApp float ============ */
.wa { position: fixed; right: 20px; bottom: 20px; z-index: 70; width: 54px; height: 54px; border-radius: 50%;
      background: #25D366; color: #fff; display: grid; place-items: center; font-size: 1.6rem;
      box-shadow: 0 12px 28px -10px rgba(37,211,102,.7); }
.wa:hover { color: #fff; transform: translateY(-2px); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
    .feat-grid { grid-template-columns: repeat(4, 1fr); }
    .prod-grid { grid-template-columns: repeat(3, 1fr); }
    .ind-grid  { grid-template-columns: repeat(5, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-row { grid-template-columns: repeat(3, 1fr); row-gap: 24px; }
}
@media (max-width: 900px) {
    .nav-links, .nav-cta { display: none; }
    .nav-toggle { display: block; }
    .nav-open .nav-links { display: flex; position: absolute; top: 74px; left: 0; right: 0; background: #fff;
        flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 18px;
        border-bottom: 1px solid var(--line); box-shadow: var(--shadow); max-height: 74vh; overflow-y: auto; }
    .nav-open .nav-links a { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-open .drop { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
        border: 0; padding: 0 0 0 14px; min-width: 0; }
    .nav-open .nav-cta { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #fff;
        padding: 0 24px 18px; }
    .hero-grid, .dash-grid, .app-grid { grid-template-columns: 1fr; }
    .stage { max-width: 540px; margin: 0 auto; }
    .prob-grid, .quote-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .faq-grid { grid-template-columns: 1fr; }
    .cta-in { flex-direction: column; text-align: center; }
    .foot-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 620px) {
    .sec { padding: 58px 0; }
    .feat-grid, .prod-grid { grid-template-columns: repeat(2, 1fr); }
    .ind-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid, .stats-row { grid-template-columns: 1fr; }
    .hero-chips { gap: 16px; }
    .chip { width: 72px; }
    .phones { gap: 8px; }
    .ph { width: 64px; } .ph.tall { width: 76px; }
    .dash-shots { grid-template-columns: 1fr; }
    .foot-grid { grid-template-columns: 1fr; }
    .hero-phone { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; scroll-behavior: auto; }
}
