/* GRETEX — дизайн-система сайту.
   Один файл на весь сайт. Кольори СТРОГО з логотипу: #05104E (синій) + #64B500 (лист) +
   нейтральні відтінки. Інших кольорів на сайті немає — це рішення, не недогляд.
   Правило: змінив цей файл — підніми ?v=N в усіх .html, інакше у відвідувачів лишиться кеш. */

:root {
  --night: #05104E;
  --night-2: #0A1A63;
  --night-deep: #030B33;
  --leaf: #64B500;
  --leaf-2: #57A000;   /* hover: темніше, а не яскравіше */
  --leaf-dim: #4E8F00;
  --paper: #F6F7F4;
  --white: #fff;
  --ink: #101426;
  --muted: #5A6274;
  --muted-2: #8A92A5;
  --line: #DEE3EA;
  --line-dark: rgba(255, 255, 255, .14);

  --shell: 1240px;
  --r: 14px;
  --r-lg: 22px;

  --font-display: "Wix Madefor Display", "Trebuchet MS", sans-serif;
  --font-body: "Commissioner", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --shadow-sm: 0 1px 2px rgba(5, 16, 78, .06), 0 4px 14px rgba(5, 16, 78, .07);
  --shadow-md: 0 2px 6px rgba(5, 16, 78, .07), 0 14px 38px rgba(5, 16, 78, .11);
  --shadow-lift: 0 4px 10px rgba(5, 16, 78, .09), 0 22px 54px rgba(5, 16, 78, .16);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 5.4vw, 4.05rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.75rem); }
h3 { font-size: clamp(1.15rem, 1.9vw, 1.45rem); letter-spacing: -.01em; }

p { margin: 0 0 1.1em; }

.shell { width: min(100% - 40px, var(--shell)); margin-inline: auto; }
.sec { padding: clamp(58px, 8vw, 108px) 0; }
.sec--tight { padding: clamp(42px, 5vw, 66px) 0; }
.sec--paper { background: var(--paper); }
.sec--night { background: var(--night); color: #EEF1F8; }
.sec--night h2, .sec--night h3 { color: var(--white); }

.lead { font-size: clamp(1.02rem, 1.5vw, 1.2rem); color: var(--muted); max-width: 62ch; }
.sec--night .lead { color: #B9C2DC; }

/* — надпис-мітка над заголовком: моно, як маркування на мішку — */
.eyebrow {
  font-family: var(--font-mono);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--leaf-dim);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--leaf); }
.sec--night .eyebrow { color: #9CCB5E; }

.center { text-align: center; }
.center .eyebrow { justify-content: center; }
.center .lead { margin-inline: auto; }

/* ─────────── кнопки ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.btn:active { transform: scale(.975); }
.btn:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; }

.btn--leaf { background: var(--leaf); color: var(--white); }
.btn--leaf:hover { background: var(--leaf-2); }

.btn--night { background: var(--night); color: var(--white); }
.btn--night:hover { background: var(--night-2); }

.btn--ghost { background: transparent; color: var(--white); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .32); }
.btn--ghost:hover { background: rgba(255, 255, 255, .1); box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .6); }

.btn--ghost-dark { background: transparent; color: var(--night); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost-dark:hover { background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--night); }

.btn--wide { width: 100%; }

/* ─────────── шапка ───────────
   Біла — щоб лого стояло в оригінальних кольорах (синій + зелений), без перефарбування. */
.hdr {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.hdr__in { display: flex; align-items: center; gap: 22px; height: 74px; }
.hdr__logo { flex: 0 0 auto; }
.hdr__logo img { height: 36px; width: auto; }
.hdr__nav { display: flex; gap: 4px; margin-left: auto; }
.hdr__nav a {
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .95rem;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .16s ease, color .16s ease;
}
.hdr__nav a:hover { background: var(--paper); color: var(--night); }
.hdr__nav a[aria-current="page"] { color: var(--night); background: var(--paper); box-shadow: inset 0 -2px 0 var(--leaf); border-radius: 10px 10px 4px 4px; }
.hdr__nav a:focus-visible { outline: 2px solid var(--leaf); outline-offset: 2px; }
.hdr__tel {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: .95rem;
  color: var(--night);
  text-decoration: none;
  white-space: nowrap;
  padding: 9px 16px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1.5px var(--line);
  transition: background-color .16s ease, box-shadow .16s ease;
}
.hdr__tel:hover { background: var(--paper); box-shadow: inset 0 0 0 1.5px var(--night); }
.burger {
  display: none;
  margin-left: auto;
  width: 44px; height: 44px;
  border: 0;
  border-radius: 12px;
  background: var(--paper);
  color: var(--night);
  font-size: 1.35rem;
  cursor: pointer;
}
.mnav { display: none; }

/* ─────────── hero ─────────── */
/* Фонове фото поля + синій градієнт зліва, щоб текст читався. Фото: img/hero-field.jpg */
.hero {
  position: relative;
  background: var(--night-deep);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-position: center 62%;
  background-size: cover;
  background-repeat: no-repeat;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 11, 51, .93) 0%, rgba(3, 11, 51, .78) 38%, rgba(3, 11, 51, .28) 72%, rgba(3, 11, 51, .15) 100%),
    linear-gradient(0deg, rgba(3, 11, 51, .55) 0%, transparent 34%);
}
.hero__in {
  position: relative;
  z-index: 1;
  max-width: 640px;
  padding: clamp(72px, 11vw, 148px) 0 clamp(80px, 12vw, 160px);
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero h1 .accent { color: var(--leaf); }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.24rem); color: #D3DAEC; max-width: 52ch; margin-bottom: 30px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero .eyebrow { color: #9CCB5E; }

/* внутрішні сторінки без фото — просто синя плашка */
.hero--flat { background: linear-gradient(155deg, var(--night-deep) 0%, var(--night) 70%); }
.hero--flat .hero__in { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; padding: clamp(56px, 8vw, 104px) 0; }

/* ─────────── сигнатура: формульний блок NPK ─────────── */
.formula {
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: 26px;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lift);
}
.formula__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9FAAC9;
  margin-bottom: 18px;
}
.formula__npk { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.npk {
  background: rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 16px 10px 13px;
  text-align: center;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .22);
}
.npk__sym { font-family: var(--font-mono); font-size: .78rem; color: #A8B3D2; letter-spacing: .06em; }
.npk__val { font-family: var(--font-mono); font-weight: 700; font-size: clamp(1.8rem, 3.4vw, 2.5rem); line-height: 1.05; color: var(--white); }
.npk__unit { font-family: var(--font-mono); font-size: .7rem; color: #8E9AB9; }

/* мезо/мікро — плитки як у таблиці елементів; стримано, без зеленої заливки */
.elems { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 16px; }
.elem {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 46px;
  padding: 7px 8px 6px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  font-family: var(--font-mono);
  line-height: 1.15;
}
.elem b { font-size: .92rem; font-weight: 700; color: #E8ECF6; }
.elem span { font-size: .66rem; color: #9AA4C0; }
.formula__foot {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid var(--line-dark);
  font-size: .88rem;
  color: #AEB8D4;
}

/* світлий варіант формульного блоку — для карток каталогу */
.formula--light { background: var(--paper); border-color: var(--line); box-shadow: none; backdrop-filter: none; }
.formula--light .formula__head { color: var(--muted); }
.formula--light .npk { background: var(--white); box-shadow: inset 0 2px 0 var(--night); }
.formula--light .npk__sym, .formula--light .npk__unit { color: var(--muted); }
.formula--light .npk__val { color: var(--night); }
.formula--light .elem { background: var(--white); border-color: var(--line); }
.formula--light .elem b { color: var(--night); }
.formula--light .elem span { color: var(--muted); }
.formula--light .formula__foot { border-top-color: var(--line); color: var(--muted); }

/* ─────────── фото ─────────── */
.photo {
  width: 100%;
  height: auto; /* інакше діє атрибут height="…" і вертикальні фото розтягуються */
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}
.photo--wide { aspect-ratio: 21 / 9; }   /* широка смуга під текстом */
.photo--tall { aspect-ratio: 4 / 5; }    /* вертикальне у колонці */
@media (max-width: 860px) {
  .photo--wide { aspect-ratio: 16 / 10; }
  .photo--tall { aspect-ratio: 4 / 3; }
}

/* ─────────── карусель фото ─────────── */
.carousel { position: relative; }
.carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track .photo {
  flex: 0 0 auto;
  width: min(46%, 540px);
  aspect-ratio: 3 / 2;
  scroll-snap-align: start;
}
.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--night);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.carousel__btn:hover { background: var(--night); color: var(--white); }
.carousel__btn svg { width: 20px; height: 20px; }
.carousel__btn--prev { left: -14px; }
.carousel__btn--next { right: -14px; }
@media (max-width: 860px) {
  .carousel__track .photo { width: 80%; }
  .carousel__btn { display: none; } /* на телефоні — свайп */
}

/* ─────────── схема логістики: завод → регіони ─────────── */
.route {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  background: rgba(255, 255, 255, .05);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 34px);
}
.route__from, .route__to { display: grid; gap: 6px; }
.route__label {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8E9AB9;
}
.route__from b { font-family: var(--font-display); font-size: 1.25rem; color: var(--white); }
.route__from > span:last-child, .route__to > span:last-child { font-size: .9rem; color: #AEB8D4; }
.route__arrow { display: grid; justify-items: center; gap: 8px; color: var(--leaf); min-width: 130px; }
.route__arrow svg { width: 100%; max-width: 220px; height: 24px; }
.route__arrow span { font-family: var(--font-mono); font-size: .7rem; color: #8E9AB9; letter-spacing: .06em; }
.route__regs { display: flex; flex-wrap: wrap; gap: 7px; }
.route__regs span {
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, .08);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 6px 11px;
}
@media (max-width: 860px) {
  .route { grid-template-columns: 1fr; gap: 18px; }
  .route__arrow { justify-items: start; }
  .route__arrow svg { transform: rotate(90deg); max-width: 60px; margin: 8px 0; }
}

/* ─────────── смуга фактів ─────────── */
.facts { border-bottom: 1px solid var(--line); background: var(--white); }
.facts__in { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); }
.fact { background: var(--white); padding: 26px 22px; }
.fact b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: var(--night);
  line-height: 1;
  margin-bottom: 7px;
}
.fact span { font-size: .93rem; color: var(--muted); }

/* ─────────── сітки та картки ─────────── */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px;
}
.card__ico {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: rgba(100, 181, 0, .12);
  margin-bottom: 18px;
}
.card__ico svg { width: 24px; height: 24px; stroke: var(--leaf-dim); fill: none; stroke-width: 1.9; }
.card h3 { margin-bottom: 8px; color: var(--night); }
.card p { color: var(--muted); margin: 0; font-size: .97rem; }

/* картка продукту */
.prod {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 22px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.prod:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(100, 181, 0, .5); }
.prod:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; }
.prod__img { margin: -22px -22px 18px; overflow: hidden; border-radius: var(--r-lg) var(--r-lg) 0 0; }
.prod__img img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: center 42%; transition: transform .3s ease; }
/* упаковка цілком, на білому — товарні фото не кропимо */
.prod__img--pack { background: var(--white); border-bottom: 1px solid var(--paper); }
.prod__img--pack img { object-fit: contain; padding: 14px 10px 6px; }
.prod:hover .prod__img img { transform: scale(1.03); }
.prod__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.prod__name { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; color: var(--night); line-height: 1.2; }
.prod__crop { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 9px;
  border-radius: 7px;
  background: rgba(5, 16, 78, .07);
  color: var(--night);
  white-space: nowrap;
}
.tag--leaf { background: var(--paper); color: var(--night); border: 1px solid var(--line); }
.prod__foot {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  align-items: center;
  justify-content: space-between;
  font-size: .9rem;
  color: var(--muted);
}
.prod__more { font-weight: 600; color: var(--leaf-dim); }

/* ─────────── кроки повного циклу ─────────── */
.steps { counter-reset: s; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { position: relative; padding-top: 28px; border-top: 2px solid var(--line-dark); }
.sec--paper .step { border-top-color: var(--line); }
.step::before {
  counter-increment: s;
  content: "0" counter(s);
  position: absolute;
  top: -14px;
  left: 0;
  font-family: var(--font-mono);
  font-size: .8rem;
  font-weight: 700;
  color: #9CCB5E;
  background: var(--night);
  padding-right: 10px;
}
.sec--paper .step::before { background: var(--paper); color: var(--leaf-dim); }
.step h3 { font-size: 1.12rem; margin-bottom: 7px; }
.step p { font-size: .95rem; color: #B9C2DC; margin: 0; }
.sec--paper .step p { color: var(--muted); }

/* ─────────── форма ─────────── */
.form { display: grid; gap: 13px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.field label {
  display: block;
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.sec--night .field label { color: #9FAAC9; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 96px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--leaf);
  box-shadow: 0 0 0 3px rgba(100, 181, 0, .18);
}
.field input.err, .field select.err { border-color: #E0453A; }
.ferr { display: none; font-size: .84rem; color: #E0453A; margin-top: 5px; }
.sec--night .ferr { color: #FF9E96; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__note { font-size: .82rem; color: var(--muted); margin: 0; }
.sec--night .form__note { color: #97A2C2; }
.form__note a { color: inherit; }
.sent {
  padding: 26px;
  border-radius: var(--r);
  background: rgba(100, 181, 0, .13);
  border: 1px solid rgba(100, 181, 0, .4);
  color: inherit;
  text-align: center;
}

.formbox {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow-lift);
  color: var(--ink);
}
.formbox h3 { color: var(--night); }
.formbox .field label { color: var(--muted); }
.formbox .ferr { color: #E0453A; }

/* ─────────── цитата місії ─────────── */
.quote {
  border-left: 4px solid var(--leaf);
  padding: 6px 0 6px 26px;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 700;
  line-height: 1.32;
  letter-spacing: -.01em;
  color: var(--night);
}
.sec--night .quote { color: var(--white); }

.ticks { list-style: none; padding: 0; margin: 0; display: grid; gap: 13px; }
.ticks li { position: relative; padding-left: 32px; color: var(--muted); }
.sec--night .ticks li, .hero .ticks li { color: #C3CCE6; }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .55em;
  width: 15px; height: 8px;
  border-left: 2.4px solid var(--leaf);
  border-bottom: 2.4px solid var(--leaf);
  transform: rotate(-45deg);
}

/* ─────────── фільтри каталогу ─────────── */
.filters { display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-end; margin-bottom: 28px; }
.filters .field { min-width: 176px; flex: 1 1 176px; }
.filters .field select { padding: 11px 13px; }
.filters__reset {
  border: 0; background: none; padding: 12px 4px;
  font-family: var(--font-body); font-size: .92rem; color: var(--muted);
  text-decoration: underline; cursor: pointer;
}
.filters__reset:hover { color: var(--night); }
.count { font-family: var(--font-mono); font-size: .85rem; color: var(--muted); margin-bottom: 18px; }
.empty { padding: 60px 20px; text-align: center; color: var(--muted); }

/* ─────────── таблиця ─────────── */
.tbl { width: 100%; border-collapse: collapse; font-size: .96rem; }
.tbl th, .tbl td { text-align: left; padding: 13px 14px; border-bottom: 1px solid var(--line); }
.tbl th { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 700; }
.tbl td b { color: var(--night); }

/* ─────────── картка контакту ─────────── */
.contact-list { display: grid; gap: 18px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; }
.contact-item svg { width: 21px; height: 21px; stroke: var(--leaf); fill: none; stroke-width: 1.9; flex: 0 0 auto; margin-top: 3px; }
.contact-item b { display: block; font-size: .78rem; font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); font-weight: 700; }
.contact-item a, .contact-item span { color: inherit; text-decoration: none; font-size: 1.06rem; }
.contact-item a:hover { color: var(--leaf-dim); }

/* ─────────── підвал ─────────── */
.ftr { background: var(--night-deep); color: #A8B2CE; padding: 62px 0 26px; font-size: .95rem; }
.ftr__in { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 34px; }
.ftr img { height: 32px; width: auto; margin-bottom: 16px; }
.ftr h4 {
  font-family: var(--font-mono); font-size: .72rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase; color: var(--white);
  margin: 0 0 14px;
}
.ftr ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 9px; }
.ftr a { color: #A8B2CE; text-decoration: none; transition: color .16s ease; }
.ftr a:hover { color: var(--white); }
.ftr__bottom {
  margin-top: 42px; padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .86rem; color: #79839F;
}

/* ─────────── плаваючі кнопки зв'язку ─────────── */
.float { position: fixed; right: 18px; bottom: 18px; z-index: 60; display: grid; gap: 10px; }
.float a {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--night);
  color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform .18s ease, background-color .18s ease;
}
.float a:hover { transform: translateY(-3px); background: var(--night-2); }
.float a:focus-visible { outline: 3px solid var(--leaf); outline-offset: 3px; }
.float a.tg { background: var(--night); }
.float a.tg:hover { background: var(--night-2); }
.float a.leaf { background: var(--leaf); color: var(--white); }
.float a.leaf:hover { background: var(--leaf-2); }
.float svg { width: 24px; height: 24px; }

/* ─────────── мікро-анімації ───────────
   Правило: світиться лише зелений бренду і лише в кількох точках —
   головна CTA, точка «на зв'язку», волна по регіонах. Не перетворювати на дискотеку. */

/* точка «на зв'язку» — пульсує, як індикатор онлайн */
.live-dot { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; color: #B9C2DC; }
.live-dot::before {
  content: "";
  flex: 0 0 auto;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: 0 0 0 0 rgba(100, 181, 0, .55);
  animation: dotpulse 2.4s ease-out infinite;
}
@keyframes dotpulse {
  0% { box-shadow: 0 0 0 0 rgba(100, 181, 0, .55); }
  70% { box-shadow: 0 0 0 11px rgba(100, 181, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(100, 181, 0, 0); }
}

/* головна CTA «дихає» м'яким зеленим світлом */
.btn--pulse { animation: btnbreath 3.4s ease-in-out infinite; }
@keyframes btnbreath {
  0%, 100% { box-shadow: 0 0 0 0 rgba(100, 181, 0, 0), 0 6px 18px rgba(100, 181, 0, .22); }
  50% { box-shadow: 0 0 0 7px rgba(100, 181, 0, .13), 0 8px 28px rgba(100, 181, 0, .38); }
}

/* блик, що пробігає по зеленій кнопці при наведенні */
.btn--leaf { position: relative; overflow: hidden; }
.btn--leaf::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, .38), transparent);
  transform: translateX(-160%) skewX(-18deg);
  pointer-events: none;
}
.btn--leaf:hover::after { animation: shine .7s ease forwards; }
@keyframes shine { to { transform: translateX(320%) skewX(-18deg); } }

/* слухавка зрідка «дзвонить» */
.float a.leaf svg { transform-origin: 50% 50%; animation: ringring 7s ease-in-out infinite; }
@keyframes ringring {
  0%, 90%, 100% { transform: rotate(0); }
  92% { transform: rotate(-13deg); }
  94% { transform: rotate(11deg); }
  96% { transform: rotate(-9deg); }
  98% { transform: rotate(6deg); }
}

/* плавне проявлення блоків при скролі (клас вішає app.js — без JS нічого не приховано) */
.rv { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; transition-delay: var(--rvd, 0s); }
.rv.on { opacity: 1; transform: none; }

/* волна підсвітки по регіонах у схемі логістики */
.route__regs span { animation: regwave 4.5s ease-in-out infinite; animation-delay: calc(var(--i, 0) * .4s); }
@keyframes regwave {
  0%, 26%, 100% { background: rgba(255, 255, 255, .08); border-color: var(--line-dark); color: var(--white); }
  10% { background: rgba(100, 181, 0, .24); border-color: rgba(100, 181, 0, .6); color: #E4F6CC; }
}

/* картки: живий відгук на курсор */
.card { transition: transform .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__ico { transition: transform .2s ease; }
.card:hover .card__ico { transform: translateY(-3px); }
.formula--light .npk { transition: box-shadow .25s ease; }
.prod:hover .formula--light .npk { box-shadow: inset 0 2px 0 var(--leaf); }

/* ─────────── дрібне ─────────── */
.crumbs { font-size: .88rem; color: var(--muted); padding: 18px 0 0; }
.crumbs a { text-decoration: none; }
.crumbs a:hover { color: var(--leaf-dim); }
.hr { height: 1px; background: var(--line); border: 0; margin: 0; }
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.4em; color: var(--night); }
.prose ul { padding-left: 22px; color: var(--muted); }
.prose li { margin-bottom: 8px; }
.todo {
  background: rgba(217, 164, 65, .12);
  border: 1px dashed rgba(217, 164, 65, .55);
  border-radius: var(--r);
  padding: 14px 18px;
  font-size: .9rem;
  color: #8A6A22;
}

/* ─────────── адаптив ─────────── */
@media (max-width: 1024px) {
  /* .hero--flat дублюємо: без нього специфічніше правило двох колонок перемагає і картку ріже за край */
  .hero__in, .hero--flat .hero__in { grid-template-columns: 1fr; gap: 40px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .ftr__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hdr__nav, .hdr__tel { display: none; }
  .burger { display: grid; place-items: center; }
  .mnav { display: none; background: var(--white); border-bottom: 1px solid var(--line); }
  .mnav.open { display: block; }
  .mnav ul { list-style: none; margin: 0; padding: 10px 0 18px; display: grid; }
  .mnav a { display: block; padding: 13px 20px; color: var(--ink); text-decoration: none; }
  .mnav a:hover { background: var(--paper); }
  .facts__in { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .shell { width: min(100% - 32px, var(--shell)); }
  .grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .ftr__in { grid-template-columns: 1fr; }
  .facts__in { grid-template-columns: 1fr; }
  .hero__cta .btn { width: 100%; }
  /* на телефоні лишаємо одну кнопку — дзвінок; дві перекривали край картки */
  .float { right: 12px; bottom: 12px; }
  .float a { width: 52px; height: 52px; }
  .float a.tg { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
