/* ============================================================================
   JNVKAA design system — MOBILE-FIRST.
   Base rules target phones; min-width breakpoints scale up (640 / 900 / 1200).
   Brand: teal #129298 / cream #FFF0E6 / deep teal #001D23. Fonts: Saira + Inter.
   ========================================================================== */
:root {
  --teal: #129298;
  --teal-600: #0f7f84;
  --teal-700: #0b6569;
  --teal-300: #4dc0c5;
  --teal-glow: rgba(18, 146, 152, .45);
  --cream: #fff0e6;
  --sand: #ffe6d3;
  --ink: #001d23;
  --ink-2: #06313a;
  --paper: #f8f8f9;
  --white: #fff;
  --muted: #5b6b6e;
  --line: rgba(0, 29, 35, .10);
  --shadow-sm: 0 2px 10px rgba(0, 29, 35, .06);
  --shadow: 0 18px 50px -20px rgba(0, 29, 35, .28);
  --shadow-lg: 0 40px 90px -30px rgba(11, 101, 105, .45);
  --radius: 16px;
  --radius-sm: 12px;
  --container: 1200px;
  --nav-h: 64px;
  --font-head: "Saira", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  /* fluid type scale (mobile-first, clamps up) */
  --fs-h1: clamp(2rem, 8.5vw, 4.4rem);
  --fs-h2: clamp(1.6rem, 6vw, 2.9rem);
  --fs-h3: clamp(1.15rem, 4.4vw, 1.5rem);
  --fs-lead: clamp(1rem, 3.6vw, 1.25rem);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--teal-700); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--teal); }
::selection { background: var(--teal); color: #fff; }

h1, h2, h3, h4, .h { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -.01em; color: var(--ink); overflow-wrap: anywhere; }
h1 { font-size: var(--fs-h1); margin: 0 0 .5rem; }
h2 { font-size: var(--fs-h2); margin: 0 0 .5rem; }
h3 { font-size: var(--fs-h3); }
p { margin: 0 0 1rem; }
.lead { font-size: var(--fs-lead); color: var(--muted); }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }
section { position: relative; }
.section { padding: 3.25rem 0; }
.section-tight { padding: 2rem 0; }
.center { text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; font-size: .68rem; color: var(--teal-700);
  background: var(--cream); padding: .4rem .8rem; border-radius: 100px; margin-bottom: .9rem;
}
.text-teal { color: var(--teal); }
.text-muted { color: var(--muted); }
.mt-2 { margin-top: 1.4rem; } .mb-0 { margin-bottom: 0; }

/* buttons — min 44px touch target ----------------------------------------- */
.btn {
  --bg: var(--teal); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem; line-height: 1;
  min-height: 48px; padding: .85rem 1.4rem; border-radius: 100px; border: 1px solid transparent;
  background: var(--bg); color: var(--fg); cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s, background .25s;
  box-shadow: 0 10px 24px -10px var(--teal-glow); -webkit-tap-highlight-color: transparent;
}
.btn:hover { color: #fff; }
.btn:active { transform: scale(.97); }
.btn-ghost { --bg: transparent; --fg: var(--ink); border-color: var(--line); box-shadow: none; }
.btn-ghost:hover { --fg: var(--teal-700); border-color: var(--teal-300); background: var(--cream); }
.btn-light { --bg: #fff; --fg: var(--teal-700); }
.btn-cream { --bg: var(--cream); --fg: var(--teal-700); box-shadow: none; }
.btn-lg { min-height: 54px; padding: 1rem 1.7rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn-sm { min-height: 40px; padding: .5rem 1rem; font-size: .9rem; }
@media (hover: hover) { .btn:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px var(--teal-glow); } }

/* nav — mobile first (hamburger by default) -------------------------------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: 16px; transition: background .35s ease, box-shadow .35s ease;
}
.nav.scrolled { background: rgba(255,255,255,.95); backdrop-filter: blur(12px); box-shadow: var(--shadow-sm); }
/* Brand: no pill. Over the hero the bar is transparent, so the logo is knocked out
   to white with a white wordmark; when the bar turns white on scroll the logo shows
   its true dark colours and the wordmark goes teal. */
.nav-brand { display: inline-flex; align-items: center; gap: .5rem; line-height: 1; }
.nav-brand .seal { width: 38px; height: 38px; display: grid; place-items: center; flex: none; }
.nav-brand .seal img { width: 38px; height: 38px; object-fit: contain; display: block; filter: brightness(0) invert(1); }
.nav.scrolled .nav-brand .seal img { filter: none; }
.nav-brand .wm { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; color: #fff; letter-spacing: .03em; text-shadow: 0 1px 12px rgba(0,0,0,.35); transition: color .35s ease; }
.nav.scrolled .nav-brand .wm { color: var(--teal-700); text-shadow: none; }
.nav-links {
  display: none; position: absolute; top: 100%; left: 12px; right: 12px; margin-top: 8px;
  flex-direction: column; align-items: stretch; gap: 2px;
  background: #fff; padding: 12px; border-radius: var(--radius); box-shadow: var(--shadow);
}
.nav-links.open { display: flex; }
.nav-links a { font-family: var(--font-head); font-weight: 500; color: var(--ink); padding: .8rem 1rem; border-radius: 10px; font-size: 1rem; }
.nav-links a:hover, .nav-links a.active { color: var(--teal-700); background: var(--cream); }
.nav-cta { display: flex; align-items: center; gap: .4rem; }
.nav-cta .btn { min-height: 40px; padding: .5rem 1rem; font-size: .92rem; }
.nav .nav-cta .btn-ghost { --fg: #fff; border-color: rgba(255,255,255,.4); box-shadow: none; }
.nav .nav-cta .btn-ghost:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }
.nav.scrolled .nav-cta .btn-ghost { --fg: var(--ink); border-color: var(--line); }
.nav-toggle { display: inline-grid; place-items: center; width: 44px; height: 44px; background: none; border: 0; font-size: 1.35rem; color: #fff; cursor: pointer; }
.nav.scrolled .nav-toggle { color: var(--ink); }
/* auth links live inside the mobile dropdown; the in-bar ghost link is hidden on mobile */
.nav-auth-m { display: flex; flex-direction: column; gap: .4rem; margin-top: .5rem; padding-top: .6rem; border-top: 1px solid var(--line); }
.nav-hide-m { display: none; }

@media (min-width: 941px) {
  .nav { padding-inline: clamp(1rem, 4vw, 2.4rem); }
  .nav-brand .wm { font-size: 1.2rem; } .nav-brand .seal { width: 42px; height: 42px; } .nav-brand .seal img { width: 42px; height: 42px; }
  .nav-links { display: flex; position: static; flex-direction: row; align-items: center; margin: 0; padding: 0; background: none; box-shadow: none; gap: .2rem; }
  .nav-links a { padding: .5rem .85rem; border-radius: 100px; font-size: .95rem; color: rgba(255,255,255,.9); text-shadow: 0 1px 12px rgba(0,0,0,.3); }
  .nav-links a:hover, .nav-links a.active { color: #fff; background: rgba(255,255,255,.16); }
  .nav.scrolled .nav-links a { color: var(--ink); text-shadow: none; }
  .nav.scrolled .nav-links a:hover, .nav.scrolled .nav-links a.active { color: var(--teal-700); background: var(--cream); }
  .nav-toggle { display: none; }
  .nav-auth-m { display: none; }
  .nav-hide-m { display: inline-flex; }
}

/* hero --------------------------------------------------------------------- */
.hero { position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden; color: #fff; background: radial-gradient(130% 120% at 50% 0%, var(--ink-2) 0%, var(--ink) 62%); }
#hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero-veil { position: absolute; inset: 0; background: radial-gradient(70% 60% at 50% 42%, transparent 0%, rgba(0,20,25,.6) 100%); pointer-events: none; }
.hero-inner { position: relative; z-index: 3; text-align: center; padding: calc(var(--nav-h) + 2rem) 20px 3.5rem; width: 100%; max-width: 980px; }
.hero h1 { color: #fff; text-shadow: 0 6px 40px rgba(0,0,0,.35); }
.hero h1 .grad { background: linear-gradient(120deg, #7fe9ee, #fff 60%); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* Logo badge (replaces the eyebrow pill) — glowing backdrop keeps the PNG crisp. */
.hero-logo { position: relative; width: 104px; height: 104px; margin: 0 auto 1.4rem; display: grid; place-items: center; border-radius: 28px; }
.hero-logo::before { content: ""; position: absolute; inset: -10px; border-radius: 36px; background: radial-gradient(circle, rgba(120,240,245,.28), rgba(18,146,152,.12) 55%, transparent 72%); filter: blur(4px); }
.hero-logo::after { content: ""; position: absolute; inset: 0; border-radius: 28px; background: #fff; border: 1px solid rgba(255,255,255,.7); box-shadow: 0 22px 55px -18px rgba(0,0,0,.6), 0 0 0 8px rgba(255,255,255,.06); }
.hero-logo img { position: relative; z-index: 1; width: 74px; height: 74px; object-fit: contain; }

/* Two-line hero title with a 3D entrance + animated teal shimmer on line 2.
   Each phrase stays on its own single line — font scales with the viewport so the
   longest line always fits without wrapping. */
.hero-title { perspective: 900px; margin: 0 0 1rem; line-height: 1.06; font-size: clamp(1.15rem, 5.9vw, 3.9rem); white-space: nowrap; }
.hero-title .t1, .hero-title .t2 { display: block; font-size: 1em; font-weight: 700; white-space: nowrap; transform-style: preserve-3d; will-change: transform, opacity; }
.hero-title .t1 { color: #fff; }
.hero-title .t2 {
  background: linear-gradient(100deg, #0f7f84 0%, #4dc0c5 25%, #9af4f8 45%, #ffffff 55%, #4dc0c5 75%, #0f7f84 100%);
  background-size: 250% auto; -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  filter: drop-shadow(0 6px 26px rgba(77,192,197,.5));
  animation: heroShimmer 7s linear infinite;
}
@keyframes heroShimmer { to { background-position: 250% center; } }
@media (prefers-reduced-motion: reduce) { .hero-title .t2 { animation: none; } }
.hero .lead { color: rgba(255,255,255,.85); max-width: 620px; margin-inline: auto; }
.hero-cta { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }
.hero-cta .btn { flex: 1 1 auto; min-width: 0; }
@media (min-width: 560px) { .hero-cta .btn { flex: 0 0 auto; } }
.scroll-hint { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255,255,255,.7); font-size: .72rem; font-family: var(--font-head); letter-spacing: .2em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem; }
.scroll-hint span { width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.4); border-radius: 20px; position: relative; }
.scroll-hint span::after { content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; background: #fff; border-radius: 3px; transform: translateX(-50%); animation: wheel 1.6s infinite; }
@keyframes wheel { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 100% { opacity: 0; transform: translate(-50%, 12px); } }

/* marquee ------------------------------------------------------------------ */
.marquee { background: var(--ink); color: rgba(255,255,255,.85); overflow: hidden; padding: .8rem 0; border-block: 1px solid rgba(255,255,255,.08); }
.marquee-track { display: flex; gap: 2rem; white-space: nowrap; width: max-content; animation: marquee 18s linear infinite; font-family: var(--font-head); font-weight: 600; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 1rem; opacity: .85; }
.marquee-track span::after { content: "✦"; color: var(--teal-300); }
@keyframes marquee { to { transform: translateX(-20%); } }

/* grids — single column on mobile ------------------------------------------ */
.grid { display: grid; gap: 1rem; }
.grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
@media (min-width: 620px) { .grid { gap: 1.2rem; } .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid { gap: 1.4rem; } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.3rem; box-shadow: var(--shadow-sm); transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s; position: relative; overflow: hidden; display: block; }
@media (hover: hover) { .card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-300); } }
.card .icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 14px; background: var(--cream); color: var(--teal-700); font-size: 1.4rem; margin-bottom: .9rem; }
.card h3 { margin: 0 0 .35rem; }
.card p { color: var(--muted); margin: 0; font-size: .95rem; }
.card-media { padding: 0; }
.card-media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.card-media .body { padding: 1.1rem 1.2rem 1.3rem; }
.card-num { position: absolute; top: .8rem; right: 1rem; font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--cream); line-height: 1; }

/* split feature ------------------------------------------------------------ */
.split { display: grid; grid-template-columns: 1fr; gap: 1.8rem; align-items: center; }
@media (min-width: 860px) { .split { grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); } .split.rev { direction: rtl; } .split.rev > * { direction: ltr; } }
.media-frame { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-lg); }
.media-frame img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* stats -------------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); gap: 1.2rem; } }
.stat { text-align: center; padding: 1.2rem .8rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); }
.stat .n { font-family: var(--font-head); font-weight: 800; font-size: clamp(1.9rem, 7vw, 3.1rem); color: var(--teal); line-height: 1; }
.stat .l { font-size: .82rem; color: var(--muted); margin-top: .3rem; }

/* progress ----------------------------------------------------------------- */
.bar { height: 10px; border-radius: 100px; background: var(--cream); overflow: hidden; }
.bar > i { display: block; height: 100%; border-radius: 100px; background: linear-gradient(90deg, var(--teal), var(--teal-300)); width: 0; transition: width 1.4s cubic-bezier(.2,.8,.2,1); }

/* dark section ------------------------------------------------------------- */
.dark { background: radial-gradient(130% 120% at 50% 0%, var(--ink-2), var(--ink)); color: #fff; }
.dark h2, .dark h3 { color: #fff; }
.dark .lead, .dark p { color: rgba(255,255,255,.78); }
.dark .card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); }
.dark .card h3 { color: #fff; } .dark .card p { color: rgba(255,255,255,.72); }

/* footer ------------------------------------------------------------------- */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 3rem 0 1.5rem; }
.footer h4 { color: #fff; font-size: 1rem; margin: 0 0 .8rem; }
.footer a { color: rgba(255,255,255,.72); display: block; padding: .35rem 0; }
.footer a:hover { color: var(--teal-300); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 1.8rem; }
@media (min-width: 560px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2rem; } }
.footer-brand { display: flex; align-items: center; gap: .6rem; font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: #fff; margin-bottom: .8rem; }
.footer-brand b { color: var(--teal-300); }
.socials { display: flex; gap: .6rem; margin-top: 1rem; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #fff; padding: 0; }
.socials a:hover { background: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 2rem; padding-top: 1.2rem; display: flex; justify-content: space-between; gap: .6rem; flex-wrap: wrap; font-size: .82rem; }

/* interior page banner ----------------------------------------------------- */
.pagehead { position: relative; padding: calc(var(--nav-h) + 2.5rem) 0 2.5rem; color: #fff; background: radial-gradient(130% 150% at 20% 0%, var(--ink-2), var(--ink)); overflow: hidden; }
.pagehead::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(var(--teal-glow) 1px, transparent 1px); background-size: 24px 24px; opacity: .18; -webkit-mask-image: linear-gradient(180deg, #000, transparent); mask-image: linear-gradient(180deg, #000, transparent); }
.pagehead h1 { color: #fff; position: relative; }
.pagehead .crumb { position: relative; color: rgba(255,255,255,.7); font-family: var(--font-head); font-size: .9rem; }
.pagehead .crumb a { color: var(--teal-300); }
/* Injected Three.js particle canvas behind interior banners / auth panels. */
.fx-canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 0; }
.pagehead::before { z-index: 1; }
.pagehead .container { position: relative; z-index: 2; }
.auth-wrap { position: relative; overflow: hidden; }
.auth-wrap .auth-card { position: relative; z-index: 2; }
@media (min-width: 700px) { .pagehead { padding-top: calc(var(--nav-h) + 4rem); padding-bottom: 3.2rem; } }

/* forms -------------------------------------------------------------------- */
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--font-head); font-weight: 500; font-size: .9rem; margin-bottom: .35rem; }
.input, .field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 16px; /* 16px prevents iOS zoom */ background: #fff; color: var(--ink); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px var(--teal-glow); }
.form-row { display: grid; grid-template-columns: 1fr; gap: 0 1rem; }
@media (min-width: 620px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.auth-wrap { min-height: 100svh; display: grid; place-items: center; padding: calc(var(--nav-h) + 1.5rem) 16px 2rem; background: radial-gradient(130% 100% at 50% 0%, var(--ink-2), var(--ink)); }
.auth-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 1.6rem; width: 100%; max-width: 460px; }
@media (min-width: 560px) { .auth-card { padding: 2.4rem; } }
.alert { padding: .85rem 1rem; border-radius: var(--radius-sm); font-size: .93rem; margin-bottom: 1rem; }
.alert-error { background: #fdecec; color: #b3261e; border: 1px solid #f7c9c5; }
.alert-ok { background: #e8f6ef; color: #10794f; border: 1px solid #b7e4cd; }

/* tables (portals) --------------------------------------------------------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; -webkit-overflow-scrolling: touch; }
table.data { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 560px; }
table.data th, table.data td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line); white-space: nowrap; }
table.data th { font-family: var(--font-head); font-weight: 600; color: var(--teal-700); background: var(--cream); position: sticky; top: 0; }
table.data tr:last-child td { border-bottom: 0; }

/* reveal animation --------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(28px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } .marquee-track, .scroll-hint span::after { animation: none !important; } }

/* misc --------------------------------------------------------------------- */
.pill { display: inline-block; padding: .3rem .7rem; border-radius: 100px; background: var(--cream); color: var(--teal-700); font-size: .74rem; font-family: var(--font-head); font-weight: 600; }
.tag-row { display: flex; gap: .5rem; flex-wrap: wrap; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }
.back-top { position: fixed; right: 14px; bottom: 14px; width: 46px; height: 46px; border-radius: 50%; background: var(--teal); color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .3s, transform .3s; z-index: 90; border: 0; cursor: pointer; }
.back-top.show { opacity: 1; pointer-events: auto; }
.whatsapp-float { position: fixed; left: 14px; bottom: 14px; width: 52px; height: 52px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: var(--shadow); z-index: 90; font-size: 1.5rem; transition: opacity .3s ease, transform .3s ease; }
.whatsapp-float.wa-hidden { opacity: 0; pointer-events: none; transform: translateY(14px) scale(.8); }
.empty { text-align: center; padding: 3rem 1rem; color: var(--muted); }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; }

/* batch distribution chart ------------------------------------------------- */
.batchchart { display: grid; gap: .65rem; }
.batchrow { display: grid; grid-template-columns: 58px 1fr 42px; gap: .8rem; align-items: center; }
.batchrow .yr { font-family: var(--font-head); font-weight: 700; color: var(--teal-700); font-size: .95rem; }
.batchrow .cnt { font-family: var(--font-head); font-weight: 700; color: var(--muted); font-size: .9rem; text-align: right; }
.dark .batchrow .yr { color: var(--teal-300); } .dark .batchrow .cnt { color: rgba(255,255,255,.7); }
.dark .bar { background: rgba(255,255,255,.1); }

/* timeline ----------------------------------------------------------------- */
.timeline { position: relative; display: grid; gap: 1.3rem; max-width: 760px; }
.timeline::before { content: ""; position: absolute; left: 15px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding-left: 46px; }
.tl-item::before { content: ""; position: absolute; left: 9px; top: 3px; width: 14px; height: 14px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px var(--cream); }
.tl-item .yr { font-family: var(--font-head); font-weight: 700; color: var(--teal-700); }
.tl-item h3 { margin: .1rem 0 .2rem; }
.tl-item p { color: var(--muted); margin: 0; }
.dark .timeline::before { background: rgba(255,255,255,.15); }
.dark .tl-item::before { box-shadow: 0 0 0 4px rgba(255,255,255,.08); }
.dark .tl-item .yr { color: var(--teal-300); }
.dark .tl-item p { color: rgba(255,255,255,.72); }

/* testimonials ------------------------------------------------------------- */
.quote { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); height: 100%; }
.quote .mark { color: var(--teal-300); font-size: 2.2rem; font-family: var(--font-head); line-height: .6; }
.quote .q { font-size: 1.02rem; color: var(--ink); margin: .4rem 0 0; }
.quote .who { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--cream); color: var(--teal-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; flex: none; }
.quote .who b { font-family: var(--font-head); } .quote .who span { color: var(--muted); font-size: .82rem; display: block; }

/* faq ---------------------------------------------------------------------- */
.faq { display: grid; gap: .6rem; max-width: 820px; margin-inline: auto; }
.faq details { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.faq summary { cursor: pointer; list-style: none; padding: 1rem 1.1rem; font-family: var(--font-head); font-weight: 600; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--teal); font-size: 1.5rem; line-height: 1; flex: none; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { padding: 0 1.1rem 1.1rem; color: var(--muted); margin: 0; }

/* gallery strip ------------------------------------------------------------ */
.gstrip { display: grid; grid-template-columns: repeat(2, 1fr); gap: .7rem; }
@media (min-width: 760px) { .gstrip { grid-template-columns: repeat(4, 1fr); } }
.gstrip a { position: relative; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; display: block; }
.gstrip img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gstrip a:hover img { transform: scale(1.08); }
.gstrip .cap { position: absolute; inset: auto 0 0 0; padding: .7rem; background: linear-gradient(transparent, rgba(0,20,25,.82)); color: #fff; font-family: var(--font-head); font-weight: 600; font-size: .82rem; }

/* logos / featured businesses row ------------------------------------------ */
.bizrow { display: grid; grid-template-columns: repeat(2, 1fr); gap: .8rem; }
@media (min-width: 700px) { .bizrow { grid-template-columns: repeat(3, 1fr); } }
.bizcard { display: flex; gap: .8rem; align-items: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1rem; transition: transform .25s, box-shadow .25s; }
.bizcard:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bizcard .logo { width: 46px; height: 46px; border-radius: 10px; background: var(--cream); color: var(--teal-700); display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; flex: none; }
.bizcard b { font-family: var(--font-head); display: block; } .bizcard span { color: var(--muted); font-size: .82rem; }
