/* =========================================================================
   NerVR — hybrid rehabilitation complex
   Design system derived from the NerVR / ITMLab pitch deck.
   Brand teal sampled from the logo: #3ABFBC
   ========================================================================= */

/* ---------- 1. Tokens ---------- */
:root {
  /* brand */
  --teal-050: #EDFAF9;
  --teal-100: #D6F4F2;
  --teal-200: #A9E8E5;
  --teal-300: #7BDCD8;
  --teal-400: #4FD3CE;
  --teal-500: #3ABFBC;   /* logo */
  --teal-600: #2AA3A1;
  --teal-700: #1D8281;
  --teal-800: #14625F;

  /* neutrals */
  --ink:      #0E1C2B;
  --ink-2:    #2D4256;
  --muted:    #6B8194;
  --line:     #E3EEF0;
  --line-2:   #F0F7F8;
  --surface:  #FFFFFF;
  --wash:     #F5FBFB;

  /* deep panel (market slide) */
  --navy:     #2A3B54;
  --navy-2:   #1E2C40;
  --navy-3:   #16212F;

  /* semantic */
  --warn:  #E08A16;
  --ok:    #27A567;
  --risk:  #E0393E;

  /* type */
  /* Both families verified to contain the full Kazakh set (Ә Ғ Қ Ң Ө Ұ Ү Һ І).
     Unbounded/Manrope were dropped: they declare cyrillic-ext but ship almost
     none of it, so Kazakh letters fell back and got faux-bolded by the browser.
     Fallbacks are fonts that also carry real Kazakh glyphs and true bold cuts. */
  --font-display: 'Montserrat', 'Segoe UI', 'Noto Sans', system-ui, sans-serif;
  --font-body: 'Inter', 'Segoe UI', 'Noto Sans', system-ui, -apple-system, sans-serif;

  /* metrics */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shell: 1200px;
  --gut: clamp(20px, 5vw, 48px);
  --sect: clamp(72px, 9vw, 128px);

  --shadow-sm: 0 2px 10px rgba(14, 28, 43, .05);
  --shadow-md: 0 12px 34px -12px rgba(14, 28, 43, .16);
  --shadow-lg: 0 30px 70px -30px rgba(20, 98, 95, .40);
  --glow: 0 0 46px rgba(58, 191, 188, .40);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(15.5px, .38vw + 14.6px, 17px);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
table { border-collapse: collapse; width: 100%; }
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 3px; border-radius: 6px; }

/* ---------- 3. Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: -.015em;
  font-weight: 700;
  text-wrap: balance;
}

.h-sect {
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 800;
  letter-spacing: -.022em;
}
.h-sub { font-size: clamp(21px, 2.2vw, 27px); font-weight: 700; }
.h-card { font-size: clamp(18px, 1.5vw, 21px); font-weight: 700; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--teal-600);
  display: block;
  margin-bottom: 14px;
}

.lede {
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--ink-2);
  max-width: 62ch;
  text-wrap: pretty;
}

/* teal highlight inside running text — a deck signature */
.hl { color: var(--teal-600); font-style: normal; font-weight: 700; }
.hl-ink { color: var(--ink); font-style: normal; font-weight: 800; }

/* glowing display title, as used on the deck's title slides.
   Ink fill + teal halo keeps the deck's glow while staying readable
   on the light backgrounds (the deck's white-on-white does not). */
.glow-title {
  color: var(--ink);
  text-shadow:
    0 0 18px rgba(58, 191, 188, .55),
    0 0 44px rgba(58, 191, 188, .32),
    0 0 90px rgba(58, 191, 188, .18);
}

.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ---------- 4. Layout ---------- */
.shell {
  width: min(100% - var(--gut) * 2, var(--shell));
  margin-inline: auto;
}
.section { padding-block: var(--sect); position: relative; }
.section--wash { background: var(--wash); }
.section--tint {
  background:
    radial-gradient(900px 460px at 8% -8%, rgba(58,191,188,.18), transparent 62%),
    radial-gradient(760px 420px at 96% 6%, rgba(79,211,206,.14), transparent 64%),
    var(--surface);
}
.sect-head { max-width: 74ch; margin-bottom: clamp(36px, 4.5vw, 60px); }
.sect-head--center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: clamp(16px, 1.8vw, 26px); }
.g-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.g-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }

/* ---------- 5. Buttons & pills ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -.01em;
  transition: transform .22s cubic-bezier(.2,.8,.3,1), box-shadow .22s, background .22s, color .22s;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn--primary {
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  color: #fff;
  box-shadow: 0 14px 30px -12px rgba(29,130,129,.75);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -14px rgba(29,130,129,.85); }
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--teal-200);
}
.btn--ghost:hover { border-color: var(--teal-500); transform: translateY(-2px); color: var(--teal-700); }
.btn--onDark {
  background: rgba(255,255,255,.08);
  border: 2px solid rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn--onDark:hover { background: #fff; color: var(--navy-2); border-color: #fff; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  background: var(--teal-050);
  border: 1px solid var(--teal-200);
  color: var(--teal-700);
  font-size: 13px; font-weight: 700;
  letter-spacing: -.005em;
}
.pill--solid { background: var(--teal-500); border-color: var(--teal-500); color: #fff; }

/* ---------- 6. Header ---------- */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.hdr.is-stuck {
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 22px -14px rgba(14,28,43,.28);
}
.hdr__in {
  height: 74px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand img { width: 38px; height: 38px; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 800; font-size: 20px; letter-spacing: -.025em;
  color: var(--ink);
}
.brand__name b { color: var(--teal-600); font-weight: 800; }

.nav { display: flex; gap: 4px; margin-inline: auto; }
.nav a {
  padding: 9px 13px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; color: var(--ink-2);
  transition: background .2s, color .2s;
}
.nav a:hover, .nav a.is-active { background: var(--teal-050); color: var(--teal-700); }
.nav__mob { display: none; }

.hdr__end { display: flex; align-items: center; gap: 12px; flex: none; }

/* language switcher */
.lang {
  display: flex; gap: 2px; padding: 3px;
  background: var(--teal-050);
  border: 1px solid var(--teal-200);
  border-radius: 999px;
}
.lang button {
  padding: 6px 12px; border-radius: 999px;
  font-size: 12.5px; font-weight: 800; letter-spacing: .04em;
  color: var(--teal-700);
  transition: background .2s, color .2s;
}
.lang button:hover { background: rgba(255,255,255,.7); }
.lang button[aria-pressed="true"] {
  background: var(--teal-500); color: #fff;
  box-shadow: 0 3px 10px -4px rgba(29,130,129,.9);
}

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line); background: #fff; }
.burger span { display: block; width: 18px; height: 2px; margin: 3.5px auto; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hdr.is-open .burger span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.hdr.is-open .burger span:nth-child(2) { opacity: 0; }
.hdr.is-open .burger span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(110px, 13vw, 150px);
  padding-bottom: clamp(60px, 8vw, 96px);
  overflow: hidden;
  background:
    radial-gradient(1100px 620px at 6% -14%, rgba(58,191,188,.26), transparent 60%),
    radial-gradient(900px 560px at 100% 0%, rgba(79,211,206,.20), transparent 62%),
    linear-gradient(180deg, #F7FDFD 0%, #FFFFFF 72%);
}
/* giant translucent wordmark behind the content — the slide-1 signature */
.hero__mark {
  position: absolute;
  left: 50%; top: clamp(230px, 30vw, 360px);
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(110px, 22vw, 300px);
  letter-spacing: -.03em;
  line-height: .8;
  color: var(--teal-300);
  opacity: .3;
  text-shadow: 0 0 70px rgba(58,191,188,.45);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}
.hero__in { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(24px, 4vw, 56px); align-items: center; }

.hero__support {
  display: flex; flex-wrap: wrap; align-items: center; gap: 7px 9px;
  margin-top: clamp(30px, 4vw, 46px);
  padding-top: 22px;
  border-top: 1px solid var(--teal-200);
  max-width: 58ch;
}
.hero__support b {
  width: 100%;
  font-size: 10.5px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.hero__support span {
  font-size: 11px; font-weight: 700; letter-spacing: .04em;
  color: var(--teal-700);
  background: rgba(255,255,255,.8);
  border: 1px solid var(--teal-200);
  padding: 5px 11px; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.hero h1 {
  font-size: clamp(33px, 4.6vw, 58px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin-bottom: 20px;
  max-width: 17ch;
}
.hero p.lede { margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__art {
  position: relative;
  min-height: clamp(320px, 42vw, 500px);
}
.hero__phone, .hero__hand { position: absolute; filter: drop-shadow(0 34px 50px rgba(14,28,43,.24)); }
.hero__phone {
  width: 52%; left: 2%; top: 6%;
  transform: rotate(-7deg);
  animation: float 9s ease-in-out infinite;
}
.hero__hand {
  width: 74%; right: -6%; top: 26%;
  transform: rotate(6deg);
  animation: float 11s ease-in-out infinite reverse;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -16px; }
}

.hero__stats {
  position: relative; z-index: 2;
  margin-top: clamp(38px, 5vw, 62px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero__stat { background: rgba(255,255,255,.94); padding: clamp(18px, 2.4vw, 28px); text-align: center; }
.hero__stat b {
  display: block;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(26px, 3.4vw, 42px);
  letter-spacing: -.025em;
  color: var(--teal-600);
  line-height: 1.05;
}
.hero__stat span { display: block; margin-top: 6px; font-size: 13.5px; color: var(--muted); font-weight: 600; }

/* ---------- 8. Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 2.4vw, 30px);
  box-shadow: var(--shadow-sm);
  transition: transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s, border-color .28s;
}
.card--outline { border: 2px solid var(--teal-200); box-shadow: none; }
.card--lift:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--teal-300); }
.card__k { font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--teal-600); }

/* stat card (problem slide) */
.stat {
  display: flex; flex-direction: column; gap: 4px;
}
.stat__n {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(38px, 4.8vw, 66px);
  line-height: 1.02; letter-spacing: -.03em;
  color: var(--teal-500);
  text-shadow: 0 8px 30px rgba(58,191,188,.28);
  overflow-wrap: anywhere;
}
.stat__n--long { font-size: clamp(31px, 3.5vw, 48px); }
.stat__rule { width: 84px; height: 3px; background: var(--teal-500); border-radius: 3px; margin: 14px 0 16px; }
.stat__t { font-size: 15.5px; color: var(--ink-2); }
.stat__src { display: block; margin-top: 8px; font-size: 12px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }

/* quote */
.quote { display: flex; flex-direction: column; gap: 18px; }
.quote__mark { font-family: var(--font-display); font-size: 44px; line-height: .6; color: var(--teal-300); }
.quote__t { font-size: clamp(16px, 1.3vw, 18.5px); font-style: italic; color: var(--ink); text-wrap: pretty; }
.quote__by { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.quote__by img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; border: 2px solid var(--teal-200); }
.quote__ph {
  width: 52px; height: 52px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--teal-050); border: 2px solid var(--teal-200);
  font-family: var(--font-display); font-weight: 800; font-size: 17px; color: var(--teal-600);
}
.quote__by b { display: block; font-size: 14.5px; color: var(--ink); font-weight: 800; }
.quote__by span { display: block; font-size: 12.8px; color: var(--muted); line-height: 1.4; }

/* ---------- 9. Solution ---------- */
.sol { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 0; }
.sol__plus {
  align-self: center;
  width: 40px; height: 40px; margin-inline: 12px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--teal-400);
  color: var(--teal-600); font-size: 22px; font-weight: 700; line-height: 1;
  flex: none;
}
.sol__card {
  display: flex; flex-direction: column;
  border: 2px solid var(--teal-300);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2vw, 26px);
  background: linear-gradient(180deg, #fff 0%, var(--teal-050) 100%);
  transition: transform .28s cubic-bezier(.2,.8,.3,1), box-shadow .28s;
}
.sol__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.sol__card h3 { color: var(--teal-600); font-size: clamp(19px, 1.8vw, 24px); margin-bottom: 10px; }
.sol__card p { font-size: 15px; }
.sol__img { margin-top: auto; padding-top: 20px; display: grid; place-items: center; }
.sol__img img { max-height: 210px; width: auto; object-fit: contain; filter: drop-shadow(0 14px 24px rgba(14,28,43,.18)); }
.sol__ai {
  margin-top: 26px;
  border: 2px dashed var(--teal-300);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.4vw, 30px);
  text-align: center;
  background: var(--teal-050);
}
.sol__ai .pill--solid { margin-bottom: 14px; }
.sol__ai p { max-width: 78ch; margin-inline: auto; font-weight: 600; color: var(--ink-2); }

/* ---------- 10. Process ---------- */
.proc { display: grid; grid-template-columns: 1.55fr 1fr; gap: clamp(22px, 3vw, 40px); align-items: start; }
.proc__steps { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 16px; }
.step {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: #fff; overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .26s, box-shadow .26s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__h {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(120deg, var(--teal-600), var(--teal-500));
  color: #fff;
}
.step:nth-child(4) .step__h, .step:nth-child(5) .step__h { background: linear-gradient(120deg, var(--navy), #35507A); }
.step:nth-child(6) .step__h { background: linear-gradient(120deg, var(--teal-700), var(--teal-600)); }
.step__n { font-family: var(--font-display); font-weight: 800; font-size: 13px; opacity: .8; }
.step__h h3 { color: #fff; font-size: 15.5px; letter-spacing: -.015em; }
.step__b { padding: 14px 16px 18px; }
.step__b ul { list-style: none; padding: 0; display: grid; gap: 9px; }
.step__b li { position: relative; padding-left: 20px; font-size: 14.2px; line-height: 1.5; }
.step__b li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--teal-400); box-shadow: 0 0 0 3px var(--teal-050);
}
.step__b li b { color: var(--ink); font-weight: 800; }
.step__b li em { font-style: normal; color: var(--muted); font-size: 13px; }

.proc__aside { position: sticky; top: 100px; display: grid; gap: 16px; }
.proc__photo {
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--teal-050), #fff);
  padding: 18px;
}
.proc__photo img { width: 100%; }
.proc__photo figcaption { margin-top: 12px; text-align: center; font-size: 13.5px; font-weight: 800; color: var(--ink); }
.legend { display: grid; gap: 9px; }
.legend div { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--ink-2); }
.legend i { width: 26px; height: 0; border-top: 3px solid var(--teal-500); flex: none; }
.legend i.d { border-top-style: dashed; }
.legend i.n { border-top-color: var(--navy); }
.legend i.b { border-top-color: #2C7BE5; border-top-style: dotted; }

/* ---------- 11. Session flow ---------- */
.flow { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 0; align-items: stretch; }
.flow__arrow { align-self: center; margin-inline: 10px; color: var(--teal-500); font-size: 24px; line-height: 1; }
.flow__col { border: 2px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--wash); display: flex; flex-direction: column; }
.flow__col--mid { border-color: var(--teal-400); background: var(--teal-050); }
.flow__h {
  display: flex; align-items: baseline; gap: 10px;
  padding: 13px 18px; background: var(--ink); color: #fff;
}
.flow__col--mid .flow__h { background: var(--teal-600); }
.flow__h small { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.flow__h h3 { color: #fff; font-size: 14.5px; letter-spacing: .06em; text-transform: uppercase; }
.flow__body { padding: 16px; display: grid; gap: 10px; }
.tile { background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm); padding: 14px 16px; }
.tile h4 { font-size: 15.5px; margin-bottom: 5px; font-family: var(--font-body); font-weight: 800; }
.tile p { font-size: 13.6px; line-height: 1.5; color: var(--ink-2); }
.tile--hi { background: var(--teal-100); border-color: var(--teal-300); }
.tile--q { background: var(--ink); border-color: var(--ink); text-align: center; }
.tile--q h4 { color: #fff; font-size: 13.5px; letter-spacing: .09em; text-transform: uppercase; margin: 0; }
.chev { text-align: center; color: var(--teal-500); font-size: 15px; line-height: 1; }
.state { display: flex; gap: 12px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--muted); border-radius: var(--r-sm); padding: 11px 14px; }
.state b { font-size: 13.6px; flex: none; min-width: 74px; }
.state p { font-size: 13.2px; line-height: 1.45; }
.state--warn { border-left-color: var(--warn); } .state--warn b { color: var(--warn); }
.state--ok   { border-left-color: var(--ok); }   .state--ok b   { color: var(--ok); }
.state--risk { border-left-color: var(--risk); } .state--risk b { color: var(--risk); }
.flow__loop {
  margin-top: 18px; display: flex; align-items: center; gap: 14px;
  border: 2px solid var(--teal-400); border-radius: 999px;
  padding: 13px 24px; background: #fff;
  font-size: 14.5px; font-weight: 700; color: var(--ink);
}
.flow__loop svg { width: 20px; height: 20px; color: var(--teal-600); flex: none; }
.flow__loop span:last-child { margin-left: auto; color: var(--muted); font-weight: 600; text-align: right; }

/* ---------- 12. Comparison table ---------- */
.cmp-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); background: #fff; -webkit-overflow-scrolling: touch; }
.cmp { min-width: 780px; }
.cmp th, .cmp td { padding: 15px 16px; text-align: center; border-bottom: 1px solid var(--line-2); }
.cmp thead th { vertical-align: bottom; padding-top: 22px; }
.cmp tbody th { text-align: left; font-weight: 700; color: var(--ink); font-size: 14.5px; font-family: var(--font-body); }
.cmp tbody tr:last-child td, .cmp tbody tr:last-child th { border-bottom: 0; }
.cmp tbody tr:nth-child(even) { background: var(--wash); }
.cmp__prod { display: grid; gap: 9px; justify-items: center; }
.cmp__prod img { height: 108px; width: auto; object-fit: contain; }
.cmp__price { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; background: var(--teal-500); padding: 5px 14px; border-radius: 999px; letter-spacing: -.02em; }
.cmp__name { font-family: var(--font-body); font-weight: 800; font-size: 14.5px; color: var(--ink); }
.cmp col.is-us, .cmp .is-us { background: rgba(58,191,188,.07); }
.cmp th.is-us { position: relative; }
.cmp th.is-us::after {
  content: ""; position: absolute; inset: 8px 4px auto 4px; height: calc(100% - 8px);
  border: 2px solid var(--teal-500); border-bottom: 0; border-radius: var(--r-md) var(--r-md) 0 0;
  pointer-events: none;
}
.yes { color: var(--teal-500); font-size: 21px; font-weight: 800; }
.no  { color: #C3CFD8; font-size: 19px; font-weight: 800; }

/* ---------- 13. Charts / validation ---------- */
.bars { display: grid; gap: 16px; }
.bar__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 7px; }
.bar__lab { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.bar__v { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--teal-600); }
.bar__track { height: 11px; border-radius: 999px; background: var(--teal-050); overflow: hidden; }
.bar__fill {
  height: 100%; border-radius: 999px;
  background: linear-gradient(90deg, var(--teal-500), var(--teal-400));
  width: 0; transition: width 1.1s cubic-bezier(.2,.8,.3,1);
}
.ring { display: grid; place-items: center; gap: 4px; }
.ring svg { width: clamp(130px, 15vw, 168px); height: auto; transform: rotate(-90deg); }
.ring__track { fill: none; stroke: var(--teal-050); stroke-width: 13; }
.ring__val   { fill: none; stroke: url(#ringGrad); stroke-width: 13; stroke-linecap: round; stroke-dasharray: 0 999; transition: stroke-dasharray 1.3s cubic-bezier(.2,.8,.3,1); }
.ring__n { font-family: var(--font-display); font-weight: 800; font-size: clamp(30px, 3.4vw, 40px); color: var(--teal-600); letter-spacing: -.025em; }

/* ---------- 14. Timeline ---------- */
.tl { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); position: relative; }
.tl::before {
  content: ""; position: absolute; left: 12%; right: 12%; top: 236px; height: 2px;
  background: repeating-linear-gradient(90deg, var(--teal-300) 0 10px, transparent 10px 20px);
  z-index: 0;
}
.tl__item { position: relative; z-index: 1; text-align: center; }
.tl__media {
  height: 236px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, var(--teal-050), #fff);
  border: 1px solid var(--line);
  display: grid; place-items: center; padding: 16px; overflow: hidden;
}
.tl__media img { max-height: 100%; width: auto; object-fit: contain; }
.tl__dot { width: 15px; height: 15px; border-radius: 50%; background: var(--teal-500); border: 3px solid #fff; box-shadow: 0 0 0 3px var(--teal-200); margin: -8px auto 16px; position: relative; z-index: 2; }
.tl__item h3 { font-size: clamp(21px, 2vw, 27px); margin-bottom: 8px; }
.tl__k { display: block; font-size: 13px; font-weight: 800; color: var(--teal-600); margin-bottom: 8px; }
.tl__item p { font-size: 14.5px; }
.tl__date { display: inline-block; margin-top: 14px; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--ink); background: var(--teal-050); border: 1px solid var(--teal-200); padding: 6px 16px; border-radius: 999px; }

/* ---------- 15. Market (dark panel) ---------- */
.section--dark {
  background:
    radial-gradient(800px 420px at 12% 0%, rgba(58,191,188,.20), transparent 60%),
    radial-gradient(700px 400px at 92% 100%, rgba(53,80,122,.55), transparent 60%),
    var(--navy-2);
  color: #C8D6E4;
}
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark .eyebrow { color: var(--teal-300); }
.section--dark .lede { color: #B7C7D6; }
.mkt { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 3.4vw, 48px); align-items: center; }
.seg { display: grid; gap: 14px; }
.seg__row {
  display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: center;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md);
  padding: 18px 22px;
  transition: background .25s, border-color .25s, transform .25s;
}
.seg__row:hover { background: rgba(255,255,255,.09); border-color: rgba(58,191,188,.5); transform: translateX(4px); }
.seg__tag { font-family: var(--font-display); font-weight: 800; font-size: clamp(24px, 2.6vw, 34px); letter-spacing: -.03em; color: #93A6BA; }
.seg__tag b { font-weight: 800; }
.seg--b b { color: #7B95F0; } .seg--c b { color: #F5A93F; } .seg--g b { color: #45D48A; }
.seg__row p { font-size: 14.5px; color: #B7C7D6; margin-bottom: 2px; }
.seg__row strong { display: block; font-size: 15.5px; color: #fff; font-weight: 800; }
.seg__row em { font-style: normal; color: var(--teal-300); font-weight: 800; font-size: 14.5px; }

.tam { display: grid; place-items: center; gap: 22px; }
.tam__calc { display: grid; gap: 8px; text-align: center; font-size: 14.8px; }
.tam__calc div b { color: #fff; }
.tam__calc div em { font-style: normal; color: #45D48A; font-weight: 800; }
.tam__viz { position: relative; width: min(100%, 340px); aspect-ratio: 1; }
/* concentric TAM > SAM > SOM — each label sits in its own visible band */
.tam__c {
  position: absolute; left: 50%; transform: translateX(-50%);
  border-radius: 50%; aspect-ratio: 1;
  display: flex; justify-content: center;
  text-align: center; line-height: 1.25;
}
.tam__c b { display: block; font-family: var(--font-display); font-weight: 800; font-size: 12.5px; letter-spacing: .12em; color: rgba(255,255,255,.82); }
.tam__c span { display: block; font-size: 14.5px; font-weight: 800; color: #fff; white-space: nowrap; }
.tam__c--1 { top: 0;   width: 100%; padding-top: 4.5%;  background: rgba(155,185,230,.22); }
.tam__c--2 { top: 22%; width: 74%;  padding-top: 5.5%;  background: rgba(120,158,222,.34); }
.tam__c--3 { top: 44%; width: 52%;  padding-top: 17%;   background: rgba(84,126,205,.72); }

/* ---------- 17. Team ---------- */
.team { display: grid; grid-template-columns: repeat(5, 1fr); gap: clamp(14px, 1.8vw, 24px); }
.member { text-align: center; }
.member__ph {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  overflow: hidden; margin-bottom: 16px;
  border: 3px solid var(--teal-200);
  box-shadow: 0 14px 30px -16px rgba(20,98,95,.6);
  transition: transform .3s cubic-bezier(.2,.8,.3,1), border-color .3s;
}
.member:hover .member__ph { transform: translateY(-6px) scale(1.03); border-color: var(--teal-500); }
.member__ph img { width: 100%; height: 100%; object-fit: cover; }
.member h3 { font-size: clamp(15px, 1.3vw, 17.5px); letter-spacing: -.015em; margin-bottom: 6px; min-height: 2.3em; display: flex; align-items: center; justify-content: center; }
.member span { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--teal-600); }

/* ---------- 18. Contact ---------- */
.cta {
  position: relative; overflow: hidden;
  background:
    radial-gradient(760px 420px at 50% -10%, rgba(58,191,188,.30), transparent 62%),
    linear-gradient(180deg, #F6FDFD, #FFFFFF);
}
.cta__in { text-align: center; position: relative; z-index: 2; }
.cta h2 { font-size: clamp(32px, 5.4vw, 62px); margin-bottom: 14px; }
.cta__people { display: flex; justify-content: center; align-items: flex-end; gap: clamp(4px, 1.6vw, 26px); margin: clamp(24px, 3.4vw, 40px) 0 6px; }
.cta__people img { width: clamp(96px, 15vw, 190px); filter: drop-shadow(0 22px 32px rgba(14,28,43,.22)); }
.cta__people img:nth-child(2) { margin-bottom: clamp(-14px, -1.4vw, -6px); }
.cta__thanks {
  font-family: var(--font-display);
  margin-top: clamp(26px, 3.6vw, 52px);
}
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: clamp(28px, 3.4vw, 44px); max-width: 680px; margin-inline: auto; }
.contact-grid a, .contact-grid div {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 18px; box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.contact-grid a:hover { transform: translateY(-4px); border-color: var(--teal-400); box-shadow: var(--shadow-md); }
.contact-grid svg { width: 22px; height: 22px; color: var(--teal-600); }
.contact-grid small { font-size: 11.5px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.contact-grid b { font-size: 15px; color: var(--ink); font-weight: 800; word-break: break-word; }

.sdg { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: clamp(30px, 3.6vw, 46px); }
.sdg__i {
  display: flex; align-items: center; gap: 9px;
  padding: 9px 15px 9px 9px; border-radius: 14px; color: #fff;
  font-size: 12px; font-weight: 800; line-height: 1.2; text-align: left;
  max-width: 210px;
}
.sdg__i b { font-family: var(--font-display); font-size: 19px; font-weight: 800; }

/* ---------- 19. Footer ---------- */
.ftr { background: var(--navy-3); color: #8FA3B6; padding-block: clamp(40px, 5vw, 60px) 30px; }
.ftr__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.09); }
.ftr .brand__name { color: #fff; }
.ftr .brand img { filter: brightness(1.12); }
.ftr h4 { color: #fff; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; font-family: var(--font-body); font-weight: 800; }
.ftr ul { list-style: none; padding: 0; display: grid; gap: 9px; font-size: 14px; }
.ftr a:hover { color: var(--teal-300); }
.ftr__blurb { font-size: 14px; max-width: 40ch; margin-top: 14px; }
.ftr__bot { display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; padding-top: 22px; font-size: 13px; }

/* ---------- 20. Reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s cubic-bezier(.2,.8,.3,1), transform .7s cubic-bezier(.2,.8,.3,1); }
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- 21. Responsive ---------- */
@media (max-width: 1080px) {
  .nav { display: none; }
  .burger { display: block; }
  .hdr__in { height: 66px; }
  .hdr.is-open .nav {
    display: grid; position: absolute; inset: 100% 0 auto 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 14px var(--gut) 22px; gap: 2px;
    box-shadow: var(--shadow-md);
  }
  .hdr.is-open .nav a { padding: 12px 14px; font-size: 16px; }
  .nav__mob { display: block; color: var(--teal-700); font-weight: 800; }
  .proc { grid-template-columns: 1fr; }
  .proc__aside { position: static; grid-template-columns: 1fr 1fr; }
  .mkt { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(3, 1fr); }
  .team .member:nth-child(4) { grid-column: 1 / 2; }
}
@media (max-width: 900px) {
  .hero__in { grid-template-columns: 1fr; }
  /* keep the floating art fully inside its own box so it never covers the copy */
  .hero__art { order: -1; min-height: 340px; max-width: 480px; margin-inline: auto; width: 100%; }
  .hero__in > div:not(.hero__art) { position: relative; z-index: 3; }
  .hero__phone { width: 46%; left: 4%; top: 2%; }
  .hero__hand  { width: 60%; right: 0;  top: 20%; }
  .hero__mark { top: clamp(300px, 60vw, 420px); font-size: clamp(84px, 26vw, 200px); }
  .sol, .flow { grid-template-columns: 1fr; gap: 16px; }
  .sol__plus, .flow__arrow { margin: 0 auto; transform: rotate(90deg); }
  .flow__arrow { transform: rotate(90deg); }
  .g-3, .g-4, .g-5 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .tl { grid-template-columns: 1fr; }
  .tl::before { display: none; }
  .tl__media { height: 210px; }
  .flow__loop { flex-direction: column; text-align: center; border-radius: var(--r-lg); }
  .flow__loop span:last-child { margin-left: 0; text-align: center; }
}
@media (max-width: 700px) {
  .hero__stats { grid-template-columns: 1fr; }
  .proc__steps { grid-template-columns: 1fr; }
  .proc__aside { grid-template-columns: 1fr; }
  .g-2, .g-3, .g-4, .g-5 { grid-template-columns: 1fr; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .team .member:nth-child(4) { grid-column: auto; }
  .team .member:nth-child(5) { grid-column: 1 / -1; max-width: 50%; margin-inline: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .ftr__top { grid-template-columns: 1fr; }
  .hdr__end .btn { display: none; }
  .lang button { padding: 6px 9px; font-size: 11.5px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}

@media print {
  .hdr, .cta__people, .burger { display: none !important; }
  .section { padding-block: 24px; break-inside: avoid; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* country badge in the comparison table (emoji flags do not render on Windows) */
.flag {
  display: inline-block; vertical-align: 2px; margin-left: 6px;
  font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: .08em;
  color: #fff; background: #00AFCA; padding: 2px 7px; border-radius: 5px;
}
