/* ============================================================
   OPAL Distributor — Professional light theme
   Brand: navy #0a2a73  ·  orange #f5821f  ·  white
   ============================================================ */

:root {
  --bg: #ffffff;
  --bg-alt: #f4f7fc;
  --surface: #ffffff;
  --line: #e6ecf6;
  --line-strong: #d4deed;

  --text: #16203c;
  --heading: #0a1c44;
  --muted: #56678a;
  --muted-2: #8390ab;

  --navy: #233b6f;
  --navy-2: #2f4d8f;
  --navy-soft: #eef1f8;
  --accent: #f5821f;
  --accent-2: #ff9d3f;
  --accent-soft: #fff4e8;

  --grad: linear-gradient(120deg, #233b6f, #2f4d8f 60%, #3a5fb0);
  --grad-accent: linear-gradient(120deg, #f5821f, #ff9d3f);

  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 4px 16px rgba(10, 28, 68, 0.06);
  --shadow: 0 18px 44px -18px rgba(10, 28, 68, 0.16);
  --shadow-lg: 0 34px 70px -26px rgba(10, 28, 68, 0.22);

  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'Sora', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.is-loading { overflow: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(var(--container), 92%); margin-inline: auto; }

/* ---------- Typography ---------- */
.grad-text { color: var(--accent); }
.navy-text { color: var(--navy); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }

.section { padding: clamp(64px, 9vw, 120px) 0; position: relative; }
.section--alt { background: var(--bg-alt); }
.section__title {
  font-family: var(--font-display); font-weight: 800; color: var(--heading);
  font-size: clamp(1.8rem, 4vw, 2.9rem); line-height: 1.1; letter-spacing: -0.02em;
}
.section__head { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section__head .eyebrow { justify-content: center; }
.section__sub { color: var(--muted); margin-top: 16px; font-size: 1.05rem; }
p { color: var(--muted); }

/* ============================================================
   Loading screen — minimal: logo fades in on white, then out
   ============================================================ */
.loader {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: #ffffff;
  opacity: 1; transition: opacity .5s var(--ease);
}
.loader.is-done { opacity: 0; pointer-events: none; }
.loader__inner { display: flex; flex-direction: column; align-items: center; gap: 20px; animation: loaderIn .45s var(--ease) both; }
.loader__logo { width: min(300px, 64vw); height: auto; }

/* Logo draws itself, then fills (a clean, quick trace) */
.ld-ink, .ld-swoosh {
  fill: transparent;
  stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 1; stroke-dashoffset: 1;
}
.ld-ink { stroke: var(--navy); stroke-width: 11; }
.ld-swoosh { stroke: var(--accent); stroke-width: 16; }

.loader.is-playing .ld-ink { animation: draw 1.1s var(--ease) forwards, inkFill .4s ease 1s forwards; }
.loader.is-playing .ld-swoosh { animation: draw .7s var(--ease) .55s forwards, swooshFill .35s ease 1.1s forwards; }

/* Reduced motion: just show the filled logo */
.loader.is-quick .ld-ink { fill: var(--navy); stroke-width: 0; }
.loader.is-quick .ld-swoosh { fill: var(--accent); stroke-width: 0; }

@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes inkFill { to { fill: var(--navy); } }
@keyframes swooshFill { to { fill: var(--accent); } }
@keyframes loaderIn { from { opacity: 0; } to { opacity: 1; } }

.loader__cap {
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.34em; text-transform: uppercase; color: var(--muted-2);
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0%;
  background: var(--navy); z-index: 1000; transition: width .1s linear;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 0.96rem;
  padding: 14px 26px; border-radius: 100px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s;
}
.btn__arrow { transition: transform .35s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--primary { background: var(--navy); color: #fff; box-shadow: 0 14px 28px -12px rgba(10, 42, 115, 0.5); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(10, 42, 115, 0.6); background: var(--navy-2); }
.btn--accent { background: var(--accent); color: #fff; box-shadow: 0 14px 28px -12px rgba(245, 130, 31, 0.5); }
.btn--accent:hover { transform: translateY(-2px); background: var(--accent-2); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--navy-soft); transform: translateY(-2px); border-color: var(--navy); }
.btn--lg { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   Navbar
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  padding: 16px 0; transition: padding .35s var(--ease), background .35s, box-shadow .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 9px 0; background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px) saturate(140%); -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: var(--shadow-sm); border-bottom-color: var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }

.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 38px; width: auto; transition: height .35s var(--ease); }
.nav.is-scrolled .brand__logo { height: 32px; }

.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.92rem;
  color: var(--text); padding: 9px 14px; border-radius: 100px; transition: color .25s, background .25s;
  position: relative;
}
.nav__links a:not(.nav__cta)::after {
  content: ''; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--accent); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a.active:not(.nav__cta)::after { transform: scaleX(1); }
.nav__links a.active { color: var(--navy); }
.nav__cta { background: var(--accent) !important; color: #fff !important; font-weight: 600 !important; margin-left: 8px; box-shadow: 0 10px 22px -12px rgba(245, 130, 31, 0.7); }
.nav__cta:hover { background: var(--accent-2) !important; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: .3s var(--ease); }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 130px 0 80px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(80px); }
.blob--1 { width: 440px; height: 440px; background: rgba(26, 76, 192, 0.08); top: -140px; right: -100px; }
.blob--2 { width: 400px; height: 400px; background: rgba(245, 130, 31, 0.07); bottom: -170px; left: -110px; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(10,28,68,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(10,28,68,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 35%, #000 25%, transparent 78%);
}

.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.12fr .88fr; gap: 50px; align-items: center; }
.badge {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px; border-radius: 100px;
  background: var(--navy-soft); border: 1px solid var(--line); font-size: 0.82rem; font-weight: 600; color: var(--navy);
}
.badge__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.hero__title { font-family: var(--font-display); font-weight: 800; color: var(--heading); font-size: clamp(2.4rem, 5.6vw, 4.2rem); line-height: 1.05; letter-spacing: -0.03em; margin: 22px 0 20px; }
.hero__title span { display: block; }
.hero__lead { font-size: 1.15rem; max-width: 520px; color: var(--muted); }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 32px 0 44px; }
.hero__stats { display: flex; gap: 38px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat__num { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1; color: var(--navy); }
.stat__label { font-size: 0.82rem; color: var(--muted); margin-top: 6px; }

/* Hero visual card */
.hero__visual { display: flex; justify-content: center; }
.card3d { position: relative; width: 100%; max-width: 380px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow); }
.card3d__row { display: flex; gap: 8px; margin-bottom: 22px; }
.pill { font-size: 0.72rem; font-weight: 600; padding: 6px 12px; border-radius: 100px; background: var(--navy-soft); color: var(--navy); }
.pill--accent { background: var(--accent-soft); color: var(--accent); }
.card3d__metric { display: flex; flex-direction: column; margin-bottom: 22px; }
.card3d__metric-num { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; line-height: 1; color: var(--navy); }
.card3d__metric-label { color: var(--muted); font-size: 0.9rem; margin-top: 4px; }
.bars { display: flex; align-items: flex-end; gap: 10px; height: 90px; margin-bottom: 22px; }
.bars span { flex: 1; height: var(--h); background: var(--navy); border-radius: 4px 4px 0 0; }
.bars span:nth-child(even) { background: var(--accent); }
.card3d__footer { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: var(--muted); padding-top: 18px; border-top: 1px solid var(--line); }
.dot--live { width: 9px; height: 9px; border-radius: 50%; background: #1fbf75; }

/* ============================================================
   Page banner (sub-pages)
   ============================================================ */
.page-banner { position: relative; padding: 150px 0 56px; background: var(--bg-alt); border-bottom: 1px solid var(--line); overflow: hidden; }
.page-banner::before { content:''; position:absolute; width:6px; height:64px; border-radius:6px; background: var(--accent); top: 152px; left: calc((100% - min(var(--container), 92%)) / 2 - 0px); display: none; }
.page-banner__inner { position: relative; z-index: 1; }
.page-banner .eyebrow { color: var(--accent); }
.page-banner h1 { font-family: var(--font-display); font-weight: 800; color: var(--heading); font-size: clamp(2.1rem, 5vw, 3.4rem); line-height: 1.08; letter-spacing: -0.02em; }
.page-banner p { color: var(--muted); max-width: 560px; margin-top: 16px; font-size: 1.08rem; }
.crumbs { display: flex; gap: 8px; align-items: center; color: var(--muted-2); font-size: 0.85rem; margin-bottom: 18px; }
.crumbs a:hover { color: var(--navy); }
.crumbs span { color: var(--accent); }

/* ---------- Brand strip (static) ---------- */
.brand-strip { padding: 30px 0; border-block: 1px solid var(--line); background: var(--bg-alt); }
.brand-strip__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 18px 48px; }
.brand-strip__label { font-family: var(--font-display); font-size: 0.74rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.brand-strip span.b { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; color: var(--muted); }

/* ============================================================
   About
   ============================================================ */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.about__media { position: relative; }
.about__image {
  position: relative; aspect-ratio: 4/3.4; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg-alt); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.about__image .logo-mark { position: absolute; inset: 0; margin: auto; width: 56%; opacity: 1; }
.about__image::after { content:''; position:absolute; inset:0; background-image: linear-gradient(rgba(10,28,68,.04) 1px,transparent 1px), linear-gradient(90deg, rgba(10,28,68,.04) 1px, transparent 1px); background-size: 40px 40px; }
.about__badge { position: absolute; bottom: 22px; right: -18px; z-index: 2; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line); border-radius: 16px; padding: 16px 20px; display: flex; flex-direction: column; }
.about__badge-num { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--accent); line-height: 1; }
.about__badge-text { font-size: 0.78rem; color: var(--muted); max-width: 130px; }
.about__content p { margin-bottom: 16px; }
.about__list { margin-top: 24px; display: grid; gap: 12px; }
.about__list li { display: flex; align-items: center; gap: 12px; color: var(--text); font-weight: 500; }
.check { display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 0.8rem; flex-shrink: 0; }

/* ============================================================
   Cards (services / features)
   ============================================================ */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; overflow: hidden;
}
.card::after { content:''; position:absolute; left:0; top:0; height:3px; width:100%; background: var(--grad-accent); transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.card:hover::after { transform: scaleX(1); }
.card__icon { width: 56px; height: 56px; display: grid; place-items: center; font-size: 1.5rem; border-radius: 14px; background: var(--navy-soft); margin-bottom: 18px; }
.card h3 { font-family: var(--font-display); font-size: 1.18rem; color: var(--heading); margin-bottom: 10px; }
.card p { font-size: 0.95rem; }
.card__link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.card__link:hover { color: var(--accent); }

/* ============================================================
   Brands
   ============================================================ */
.brand-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.brand-tile { aspect-ratio: 1.5/1; display: grid; place-items: center; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); transition: transform .4s var(--ease), border-color .4s, box-shadow .4s; }
.brand-tile span { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--muted); transition: color .4s; }
.brand-tile:hover { transform: translateY(-3px); border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.brand-tile:hover span { color: var(--navy); }

/* ============================================================
   Products
   ============================================================ */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 44px; }
.filter {
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; cursor: pointer;
  padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line-strong); background: #fff; color: var(--muted);
  transition: all .3s var(--ease);
}
.filter:hover { border-color: var(--navy); color: var(--navy); }
.filter.is-active { background: var(--navy); border-color: var(--navy); color: #fff; }

.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.product {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s, opacity .4s;
}
.product:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow); }
.product.is-hidden { display: none; }
.product__thumb { position: relative; aspect-ratio: 1.25/1; display: grid; place-items: center; font-size: 3.4rem; background: var(--bg-alt); border-bottom: 1px solid var(--line); overflow: hidden; }
.product__thumb[data-emoji]::after { content: attr(data-emoji); }
.product__thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.product__tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-family: var(--font-display); font-size: 0.66rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; background: var(--navy); padding: 5px 10px; border-radius: 100px; }
.product__tag--accent { background: var(--accent); }
.product__body { padding: 20px; }
.product__brand { font-family: var(--font-display); font-size: 0.7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.product__body h3 { font-family: var(--font-display); font-size: 1.02rem; color: var(--heading); margin: 8px 0; }
.product__body p { font-size: 0.9rem; }

/* ---------- Partner sections (products page) ---------- */
.partner { scroll-margin-top: 90px; }
.partner + .partner { margin-top: clamp(56px, 8vw, 90px); }
.partner__head { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 2px solid var(--line); }
.partner__lead { max-width: 620px; }
.partner__name { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.5rem, 3vw, 2.1rem); color: var(--heading); line-height: 1.1; }
.partner__name span { color: var(--accent); }
.partner__cats { color: var(--muted); margin-top: 8px; font-size: 0.98rem; }
.partner__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.partner__stat { display: inline-flex; align-items: baseline; gap: 8px; background: var(--navy-soft); border: 1px solid var(--line); border-radius: 100px; padding: 8px 16px; }
.partner__stat b { font-family: var(--font-display); font-weight: 800; color: var(--navy); font-size: 1.1rem; }
.partner__stat span { font-size: 0.82rem; color: var(--muted); }
.chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: clamp(40px, 6vw, 64px); }
.chip { font-family: var(--font-display); font-weight: 600; font-size: 0.88rem; padding: 10px 20px; border-radius: 100px; border: 1.5px solid var(--line-strong); background: #fff; color: var(--navy); transition: all .3s var(--ease); }
.chip:hover { background: var(--navy); border-color: var(--navy); color: #fff; }

/* ---------- Partner cards (home) ---------- */
.partners-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pcard__links { display: flex; gap: 18px; margin-top: 14px; }
.pcard__links a { font-family: var(--font-display); font-weight: 600; font-size: 0.86rem; color: var(--navy); display: inline-flex; align-items: center; gap: 5px; }
.pcard__links a:hover { color: var(--accent); }
@media (max-width: 880px) { .partners-grid { grid-template-columns: 1fr; } }

/* ============================================================
   Network / map
   ============================================================ */
.network__grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.network__content > p { margin-bottom: 30px; }
.network__metrics { display: flex; gap: 36px; flex-wrap: wrap; }
.metric { display: flex; flex-direction: column; }
.metric__num { font-family: var(--font-display); font-weight: 800; font-size: 2.2rem; line-height: 1; color: var(--navy); }
.metric__label { font-size: 0.85rem; color: var(--muted); margin-top: 6px; }

.map { position: relative; aspect-ratio: 1/1; max-width: 420px; margin-inline: auto; width: 100%; background: var(--navy-soft); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map__hub { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; display: grid; place-items: center; padding: 12px 18px; border-radius: 14px; background: var(--navy); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.85rem; box-shadow: 0 14px 30px -10px rgba(10,42,115,.5); }
.map__pulse { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(245,130,31,.15); }
.map__pulse--1 { top: 22%; left: 18%; }
.map__pulse--2 { top: 28%; right: 16%; }
.map__pulse--3 { bottom: 20%; left: 20%; }
.map__pulse--4 { bottom: 24%; right: 20%; }
.map__lines { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.map__lines line { stroke: rgba(10,42,115,.22); stroke-width: 1.5; stroke-dasharray: 5 6; }

/* ============================================================
   Stats band
   ============================================================ */
.stats-band { background: var(--bg-alt); border-block: 1px solid var(--line); }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stats-band .metric__num { color: var(--navy); }
.stats-band .metric__num span { color: var(--accent); }
.stats-band .metric__label { color: var(--muted); }
.stats-band .metric { align-items: center; }

/* ============================================================
   Steps / process
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 24px; transition: transform .4s var(--ease), box-shadow .4s; }
.step:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: var(--grad); color: #fff; margin-bottom: 18px; }
.step h3 { font-family: var(--font-display); font-size: 1.1rem; color: var(--heading); margin-bottom: 8px; }
.step p { font-size: 0.92rem; }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { padding: 10px 0 clamp(64px,9vw,120px); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; background: var(--navy-soft); border: 1px solid var(--line); border-left: 4px solid var(--accent); border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px); position: relative; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3.4vw, 2.2rem); font-weight: 800; color: var(--heading); letter-spacing: -.02em; }
.cta-band p { margin-top: 8px; color: var(--muted); }

/* ============================================================
   Contact
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact__info > p { margin-bottom: 30px; max-width: 420px; }
.contact__list { display: grid; gap: 18px; }
.contact__list li { display: flex; align-items: center; gap: 16px; }
.contact__icon { width: 48px; height: 48px; display: grid; place-items: center; font-size: 1.2rem; border-radius: 14px; background: var(--navy-soft); color: var(--navy); flex-shrink: 0; }
.contact__k { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted-2); }
.contact__list a, .contact__list div span:last-child { font-family: var(--font-display); font-weight: 600; color: var(--heading); transition: color .25s; }
.contact__list a:hover { color: var(--accent); }

.contact__form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 4vw, 38px); box-shadow: var(--shadow); }
.field { position: relative; margin-bottom: 18px; }
.field input, .field textarea { width: 100%; background: var(--bg-alt); border: 1.5px solid var(--line); border-radius: 12px; padding: 16px; color: var(--text); font-family: var(--font-body); font-size: 0.98rem; resize: vertical; transition: border-color .25s, background .25s; }
.field textarea { min-height: 120px; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--navy); background: #fff; }
.field label { position: absolute; left: 14px; top: 16px; color: var(--muted-2); font-size: 0.98rem; pointer-events: none; transition: .2s var(--ease); padding: 0 6px; }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: -9px; left: 12px; font-size: 0.74rem; color: var(--navy); background: var(--surface); }
.form__note { margin-top: 14px; font-size: 0.9rem; text-align: center; min-height: 1.2em; }
.form__note.ok { color: #1a9d5e; }
.form__note.err { color: #d23b3b; }

.map-embed { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; filter: grayscale(.2); }

/* ============================================================
   Footer
   ============================================================ */
.footer { background: var(--bg-alt); color: var(--muted); padding: 60px 0 26px; border-top: 1px solid var(--line); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__logo { height: 38px; width: auto; margin-bottom: 16px; }
.footer__brand p { max-width: 320px; font-size: 0.92rem; color: var(--muted); }
.footer__col h4 { font-family: var(--font-display); font-size: 0.95rem; color: var(--heading); margin-bottom: 16px; }
.footer__col a, .footer__col span { display: block; color: var(--muted); font-size: 0.92rem; margin-bottom: 10px; transition: color .25s; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted-2); font-size: 0.85rem; }

/* ---------- To top ---------- */
.to-top { position: fixed; bottom: 26px; right: 26px; z-index: 800; width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--navy); color: #fff; font-size: 1.3rem; font-weight: 700; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(20px); transition: .4s var(--ease); }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--accent); }

/* ============================================================
   Scroll reveal animations
   ============================================================ */
/* Minimal: a quiet fade-in only — no sliding or zoom.
   Hidden ONLY when JS is active (html.js), so if JS fails to run the
   content stays fully visible instead of a blank page. */
.js [data-reveal],
.js [data-reveal="left"],
.js [data-reveal="right"],
.js [data-reveal="zoom"] { opacity: 0; transition: opacity .5s ease; }
.js [data-reveal].is-in { opacity: 1; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 360px; margin-inline: auto; }
  .about__grid, .network__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__badge { right: 22px; }
  .cards, .cards--2 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .nav__links { position: fixed; inset: 0 0 0 auto; width: min(80%, 320px); flex-direction: column; align-items: stretch; background: #fff; box-shadow: -20px 0 60px rgba(10,28,68,.15); padding: 100px 24px 40px; gap: 6px; transform: translateX(100%); transition: transform .4s var(--ease); }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links a { padding: 14px 16px; font-size: 1rem; }
  .nav__links a:not(.nav__cta)::after { display: none; }
  .nav__cta { margin: 8px 0 0; text-align: center; justify-content: center; }
  .nav__toggle { display: flex; z-index: 950; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .cards, .cards--2, .steps, .footer__grid, .product-grid { grid-template-columns: 1fr; }
  .brand-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 22px; }
  .footer__bottom { flex-direction: column; }
}

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