/* ============================================================
   UMANGO — multi-page corporate site
   Aesthetic: refined enterprise. Deep navy structure + bursts of
   brand chroma. Bold serif moments, technical sans body.
   ============================================================ */

/* -------------------- Fonts -------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600&family=JetBrains+Mono:wght@400;500&family=Manrope:wght@300..800&display=swap');

/* -------------------- Tokens -------------------- */
:root {
  /* Surface */
  --ink: #0A1426;            /* deep navy ink */
  --ink-2: #11203B;          /* lifted ink */
  --ink-3: #1A2D4D;          /* line ink */
  --paper: #FAF8F3;          /* warm off-white */
  --paper-2: #F2EEE5;        /* slightly darker paper */
  --rule: #E6E0D2;           /* hairline rule on paper */

  /* Text */
  --text: #0A1426;
  --text-soft: #4A5567;
  --text-mute: #828C9A;
  --text-on-ink: #F4EFE3;
  --text-on-ink-soft: #A9B4C5;

  /* Brand chroma — derived from the flower logo */
  --c-red: #E84738;
  --c-orange: #F37423;
  --c-yellow: #F4C026;
  --c-green: #6DBE3A;
  --c-teal: #1E8FA8;
  --c-blue: #2B7AE0;
  --c-indigo: #2E4FB0;
  --c-magenta: #E2487A;

  /* Geometry */
  --max: 1240px;
  --gutter: 28px;
  --radius-s: 6px;
  --radius-m: 14px;
  --radius-l: 22px;

  /* Type */
  --f-display: 'Inter', system-ui, -apple-system, sans-serif;
  --f-serif: 'Inter', system-ui, -apple-system, sans-serif;
  --f-body: 'Manrope', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* -------------------- Type -------------------- */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: -0.018em;
  color: var(--text);
  margin: 0 0 0.4em;
  line-height: 1.08;
  font-feature-settings: "ss01", "cv11";
}

h1 { font-size: clamp(2.6rem, 5.6vw, 5rem); font-weight: 700; letter-spacing: -0.028em; line-height: 1.04; }
h2 { font-size: clamp(2rem, 3.6vw, 3.2rem); letter-spacing: -0.022em; }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); letter-spacing: -0.015em; }
h4 { font-size: 1.15rem; letter-spacing: -0.01em; }

p { margin: 0 0 1em; color: var(--text-soft); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--c-orange);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: currentColor;
}

.serif-em { font-style: italic; font-weight: 500; letter-spacing: -0.01em; }

/* -------------------- Layout primitives -------------------- */
.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: clamp(70px, 9vw, 130px) 0; position: relative; }
.section--tight { padding: clamp(50px, 6vw, 90px) 0; }
.section--ink { background: var(--ink); color: var(--text-on-ink); }
.section--ink h1, .section--ink h2, .section--ink h3, .section--ink h4 { color: var(--text-on-ink); }
.section--ink p { color: var(--text-on-ink-soft); }
.section--paper-2 { background: var(--paper-2); }

/* -------------------- Top bar / nav -------------------- */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 20, 38, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px var(--gutter);
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  height: 36px;
}
.brand img { height: 32px; width: auto; }

.nav {
  display: flex;
  gap: 6px;
  align-items: center;
}
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-ink-soft);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
}
.nav a:hover { color: var(--text-on-ink); }
.nav a.is-active {
  color: var(--text-on-ink);
  background: rgba(255,255,255,0.08);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  color: var(--text-on-ink);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 22px; height: 22px; }

@media (max-width: 900px) {
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-cta .btn--ghost { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--ink);
    padding: 14px var(--gutter) 22px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 4px;
  }
  .nav.is-open a {
    width: 100%;
    padding: 12px 14px;
  }
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  transition: transform .15s ease, box-shadow .2s ease, background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; }
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--c-orange);
  color: #fff;
  box-shadow: 0 8px 22px -10px rgba(243,116,35,0.6);
}
.btn--primary:hover { background: #de631a; box-shadow: 0 12px 28px -10px rgba(243,116,35,0.8); }

.btn--dark {
  background: var(--ink);
  color: var(--text-on-ink);
}
.btn--dark:hover { background: #182d4f; }

.btn--ghost {
  color: var(--text-on-ink);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn--ghost:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.35); }

.btn--outline {
  color: var(--text);
  border: 1px solid var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--text-on-ink); }

.btn--lg { padding: 16px 28px; font-size: 1rem; }
.btn--sm { padding: 9px 16px; font-size: 0.85rem; }

/* -------------------- Hero (home) -------------------- */
.hero {
  position: relative;
  padding: clamp(70px, 9vw, 130px) 0 clamp(50px, 6vw, 90px);
  background: var(--ink);
  color: var(--text-on-ink);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 85% 30%, rgba(43,122,224,0.18), transparent 60%),
    radial-gradient(600px 380px at 10% 90%, rgba(243,116,35,0.14), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.hero__text {
  max-width: 580px;
  margin-bottom: 0;
}
@media (max-width: 980px) {
  .hero__text { max-width: 880px; }
}

.hero__visual {
  position: relative;
  width: 100%;
}
@media (max-width: 980px) {
  .hero__visual {
    max-width: 920px;
    margin: 0 auto;
  }
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
.hero h1 .accent { color: var(--c-orange); }
.hero h1 .accent-2 { color: var(--c-green); }
.hero h1 .accent-3 { color: var(--c-blue); }
.hero h1 .accent-4 { color: var(--c-magenta); }
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--text-on-ink-soft);
}

.hero p.lead {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  color: var(--text-on-ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero__meta {
  display: flex;
  gap: 24px 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__meta > div { min-width: 0; }
.hero__meta dd { white-space: nowrap; }
.hero__meta dt {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-on-ink-soft);
  margin-bottom: 4px;
}
.hero__meta dd {
  font-family: var(--f-display);
  font-size: 1.4rem;
  margin: 0;
  color: var(--text-on-ink);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.hero__visual-card {
  background: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 40px 70px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.06);
  transform: rotate(-1deg);
  width: 100%;
}
.hero__visual-card img { width: 100%; height: auto; display: block; }

.hero__visual-tag {
  position: absolute;
  top: 10px;
  right: -8px;
  background: var(--c-orange);
  color: #fff;
  padding: 8px 14px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 6px;
  transform: rotate(3deg);
  z-index: 3;
}

/* -------------------- Page hero (inner pages) -------------------- */
.page-hero {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: clamp(90px, 11vw, 150px) 0 clamp(60px, 7vw, 100px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 400px at 70% 20%, rgba(43,122,224,0.16), transparent 60%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; max-width: 820px; }
.page-hero h1 {
  color: var(--text-on-ink);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  margin-top: 14px;
  font-weight: 600;
}
.page-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--c-orange);
}
.page-hero p.lead {
  font-size: clamp(1.05rem, 1.2vw, 1.2rem);
  color: var(--text-on-ink-soft);
  margin-top: 22px;
  max-width: 640px;
}

/* -------------------- Section heads -------------------- */
.section-head {
  max-width: 740px;
  margin-bottom: 54px;
}
.section-head h2 { margin-bottom: 16px; }
.section-head p { font-size: 1.1rem; color: var(--text-soft); }

.section-head--center { text-align: center; margin-left: auto; margin-right: auto; }

/* -------------------- Cards / Grids -------------------- */
.grid { display: grid; gap: 24px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 30px 28px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px -28px rgba(10,20,38,0.4);
}
.card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--text-on-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { margin: 0; font-size: 0.97rem; }

/* Color variants for card icons */
.card__icon--red { background: var(--c-red); }
.card__icon--orange { background: var(--c-orange); }
.card__icon--yellow { background: var(--c-yellow); color: var(--ink); }
.card__icon--green { background: var(--c-green); }
.card__icon--blue { background: var(--c-blue); }
.card__icon--teal { background: var(--c-teal); }
.card__icon--indigo { background: var(--c-indigo); }
.card__icon--magenta { background: var(--c-magenta); }

/* -------------------- Source pills -------------------- */
.pills { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--text-on-ink);
  font-size: 0.88rem;
  font-weight: 500;
}
.pill--paper { background: #fff; border-color: var(--rule); color: var(--text); }
.pill svg { width: 14px; height: 14px; }

/* -------------------- Feature row (alternating) -------------------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  margin-bottom: clamp(60px, 9vw, 110px);
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--reverse .feature-row__copy { order: 2; }
@media (max-width: 900px) {
  .feature-row, .feature-row--reverse { grid-template-columns: 1fr; gap: 40px; }
  .feature-row--reverse .feature-row__copy { order: 0; }
}
.feature-row__visual {
  background: var(--ink);
  border-radius: var(--radius-l);
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.feature-row__visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(500px 260px at 30% 0%, rgba(43,122,224,0.18), transparent 60%);
}
.feature-row__visual img {
  position: relative;
  border-radius: 10px;
  box-shadow: 0 24px 60px -25px rgba(0,0,0,0.6);
  width: 100%;
}
.feature-row__visual-label {
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-ink-soft);
  background: rgba(0,0,0,0.5);
  padding: 6px 10px;
  border-radius: 4px;
  z-index: 2;
}

.feature-row__copy h2 { margin-bottom: 18px; }
.feature-row__copy ul {
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}
.feature-row__copy ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 1rem;
}
.feature-row__copy ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 2px;
  background: var(--c-orange);
}

/* -------------------- Pipeline (process strip) -------------------- */
.pipeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 900px) { .pipeline { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 500px) { .pipeline { grid-template-columns: repeat(2, 1fr); } }

.pipeline__step {
  background: var(--ink-2);
  border: 1px solid var(--ink-3);
  border-radius: 12px;
  padding: 22px 18px;
  position: relative;
}
.pipeline__num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  color: var(--c-orange);
  display: block;
  margin-bottom: 8px;
}
.pipeline__step h4 {
  color: var(--text-on-ink);
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--f-display);
  letter-spacing: -0.01em;
}
.pipeline__step p {
  color: var(--text-on-ink-soft);
  font-size: 0.85rem;
  margin: 6px 0 0;
  line-height: 1.45;
}

/* -------------------- Deploy options (3 columns) -------------------- */
.deploy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .deploy-grid { grid-template-columns: 1fr; } }

.deploy-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: var(--radius-m);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
}
.deploy-card--featured {
  background: var(--ink);
  color: var(--text-on-ink);
  border-color: var(--ink);
}
.deploy-card--featured h3, .deploy-card--featured ul li { color: var(--text-on-ink); }
.deploy-card--featured p { color: var(--text-on-ink-soft); }
.deploy-card__tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--c-orange);
  color: #fff;
}
.deploy-card h3 { margin-bottom: 6px; }
.deploy-card__sub {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 18px;
}
.deploy-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 28px;
}
.deploy-card ul li {
  padding: 10px 0;
  border-top: 1px solid var(--rule);
  font-size: 0.93rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.deploy-card--featured ul li { border-color: rgba(255,255,255,0.1); }
.deploy-card ul li::before {
  content: '✓';
  color: var(--c-green);
  font-weight: 700;
  flex-shrink: 0;
}

/* -------------------- Stats strip -------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (max-width: 700px) { .stats { grid-template-columns: 1fr; } }
.stats__cell {
  padding: 36px 28px;
  border-right: 1px solid var(--rule);
}
.stats__cell:last-child { border-right: none; }
@media (max-width: 700px) {
  .stats__cell { border-right: none; border-bottom: 1px solid var(--rule); }
  .stats__cell:last-child { border-bottom: none; }
}
.stats__num {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--ink);
}
.stats__num span { color: var(--c-orange); }
.stats__label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

/* -------------------- Connectors strip -------------------- */
.connectors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.connector {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text-on-ink);
  font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.connector:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(243, 116, 35, 0.4);
}
.connector__logo {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
}
.connector__icon {
  width: 16px;
  height: 16px;
  color: var(--c-orange);
  flex-shrink: 0;
}
.connector--more {
  font-style: italic;
  color: var(--text-on-ink-soft);
  background: transparent;
  border-style: dashed;
  padding-left: 18px;
}

/* -------------------- Buy / pricing tracks -------------------- */
.buy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 900px) { .buy-grid { grid-template-columns: 1fr; } }
.buy-card {
  background: #fff;
  border-radius: var(--radius-l);
  overflow: hidden;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
}
.buy-card--accent { border-color: var(--c-orange); }
.buy-card__head {
  padding: 36px 36px 0;
}
.buy-card__head-tag {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 14px;
}
.buy-card--alt .buy-card__head-tag { color: var(--c-blue); }
.buy-card__head h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.buy-card__body {
  padding: 8px 36px 36px;
  flex-grow: 1;
}
.buy-card__body p { font-size: 1rem; }
.buy-card__body ul {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
}
.buy-card__body ul li {
  padding: 10px 0;
  border-top: 1px dashed var(--rule);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
}
.buy-card__body ul li::before {
  content: '→';
  color: var(--c-orange);
  font-weight: 700;
}
.buy-card--alt .buy-card__body ul li::before { color: var(--c-blue); }
.buy-card__foot {
  padding: 24px 36px;
  background: var(--paper-2);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.buy-card__foot p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-mute);
}
/* -------------------- Buy card · bonus sections -------------------- */
.buy-bonus {
  margin-top: 26px;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid;
}
.buy-bonus--orange {
  background: rgba(243, 116, 35, 0.06);
  border-color: rgba(243, 116, 35, 0.2);
}
.buy-bonus--blue {
  background: rgba(45, 122, 224, 0.06);
  border-color: rgba(45, 122, 224, 0.2);
}

.buy-bonus__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
}
.buy-bonus__label::before {
  content: '';
  width: 22px;
  height: 1px;
  background: currentColor;
}
.buy-bonus--orange .buy-bonus__label { color: var(--c-orange); }
.buy-bonus--blue   .buy-bonus__label { color: var(--c-blue); }

.buy-bonus__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}
.buy-bonus__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 0;
  border: none;
  background: none;
}
.buy-bonus__list li::before,
.buy-bonus__list li::marker {
  content: none !important;
  display: none !important;
}

.buy-bonus__chip {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 6px;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  margin-top: 1px;
}
.buy-bonus--orange .buy-bonus__chip { background: var(--c-orange); }
.buy-bonus--blue   .buy-bonus__chip { background: var(--c-blue); }
.buy-bonus__chip svg { width: 12px; height: 12px; }

.buy-bonus__title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: block;
}
.buy-bonus__desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  display: block;
  margin-top: 2px;
}
/* -------------------- Use-case cards -------------------- */
.uc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .uc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .uc-grid { grid-template-columns: 1fr; } }

.uc-card {
  background: #fff;
  border-radius: var(--radius-m);
  border: 1px solid var(--rule);
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, border-color .2s;
}
.uc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -25px rgba(10,20,38,0.35);
  border-color: var(--ink);
}
.uc-card__num {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--c-orange);
  margin-bottom: 16px;
}
.uc-card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.uc-card p { margin: 0; font-size: 0.94rem; line-height: 1.55; }
.uc-card__tags {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.uc-card__tags span {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-mute);
  padding: 3px 8px;
  background: var(--paper-2);
  border-radius: 4px;
}

/* -------------------- Contact / Form -------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }

.contact-info {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: 40px;
  border-radius: var(--radius-l);
}
.contact-info h3 { color: var(--text-on-ink); margin-bottom: 22px; }
.contact-info dt {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 6px;
  margin-top: 22px;
}
.contact-info dt:first-of-type { margin-top: 0; }
.contact-info dd {
  margin: 0;
  font-size: 1rem;
  color: var(--text-on-ink);
}
.contact-info dd a { color: var(--text-on-ink); border-bottom: 1px solid rgba(255,255,255,0.2); transition: border-color .2s; }
.contact-info dd a:hover { border-color: var(--c-orange); }

.form { background: #fff; border: 1px solid var(--rule); border-radius: var(--radius-l); padding: 40px; }

.form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
  margin-top: 18px;
}
.form .row:first-child { margin-top: 0; }
.form .row > label { margin-top: 0; }
@media (max-width: 600px) {
  .form .row { grid-template-columns: 1fr; }
  .form .row > label + label { margin-top: 18px; }
}

.form label {
  display: block;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
  margin-top: 18px;
}
.form > label:first-child { margin-top: 0; }

.form input,
.form select,
.form textarea {
  width: 100%;
  font: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: 8px;
  background: var(--paper);
  color: var(--text);
  transition: border-color .15s;
  box-sizing: border-box;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #fff;
}
.form textarea { resize: vertical; min-height: 120px; }

.form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='1 1 6 6 11 1'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}

/* -------------------- Footer -------------------- */
.footer {
  background: var(--ink);
  color: var(--text-on-ink-soft);
  padding: 70px 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 800px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer__inner { grid-template-columns: 1fr; } }

.footer__brand img { height: 30px; margin-bottom: 18px; }
.footer__brand p { color: var(--text-on-ink-soft); max-width: 320px; font-size: 0.92rem; }
.footer h5 {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-on-ink);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a {
  color: var(--text-on-ink-soft);
  font-size: 0.93rem;
  transition: color .15s;
}
.footer ul a:hover { color: var(--c-orange); }
.footer__bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.83rem;
  color: var(--text-on-ink-soft);
}

/* -------------------- Logo (multicolor flower SVG inline) -------------------- */
.flower {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

/* -------------------- Decorative chroma bar -------------------- */
.chroma-bar {
  display: flex;
  height: 6px;
  width: 100%;
}
.chroma-bar > div { flex: 1; }
.chroma-bar > :nth-child(1) { background: var(--c-red); }
.chroma-bar > :nth-child(2) { background: var(--c-orange); }
.chroma-bar > :nth-child(3) { background: var(--c-yellow); }
.chroma-bar > :nth-child(4) { background: var(--c-green); }
.chroma-bar > :nth-child(5) { background: var(--c-teal); }
.chroma-bar > :nth-child(6) { background: var(--c-blue); }
.chroma-bar > :nth-child(7) { background: var(--c-indigo); }
.chroma-bar > :nth-child(8) { background: var(--c-magenta); }

/* -------------------- Quote / testimonial -------------------- */
.quote-block {
  border-left: 3px solid var(--c-orange);
  padding: 8px 0 8px 28px;
  margin: 30px 0;
}
.quote-block p {
  font-family: var(--f-serif);
  font-size: 1.6rem;
  line-height: 1.3;
  font-style: italic;
  color: var(--text);
  margin: 0 0 14px;
}
.quote-block cite {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.quote-block--dark p { color: var(--text-on-ink); }
.quote-block--dark cite { color: var(--text-on-ink-soft); }

/* -------------------- CTA strip -------------------- */
.cta-strip {
  background: var(--ink);
  color: var(--text-on-ink);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 280px at 80% 30%, rgba(243,116,35,0.18), transparent 60%),
    radial-gradient(500px 280px at 20% 80%, rgba(43,122,224,0.16), transparent 60%);
}
.cta-strip__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 800px) { .cta-strip__inner { grid-template-columns: 1fr; } }
.cta-strip h2 { color: var(--text-on-ink); margin-bottom: 12px; }
.cta-strip p { color: var(--text-on-ink-soft); margin: 0; max-width: 540px; }
.cta-strip__ctas { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta-strip__ctas { justify-content: flex-start; } }

/* -------------------- About sections -------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 70px;
  align-items: start;
}
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; gap: 40px; } }

.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 600px) { .values { grid-template-columns: 1fr; } }
.value-card {
  padding: 28px 24px;
  background: #fff;
  border-top: 3px solid var(--c-orange);
  border-radius: 0 0 var(--radius-m) var(--radius-m);
  border-bottom: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.value-card:nth-child(2) { border-top-color: var(--c-blue); }
.value-card:nth-child(3) { border-top-color: var(--c-green); }
.value-card:nth-child(4) { border-top-color: var(--c-magenta); }
.value-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: 0.93rem; margin: 0; }

/* -------------------- Partners marquee -------------------- */
.partners {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  justify-content: center;
  margin-top: 30px;
}
.partners span {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--text-mute);
  letter-spacing: -0.01em;
  padding: 8px 4px;
}

/* -------------------- Small text utility -------------------- */
.small { font-size: 0.88rem; color: var(--text-mute); }
.tac { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-l { margin-top: 36px; }

/* -------------------- Reveal animation (subtle, on load) -------------------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { animation: rise 0.9s cubic-bezier(0.16, 1, 0.3, 1) both; }
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.15s; }
.reveal-3 { animation-delay: 0.25s; }
.reveal-4 { animation-delay: 0.35s; }
.reveal-5 { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* -------------------- Video block -------------------- */
.section--video { padding-top: clamp(60px, 7vw, 110px); padding-bottom: clamp(60px, 7vw, 110px); }
.video-intro { max-width: 720px; margin: 0 auto 44px; }
.video-intro h2 { color: var(--text-on-ink); }
.video-intro h2 em { font-style: italic; font-weight: 500; color: var(--c-orange); }
.video-intro p { color: var(--text-on-ink-soft); margin: 0 auto; max-width: 580px; }

.video-card {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-thumb {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: #000;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0.85;
}
.video-thumb:hover img { transform: scale(1.03); opacity: 1; }

.video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-play::before {
  content: '';
  position: absolute;
  width: 88px;
  height: 88px;
  background: var(--c-orange);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(232,71,56,0.45), 0 0 0 6px rgba(255,255,255,0.08);
  transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-thumb:hover .video-play::before { transform: scale(1.08); }
.video-thumb:focus-visible .video-play::before { transform: scale(1.08); outline: 2px solid #fff; outline-offset: 4px; }
.video-play svg {
  position: relative;
  z-index: 2;
  color: #fff;
  margin-left: 5px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.25));
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* -------------------- Panel figure (illustrative product image with caption) -------------------- */
.panel-figure {
  position: relative;
  padding: 24px;
  background: linear-gradient(135deg, rgba(45, 122, 224, 0.04), rgba(243, 116, 35, 0.04));
  border: 1px solid var(--rule);
  border-radius: var(--radius-l);
  overflow: hidden;
}
.panel-figure::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(10, 20, 38, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 20, 38, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 80%);
}
.panel-figure img {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
}
.panel-figure figcaption {
  position: relative;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--rule);
  font-family: var(--f-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.55;
  color: var(--text-mute);
}

/* -------------------- Global network section -------------------- */
.network-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 60px;
}
@media (max-width: 760px) {
  .network-stats { grid-template-columns: repeat(2, 1fr); }
}
.network-stat {
  padding: 36px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.network-stat:last-child { border-right: none; }
@media (max-width: 760px) {
  .network-stat:nth-child(2) { border-right: none; }
  .network-stat:nth-child(1), .network-stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.network-stat__num {
  font-family: var(--f-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--text-on-ink);
  letter-spacing: -0.025em;
  line-height: 1;
  margin-bottom: 12px;
}
.network-stat__num span {
  color: var(--c-orange);
  margin-left: 2px;
}
.network-stat__label {
  font-family: var(--f-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-on-ink-soft);
}

.network-map {
  position: relative;
  width: 100%;
  border-radius: var(--radius-l);
  overflow: hidden;
  margin-bottom: 60px;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(45, 122, 224, 0.08), transparent 60%),
    radial-gradient(ellipse at 70% 60%, rgba(243, 116, 35, 0.05), transparent 60%),
    rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 8px;
}
.network-map svg {
  display: block;
  width: 100%;
  height: auto;
}
.network-map__legend {
  position: absolute;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(10, 20, 38, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-on-ink-soft);
  text-transform: none;
}
@media (max-width: 600px) {
  .network-map__legend {
    position: static;
    margin: 12px;
  }
}
.network-map__legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.network-map__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.network-map__dot--hq {
  background: #F37423;
  box-shadow: 0 0 0 3px rgba(243, 116, 35, 0.25);
}
.network-map__dot--major { background: #F37423; }
.network-map__dot--minor { background: #F4C026; width: 6px; height: 6px; }

.city--hq .city__pulse {
  transform-origin: center;
  animation: hq-pulse 2.4s ease-out infinite;
}
.city--hq .city__ring {
  transform-origin: center;
  animation: hq-ring 2.4s ease-out infinite;
}
@keyframes hq-pulse {
  0%   { opacity: 0.9; transform: scale(0.6); }
  100% { opacity: 0; transform: scale(2.6); }
}
@keyframes hq-ring {
  0%   { opacity: 0.7; r: 4; }
  100% { opacity: 0; r: 14; }
}
@media (prefers-reduced-motion: reduce) {
  .city--hq .city__pulse, .city--hq .city__ring,
  .network-map__pulses circle animate { animation: none; }
}

/* -------------------- Region tabs & distributor cards -------------------- */
.region-tabs {
  margin-top: 0;
}
.region-tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0;
}
.region-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 0;
  padding: 16px 22px;
  cursor: pointer;
  color: var(--text-on-ink-soft);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.18s, border-color 0.18s;
}
.region-tab:hover {
  color: var(--text-on-ink);
}
.region-tab.is-active {
  color: var(--text-on-ink);
  border-bottom-color: var(--c-orange);
}
.region-tab__num {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  color: var(--c-yellow);
  letter-spacing: 0.14em;
}
.region-tab.is-active .region-tab__num {
  color: var(--c-orange);
}
@media (max-width: 600px) {
  .region-tab { padding: 12px 14px; font-size: 0.86rem; }
  .region-tab__num { display: none; }
}

.region-panel {
  display: none;
  animation: region-fade 0.3s ease-out;
}
.region-panel.is-active {
  display: block;
}
@keyframes region-fade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.region-panel__intro {
  margin-bottom: 28px;
  max-width: 760px;
}
.region-panel__intro h3 {
  color: var(--text-on-ink);
  margin: 0 0 10px;
  font-size: 1.5rem;
}
.region-panel__intro p {
  color: var(--text-on-ink-soft);
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0;
}

.distributor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 880px) {
  .distributor-grid { grid-template-columns: 1fr; }
}
.distributor {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: background 0.2s, border-color 0.2s;
}
.distributor:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(243, 116, 35, 0.25);
}
.distributor__head {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.distributor__country {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-yellow);
  display: block;
  margin-bottom: 8px;
}
.distributor__name {
  margin: 0;
  font-size: 1.2rem;
  color: var(--text-on-ink);
  letter-spacing: -0.01em;
}
.distributor__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  flex-grow: 1;
}
@media (max-width: 500px) {
  .distributor__body { grid-template-columns: 1fr; gap: 18px; }
}
.distributor__col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.distributor__col-label {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  margin-bottom: 4px;
}
.distributor__line {
  display: block;
  color: var(--text-on-ink);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
  border-bottom: 1px solid transparent;
  align-self: flex-start;
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.distributor__line:hover {
  color: var(--c-orange);
  border-bottom-color: rgba(243, 116, 35, 0.4);
}
.distributor__line--web {
  font-family: var(--f-mono);
  font-size: 0.85rem;
  color: var(--c-orange);
}
.distributor--empty .distributor__body {
  grid-template-columns: 1fr;
  display: flex;
  flex-direction: column;
}

/* -------------------- Partner logos -------------------- */
.partner-logos {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 32px;
  max-width: 1100px;
}

.partner-logos li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 calc(20% - 32px);
  height: 96px;
  padding: 16px 12px;
  border-radius: var(--radius-m, 10px);
  background: transparent;
  transition: background 0.25s ease;
}
@media (max-width: 900px) {
  .partner-logos li { flex: 0 0 calc(33.333% - 32px); }
}
@media (max-width: 540px) {
  .partner-logos li { flex: 0 0 calc(50% - 32px); }
}
.partner-logos li:hover {
  background: rgba(10, 20, 38, 0.03);
}

.partner-logos img {
  max-width: 100%;
  max-height: 52px;
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.45;
  filter: saturate(0.7);
  transition: opacity 0.25s ease, filter 0.25s ease;
}
.partner-logos li:hover img {
  opacity: 1;
  filter: saturate(1.15);
}

.partner-logos__fallback {
  font-family: var(--f-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-mute);
  letter-spacing: -0.01em;
  text-align: center;
}