:root {
  /* asbald-navy (default — from logo) */
  --bg-0: #06111e;
  --bg-1: #0b1a2c;
  --bg-2: #122439;
  --bg-3: #1a3148;
  --line: rgba(200,215,235,0.08);
  --line-strong: rgba(200,215,235,0.18);
  --fg: #ecf1f8;
  --fg-2: #c4cfde;
  --muted: #7a8aa0;
  --muted-2: #4e5b6e;

  --accent: #4ea7e6;
  --accent-soft: rgba(78,167,230,0.16);
  --accent-line: rgba(78,167,230,0.42);
  --accent-2: #2c5d9b;

  --display: "Rubik", "Readex Pro", system-ui, sans-serif;
  --sans: "Readex Pro", "Rubik", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2), 0 4px 12px -4px rgba(0,0,0,0.3);
  --shadow-md: 0 2px 4px rgba(0,0,0,0.25), 0 12px 28px -8px rgba(0,0,0,0.35);

  --pad-section: clamp(96px, 11vw, 180px);
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
}

html[data-palette="warm-dark"] {
  --bg-0: #0b0a08;
  --bg-1: #14130f;
  --bg-2: #1c1a16;
  --bg-3: #25221c;
  --line: rgba(245,240,228,0.08);
  --line-strong: rgba(245,240,228,0.16);
  --fg: #f5f0e4;
  --fg-2: #d8d2c2;
  --muted: #8a857a;
  --muted-2: #5e5a52;
}

html[data-palette="cool-dark"] {
  --bg-0: #08090c;
  --bg-1: #101218;
  --bg-2: #181b23;
  --bg-3: #22262f;
  --line: rgba(230,236,245,0.08);
  --line-strong: rgba(230,236,245,0.18);
  --fg: #ecf0f5;
  --fg-2: #c8cdd6;
  --muted: #828896;
  --muted-2: #545968;
}

html[data-palette="paper"] {
  --bg-0: #f3f1ec;
  --bg-1: #ecebe4;
  --bg-2: #e3e1d8;
  --bg-3: #d9d7cc;
  --line: rgba(15,30,55,0.10);
  --line-strong: rgba(15,30,55,0.22);
  --fg: #0f1e37;
  --fg-2: #2e3d56;
  --muted: #6b7484;
  --muted-2: #9097a3;
}

html[data-palette="paper-navy"] {
  --bg-0: #e6ecf4;
  --bg-1: #f6f9fc;
  --bg-2: #dde5ef;
  --bg-3: #cbd5e4;
  --line: rgba(15,45,82,0.10);
  --line-strong: rgba(15,45,82,0.24);
  --fg: #0f2d52;
  --fg-2: #243b5d;
  --muted: #5b6a82;
  --muted-2: #8a95a8;
  --accent: #2c7fbf;
  --accent-soft: rgba(44,127,191,0.13);
  --accent-line: rgba(44,127,191,0.38);
  --accent-2: #2c5d9b;
  --accent-3: #0f2d52;
  --shadow-sm: 0 1px 2px rgba(15,45,82,0.05), 0 4px 14px -4px rgba(15,45,82,0.09);
  --shadow-md: 0 2px 5px rgba(15,45,82,0.05), 0 14px 32px -10px rgba(15,45,82,0.13);
}

/* Paper texture — fine grain overlay on the body bg, only in light palettes.
   Uses an SVG turbulence filter inlined as a data: URL, multiplied at low
   opacity so it texturizes the page without affecting cards/contrast. */
html[data-palette="paper-navy"] body::before,
html[data-palette="paper"] body::before {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch' seed='4'/><feColorMatrix values='0 0 0 0 0.06   0 0 0 0 0.18   0 0 0 0 0.32   0 0 0 0.45 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 240px 240px;
  opacity: 0.22;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
/* keep app content above the texture */
body > * { position: relative; z-index: 1; }

html[data-palette="midnight"] {
  --bg-0: #050608;
  --bg-1: #0c0e12;
  --bg-2: #14171d;
  --bg-3: #1d2128;
  --line: rgba(220,230,245,0.07);
  --line-strong: rgba(220,230,245,0.18);
  --fg: #f0f2f6;
  --fg-2: #c8ccd4;
  --muted: #7a7e88;
  --muted-2: #4d505a;
}

html[data-accent="signal"]   { --accent: #ff6a3c; --accent-soft: rgba(255,106,60,0.14); --accent-line: rgba(255,106,60,0.4); }
html[data-accent="lime"]     { --accent: #d6ec3a; --accent-soft: rgba(214,236,58,0.16); --accent-line: rgba(214,236,58,0.45); }
html[data-accent="sky"]      { --accent: #4ea7e6; --accent-soft: rgba(78,167,230,0.16); --accent-line: rgba(78,167,230,0.45); }
html[data-accent="navy"]     { --accent: #2c5d9b; --accent-soft: rgba(44,93,155,0.18); --accent-line: rgba(44,93,155,0.45); }
html[data-accent="cobalt"]   { --accent: #4d7dff; --accent-soft: rgba(77,125,255,0.16); --accent-line: rgba(77,125,255,0.45); }
html[data-accent="emerald"]  { --accent: #34c98a; --accent-soft: rgba(52,201,138,0.16); --accent-line: rgba(52,201,138,0.45); }
html[data-accent="amber"]    { --accent: #f0b430; --accent-soft: rgba(240,180,48,0.16); --accent-line: rgba(240,180,48,0.45); }

html[data-display="rubik"] { --display: "Rubik", "Readex Pro", system-ui, sans-serif; }
html[data-display="readex"] { --display: "Readex Pro", "Rubik", system-ui, sans-serif; }

html[data-density="dense"] { --pad-section: clamp(64px, 8vw, 130px); }
html[data-density="comfortable"] { --pad-section: clamp(96px, 11vw, 180px); }
html[data-density="airy"]  { --pad-section: clamp(120px, 14vw, 220px); }

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--bg-0); color: var(--fg); }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.shell { max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter); }

/* ============ NAV ============ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in oklab, var(--bg-0) 80%, transparent);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--accent);
  color: #0b0a08;
  font-family: var(--display); font-weight: 800; font-size: 16px;
  display: grid; place-items: center;
}
.brand-name {
  font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.01em;
}
.brand-name small {
  display: block; font-size: 10px; font-weight: 500; color: var(--muted);
  letter-spacing: 0.18em; text-transform: uppercase; margin-top: -2px;
  font-family: var(--mono);
  white-space: nowrap;
}
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-link {
  padding: 8px 14px; border-radius: 999px; font-size: 14px;
  color: var(--fg-2); transition: 0.18s;
}
.nav-link:hover { background: var(--bg-2); color: var(--fg); }
.nav-link.active { background: var(--bg-2); color: var(--fg); }
.nav-cta {
  padding: 10px 18px; border-radius: 999px;
  background: var(--fg); color: var(--bg-0);
  font-weight: 600; font-size: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: 0.18s;
}
.nav-cta:hover { background: var(--accent); color: #0b0a08; }
.nav-cta .arrow { display: inline-block; transform: scaleX(-1); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font-weight: 600; font-size: 15px;
  transition: 0.2s; cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: #0b0a08; }
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.05); }
.btn-ghost { background: transparent; color: var(--fg); border-color: var(--line-strong); }
.btn-ghost:hover { background: var(--bg-2); border-color: var(--fg-2); }
.btn .arrow { display: inline-block; transform: scaleX(-1); transition: transform 0.2s; }
.btn:hover .arrow { transform: scaleX(-1) translateX(3px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding-top: clamp(40px, 6vw, 80px);
  padding-bottom: var(--pad-section);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: start;
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px;
  color: var(--muted); letter-spacing: 0.04em;
  margin-bottom: 28px;
}
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); animation: pulse 2.4s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px var(--accent-soft); }
  50% { box-shadow: 0 0 0 8px transparent; }
}
.hero h1 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(44px, 6.2vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--fg);
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  position: relative;
}
.hero h1 em::after {
  content: ""; position: absolute; inset: auto 0 -0.08em 0;
  height: 6px; background: var(--accent-soft); border-radius: 3px;
}
.hero p.lede {
  margin-top: 32px;
  font-size: clamp(17px, 1.35vw, 20px);
  color: var(--fg-2);
  max-width: 52ch;
  line-height: 1.75;
}
.hero-ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.stat-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  display: flex; align-items: baseline; gap: 6px;
}
.stat-num .plus { color: var(--accent); }
.stat-lbl { font-size: 13px; color: var(--muted); margin-top: 4px; line-height: 1.4; }

/* Hero visual — authority / partnership card */
.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--bg-1);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  position: sticky;
  top: 90px;
}
.hero-visual::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 8%, var(--accent-soft), transparent 50%);
  pointer-events: none;
}
.hv-credential { position: relative; z-index: 1; }
.hv-credential {
  display: flex; flex-direction: column;
  width: 100%;
  gap: 36px;
}
.hvc-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hvc-eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.hvc-partner {
  display: flex; align-items: center; gap: 18px;
}
.hvc-pl-logo {
  height: 36px; width: auto;
  flex-shrink: 0;
  object-fit: contain;
}
html[data-palette="asbald-navy"] .hvc-pl-logo,
html[data-palette="midnight"] .hvc-pl-logo,
html[data-palette="cool-dark"] .hvc-pl-logo {
  filter: invert(1) brightness(1.2);
}
.hvc-pl-name {
  font-family: var(--display); font-weight: 700;
  font-size: 26px; letter-spacing: -0.02em;
  color: var(--fg);
}
.hvc-pl-sub {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.08em;
  margin-top: 4px;
}
.hvc-divider {
  height: 1px; background: var(--line); width: 100%;
}
.hvc-stat { display: flex; flex-direction: column; gap: 14px; }
.hvc-num {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(60px, 7vw, 110px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  color: var(--fg);
  display: flex; align-items: baseline;
}
.hvc-num span {
  color: var(--accent);
  font-size: 0.55em;
  margin-right: 6px;
}
.hvc-lbl {
  font-size: 15px; color: var(--fg-2); line-height: 1.7;
  max-width: 36ch;
}
.hvc-foot {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  padding-top: 24px; border-top: 1px solid var(--line);
}
.hvc-f-k {
  font-family: var(--mono); font-size: 10px;
  color: var(--muted); letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hvc-f-v {
  font-family: var(--display); font-weight: 600;
  font-size: 15px; margin-top: 6px;
  letter-spacing: -0.01em;
}

/* ============ MARQUEE STRIP ============ */
.partner-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 0 32px 0;
  background: var(--bg-1);
  overflow: hidden;
}
.partner-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 24px; margin-bottom: 22px;
}
.partner-head .ph-eyebrow {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.partner-head .ph-eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.partner-head .ph-sub {
  font-size: 14px; color: var(--muted);
}
.partner-track {
  display: flex; align-items: center;
  animation: marquee 40s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
html[dir="rtl"] .partner-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl {
  from { transform: translateX(0); }
  to { transform: translateX(50%); }
}
.partner-track .item {
  display: inline-flex; align-items: center; gap: 14px;
  padding-inline-end: 56px;
  font-family: var(--display); font-weight: 500; font-size: 18px;
  color: var(--fg-2); letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
}
.partner-track .item .sep { color: var(--accent); font-size: 14px; }

.partner-track .logo-item {
  display: inline-flex; align-items: center; justify-content: center;
  padding-inline-end: 64px;
  flex-shrink: 0;
  height: 56px;
}
.partner-track .logo-item img {
  height: 100%; width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* ============ SECTION ============ */
section { padding: var(--pad-section) 0; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 72px; }
.eyebrow {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.section-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 16px 0 0 0;
  max-width: 22ch;
}
.section-sub {
  color: var(--muted); font-size: 16px; max-width: 44ch; line-height: 1.6;
}

/* ============ ABOUT / PARTNERSHIP ============ */
.about {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center;
}
.about-text h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.1; letter-spacing: -0.02em; margin: 16px 0 24px 0;
}
.about-text p { color: var(--fg-2); font-size: 17px; line-height: 1.7; }
.about-text p + p { margin-top: 16px; }
.about-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--bg-1);
  box-shadow: var(--shadow-md);
  padding: 36px;
}
.about-card .row {
  display: grid; grid-template-columns: auto 1fr; gap: 20px 28px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.about-card .row:last-child { border-bottom: none; padding-bottom: 0; }
.about-card .row:first-child { padding-top: 0; }
.about-card .row .k {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  white-space: nowrap;
}
.about-card .row .v {
  font-family: var(--display); font-weight: 600;
  font-size: 20px; color: var(--fg);
}
.about-card .pl-mark {
  display: flex; align-items: center; gap: 16px;
  padding: 18px; background: var(--bg-2); border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 8px;
}
.about-card .pl-mark .pl-wordmark {
  height: 32px; width: auto;
  flex-shrink: 0;
  filter: brightness(0.9);
}
html[data-palette="asbald-navy"] .about-card .pl-mark .pl-wordmark,
html[data-palette="midnight"] .about-card .pl-mark .pl-wordmark,
html[data-palette="cool-dark"] .about-card .pl-mark .pl-wordmark {
  filter: invert(1) brightness(1.2);
}
.about-card .pl-mark .pl-tagline { display: flex; flex-direction: column; }
.about-card .pl-mark .pl-name {
  font-family: var(--display); font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.about-card .pl-mark .pl-sub {
  font-size: 11px; color: var(--muted); font-family: var(--mono);
  letter-spacing: 0.06em;
  margin-top: 2px;
}

/* ============ SECTORS ============ */
.sectors {
  position: relative;
}
.sec-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 0;
}
.sec-tab {
  text-align: right;
  padding: 32px 28px;
  border-left: 1px solid var(--line);
  cursor: pointer;
  transition: 0.25s;
  position: relative;
  background: transparent;
  display: flex; flex-direction: column; gap: 8px;
}
.sec-tab:first-child { border-left: none; }
.sec-tab:hover { background: var(--bg-1); }
.sec-tab.active { background: var(--bg-1); }
.sec-tab.active::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
}
.sec-tab .num {
  font-family: var(--mono); font-size: 12px;
  color: var(--muted); letter-spacing: 0.1em;
}
.sec-tab .nm {
  font-family: var(--display); font-weight: 600;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--fg-2);
  letter-spacing: -0.01em;
}
.sec-tab.active .nm { color: var(--fg); }
.sec-tab.active .num { color: var(--accent); }

.sec-stage {
  padding-top: 64px;
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px;
  align-items: start;
}
.sec-stage h3 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08; letter-spacing: -0.02em;
  margin: 0 0 28px 0;
}
.sec-problem {
  background: var(--bg-1); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin-bottom: 24px;
  font-size: 16px; color: var(--fg-2); line-height: 1.7;
}
.sec-problem .kw {
  display: inline-block; padding: 2px 10px; border-radius: 6px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.1em; margin-left: 10px;
  vertical-align: middle;
}
.sec-solution {
  font-size: 18px; color: var(--fg); line-height: 1.7;
  margin-bottom: 32px;
}
.sec-products {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.sec-products .pr {
  display: grid; grid-template-columns: 36px 1fr auto;
  gap: 18px; align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.sec-products .pr .num {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
}
.sec-products .pr .nm {
  font-family: var(--display); font-weight: 600; font-size: 17px;
}
.sec-products .pr .nm small {
  font-family: var(--mono); font-weight: 400; font-size: 12px;
  color: var(--muted); margin-right: 8px;
}
.sec-products .pr .arrow {
  color: var(--muted); font-size: 18px; transform: scaleX(-1);
  transition: 0.2s;
}
.sec-products .pr:hover { background: var(--bg-1); padding-right: 14px; padding-left: 14px; }
.sec-products .pr:hover .arrow { color: var(--accent); transform: scaleX(-1) translateX(4px); }

/* === SECTOR DEPLOYMENT DIAGRAM === */
.sec-diagram {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(28px, 3vw, 40px);
  display: flex; flex-direction: column;
  gap: 36px;
}
.dg-tag {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
}
.dg-tag::before {
  content: ""; width: 22px; height: 1px; background: var(--accent);
}
.dg-stage-simple {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
}
.dg-node {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  gap: 12px;
}
.dg-node-ic {
  width: 72px; height: 72px;
  border-radius: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  display: grid; place-items: center;
  color: var(--fg);
  box-shadow: var(--shadow-sm);
}
.dg-node-ic svg { width: 36px; height: 36px; }
.dg-node-title {
  font-family: var(--display); font-weight: 600;
  font-size: 16px; letter-spacing: -0.01em;
}
.dg-node-label {
  font-family: var(--mono); font-size: 10.5px;
  color: var(--muted); letter-spacing: 0.08em;
}

.dg-pipe-simple {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  gap: 10px;
  padding: 8px 0;
}
.dg-pipe-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-2);
  border: 1px solid var(--accent-line);
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  z-index: 2;
}
.dg-pipe-mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, #4ea7e6 0%, #2c5d9b 55%, #0f2d52 100%);
  color: white;
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 800;
  font-size: 10px; letter-spacing: -0.02em;
}
.dg-pipe-name {
  font-family: var(--display); font-weight: 600;
  font-size: 13px; letter-spacing: -0.01em;
}
.dg-pipe-line {
  width: 100%; height: 12px; display: block;
}
.dg-pipe-pulse {
  stroke-dasharray: 12 220;
  stroke-dashoffset: 0;
  animation: dgflow 3s linear infinite;
  opacity: 0.95;
}
html[dir="rtl"] .dg-pipe-pulse { animation-direction: reverse; }
@keyframes dgflow {
  to { stroke-dashoffset: -232; }
}
.dg-pipe-meta {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 12px;
  color: var(--fg-2);
}
.dg-pipe-meta .dot-sep { color: var(--accent); opacity: 0.7; }
.dg-pipe-meta .mono { font-family: var(--mono); font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }

@media (max-width: 740px) {
  .dg-stage-simple { grid-template-columns: 1fr; gap: 20px; }
  .dg-pipe-line { transform: rotate(90deg); height: 60px; }
}

.dg-specs {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.dg-spec {
  display: grid; grid-template-columns: 120px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.dg-spec:last-child { border-bottom: none; }
.dg-spec-k {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dg-spec-v {
  font-family: var(--display); font-weight: 500;
  font-size: 15px; letter-spacing: -0.01em;
}

@media (max-width: 980px) {
  .dg-stage {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dg-pipe { min-height: 40px; transform: rotate(90deg); height: 40px; }
  .dg-pipe-label { display: none; }
}

/* === SECTOR DIAGRAM END ===*/
.sec-visual {
  position: relative;
  aspect-ratio: 4/4.6;
  border-radius: var(--radius-lg);
  background: var(--bg-1);
  border: 1px solid var(--line);
  overflow: hidden;
  padding: 22px;
}
.sec-visual .label {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.12em; text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
}
.sec-visual .label .live { color: var(--accent); display: flex; align-items: center; gap: 6px; }
.sec-visual .label .live::before { content:""; width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 1.5s infinite; }

.sec-visual .screen {
  position: absolute; inset: 56px 22px 90px 22px;
  border-radius: 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  overflow: hidden;
}

/* Healthcare visual */
.sv-medical .screen {
  background:
    radial-gradient(circle at 30% 50%, var(--accent-soft), transparent 50%),
    linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.sv-medical .vital {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  height: 50px;
}
.sv-medical .vital svg {
  width: 100%; height: 100%;
  stroke: var(--accent); stroke-width: 1.4; fill: none;
}
.sv-medical .crosshair {
  position: absolute; top: 50%; left: 50%;
  width: 100px; height: 100px;
  transform: translate(-50%, -50%);
  border: 1px solid var(--accent-line);
  border-radius: 50%;
}
.sv-medical .crosshair::before,
.sv-medical .crosshair::after {
  content: ""; position: absolute;
  background: var(--accent);
}
.sv-medical .crosshair::before {
  top: 50%; left: -8px; right: -8px; height: 1px;
}
.sv-medical .crosshair::after {
  left: 50%; top: -8px; bottom: -8px; width: 1px;
}
.sv-medical .corner-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 10px;
  color: var(--accent); background: rgba(0,0,0,0.4);
  padding: 4px 8px; border-radius: 4px;
  letter-spacing: 0.1em;
}

/* Education visual */
.sv-edu .screen {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.sv-edu .board {
  position: absolute; top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(180, 200, 255, 0.15);
  border-radius: 6px;
  padding: 14px;
  font-family: var(--display); color: rgba(255,255,255,0.9);
}
.sv-edu .board .eq {
  font-family: var(--mono); font-size: 13px;
  color: rgba(180, 220, 255, 0.7);
  letter-spacing: 0.05em;
}
.sv-edu .board .eq.big {
  font-size: 26px; color: white; font-family: var(--display);
  font-weight: 600; margin-top: 14px;
}
.sv-edu .student-grid {
  position: absolute; bottom: 14px; left: 14px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px;
}
.sv-edu .student {
  width: 38px; height: 28px; border-radius: 3px;
  background: rgba(120, 160, 255, 0.18);
  border: 1px solid rgba(180, 200, 255, 0.2);
  display: grid; place-items: center;
  font-family: var(--mono); font-size: 9px; color: rgba(255,255,255,0.6);
}

/* Business visual */
.sv-biz .screen {
  background: linear-gradient(135deg, var(--bg-2) 0%, var(--bg-3) 100%);
}
.sv-biz .meet-grid {
  position: absolute; inset: 12px;
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr; gap: 4px;
}
.sv-biz .meet-tile {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px; position: relative;
  display: grid; place-items: center;
}
.sv-biz .meet-tile.speaker { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent-soft); }
.sv-biz .meet-tile .av {
  width: 36px; height: 36px; border-radius: 50%;
  background: linear-gradient(135deg, #444, #222);
  display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: var(--fg-2);
}
.sv-biz .meet-tile .tag {
  position: absolute; bottom: 4px; right: 4px;
  font-family: var(--mono); font-size: 9px; color: white;
  background: rgba(0,0,0,0.55); padding: 2px 5px; border-radius: 3px;
}
.sv-biz .meet-tile.speaker .tag { color: var(--accent); }

.sec-visual .ctrl-bar {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  height: 56px; background: var(--bg-0); border: 1px solid var(--line);
  border-radius: 10px;
  display: flex; align-items: center; padding: 0 18px;
  justify-content: space-between;
  font-family: var(--mono); font-size: 11px;
}
.sec-visual .ctrl-bar .group { display: flex; align-items: center; gap: 12px; color: var(--muted); }
.sec-visual .ctrl-bar .pill {
  padding: 5px 10px; border-radius: 5px;
  background: var(--bg-2); color: var(--fg-2);
}
.sec-visual .ctrl-bar .pill.acc { background: var(--accent-soft); color: var(--accent); }

/* ============ PRODUCTS ============ */
.products-section .section-head { align-items: flex-end; }
.prod-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.prod-filter button {
  padding: 8px 16px; border-radius: 999px;
  font-size: 13px; color: var(--fg-2);
  border: 1px solid var(--line-strong);
  background: transparent; transition: 0.18s;
}
.prod-filter button:hover { border-color: var(--fg-2); }
.prod-filter button.active { background: var(--fg); color: var(--bg-0); border-color: var(--fg); }

.prod-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.prod-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.prod-card .frame {
  aspect-ratio: 4/3;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.prod-card .frame svg text {
  direction: ltr;
  unicode-bidi: isolate;
}
.prod-card .pic { direction: ltr; }
.prod-card .prod-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.prod-card .frame .pic {
  width: 70%; height: 70%; display: grid; place-items: center;
}
.prod-card .body {
  padding: 30px 32px 34px 32px;
}
.prod-card .cat {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.prod-card .nm {
  font-family: var(--display); font-weight: 600;
  font-size: 19px;
  margin: 10px 0 6px 0;
  letter-spacing: -0.01em;
}
.prod-card .en {
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  margin-bottom: 14px;
}
.prod-card .desc {
  font-size: 14px; color: var(--fg-2); line-height: 1.6;
  margin: 0; height: 4.8em; overflow: hidden;
}
.prod-card .foot {
  display: flex; align-items: center;
  margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line);
}
.prod-card .foot .sectors-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.prod-card .foot .pill {
  font-family: var(--mono); font-size: 10px;
  padding: 3px 8px; border-radius: 4px;
  background: var(--bg-2); color: var(--muted);
  letter-spacing: 0.05em;
}
.prod-card .foot .go {
  color: var(--muted); font-size: 16px;
  transition: 0.2s;
}
.prod-card:hover .foot .go { color: var(--accent); transform: scaleX(-1) translateX(4px); }
.prod-card .foot .go { transform: scaleX(-1); }

/* Product artwork (svg placeholders) */
.pic-camera { color: var(--fg); }
.pic-panel { color: var(--fg); }

/* ============ STATS BAR ============ */
.numbers {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.numbers-grid .cell {
  padding: 56px 28px;
  border-left: 1px solid var(--line);
  position: relative;
}
.numbers-grid .cell:first-child { border-left: none; }
.numbers-grid .big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1; letter-spacing: -0.03em;
  display: flex; align-items: baseline; gap: 4px;
}
.numbers-grid .big .unit { font-size: 0.5em; color: var(--accent); margin-right: 4px; }
.numbers-grid .lbl {
  margin-top: 18px;
  font-size: 14px; color: var(--muted); line-height: 1.5;
}
.numbers-grid .tag {
  position: absolute; top: 24px; right: 28px;
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em;
}

/* ============ CONTACT ============ */
.contact {
  padding: var(--pad-section) 0;
}
.contact-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(36px, 5vw, 72px);
}
.contact-static {
  display: flex; flex-direction: column;
  gap: clamp(36px, 5vw, 56px);
}
.contact-head h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 16px 0 16px 0;
}
.contact-lede {
  color: var(--muted); font-size: 16px; line-height: 1.7; max-width: 42ch; margin: 0;
}
.contact-channels {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.ch-card {
  background: var(--bg-1);
  padding: 28px 28px;
  display: flex; flex-direction: column;
  gap: 8px;
  color: inherit;
  text-decoration: none;
  transition: 0.18s;
}
a.ch-card:hover { background: var(--bg-2); }
.ch-k {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.12em;
  text-transform: uppercase;
}
.ch-v {
  font-family: var(--display); font-weight: 600;
  font-size: 18px; letter-spacing: -0.01em;
  word-break: break-word;
}
.ch-sub {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.04em;
  margin-top: 2px;
}
a.ch-card .ch-v { color: var(--fg); }
a.ch-card:hover .ch-v { color: var(--accent); }
.contact-card h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 4vw, 56px); line-height: 1.05;
  letter-spacing: -0.02em; margin: 16px 0 24px 0;
}
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-info .row {
  display: grid; grid-template-columns: 110px 1fr; gap: 20px;
  padding: 18px 0; border-top: 1px solid var(--line);
  align-items: center;
}
.contact-info .row .k {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.contact-info .row .v {
  font-family: var(--display); font-weight: 500; font-size: 17px;
  letter-spacing: -0.01em;
}
.contact-info .row.tel .v, .contact-info .row.web .v { font-family: var(--mono); font-weight: 400; font-size: 15px; }

.form { display: flex; flex-direction: column; gap: 14px; }
.form .field { display: flex; flex-direction: column; gap: 8px; }
.form label {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.form input, .form select, .form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--fg); font-size: 15px; font-family: var(--sans);
  outline: none; transition: 0.18s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.form textarea { resize: vertical; min-height: 100px; }
.form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form .submit {
  margin-top: 10px;
  width: 100%; justify-content: center;
}
.form-success {
  text-align: center; padding: 40px 20px;
  font-family: var(--display); font-size: 19px; line-height: 1.5;
  color: var(--fg);
}
.form-success .check {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center;
  margin: 0 auto 18px auto; font-size: 28px;
}

/* ============ FOOTER ============ */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 28px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 56px;
}
.footer-grid h4 {
  font-family: var(--mono); font-size: 11px; color: var(--muted);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin: 0 0 18px 0; font-weight: 500;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a {
  font-size: 15px; color: var(--fg-2); transition: 0.18s;
}
.footer-grid a:hover { color: var(--accent); }
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { font-size: 14px; color: var(--muted); line-height: 1.6; max-width: 36ch; }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
  letter-spacing: 0.04em;
}
.footer-bottom .pl-tag {
  display: flex; align-items: center; gap: 10px;
}
.footer-bottom .pl-tag .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav-links { gap: 2px; }
  .nav-link { padding: 8px 10px; font-size: 13px; }
}
@media (max-width: 980px) {
  .nav-inner { height: 60px; }
  .nav-links { display: none; }
  .brand-name { font-size: 16px; }
  .brand-name small { font-size: 9px; }

  .hero { padding-top: 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; align-items: stretch; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-visual { padding: 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  .sec-stage { grid-template-columns: 1fr; gap: 40px; }

  .prod-grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid .cell { border-left: none; }
  .numbers-grid .cell:nth-child(2) { border-left: 1px solid var(--line); }
  .numbers-grid .cell:nth-child(4) { border-left: 1px solid var(--line); }
  .numbers-grid .cell:nth-child(3),
  .numbers-grid .cell:nth-child(4) { border-top: 1px solid var(--line); }

  .contact-channels { grid-template-columns: 1fr; }
  .ch-card { padding: 24px 22px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .shell { padding: 0 20px; }
  .nav-inner { height: 56px; gap: 12px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
  .brand img { height: 28px !important; }

  .hero h1 { font-size: clamp(34px, 9vw, 48px); }
  .hero p.lede { font-size: 16px; margin-top: 24px; }
  .hero-ctas { gap: 8px; }
  .btn { padding: 12px 18px; font-size: 14px; }
  .hero-stats { grid-template-columns: 1fr; gap: 20px; margin-top: 40px; padding-top: 24px; }
  .hero-visual { padding: 24px; }
  .hvc-num { font-size: 64px !important; }
  .hvc-pl-name { font-size: 22px; }
  .hvc-foot { grid-template-columns: 1fr; gap: 14px; }

  .section-head { flex-direction: column; align-items: flex-start; gap: 20px; margin-bottom: 40px; }
  .section-title { font-size: clamp(26px, 7vw, 38px); }

  .about-card { padding: 24px; }
  .about-card .row { padding: 18px 0; }
  .pl-mark { padding: 14px !important; }

  .sec-tabs { grid-template-columns: 1fr; }
  .sec-tab { border-left: none; border-top: 1px solid var(--line); padding: 20px 22px; }
  .sec-tab:first-child { border-top: none; }
  .sec-tab .nm { font-size: 18px; }

  .sec-diagram { padding: 22px; gap: 28px; }
  .sec-stage h3 { font-size: 24px; }
  .dg-node-ic { width: 60px; height: 60px; }
  .dg-spec { grid-template-columns: 100px 1fr; padding: 12px 0; }

  .prod-grid { grid-template-columns: 1fr; gap: 14px; }
  .prod-card .body { padding: 22px 22px 24px 22px; }

  .numbers-grid { grid-template-columns: 1fr; }
  .numbers-grid .cell {
    border-left: none !important;
    border-top: 1px solid var(--line);
    padding: 36px 22px;
  }
  .numbers-grid .cell:first-child { border-top: none; }
  .numbers-grid .big { font-size: clamp(36px, 11vw, 56px); }

  .contact-card { padding: 24px; }
  .contact-head h2 { font-size: clamp(24px, 7vw, 36px); }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; text-align: start; }

  .partner-head { flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 16px; }
  .partner-head .ph-sub { font-size: 13px; }

  /* Tweaks panel — keep it compact on small screens */
  .twk-panel { right: 12px !important; bottom: 12px !important; max-width: calc(100vw - 24px); }
}


/* ═══════════════════════════════════════════════════════════════════════
   NEW (i18n + new sections)
   ═══════════════════════════════════════════════════════════════════════ */

/* Brand styles */
.brand-link { display: flex; align-items: center; }
.brand-mark-img { height: 36px; width: auto; flex-shrink: 0; }
.brand-banner img { height: 48px; width: auto; display: block; }
.brand-banner.brand-footer img { height: 56px; }
.brand-icon-only img { height: 38px; width: auto; }

/* Nav actions cluster */
.nav-actions {
  display: flex; align-items: center; gap: 10px;
}
.lang-toggle {
  padding: 8px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--fg-2);
  background: transparent;
  transition: 0.18s;
}
.lang-toggle:hover {
  border-color: var(--accent-line);
  color: var(--accent);
  background: var(--accent-soft);
}

/* Mobile burger */
.nav-burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--line);
}
.nav-burger span {
  display: block;
  width: 18px; height: 1.6px;
  background: var(--fg);
  border-radius: 1px;
  transition: 0.18s;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: absolute; left: 0; right: 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--line);
  padding: 20px var(--gutter);
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}
.nav-mlink {
  padding: 14px 16px;
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--fg-2);
  transition: 0.15s;
}
.nav-mlink:hover, .nav-mlink.active { background: var(--bg-2); color: var(--fg); }

/* ═══════ WHY US ═══════ */
.whyus { padding: var(--pad-section) 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.why-card {
  background: var(--bg-1);
  padding: 36px 32px 40px 32px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: 0.2s;
}
.why-card:hover { background: var(--bg-2); }
.why-num {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.12em;
}
.why-t {
  font-family: var(--display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--fg);
}
.why-d {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0;
}

/* ═══════ BUNDLES ═══════ */
.bundles { padding: var(--pad-section) 0; }
.bundle-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.bundle-tab {
  background: var(--bg-1);
  text-align: start;
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 8px;
  transition: 0.18s;
  position: relative;
}
.bundle-tab:hover { background: var(--bg-2); }
.bundle-tab.active { background: var(--bg-1); }
.bundle-tab.active::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: var(--accent);
}
.bt-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  color: var(--muted);
  letter-spacing: 0.12em;
}
.bundle-tab.active .bt-tag { color: var(--accent); }
.bt-nm {
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--fg-2);
}
.bundle-tab.active .bt-nm { color: var(--fg); }

.bundle-stage {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.bundle-meta {
  padding: 48px 44px;
  border-inline-end: 1px solid var(--line);
  display: flex; flex-direction: column; gap: 18px;
}
.bm-tag {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.14em;
}
.bm-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 4px 0 0 0;
  color: var(--fg);
}
.bm-desc {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0;
}
.bm-fit {
  margin-top: auto;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

.bundle-parts {
  padding: 48px 44px;
  display: flex; flex-direction: column;
}
.bp-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding-bottom: 14px;
  margin-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.bp-count {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.bp-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex; flex-direction: column;
}
.bp-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.bp-list li:last-child { border-bottom: none; }
.bp-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.bp-txt {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  color: var(--fg);
  letter-spacing: -0.005em;
  line-height: 1.5;
}

/* ═══════ CERTIFICATIONS ═══════ */
.certs { padding: var(--pad-section) 0; }
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cert-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px 26px 22px;
  display: flex; flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-sm);
  transition: 0.2s;
}
.cert-card:hover { border-color: var(--accent-line); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cert-shield {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 8px;
  margin-bottom: 4px;
}
.cert-k {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.cert-d {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

/* ═══════ NUMBERS — adjusted for 8 stats ═══════ */
.numbers-head { margin-bottom: 0; padding: 0 0 56px 0; }
.numbers .numbers-head .section-title { font-size: clamp(28px, 3.4vw, 44px); }
.numbers .shell { padding-top: var(--pad-section); padding-bottom: var(--pad-section); }
.numbers .numbers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.numbers .numbers-grid .cell {
  padding: 36px 28px;
  border-inline-start: 1px solid var(--line);
  border-top: 1px solid var(--line);
  position: relative;
  display: flex; flex-direction: column;
}
.numbers .numbers-grid .cell:nth-child(-n+4) { border-top: none; }
.numbers .numbers-grid .cell:nth-child(4n+1) { border-inline-start: none; }
.numbers .numbers-grid .big {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1; letter-spacing: -0.03em;
  color: var(--fg);
}
.numbers .numbers-grid .lbl {
  margin-top: 16px;
  font-size: 13.5px; color: var(--muted); line-height: 1.45;
}
.numbers .numbers-grid .tag {
  position: absolute; top: 18px; right: 20px;
  font-family: var(--mono); font-size: 10px; color: var(--muted);
  letter-spacing: 0.12em;
}
html[dir="rtl"] .numbers .numbers-grid .tag { right: auto; left: 20px; }

/* ═══════ ROADMAP ═══════ */
.roadmap { padding: var(--pad-section) 0; }
.roadmap-list {
  list-style: none; margin: 0; padding: 0;
  position: relative;
  max-width: 920px;
  margin-inline: auto;
}
.rm-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 0 0 40px 0;
  position: relative;
}
.rm-step:last-child { padding-bottom: 0; }
.rm-rail {
  position: relative;
  display: flex; justify-content: center;
}
.rm-rail::before {
  content: "";
  position: absolute;
  top: 30px; bottom: -10px;
  width: 1px;
  background: var(--line-strong);
}
.rm-step:last-child .rm-rail::before { display: none; }
.rm-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--bg-1);
  border: 2px solid var(--accent);
  margin-top: 8px;
  box-shadow: 0 0 0 5px var(--accent-soft);
  z-index: 1;
}
.rm-body {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px 24px 26px;
  box-shadow: var(--shadow-sm);
}
.rm-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.14em;
}
.rm-t {
  font-family: var(--display); font-weight: 600;
  font-size: 19px; letter-spacing: -0.01em;
  margin: 8px 0 8px 0;
  color: var(--fg);
}
.rm-d {
  font-size: 14.5px; color: var(--fg-2); line-height: 1.65;
  margin: 0;
}

/* ═══════ FAQ ═══════ */
.faq { padding: var(--pad-section) 0; }
.faq-list {
  display: flex; flex-direction: column;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 14px;
  width: 100%;
  text-align: start;
  padding: 24px 28px;
  background: transparent;
  align-items: center;
}
.faq-q:hover { background: var(--bg-2); }
.fq-num {
  font-family: var(--mono); font-size: 12px;
  color: var(--accent); letter-spacing: 0.12em;
}
.fq-text {
  font-family: var(--display); font-weight: 600;
  font-size: 17px; letter-spacing: -0.01em;
  color: var(--fg);
}
.fq-mark {
  font-family: var(--display); font-weight: 600;
  font-size: 22px;
  color: var(--muted);
  text-align: end;
  transition: 0.18s;
}
.faq-item.open .fq-mark { color: var(--accent); }
.faq-item.open .faq-q { background: var(--bg-2); }
.faq-a {
  padding: 0 28px 24px 28px;
  display: grid;
  grid-template-columns: 56px 1fr 32px;
  gap: 14px;
}
.faq-a p {
  grid-column: 2;
  margin: 0;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.7;
}

/* ═══════ inClass DEEP-DIVE MODAL ═══════ */
.ic-overlay {
  position: fixed; inset: 0;
  background: rgba(15, 30, 50, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 100;
  display: grid; place-items: center;
  padding: 24px;
  animation: ic-fade 0.18s ease-out;
}
@keyframes ic-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}
.ic-modal {
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px -20px rgba(15, 30, 50, 0.5);
  max-width: 920px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  position: relative;
  animation: ic-pop 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes ic-pop {
  from { opacity: 0; transform: scale(0.95) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.ic-close {
  position: absolute; top: 16px; inset-inline-end: 16px;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--fg);
  font-size: 22px;
  line-height: 1;
  display: grid; place-items: center;
  z-index: 2;
  transition: 0.15s;
}
.ic-close:hover { background: var(--bg-3); transform: scale(1.05); }

.ic-head { padding: 44px 48px 36px 48px; }
.ic-eyebrow {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.14em;
  text-transform: uppercase;
}
.ic-title {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 14px 0;
  color: var(--fg);
}
.ic-sub {
  font-size: 16px;
  color: var(--fg-2);
  line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}

.ic-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ic-pillar {
  background: var(--bg-1);
  padding: 28px 32px;
  display: flex; flex-direction: column; gap: 8px;
}
.ic-p-num {
  font-family: var(--mono); font-size: 11px;
  color: var(--accent); letter-spacing: 0.14em;
}
.ic-p-k {
  font-family: var(--display); font-weight: 600;
  font-size: 17px; letter-spacing: -0.01em;
  margin: 4px 0 4px 0;
}
.ic-p-d {
  font-size: 14px; color: var(--fg-2); line-height: 1.55;
  margin: 0;
}

.ic-features { padding: 36px 48px; }
.ic-features-h {
  font-family: var(--mono); font-size: 11px;
  color: var(--muted); letter-spacing: 0.14em;
  margin-bottom: 18px;
}
.ic-features-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}
.ic-features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.5;
}
.ic-features-list li svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.ic-foot {
  display: flex; justify-content: flex-end;
  gap: 10px;
  padding: 24px 48px 36px 48px;
  border-top: 1px solid var(--line);
}

/* ═══════ PRODUCT CARD — clickable variant ═══════ */
.prod-card.is-clickable {
  cursor: pointer;
  transition: 0.18s;
}
.prod-card.is-clickable:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-line);
}
.prod-card.is-clickable:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.prod-card .foot {
  justify-content: space-between;
}
.prod-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--display); font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  letter-spacing: -0.005em;
}
.prod-cta .arrow {
  transition: transform 0.18s;
}
html[dir="rtl"] .prod-cta .arrow { transform: scaleX(-1); }
.prod-card.is-clickable:hover .prod-cta .arrow { transform: translateX(3px); }
html[dir="rtl"] .prod-card.is-clickable:hover .prod-cta .arrow { transform: scaleX(-1) translateX(-3px); }

/* ═══════ MOBILE adjustments for new sections ═══════ */
@media (max-width: 1080px) {
  .nav-burger { display: flex; }
  .nav-mobile { display: flex; top: 60px; }
  .nav-links { display: none; }
}
@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr 1fr; }
  .bundle-tabs { grid-template-columns: 1fr 1fr; }
  .bundle-stage { grid-template-columns: 1fr; }
  .bundle-meta { border-inline-end: none; border-bottom: 1px solid var(--line); padding: 36px 32px; }
  .bundle-parts { padding: 36px 32px; }
  .cert-grid { grid-template-columns: 1fr 1fr; }
  .numbers .numbers-grid { grid-template-columns: 1fr 1fr; }
  .numbers .numbers-grid .cell { border-inline-start: 1px solid var(--line); }
  .numbers .numbers-grid .cell:nth-child(odd) { border-inline-start: none; }
  .numbers .numbers-grid .cell:nth-child(-n+2) { border-top: none; }
  .numbers .numbers-grid .cell:nth-child(n+3) { border-top: 1px solid var(--line); }
  .ic-pillars { grid-template-columns: 1fr; }
  .ic-features-list { grid-template-columns: 1fr; }
  .ic-head, .ic-features, .ic-foot { padding-inline: 32px; }
}
@media (max-width: 640px) {
  .nav-actions .nav-cta { display: none; }
  .lang-toggle { padding: 6px 10px; font-size: 11px; }

  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 28px 22px 32px 22px; }

  .bundle-tabs { grid-template-columns: 1fr; }
  .bundle-tab { padding: 16px 20px; }
  .bundle-meta, .bundle-parts { padding: 28px 22px; }
  .bm-title { font-size: 22px; }

  .cert-grid { grid-template-columns: 1fr; }

  .numbers .numbers-grid { grid-template-columns: 1fr; }
  .numbers .numbers-grid .cell { border-inline-start: none !important; border-top: 1px solid var(--line); padding: 28px 22px; }
  .numbers .numbers-grid .cell:first-child { border-top: none; }

  .rm-step { grid-template-columns: 40px 1fr; gap: 18px; padding-bottom: 28px; }
  .rm-body { padding: 18px 20px 20px 20px; }

  .faq-q { grid-template-columns: 40px 1fr 24px; gap: 10px; padding: 20px 22px; }
  .faq-a { grid-template-columns: 40px 1fr 24px; gap: 10px; padding: 0 22px 22px 22px; }
  .fq-text { font-size: 15px; }

  .ic-overlay { padding: 0; }
  .ic-modal { max-height: 100vh; border-radius: 0; }
  .ic-head { padding: 36px 22px 24px 22px; }
  .ic-pillar { padding: 22px 22px; }
  .ic-features { padding: 24px 22px; }
  .ic-foot { padding: 18px 22px 28px 22px; flex-direction: column-reverse; }
  .ic-foot .btn { width: 100%; justify-content: center; }
}
