/* ═══════════════════════════════════════════════════════════════
   NamAgroTech Landing — style.css
   ═══════════════════════════════════════════════════════════════ */

@font-face {
  font-family: 'Siberiana';
  src: url('../fonts/Siberiana.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Redesign 2026: светлая основа, глубокий зелёный текст, салатовый акцент */
  --green-dark:   #102E1B;  /* глубокий зелёный — заголовки, крупный текст */
  --green-mid:    #4E7A2E;  /* переходный тон — ховеры вторичных элементов */
  --green-light:  #9BD600;  /* акцент — главная кнопка, ссылки, выделения */
  --green-light-hover: #86b800;
  --green-pale:   #F1F3EC;  /* мягкий нейтральный фон секций */
  --green-hero:   #12301D;  /* тёмная поверхность — полоса показателей */
  --accent:       #9BD600;
  --white:        #ffffff;
  --bg:           #FAFBF8;
  --text:         #102E1B;
  --text-muted:   #526158;
  --border:       #E3E7DC;
  --shadow:       0 1px 2px rgba(16,46,27,.06);
  --radius:       10px;
  --radius-lg:    16px;
}

html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

h1,h2,h3 { font-family: 'Siberiana', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif; line-height: 1.15; letter-spacing: -0.01em; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--sm  { padding: 8px 18px; font-size: 14px; }
.btn--lg  { padding: 16px 32px; font-size: 16px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--green-light);
  color: var(--green-dark);
  border-color: var(--green-light);
}
.btn--primary:hover { background: var(--green-light-hover); border-color: var(--green-light-hover); }

.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}
.btn--outline:hover { background: var(--green-pale); }

.btn--white {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--white);
}
.btn--white:hover { background: var(--green-pale); }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  height: 72px;
}
.navbar__logo { flex-shrink: 0; }
.navbar__links {
  display: flex;
  gap: 28px;
  flex: 1;
}
.navbar__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .15s;
  white-space: nowrap;
}
.navbar__links a:hover, .navbar__links a:focus-visible { color: var(--text); }
.navbar__links-contact { display: none; }
.navbar__contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--text);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: background .15s;
}
.navbar__contact-btn:hover, .navbar__contact-btn:focus-visible { background: var(--green-mid); }
a:focus-visible, button:focus-visible, .lang-btn:focus-visible {
  outline: 2px solid var(--green-light);
  outline-offset: 2px;
}
.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.navbar__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  margin: 0 auto;
  transition: transform .2s, opacity .2s;
}
.navbar__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navbar__burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */
.hero {
  background: var(--bg);
  padding: 132px 0 0;
}
.hero__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 0 24px 64px;
  max-width: 1280px;
  margin: 0 auto;
}

/* Left text column */
.hero__left { max-width: 560px; }
.hero__badge {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--text);
  margin-bottom: 20px;
}
.hero__brand { display: none; }
.hero__sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
  max-width: 460px;
}
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__note { font-size: 14px; color: var(--text-muted); }

/* Right image column */
.hero__right { position: relative; }
.hero__img-wrap {
  position: relative;
  width: 100%;
}
.hero__img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
}
.hero__spec-card {
  position: absolute;
  right: 20px;
  bottom: -24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  text-align: left;
  box-shadow: var(--shadow);
}
.hero__spec-card-num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Siberiana', sans-serif;
  color: var(--text);
  line-height: 1;
}
.hero__spec-card-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--green-hero);
  padding: 36px 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stats-bar__item {
  text-align: center;
  padding: 0 16px;
  border-left: 1px solid rgba(155,214,0,.18);
}
.stats-bar__item:first-child { border-left: none; }
.stats-bar__num {
  display: block;
  font-size: 26px;
  font-weight: 700;
  font-family: 'Siberiana', sans-serif;
  color: var(--white);
}
.stats-bar__label {
  display: block;
  font-size: 13px;
  color: rgba(155,214,0,.8);
  margin-top: 4px;
}

/* ── Section video background ── */
.section--video-bg {
  position: relative;
  overflow: hidden;
}
.section__video-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.section__video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 30, 5, 0.62);
  z-index: 1;
}
.section--video-bg .container {
  position: relative;
  z-index: 2;
}

/* ── Expo ── */
.expo__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 12px;
}
.expo__item {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,.05);
}
.expo__item--video {
  grid-column: span 2;
}
.expo__item--wide {
  grid-column: span 2;
}
.expo__item img,
.expo__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.expo__item:hover img,
.expo__item:hover video { transform: scale(1.05); }

/* ── Gallery ── */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--border);
}
.gallery__item--wide {
  grid-column: span 2;
  aspect-ratio: 16/9;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.gallery__item:hover img { transform: scale(1.04); }

/* ── Section common ── */
.section { padding: 80px 0; overflow-x: hidden; }
.section--light { background: var(--green-pale); }
.section--green {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
}
.section--video-bg.section--green {
  background: var(--green-dark); /* fallback пока видео грузится */
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-tag--white {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: rgba(255,255,255,.3);
}
.section-title { font-size: clamp(26px, 3.5vw, 38px); color: var(--green-dark); }
.section-title--white { color: var(--white); }
.section-sub { color: var(--text-muted); margin-top: 12px; font-size: 17px; }

/* ── About ── */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.fact-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.fact-item:last-child { border-bottom: none; }
.fact-icon { font-size: 28px; flex-shrink: 0; }
.fact-item strong { display: block; font-size: 16px; color: var(--green-dark); margin-bottom: 4px; }
.fact-item p { color: var(--text-muted); font-size: 14px; }
.about__facts--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 40px;
}
.about__facts--grid .fact-item:nth-last-child(-n+2) { border-bottom: none; }

/* ── Documents (compact list) ── */
.doc-list {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.doc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
}
.doc-row:last-child { border-bottom: none; }
.doc-row__icon { font-size: 22px; line-height: 1; flex-shrink: 0; }
.doc-row__info { display: flex; flex-direction: column; gap: 2px; margin-right: auto; }
.doc-row__title { font-size: 15px; font-weight: 600; color: var(--text); }
.doc-row__num { font-size: 13px; color: var(--text-muted); }
.doc-row__dl {
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--green-mid);
  white-space: nowrap;
}
.doc-row__dl:hover { color: var(--text); }

/* ── Inner pages (page-header, breadcrumb) ── */
.page-header { padding-top: 148px; }
.breadcrumb { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.breadcrumb a { color: var(--green-dark); }
.breadcrumb a:hover { text-decoration: underline; }

/* ── FAQ ── */
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--green-dark);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; float: right; font-weight: 400; color: var(--green-light); }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--text-muted); margin-top: 12px; font-size: 15px; }

.about__certs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; align-items: start; }
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.cert-card--green { border-color: var(--green-light); background: var(--green-pale); }
.cert-card__icon { font-size: 32px; margin-bottom: 8px; }
.cert-card__title { font-size: 18px; font-weight: 700; color: var(--green-dark); }
.cert-card__num { font-size: 12px; color: var(--text-muted); margin: 4px 0 10px; font-family: monospace; }
.cert-card__text { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.cert-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-mid);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 12px;
  transition: background .15s, color .15s;
}
.cert-download:hover { background: var(--green-pale); color: var(--green-dark); }

/* ── Advantages ── */
.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.adv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.adv-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.adv-card__num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 13px;
  font-weight: 700;
  color: var(--border);
  letter-spacing: .05em;
}
.adv-card__icon { font-size: 36px; margin-bottom: 16px; }
.adv-card__title { font-size: 18px; font-weight: 700; color: var(--green-dark); margin-bottom: 10px; }
.adv-card__text { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* ── Specs ── */
.specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}
.spec-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
}
.spec-card--big { border-color: var(--green-light); }
.spec-card__value {
  font-size: 48px;
  font-weight: 700;
  color: var(--green-dark);
  font-family: 'Siberiana', sans-serif;
  line-height: 1;
  margin-bottom: 8px;
}
.spec-card__label {
  display: inline-block;
  background: var(--green-light);
  color: var(--white);
  border-radius: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 12px;
}
.spec-card__desc { font-size: 14px; color: var(--text-muted); }

.specs__extra {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.spec-extra-item {
  flex: 1;
  padding: 20px 24px;
  font-size: 14px;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
}
.spec-extra-item:last-child { border-right: none; }
.spec-extra-item strong { color: var(--green-dark); display: block; margin-bottom: 4px; }

/* ── Process (green bg) ── */
.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 56px;
}
.process-step {
  flex: 1;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
}
.process-step__num {
  font-size: 12px;
  font-weight: 700;
  opacity: .5;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.process-step__icon { font-size: 40px; margin-bottom: 16px; }
.process-step h3 { font-size: 18px; margin-bottom: 10px; color: var(--white); }
.process-step p { font-size: 14px; opacity: .8; line-height: 1.6; }
.process-step__arrow {
  font-size: 24px;
  opacity: .4;
  align-self: center;
  flex-shrink: 0;
  margin-top: -20px;
}

.capacity__stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  overflow: hidden;
}
.cap-stat {
  flex: 1;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.cap-stat:last-child { border-right: none; }
.cap-stat__num {
  font-size: 36px;
  font-weight: 700;
  font-family: 'Siberiana', sans-serif;
  color: var(--white);
  display: block;
}
.cap-stat__label { font-size: 14px; opacity: .7; }

/* ── Samples ── */
.samples__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.samples__text .section-tag { margin-bottom: 12px; }
.samples__text .section-title { text-align: left; margin-bottom: 16px; }
.samples__text p { color: var(--text-muted); margin-bottom: 24px; font-size: 16px; }
.samples__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.samples__list li { color: var(--text-muted); font-size: 15px; }

.samples__visual {
  display: flex;
  justify-content: center;
}
.samples__photo {
  width: 100%;
  max-width: 420px;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  display: block;
}
.samples__badge-big {
  background: linear-gradient(135deg, var(--green-dark), var(--green-mid));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  width: 280px;
}
.samples__badge-icon { font-size: 56px; margin-bottom: 16px; }
.samples__badge-title { font-size: 24px; font-weight: 700; margin-bottom: 8px; font-family: 'Siberiana', sans-serif; }
.samples__badge-sub { font-size: 14px; opacity: .75; }

/* ── Pricing ── */
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 20px;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.price-card--featured {
  background: linear-gradient(150deg, var(--green-dark), var(--green-mid));
  border-color: transparent;
  color: var(--white);
}
.price-card__tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-mid);
  border-radius: 100px;
  padding: 3px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  align-self: flex-start;
}
.price-card__tag--white {
  background: rgba(255,255,255,.2);
  color: var(--white);
}
.price-card__term {
  font-size: 32px;
  font-weight: 800;
  font-family: 'Siberiana', sans-serif;
  line-height: 1;
}
.price-card__name { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }
.price-card--featured .price-card__name { color: rgba(255,255,255,.7); }

.price-card__price {
  font-size: 48px;
  font-weight: 800;
  color: var(--green-dark);
  font-family: 'Siberiana', sans-serif;
  margin-bottom: 24px;
}
.price-card--featured .price-card__price { color: var(--white); }
.price-card__price span { font-size: 20px; font-weight: 400; opacity: .6; }

.price-card__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.price-card__list li {
  font-size: 14px;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}
.price-card__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 700;
}
.price-card--featured .price-card__list li { color: rgba(255,255,255,.8); }
.price-card--featured .price-card__list li::before { color: rgba(255,255,255,.6); }

.pricing__note { text-align: center; font-size: 13px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }

/* ── Contacts ── */
.contacts__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  max-width: 800px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow .2s;
}
.contact-card:hover { box-shadow: var(--shadow); }
.contact-card__name { font-size: 18px; font-weight: 700; color: var(--green-dark); margin-bottom: 2px; }
.contact-card__role { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.contact-card__phone {
  font-size: 16px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 4px;
}
.contact-card__phone:hover { color: var(--green-light); }
.contact-card__email { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.contact-card__email:hover { color: var(--green-dark); }
.contact-card__messengers { display: flex; gap: 8px; margin-top: auto; }
.messenger-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  transition: opacity .15s;
}
.messenger-btn:hover { opacity: .85; }
.messenger-btn svg { display: block; flex-shrink: 0; }
.messenger-btn--wa { background: #25D366; color: #fff; }
.messenger-btn--tg { background: #2AABEE; color: #fff; }

.contacts__address {
  background: var(--green-pale);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  gap: 48px;
}
.address-item { font-size: 14px; color: var(--text-muted); }
.address-item strong { color: var(--green-dark); }
.map-link { color: var(--green-mid); font-weight: 600; }
.map-link:hover { color: var(--green-dark); }

/* ── Navbar right ── */
.navbar__right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.navbar__tg {
  font-size: 14px;
  font-weight: 600;
  color: #2AABEE;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity .15s;
}
.navbar__tg:hover { opacity: .75; }

/* ── Telegram channel block ── */
.contacts__tg-channel { margin-bottom: 24px; }
.tg-channel-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #2AABEE;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 20px 32px;
  transition: opacity .15s;
  max-width: 800px;
}
.tg-channel-btn:hover { opacity: .9; }
.tg-channel-btn__icon { font-size: 32px; flex-shrink: 0; display: flex; align-items: center; }
.tg-channel-btn__title { font-size: 18px; font-weight: 700; }
.tg-channel-btn__sub { font-size: 14px; opacity: .8; margin-top: 2px; }
.tg-channel-btn__arrow { font-size: 22px; margin-left: auto; flex-shrink: 0; opacity: .7; }

/* ── Map ── */
.map-section {
  width: 100%;
  overflow: hidden;
  display: block;
  line-height: 0;
  font-size: 0;
}
.map-iframe {
  width: 100% !important;
  height: 480px !important;
  border: none;
  display: block;
}

/* ── Footer ── */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 32px 0;
}
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer__left img { filter: brightness(0) invert(1); opacity: .85; }
.footer__left p { font-size: 14px; }
.footer__right { text-align: right; font-size: 13px; }
.footer__right p + p { margin-top: 4px; }

/* ── Stock layout ── */
.stock__layout {
  display: block;
}
.stock__barrel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}
.stock__right { display: flex; flex-direction: column; gap: 16px; }

@media (max-width: 860px) {
  .stock__layout { grid-template-columns: 1fr; }
  .stock__barrel-img { height: 200px; }
  .stock__download-block {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 16px;
  }
  .stock__download-block .btn { width: 100%; justify-content: center; }
}

/* ── Stock download ── */
.stock__download-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 16px;
}
.stock__download-info { display: flex; align-items: center; gap: 20px; }
.stock__download-icon { font-size: 40px; }
.stock__download-photo {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
  display: block;
  box-shadow: 0 2px 12px rgba(43,92,24,.18);
  border: 2px solid var(--green-light);
}
.stock__download-title { font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 4px; }
.stock__download-sub { font-size: 14px; color: var(--text-muted); }

/* ── Stock table ── */
.stock__totals {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.stock__total-item {
  background: var(--white);
  border: 2px solid var(--green-light);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}
.stock__total-num {
  display: block;
  font-size: 36px;
  font-weight: 700;
  font-family: 'Siberiana', sans-serif;
  color: var(--green-dark);
}
.stock__total-label { font-size: 13px; color: var(--text-muted); }

.stock__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  max-height: 480px;
  overflow-y: auto;
}
.stock__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}
.stock__table thead {
  position: sticky;
  top: 0;
  background: var(--green-dark);
  color: var(--white);
  z-index: 1;
}
.stock__table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}
.stock__table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--green-pale);
  color: var(--text);
  white-space: nowrap;
}
.stock__table tbody tr:hover { background: var(--green-pale); }
.stock__table tbody tr:last-child td { border-bottom: none; }
.stock__note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  text-align: center;
}
.stock__note a { color: var(--green-mid); font-weight: 600; }

/* ── Requisites ── */
.req-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
}
.req-table__col {
  padding: 0;
}
.req-table__col + .req-table__col {
  border-left: 1px solid var(--border);
}
.req-table__head {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-pale);
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
}
.req-table__section-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--green-dark);
  background: #f5faf0;
  padding: 10px 20px;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.req-table__col .req-table__section-title:first-of-type {
  border-top: none;
}
.req-table__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  font-size: 13px;
  border-bottom: 1px solid var(--green-pale);
  min-height: 34px;
}
.req-table__row:last-child { border-bottom: none; }
.req-table__row span:first-child {
  color: var(--text-muted);
  padding: 8px 20px;
  border-right: 1px solid var(--green-pale);
  background: #fafcf8;
}
.req-table__row span:last-child {
  color: var(--text);
  padding: 8px 16px;
  font-size: 12px;
  font-family: monospace;
  word-break: break-word;
}

@media (max-width: 860px) {
  .req-table { grid-template-columns: 1fr; }
  .req-table__col + .req-table__col { border-left: none; border-top: 2px solid var(--border); }
}

.req-details summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--green-mid);
  list-style: none;
  margin-bottom: 20px;
}
.req-details summary::-webkit-details-marker { display: none; }
.req-details summary::after { content: "▾"; font-size: 12px; transition: transform .2s; }
.req-details[open] summary::after { transform: rotate(180deg); }
.req-details summary:hover { color: var(--text); }

/* ── Scroll to top ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--green-dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  z-index: 50;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--green-mid); }

/* ═══════════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .advantages__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .navbar__burger { display: flex; }
  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 16px;
  }
  .navbar__links.open { display: flex; }
  .navbar__links a { padding: 10px 0; border-bottom: 1px solid var(--border); }
  .navbar__links a:last-child { border-bottom: none; }
  .navbar__links-contact { display: block; color: var(--green-mid) !important; font-weight: 600; }
  .hero__layout { grid-template-columns: 1fr; min-height: auto; padding-bottom: 0; }
  .hero__left { padding-right: 0; text-align: center; padding-bottom: 32px; }
  .hero__left .hero__sub { margin: 0 auto 36px; }
  .hero__left .hero__actions { justify-content: center; }
  .hero__right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-bottom: 24px;
  }
  .hero__img-wrap { width: 100%; max-width: 100%; border-radius: 0; }
  .hero__img-wrap img {
    width: 100%;
    height: 260px;
    border-radius: 12px;
    display: block;
    object-fit: cover;
  }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
  .expo__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .expo__item--wide,
  .expo__item--video { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .hero { padding: 76px 0 0; }
  .hero__layout { padding: 24px 16px 0; }
  .hero__stats { gap: 20px; }
  .about__certs { grid-template-columns: 1fr; }
  .hero__stat-divider { display: none; }

  .specs__grid { grid-template-columns: 1fr; }
  .advantages__grid { grid-template-columns: 1fr; }
  .contacts__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 420px; }

  .process__steps { flex-direction: column; }
  .process-step__arrow { transform: rotate(90deg); align-self: center; }

  .specs__extra { flex-direction: column; }
  .spec-extra-item { border-right: none; border-bottom: 1px solid var(--border); }
  .spec-extra-item:last-child { border-bottom: none; }

  .samples__inner { grid-template-columns: 1fr; gap: 32px; }
  .samples__visual { display: none; }

  .contacts__address { flex-direction: column; gap: 16px; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__right { text-align: center; }

  .capacity__stats { flex-direction: column; }
  .cap-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.2); }
  .cap-stat:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
  .hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero__stat-divider { display: none; }
}

/* ── Navbar overflow fix (narrow screens) ── */
@media (max-width: 640px) {
  .navbar .container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .navbar__inner {
    gap: 12px;
  }

  .navbar__logo img {
    display: block;
    width: auto;
    height: 40px;
  }

  .navbar__right {
    min-width: 0;
    gap: 8px;
  }

  .navbar__tg {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(42, 171, 238, 0.1);
  }

  .navbar__tg span {
    display: none;
  }

  .lang-btn {
    min-width: auto;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .navbar__contact-btn { display: none; }

  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 24px 0; }
  .stats-bar__item { border-left: none; padding: 0 8px; }
  .stats-bar__item:nth-child(2n) { border-left: 1px solid rgba(155,214,0,.18); }
}

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(43,92,24,.07);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s;
  white-space: nowrap;
}
.lang-btn:hover { background: var(--green-pale); }
.lang-arrow { font-size: 9px; opacity: .6; margin-left: 1px; }
.lang-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(43,92,24,.15);
  min-width: 160px;
  z-index: 200;
  overflow: hidden;
  padding: 6px 0;
}
.lang-menu.open { display: block; }
.lang-menu li { list-style: none; }
.lang-menu button,
.lang-menu a {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  background: none;
  border: none;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  color: var(--text);
  transition: background .1s;
  white-space: nowrap;
}
.lang-flag { font-size: 18px; line-height: 1; flex-shrink: 0; }
.lang-name { font-size: 14px; }
.lang-menu button:hover,
.lang-menu a:hover { background: var(--green-pale); }
.lang-menu button.active { color: var(--green-mid); font-weight: 700; }
.lang-menu button.active .lang-name::after { content: ' ✓'; font-size: 12px; }

/* ── RTL (Arabic) ── */
[dir="rtl"] .navbar__inner { flex-direction: row-reverse; }
[dir="rtl"] .navbar__links { flex-direction: row-reverse; }
[dir="rtl"] .navbar__right { margin-left: 0; margin-right: auto; flex-direction: row-reverse; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .lang-menu button { text-align: right; }
[dir="rtl"] .hero__left { text-align: right; }
[dir="rtl"] .hero__actions { flex-direction: row-reverse; }
[dir="rtl"] .hero__stats { flex-direction: row-reverse; }
[dir="rtl"] .fact-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .adv-card { text-align: right; }
[dir="rtl"] .process-step { text-align: right; }
[dir="rtl"] .process__steps { flex-direction: row-reverse; }
[dir="rtl"] .price-card__list li { text-align: right; }
[dir="rtl"] .samples__list li { text-align: right; }
[dir="rtl"] .req-table { direction: rtl; }
[dir="rtl"] .req-table__row { flex-direction: row-reverse; }
[dir="rtl"] .contact-card { text-align: right; }
[dir="rtl"] .contact-card__messengers { flex-direction: row-reverse; }
[dir="rtl"] .footer__inner { flex-direction: row-reverse; }
[dir="rtl"] .tg-channel-btn { flex-direction: row-reverse; }
[dir="rtl"] .tg-channel-btn__arrow { transform: scaleX(-1); }
