/* EDS Distribution — Landing Styles (v2 light + brand) */

:root {
  /* Brand palette from EDS-Guide */
  --bg: #F2F0EA;            /* warm cream — primary background */
  --bg-2: #FBFAF6;          /* lighter cream */
  --bg-card: #FFFFFF;
  --ink: #0A0A0A;           /* black */
  --ink-2: #4A4A4A;
  --ink-3: #8B887E;
  --line: #C9C5BB;          /* soft rules — default */
  --line-strong: #1A1A1A;   /* used sparingly on key dividers */
  --line-2: #E2DFD7;         /* very soft rules */
  --acid: #A0FF3D;          /* RAL 6018 / Pantone 3507C */
  --acid-ink: #0A1500;
  --blue: #1F3A8B;          /* RAL 5005 */
  --blue-deep: #0E1F4A;
  --sky: #BFD5E8;           /* RAL 5024 */
  --warn: #C76A00;

  --max: 1480px;
  --pad: clamp(16px, 3vw, 48px);
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Code", Menlo, monospace;
  --sans: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 14.5px;
  line-height: 1.5;
  letter-spacing: 0.005em;
}

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

::selection { background: var(--acid); color: var(--acid-ink); }

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  position: relative;
}

.section-head {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 64px 0 36px;
  align-items: start;
}
@media (max-width: 800px) { .section-head { grid-template-columns: 1fr; gap: 12px; padding: 40px 0 20px; } }

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-3);
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--ink);
  display: inline-block;
}
.section-title {
  font-size: clamp(28px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
  text-wrap: balance;
  font-family: var(--mono);
}
.section-title em {
  font-style: normal;
  background: var(--acid);
  color: var(--acid-ink);
  padding: 0 0.12em;
}
.section-title .blue {
  color: var(--blue);
}

/* ---------- Brand decorative patterns ---------- */
.stripes-band {
  height: 64px;
  background-image: repeating-linear-gradient(135deg, var(--ink) 0 16px, transparent 16px 32px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stripes-band.tall { height: 96px; }
.stripes-band.lime {
  background-image: repeating-linear-gradient(135deg, var(--acid) 0 16px, transparent 16px 32px);
}
.stripes-band.blue {
  background-image: repeating-linear-gradient(135deg, var(--blue) 0 16px, transparent 16px 32px);
}

.cross-grid {
  background-image:
    linear-gradient(to right, var(--ink-3) 1px, transparent 1px),
    linear-gradient(to bottom, var(--ink-3) 1px, transparent 1px);
  background-size: 12px 12px, 12px 12px;
  background-position: -1px -1px;
  -webkit-mask-image: radial-gradient(circle, #000 1px, transparent 1.3px);
          mask-image: radial-gradient(circle, #000 1px, transparent 1.3px);
  -webkit-mask-size: 28px 28px;
          mask-size: 28px 28px;
  /* simpler: use radial dots */
}
/* simpler cross-dot grid */
.dots-grid {
  background-image: radial-gradient(circle, rgba(10,10,10,0.18) 1px, transparent 1.6px);
  background-size: 28px 28px;
  background-position: 0 0;
}

/* ---------- Header / Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(242, 240, 234, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
body { padding-top: 72px; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo img {
  height: 36px;
  width: auto;
}
.brand-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  border-left: 1px solid var(--line);
  padding-left: 12px;
  line-height: 1.2;
  display: flex; flex-direction: column;
}
.brand-tag b { color: var(--ink); font-weight: 600; }
@media (max-width: 720px) { .brand-tag { display: none; } }

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-2);
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); border-bottom: 1px solid var(--acid); padding-bottom: 2px; }
@media (max-width: 980px) { .nav-links { display: none; } }
.nav-cta {
  display: flex; gap: 8px; align-items: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 46px;
  padding: 0 20px;
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  transition: all .15s ease;
  border-radius: 0;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn.primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn.primary:hover { background: var(--acid); color: var(--acid-ink); border-color: var(--acid); }
.btn.lime {
  background: var(--acid);
  color: var(--acid-ink);
  border-color: var(--acid);
}
.btn.lime:hover { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.btn.sm { height: 38px; padding: 0 14px; font-size: 10.5px; }
.btn.icon::after { content: "↗"; font-weight: 700; }
.btn.ghost { border-color: var(--line-2); color: var(--ink-2); }
.btn.ghost:hover { color: var(--ink); border-color: var(--ink); background: transparent; }

/* ---------- Ticker ---------- */
.ticker {
  background: var(--acid);
  color: var(--acid-ink);
  height: 44px;
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.ticker.blue {
  background: var(--blue);
  color: #fff;
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  animation: ticker 70s linear infinite;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ticker-track span { padding: 0 28px; display: inline-flex; align-items: center; gap: 28px; }
.ticker-track span::after {
  content: "✦";
  font-size: 11px;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 5vw, 80px) 0 0;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: 0; left: 0; height: 100%;
  background-image: radial-gradient(circle, rgba(10,10,10,0.06) 1px, transparent 1.4px);
  background-size: 26px 26px;
  pointer-events: none;
  z-index: 0;
}
.hero > * { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  align-items: stretch;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-left {
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding-bottom: 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--ink);
  padding: 10px 14px;
  margin-bottom: 32px;
  background: var(--bg-2);
  align-self: flex-start;
  font-weight: 600;
}
.hero-eyebrow .dot {
  width: 9px; height: 9px; background: var(--acid);
  position: relative;
  border: 1px solid var(--ink);
}
.hero-eyebrow .dot::before {
  content: ""; position: absolute; inset: -4px;
  border: 1px solid var(--ink);
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.5); opacity: 0; }
}

.hero h1 {
  font-size: clamp(32px, 4.4vw, 72px);
  line-height: 0.94;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-transform: uppercase;
  font-weight: 700;
  text-wrap: balance;
  color: var(--ink);
}
.hero h1 em {
  font-style: normal;
  display: inline-block;
  background: var(--acid);
  color: var(--acid-ink);
  padding: 0 0.1em;
  border: 1px solid var(--ink);
}
.hero h1 .blue { color: var(--blue); }
.hero-sub {
  color: var(--ink-2);
  font-size: clamp(13px, 1.1vw, 16px);
  line-height: 1.6;
  max-width: 58ch;
  margin: 0 0 36px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-photo {
  position: relative;
  background: var(--blue-deep);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 540px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.hero-photo .photo-meta {
  position: absolute;
  left: 16px; top: 16px;
  background: var(--bg);
  border: 1px solid var(--ink);
  padding: 8px 12px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  display: flex; gap: 10px; align-items: center;
}
.hero-photo .photo-meta::before {
  content: ""; width: 8px; height: 8px; background: var(--acid); border: 1px solid var(--ink);
}
.hero-photo .photo-stamp {
  position: absolute;
  right: 16px; bottom: 16px;
  background: var(--acid);
  color: var(--acid-ink);
  border: 1px solid var(--ink);
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  max-width: 240px;
  text-align: right;
}

/* hero brand icons row */
.hero-icons {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-icons .b-ic {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: var(--bg-2);
}
.hero-icons .b-ic svg { width: 18px; height: 18px; }
.hero-icons-cap {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

/* ---------- Hero photo ---------- */
.hero-photo {
  position: relative;
  background: var(--blue-deep);
  overflow: hidden;
  min-height: 540px;
  display: flex;
  align-items: stretch;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}
.hero-photo-stamp {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--acid);
  color: var(--acid-ink);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  z-index: 2;
}

@media (max-width: 980px) {
  .hero-photo { min-height: 360px; margin-top: 24px; }
}

.hero-icons-fix-anchor {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-icons .b-ic {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: var(--bg-2);
}
.hero-icons .b-ic svg { width: 18px; height: 18px; }
.hero-icons-cap {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
}

/* hero quick facts grid */
.hero-facts {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
}
@media (max-width: 800px) { .hero-facts { grid-template-columns: repeat(2, 1fr); } }
.hero-facts > div {
  padding: 20px 0;
  padding-right: 20px;
}
.hero-facts .k { font-size: 10px; text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-3); margin-bottom: 8px; }
.hero-facts .v { font-size: 15px; font-weight: 600; color: var(--ink); }
.hero-facts .v small { display: block; font-weight: 400; color: var(--ink-2); margin-top: 4px; font-size: 12px; }

/* ---------- Stats strip ---------- */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--bg-2);
}
@media (max-width: 800px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 36px var(--pad);
  border-right: 1px solid var(--line-2);
  position: relative;
  background-image: radial-gradient(circle, rgba(10,10,10,0.08) 1px, transparent 1.3px);
  background-size: 22px 22px;
  background-position: 0 0;
}
.stat:last-child { border-right: 0; }
@media (max-width: 800px) {
  .stat:nth-child(2n) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-2); }
}
.stat .num {
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.03em;
}
.stat .num small { color: var(--blue); font-size: 0.48em; vertical-align: super; font-weight: 600; margin-left: 4px; }
.stat .lbl {
  margin-top: 14px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  max-width: 30ch;
  font-weight: 500;
}

/* ---------- Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .features { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }

.feature {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px;
  min-height: 260px;
  display: flex; flex-direction: column;
  gap: 14px;
  position: relative;
  background: var(--bg-2);
  transition: background .15s ease;
}
.feature:hover { background: #fff; }
.feature .top {
  display: flex; justify-content: space-between; align-items: center;
}
.feature .idx {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  font-weight: 600;
}
.feature .ic {
  width: 44px; height: 44px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  background: var(--bg);
}
.feature .ic svg { width: 22px; height: 22px; color: var(--ink); }
.feature:hover .ic { background: var(--acid); }
.feature h3 {
  font-size: 19px;
  margin: 8px 0 0;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-wrap: balance;
  text-transform: uppercase;
  line-height: 1.1;
}
.feature p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}
.feature .tag {
  margin-top: auto;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--acid);
  align-self: flex-start;
  padding: 4px 8px;
  border: 1px solid var(--line);
  font-weight: 600;
}

/* ---------- Catalog / categories ---------- */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  padding-bottom: 0;
}
@media (max-width: 900px) { .categories { grid-template-columns: 1fr; } }

.category {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
  display: flex; flex-direction: column;
  background: var(--bg-card);
  position: relative;
}
.category .cat-img {
  aspect-ratio: 4/3;
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.category .cat-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.category .cat-img .tag {
  position: absolute;
  left: 12px; top: 12px;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.category .cat-img .stock-pill {
  position: absolute;
  right: 12px; top: 12px;
  background: var(--acid);
  color: var(--acid-ink);
  border: 1px solid var(--line);
  padding: 6px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.category .cat-body {
  padding: 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  flex: 1;
}
.category .cat-head {
  display: flex; justify-content: space-between; align-items: baseline;
}
.category h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.category .cat-sub {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.category ul {
  margin: 0; padding: 0;
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
  color: var(--ink-2);
}
.category ul li {
  display: flex; gap: 10px; align-items: baseline;
  padding-bottom: 8px;
  border-bottom: 1px dashed var(--line-2);
}
.category ul li:last-child { border-bottom: 0; }
.category ul li::before { content: "+"; color: var(--blue); font-weight: 700; }
.category .cat-foot {
  margin-top: auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Pricing table ---------- */
.pricing {
  border: 1px solid var(--line);
  background: var(--bg-card);
  overflow-x: auto;
  position: relative;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}
.pricing::-webkit-scrollbar { height: 10px; }
.pricing::-webkit-scrollbar-thumb { background: var(--ink); }
.pricing::-webkit-scrollbar-track { background: var(--line-2); }

.pricing table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 680px;
  table-layout: auto;
}
.pricing th, .pricing td {
  text-align: left;
  padding: 12px 12px;
  border-bottom: 1px solid var(--line-2);
  border-right: 1px solid var(--line-2);
  vertical-align: middle;
}
.pricing th:last-child, .pricing td:last-child { border-right: 0; }
.pricing th {
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.pricing td.name { color: var(--ink); font-weight: 500; font-size: 12.5px; }
.pricing td.spec { color: var(--ink-2); font-size: 11.5px; }
.pricing td.price { color: var(--ink); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pricing td.price.ttc { color: var(--blue); }
.pricing td.stock { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; white-space: nowrap; }
.pricing td.stock.in { color: #1B6C2E; }
.pricing td.stock.in::before { content: "● "; }
.pricing td.stock.eta { color: var(--warn); }
.pricing td.stock.eta::before { content: "◐ "; }
.pricing tr:hover td { background: var(--bg); }
.pricing tr.cat-row td {
  background: var(--blue);
  color: var(--bg);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  padding: 10px 12px;
  font-weight: 700;
  border-right: 0;
}
.pricing .badge {
  display: inline-block;
  font-size: 9px;
  padding: 2px 6px;
  background: var(--acid);
  color: var(--acid-ink);
  letter-spacing: 0.1em;
  margin-left: 6px;
  font-weight: 700;
  border: 1px solid var(--ink);
  vertical-align: middle;
}

.pricing-hint {
  display: none;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 8px 0;
  align-items: center;
  gap: 8px;
}
.pricing-hint::before { content: "⇆"; font-size: 14px; color: var(--blue); }
@media (max-width: 980px) {
  .pricing-hint { display: inline-flex; }
}

/* Card view on narrow screens — pretty-print rows */
@media (max-width: 640px) {
  .pricing { border: 0; background: transparent; overflow: visible; }
  .pricing table, .pricing thead, .pricing tbody, .pricing tr, .pricing td, .pricing th { display: block; min-width: 0; }
  .pricing thead { display: none; }
  .pricing tr.cat-row td {
    margin: 16px 0 0;
    padding: 10px 14px;
  }
  .pricing tbody tr:not(.cat-row) {
    border: 1px solid var(--line);
    background: var(--bg-card);
    margin-bottom: 0;
    border-bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .pricing tbody tr:not(.cat-row):last-of-type { border-bottom: 1px solid var(--line); }
  .pricing tbody tr:not(.cat-row) td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--line-2);
    border-right: 1px solid var(--line-2);
  }
  .pricing tbody tr:not(.cat-row) td.name {
    grid-column: 1 / -1;
    font-weight: 700;
    background: var(--bg-2);
    border-right: 0;
  }
  .pricing tbody tr:not(.cat-row) td.spec:nth-of-type(2) {
    grid-column: 1 / -1;
    border-right: 0;
  }
  .pricing td::before {
    content: attr(data-label);
    display: block;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-3);
    font-weight: 600;
    margin-bottom: 4px;
  }
  .pricing td.name::before, .pricing tr.cat-row td::before { content: none; }
}

.price-note {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 0;
  margin-top: 24px;
  margin-bottom: 48px;
  border: 1px solid var(--line);
  background: var(--bg-2);
}
@media (max-width: 720px) { .price-note { grid-template-columns: 1fr; } }
.price-note > div {
  padding: 18px 20px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--ink-2);
  border-right: 1px solid var(--line-2);
}
.price-note > div:last-child { border-right: 0; }
@media (max-width: 720px) { .price-note > div { border-right: 0; border-bottom: 1px solid var(--line-2); } }
.price-note strong { color: var(--ink); display: block; margin-bottom: 6px; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Warehouse Dnipro ---------- */
.warehouse {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  padding: 0;
  align-items: stretch;
  border: 1px solid var(--line);
}
@media (max-width: 980px) { .warehouse { grid-template-columns: 1fr; } }
.warehouse-photo {
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-right: 1px solid var(--line);
}
@media (max-width: 980px) { .warehouse-photo { border-right: 0; border-bottom: 1px solid var(--line); aspect-ratio: 4/3; min-height: 0; } }
.warehouse-photo img {
  width: 100%; height: 100%; object-fit: cover;
  position: absolute; inset: 0;
}
.warehouse-photo .stamp {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--acid);
  color: var(--acid-ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 12px;
  border: 1px solid var(--ink);
  text-transform: uppercase;
}
.warehouse-content {
  padding: 36px;
  display: flex; flex-direction: column;
  gap: 14px;
  background: var(--bg-card);
}
.warehouse-content h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin: 0 0 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.warehouse-content h2 em { font-style: normal; background: var(--acid); color: var(--acid-ink); padding: 0 0.08em; border: 1px solid var(--ink); }
.warehouse-content > p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 4px;
  max-width: 46ch;
}
.warehouse-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex; flex-direction: column;
}
.warehouse-list li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-2);
  align-items: baseline;
}
.warehouse-list li:last-child { border-bottom: 0; }
.warehouse-list .n {
  color: var(--ink-3);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  font-weight: 600;
}
.warehouse-list .t { font-size: 13.5px; }
.warehouse-list .t small { display: block; color: var(--ink-3); font-size: 11.5px; margin-top: 3px; }
.warehouse-list .v {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- Process steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
@media (max-width: 900px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process { grid-template-columns: 1fr; } }

.step {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px;
  min-height: 220px;
  display: flex; flex-direction: column; gap: 14px;
  background: var(--bg-2);
  position: relative;
}
.step .n {
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
}
.step .n::after {
  content: "";
  width: 32px; height: 2px; background: var(--ink);
}
.step h4 {
  margin: 0;
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 700;
  line-height: 1.15;
}
.step p {
  margin: 0;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------- Brands strip ---------- */
.brands {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-card);
}
@media (max-width: 800px) { .brands { grid-template-columns: repeat(2, 1fr); } }
.brand-cell {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px 24px;
  display: flex; flex-direction: column;
  gap: 16px;
  min-height: 180px;
  justify-content: space-between;
}
.brand-cell:nth-child(4n) { border-right: 0; }
@media (max-width: 800px) {
  .brand-cell { border-right: 1px solid var(--line); }
  .brand-cell:nth-child(2n) { border-right: 0; }
}
.brand-cell .logo {
  height: 36px;
  display: flex; align-items: center;
}
.brand-cell .logo img { height: 100%; width: auto; object-fit: contain; max-width: 160px; }
.brand-cell .logo span { font-weight: 700; letter-spacing: 0.02em; font-size: 22px; color: var(--ink); }
.brand-cell .b-meta {
  font-size: 11.5px;
  color: var(--ink-2);
  letter-spacing: 0.06em;
}
.brand-cell .b-role { font-size: 13px; color: var(--ink); margin-bottom: 8px; }
.brand-cell .b-since {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.brand-cell .b-since::before { content: "●"; color: var(--acid); text-shadow: 0 0 0 var(--ink); }

/* ---------- Audience ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  margin-bottom: 48px;
}
@media (max-width: 800px) { .audience { grid-template-columns: 1fr; } }
.audience-card {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 32px;
  background: var(--bg-2);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 220px;
}
.audience-card .a-num {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  font-weight: 600;
}
.audience-card h3 {
  margin: 0; font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 700;
  line-height: 1.1;
}
.audience-card p { margin: 0; color: var(--ink-2); font-size: 13.5px; line-height: 1.6; }
.audience-card .terms {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: auto;
}
.audience-card .terms span {
  border: 1px solid var(--ink);
  padding: 5px 10px;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--bg);
  font-weight: 600;
}

/* ---------- About — dark band ---------- */
.about-band {
  background: var(--ink);
  color: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.about-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1.4px);
  background-size: 30px 30px;
  pointer-events: none;
}
.about-band .section-label { color: rgba(255,255,255,0.5); }
.about-band .section-label::before { background: var(--acid); }
.about-band .section-title { color: #fff; }
.about-band .section-title em { background: var(--acid); color: var(--acid-ink); border: 1px solid #fff; }

.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: 64px;
  align-items: start;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) { .about { grid-template-columns: 1fr; } }
.about-quote {
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  text-wrap: balance;
  color: #fff;
}
.about-quote em { font-style: normal; background: var(--acid); color: var(--acid-ink); padding: 0 0.1em; }
.about-text {
  display: flex; flex-direction: column; gap: 16px;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.7;
}
.about-text p { margin: 0; }

.about-tags {
  display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px;
}
.about-tags span {
  border: 1px solid rgba(255,255,255,0.3);
  padding: 6px 12px;
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
}

/* ---------- FAQ ---------- */
.faq {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0;
}
.faq details {
  border-bottom: 1px solid var(--line-2);
  padding: 22px var(--pad);
  background: var(--bg-card);
}
.faq details:last-child { border-bottom: 0; }
.faq details[open] { background: var(--bg-2); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: -0.005em;
  font-weight: 700;
  gap: 16px;
  text-wrap: balance;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 28px;
  color: var(--blue);
  font-weight: 400;
  transition: transform .2s ease;
  line-height: 0.8;
  flex-shrink: 0;
}
.faq details[open] summary::after { content: "−"; color: var(--ink); }
.faq .answer {
  margin-top: 14px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.7;
  max-width: 88ch;
}
.faq-wrap {
  border: 1px solid var(--line);
}

/* ---------- Contact ---------- */
.contact-band {
  background: var(--ink);
  color: var(--bg);
  border-top: 1px solid var(--line);
}
.contact-band .section-label { color: rgba(255,255,255,0.5); }
.contact-band .section-label::before { background: var(--acid); }
.contact-band .section-title { color: #fff; }
.contact-band .section-title em { background: var(--acid); color: var(--acid-ink); border: 1px solid #fff; }

.contact {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: 80px;
}
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }
.contact-info p { color: rgba(255,255,255,0.72); font-size: 14px; line-height: 1.7; margin: 0 0 24px; max-width: 44ch; }
.contact-direct {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding-top: 20px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-direct .row {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  font-size: 13px;
  align-items: baseline;
}
.contact-direct .row .k {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.contact-direct .row .v { color: #fff; }
.contact-direct .row .v a:hover { color: var(--acid); }
.contact-direct .row .v small { display: block; color: rgba(255,255,255,0.5); margin-top: 4px; font-size: 11.5px; }
.contact-direct .row .v.muted { color: rgba(255,255,255,0.45); font-style: italic; font-size: 12px; }

/* form on dark background */
.form {
  border: 1px solid rgba(255,255,255,0.22);
  padding: 32px;
  background: rgba(255,255,255,0.03);
  display: flex; flex-direction: column;
  gap: 16px;
}
.form-title {
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600;
}
.form-title::after {
  content: "● ОНЛАЙН";
  font-size: 10px;
  color: var(--acid);
  font-weight: 700;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .field-row { grid-template-columns: 1fr; } }
.field label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.field label .req { color: var(--acid); margin-left: 4px; }
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.22);
  color: #fff;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  border-radius: 0;
  outline: none;
  transition: border-color .15s ease;
  width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.3); }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--acid); }
.field select { color-scheme: dark; }
.field textarea { resize: vertical; min-height: 100px; }
.field.error input, .field.error select, .field.error textarea { border-color: #FF7B7B; }
.field .err {
  font-size: 11px;
  color: #FFB3B3;
  letter-spacing: 0.04em;
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid rgba(255,255,255,0.22);
  padding: 8px 14px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: transparent;
  color: rgba(255,255,255,0.78);
  cursor: pointer;
  transition: all .15s ease;
  font-family: inherit;
  font-weight: 500;
}
.chip:hover { border-color: #fff; color: #fff; }
.chip.on {
  background: var(--acid);
  color: var(--acid-ink);
  border-color: var(--acid);
  font-weight: 700;
}

.consent {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.02em;
  line-height: 1.5;
}
.consent input { margin-top: 2px; accent-color: var(--acid); }
.consent a { color: rgba(255,255,255,0.85); text-decoration: underline; text-underline-offset: 3px; }

.form-submit {
  margin-top: 8px;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.form-submit .note { font-size: 10.5px; color: rgba(255,255,255,0.5); letter-spacing: 0.06em; text-transform: uppercase; }

.form-success {
  background: var(--acid);
  color: var(--acid-ink);
  padding: 32px;
  display: flex; flex-direction: column; gap: 14px;
  border: 1px solid #fff;
}
.form-success h3 { margin: 0; font-size: 24px; text-transform: uppercase; font-weight: 700; }
.form-success p { margin: 0; font-size: 14px; line-height: 1.6; }
.form-success .ref { font-weight: 700; background: var(--ink); color: var(--acid); padding: 2px 8px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 0;
  background: var(--blue-deep);
  color: rgba(255,255,255,0.78);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer h5 {
  margin: 0 0 16px;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; font-size: 13px; }
.footer ul a:hover { color: var(--acid); }
.footer-brand { display: flex; flex-direction: column; gap: 16px; align-self: start; padding-top: 4px; }
.footer-brand img { height: 56px; width: auto; }
.footer-brand p { margin: 0; font-size: 13px; line-height: 1.6; max-width: 38ch; }
.footer-meta {
  border-top: 1px solid rgba(255,255,255,0.18);
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Floating CTA ---------- */
.fab {
  position: fixed;
  right: 24px; bottom: 24px;
  background: var(--acid);
  color: var(--acid-ink);
  padding: 16px 22px;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 36px rgba(160, 255, 61, 0.45), 0 0 0 1px var(--ink);
  z-index: 30;
  cursor: pointer;
  border: 1px solid var(--ink);
  font-family: inherit;
}
.fab:hover { background: var(--ink); color: var(--acid); }
.fab::before {
  content: ""; width: 8px; height: 8px;
  background: var(--acid-ink); border-radius: 50%;
  animation: pulse2 1.6s ease-in-out infinite;
}
.fab:hover::before { background: var(--acid); }
@keyframes pulse2 {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.5); opacity: 0.5; }
}
@media (max-width: 600px) { .fab { right: 12px; bottom: 12px; padding: 13px 16px; font-size: 11px; } }

/* ---------- Burger button ---------- */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
  padding: 9px 8px;
  flex-shrink: 0;
  margin-left: 4px;
}
.burger span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.22s ease, opacity 0.22s ease;
  transform-origin: center;
}
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 980px) { .burger { display: flex; } }

/* ---------- Mobile menu ---------- */
.mob-menu {
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.mob-menu > a {
  display: block;
  padding: 15px var(--pad);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: var(--ink-2);
  border-bottom: 1px solid var(--line-2);
  transition: color 0.12s;
}
.mob-menu > a:hover { color: var(--ink); }
.mob-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px var(--pad);
}
.mob-menu-cta .btn {
  width: 100%;
  justify-content: center;
  height: 48px;
}

/* ===== MOBILE OPTIMIZATION ===== */

/* Nav — hide phone button on very small screens */
@media (max-width: 480px) {
  .nav-inner { height: 60px; }
  .nav-cta .btn:not(.primary) { display: none; }
  body { padding-top: 60px; }
}

/* Hero section — compact layout for phones */
@media (max-width: 640px) {
  .hero { padding: 20px 0 0; }
  .hero-eyebrow { margin-bottom: 18px; padding: 8px 12px; font-size: 9.5px; }
  .hero-left { padding-bottom: 20px; }
  .hero h1 { margin-bottom: 16px; }
  .hero-sub { margin-bottom: 20px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; text-align: center; }
  .hero-photo { min-height: 240px; }
  .hero-icons { gap: 10px; margin-top: 16px; }
  .hero-facts { margin-top: 20px; }
  .hero-facts > div { padding: 14px 0; padding-right: 12px; }
  .hero-facts .v { font-size: 13px; }
}

/* Stats strip on very small screens */
@media (max-width: 480px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}

/* Brands — 2 per row on small phones (already 2 at 800px, keep it) */
@media (max-width: 480px) {
  .brands { grid-template-columns: repeat(2, 1fr); }
}

/* Footer — single column on small phones */
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer { padding: 36px 0 0; }
  .footer-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* Sections — reduce vertical padding on mobile */
@media (max-width: 600px) {
  .section-head { padding: 32px 0 16px; }
  .section-title { font-size: clamp(24px, 7vw, 40px); }
}
