/* ════════════════════════════════════════════════
   АгроТехКомплекс — Melinvest-inspired CSS
   Светлый корпоративный стиль, зелёные акценты
   ════════════════════════════════════════════════ */

/* ─── RESET & TOKENS ─────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #0e4204;
  --green-dark: #1f5014;
  --green-light: #56a30a;
  --green-bg: rgba(117, 197, 42, 0.06);
  --orange: #f59e0b;
  --bg: #ffffff;
  --bg-gray: #f8fafc;
  --bg-dark: #0b1120;
  --text: #0f172a;
  --text-m: #475569;
  --text-light: #94a3b8;
  --border: #e2e8f0;
  --border-green: rgba(117, 197, 42, 0.2);
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-glow: 0 12px 30px rgba(117, 197, 42, 0.35);
  --font: 'Inter', sans-serif;
  --font-narrow: 'Outfit', sans-serif;
  --trans: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-size: 15px;
}

.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── TYPOGRAPHY UTILS ───────────────────────── */
.section-head {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-family: var(--font-narrow);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  background: linear-gradient(to right, #0f172a 20%, var(--green-dark) 40%, #1f5014 60%, #0f172a 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: shineGradientTitle 6s linear infinite;
}

@keyframes shineGradientTitle {
  to {
    background-position: 200% center;
  }
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  margin: 0 auto 20px;
  border-radius: 4px;
}

.section-sub {
  color: var(--text-m);
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-title-dark {
  font-family: var(--font-narrow);
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text), #475569);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-eyebrow-green {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
  position: relative;
  padding-left: 16px;
}

.section-eyebrow-green::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 40px;
  font-family: var(--font-narrow);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn:hover::after {
  opacity: 1;
}

.btn--green {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark), var(--green-light), var(--green-dark));
  background-size: 300% 100%;
  animation: bgShine 5s linear infinite;
  color: white;
  border: none;
  box-shadow: var(--shadow-glow);
}

@keyframes bgShine {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 150% 50%;
  }
}

.btn--green:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 40px rgba(117, 197, 42, 0.45);
  animation-duration: 2.5s;
}

.btn--outline-white {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-white:hover {
  background: white;
  color: var(--text);
  border-color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn--green-outline {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green);
}

.btn--green-outline:hover {
  background: var(--green);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.btn--white-solid {
  background: white;
  color: var(--text);
  border-color: white;
  font-weight: 800;
}

.btn--white-solid:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  color: var(--green-dark);
}

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

/* ─── TOP BAR ────────────────────────────────── */
.topbar {
  background: rgba(8, 12, 23, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  color: #b0bec5;
  font-size: 0.8rem;
  padding: 8px 0;
  position: relative;
  z-index: 200;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar__link {
  color: #b0bec5;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
}

.topbar__link svg {
  width: 13px;
  height: 13px;
}

.topbar__link:hover,
.topbar__link--active {
  color: #ffffff;
}

.topbar__sep {
  color: #4a6077;
}

/* ─── HEADER / NAV ───────────────────────────── */
.header {
  background: rgba(11, 17, 32, 0.85);
  /* Deep slate with glassmorphism */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid var(--border);
}

.header.scrolled .nav__link {
  color: var(--text);
}

.header.scrolled .nav__link:hover,
.header.scrolled .nav__item--active .nav__link {
  background: rgba(126, 178, 64, 0.08);
  border-bottom-color: var(--green);
  color: var(--green-dark);
}

.header.scrolled .logo-name {
  color: var(--text);
}

.header.scrolled .logo-tagline {
  color: var(--text-m);
}

.header.scrolled .logo-icon-wrap {
  color: var(--green-dark);
}

.header.scrolled .nav__logo {
  border-right-color: var(--border);
}

.header.scrolled .burger span {
  background: var(--text);
}


.nav__container {
  display: flex;
  align-items: stretch;
  height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  padding: 0 20px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin-right: 10px;
  min-width: 200px;
}

.logo-icon-wrap {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  overflow: hidden;
}

.logo-icon-wrap svg {
  width: 36px;
  height: 36px;
}

.logo-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-narrow);
  font-size: 1rem;
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: 0.02em;
}

.logo-tagline {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-name--white {
  color: white;
}

.logo-tagline--white {
  color: rgba(255, 255, 255, 0.7);
}

.logo-icon-wrap--white {
  color: white;
}

.nav-menu {
  flex: 1;
}

.nav-menu__inner {
  height: 100%;
  display: flex;
  align-items: stretch;
  padding: 0;
}

.nav__list {
  list-style: none;
  display: flex;
  align-items: stretch;
  height: 100%;
  gap: 0;
}

.nav__item {
  position: relative;
  display: flex;
  align-items: stretch;
}

.nav__link {
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: white;
  text-decoration: none;
  font-family: var(--font-narrow);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: var(--trans);
}

.nav__link:hover,
.nav__item--active .nav__link {
  background: rgba(255, 255, 255, 0.15);
  border-bottom-color: white;
  border-radius: var(--r-sm) var(--r-sm) 0 0;
}

.nav__item--has-drop:hover .nav-drop {
  display: block;
}

.nav-drop {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 240px;
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-md);
  z-index: 300;
}

.nav-drop__link {
  display: block;
  padding: 11px 20px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  transition: var(--trans);
}

.nav-drop__link:hover {
  background: var(--green-bg);
  color: var(--green-dark);
  padding-left: 26px;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--trans);
}

.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger.open span:nth-child(2) {
  opacity: 0;
}

.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.hero__slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero__slide.active {
  opacity: 1;
  z-index: 2;
}

.hero__slide-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 12s ease-out;
}

.hero__slide.active .hero__slide-bg {
  transform: scale(1.05);
}

.hero__slide--1 .hero__slide-bg {
  background: linear-gradient(to right, rgba(11, 17, 32, 0.95) 0%, rgba(11, 17, 32, 0.4) 60%, rgba(11, 17, 32, 0.1) 100%),
    linear-gradient(180deg, #1a2a1a 0%, #2b571e 50%, #468c2d 100%);
}

.hero__slide--2 .hero__slide-bg {
  background: linear-gradient(120deg, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.3) 100%),
    linear-gradient(160deg, #112211 0%, #133f1a 40%, #306e22 70%, #468c2d 100%);
}

.hero__slide--3 .hero__slide-bg {
  background: linear-gradient(130deg, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.4) 100%),
    linear-gradient(170deg, #151e15 0%, #204c16 50%, #418225 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  height: 100%;
}

.hero__text-box {
  max-width: 600px;
  padding: 60px 0;
}

.hero__eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
  display: block;
}

.hero__title {
  font-family: var(--font-narrow);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 18px;
  text-transform: uppercase;
  background: linear-gradient(to right, #ffffff 20%, #e4ffca 40%, #c1f09c 60%, #ffffff 80%);
  background-size: 200% auto;
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  animation: shineGradientText 5s linear infinite;
  text-shadow: 0 10px 40px rgba(117, 197, 42, 0.25);
}

@keyframes shineGradientText {
  to {
    background-position: 200% center;
  }
}

.hero__accent {
  color: var(--green-light);
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 500px;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero__btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Slider controls */
.hero__controls {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: var(--trans);
}

.hero__dot.active {
  background: white;
  transform: scale(1.3);
}

.hero__arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0, 0, 0, 0.25);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--trans);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__arr:hover {
  background: var(--green);
}

.hero__arr--prev {
  left: 20px;
}

.hero__arr--next {
  right: 20px;
}

/* ─── STATS BAR ──────────────────────────────── */
.stats-bar {
  background: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.stats-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 20px;
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 44px;
}

.stat-n {
  font-family: var(--font-narrow);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.stat-suf {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
}

.stat-l {
  font-size: 0.72rem;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 3px;
}

.stat-sep {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── CATALOG SECTION ────────────────────────── */
.catalog {
  padding: 72px 0;
  background: var(--bg-gray);
}

.catalog-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.filter-btn {
  background: white;
  border: 1px solid var(--border);
  color: var(--text-m);
  padding: 10px 20px;
  border-radius: 40px;
  font-family: var(--font-narrow);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  border-color: var(--green);
  color: var(--green-dark);
}

.filter-btn.active {
  background: var(--green);
  border-color: var(--green);
  color: white;
  box-shadow: 0 4px 12px rgba(126, 178, 64, 0.3);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.cat-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r-lg);
  padding: 40px 28px 32px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--green-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: -1;
}

.cat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(117, 197, 42, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.cat-card:hover {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform: translateY(-10px);
}

.cat-card:hover::before {
  transform: scaleX(1);
}

.cat-card:hover::after {
  opacity: 1;
}

.cat-card--green {
  background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-glow);
}

.cat-card--green::before {
  background: white;
}

.cat-card--green:hover {
  background: linear-gradient(135deg, var(--green-dark) 0%, #173d0e 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 24px 50px rgba(117, 197, 42, 0.45);
  transform: translateY(-10px);
}

.cat-card__icon-wrap {
  margin-bottom: 20px;
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cat-card:hover .cat-card__icon-wrap {
  transform: scale(1.12) translateY(-4px);
}

.cat-card__icon {
  width: 84px;
  height: 84px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.04));
}

.cat-card__title {
  font-family: var(--font-narrow);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.cat-card__title--white {
  color: white;
}

.cat-card__desc {
  font-size: 0.88rem;
  color: var(--text-m);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 20px;
}

.cat-card__desc--white {
  color: rgba(255, 255, 255, 0.85);
}

.cat-card__more {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cat-card__more--white {
  color: rgba(255, 255, 255, 0.9);
}

.cat-card:hover .cat-card__more {
  color: var(--green-dark);
  transform: translateX(6px);
}

.cat-card--green:hover .cat-card__more {
  color: white;
}

/* ─── ABOUT STRIP ────────────────────────────── */
.about-strip {
  padding: 80px 0;
  background: white;
  border-bottom: 1px solid var(--border);
}

.about-strip__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-strip__p {
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: 14px;
  font-size: 0.94rem;
}

.about-strip__list {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-strip__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* ABOUT VISUAL */
.about-visual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.av-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
}

.av-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--green);
}

.av-card--green {
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  border: none;
  box-shadow: var(--shadow-glow);
}

.av-card--green:hover {
  box-shadow: 0 20px 40px rgba(117, 197, 42, 0.4);
}

.av-card--green .av-num,
.av-card--green .av-label {
  color: white;
}

.av-num {
  font-family: var(--font-narrow);
  font-size: 2rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}

.av-label {
  font-size: 0.72rem;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 4px;
}

.av-wide {
  grid-column: 1 / -1;
  background: var(--green-bg);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.av-wide-icon svg {
  width: 36px;
  height: 36px;
}

.av-wide strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text);
  margin-bottom: 4px;
}

.av-wide p {
  font-size: 0.8rem;
  color: var(--text-m);
  line-height: 1.5;
}

/* ─── PRODUCT DETAIL SECTIONS ────────────────── */
.product-detail {
  padding: 80px 0;
}

.product-detail--light {
  background: white;
}

.product-detail--gray {
  background: var(--bg-gray);
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pd-layout--rev .pd-visual {
  order: 2;
}

.pd-layout--rev .pd-content {
  order: 1;
}

.pd-desc {
  color: var(--text-m);
  line-height: 1.75;
  margin-bottom: 22px;
  font-size: 0.94rem;
}

/* VISUAL CARDS */
.pd-img-card {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 0.85;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0);
  transition: var(--trans);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.pd-img-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15), var(--shadow-glow);
  border-color: var(--green);
}

.pd-img-card--silos {
  background: linear-gradient(135deg, #e8f4d8 0%, #d0e8a8 50%, #b8d880 100%);
}

.pd-img-card--cleaners {
  background: linear-gradient(135deg, #e8f0f8 0%, #d0e0f0 50%, #b8d0e8 100%);
}

.pd-img-card--dryers {
  background: linear-gradient(135deg, #fdf0e8 0%, #f5ddc8 50%, #eecc98 100%);
}

.pd-img-card--aspiration {
  background: linear-gradient(135deg, #e8f4d8 0%, #c8e4a0 50%, #a8d468 100%);
}

/* SILO ILLUSTRATION */
.pd-silo-wrap {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.pd-silo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ps-cap {
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, #7eb240, #5a9c2a);
}

.ps-body {
  background: linear-gradient(180deg, #8fc050, #6aaa30);
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
}

.ps-body::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(180deg, transparent, transparent 20px, rgba(255, 255, 255, 0.15) 20px, rgba(255, 255, 255, 0.15) 22px);
}

.ps1 .ps-cap {
  width: 50px;
  height: 18px;
}

.ps1 .ps-body {
  width: 50px;
  height: 100px;
}

.ps2 .ps-cap {
  width: 68px;
  height: 24px;
}

.ps2 .ps-body {
  width: 68px;
  height: 145px;
}

.ps3 .ps-cap {
  width: 56px;
  height: 20px;
}

.ps3 .ps-body {
  width: 56px;
  height: 120px;
}

.pd-ground {
  position: absolute;
  bottom: -1px;
  left: -20px;
  right: -20px;
  height: 10px;
  background: #5a9c2a;
  border-radius: 0 0 2px 2px;
}

/* CLEANER ILLUSTRATION */
.machine-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mach-body {
  width: 170px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  background: white;
  box-shadow: var(--shadow-sm);
}

.mach-top {
  height: 28px;
  background: linear-gradient(90deg, #7eb240, #5a9c2a);
}

.mach-sieves {
  height: 80px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}

.sieve {
  height: 3px;
  background: repeating-linear-gradient(90deg, #7eb240 0, #7eb240 6px, transparent 6px, transparent 10px);
  opacity: 0.8;
  border-radius: 2px;
}

.mach-bot {
  height: 24px;
  background: #f5f6f8;
  border-top: 1px solid var(--border);
}

.mach-legs {
  display: flex;
  justify-content: space-around;
  padding: 4px 12px;
  background: #f5f6f8;
}

.mach-legs span {
  display: block;
  width: 10px;
  height: 24px;
  background: #aab4c0;
  border-radius: 0 0 4px 4px;
}

.gflow {
  height: 44px;
  width: 100%;
  position: relative;
}

.gp {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: gfall 2s ease-in infinite;
}

.g1 {
  left: 25%;
  animation-delay: 0s;
  animation-duration: 1.6s;
}

.g2 {
  left: 50%;
  animation-delay: 0.5s;
  animation-duration: 2s;
}

.g3 {
  left: 75%;
  animation-delay: 1s;
  animation-duration: 1.8s;
}

@keyframes gfall {
  0% {
    top: 0;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    top: 44px;
    opacity: 0;
  }
}

/* DRYER ILLUSTRATION */
.dryer-wrap {
  display: flex;
  align-items: flex-end;
  gap: 18px;
}

.dtower {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 65px;
}

.dtop {
  width: 65px;
  height: 18px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, #7eb240, #5a9c2a);
}

.dsec {
  width: 65px;
  height: 34px;
  background: white;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.dheat {
  width: 48px;
  height: 3px;
  background: repeating-linear-gradient(90deg, #e07b39 0, #e07b39 7px, transparent 7px, transparent 12px);
  border-radius: 2px;
  animation: heatPulse 1.5s ease-in-out infinite;
}

@keyframes heatPulse {

  0%,
  100% {
    opacity: 0.4;
  }

  50% {
    opacity: 1;
  }
}

.dbot {
  width: 80px;
  height: 8px;
  background: #5a9c2a;
  border-radius: 0 0 4px 4px;
}

.dsparks {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 8px;
}

.dsparks span {
  font-size: 1.3rem;
  animation: spinFloat 2s ease-in-out infinite;
}

.dsparks span:nth-child(2) {
  animation-delay: 0.7s;
}

.dsparks span:nth-child(3) {
  animation-delay: 1.4s;
}

@keyframes spinFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: .8
  }

  50% {
    transform: translateY(-8px)rotate(10deg);
    opacity: 1
  }
}

/* ASPIRATION ILLUSTRATION */
.asp-wrap {
  position: relative;
  width: 180px;
  height: 180px;
}

.asp-fan-anim {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  animation: spinFan 2.5s linear infinite;
}

.afan-b {
  position: absolute;
  width: 26px;
  height: 10px;
  background: linear-gradient(90deg, var(--green), var(--green-dark));
  border-radius: 5px;
  top: 50%;
  left: 50%;
  transform-origin: 0 50%;
}

.b1 {
  transform: rotate(0deg) translateY(-50%)
}

.b2 {
  transform: rotate(90deg) translateY(-50%)
}

.b3 {
  transform: rotate(180deg) translateY(-50%)
}

.b4 {
  transform: rotate(270deg) translateY(-50%)
}

.afan-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid white;
}

@keyframes spinFan {
  from {
    transform: translate(-50%, -50%) rotate(0)
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg)
  }
}

.asp-ducts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.aduct {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border-green);
}

.aduct-t {
  width: 14px;
  height: 50px;
  top: 4px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px 3px 0 0;
}

.aduct-l {
  width: 52px;
  height: 12px;
  top: 50%;
  left: 4px;
  transform: translateY(-50%);
  border-radius: 3px 0 0 3px;
}

.aduct-r {
  width: 48px;
  height: 12px;
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
  border-radius: 0 3px 3px 0;
}

.asp-cyc {
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.acyc-b {
  width: 32px;
  height: 42px;
  border-radius: 16px 16px 0 0;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-green);
}

.acyc-c {
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 16px solid rgba(255, 255, 255, 0.7);
}

/* SPECS TABLE */
.pd-specs {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.ps-row {
  display: flex;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.ps-row:last-child {
  border-bottom: none;
}

.ps-row:nth-child(odd) {
  background: var(--bg-gray);
}

.ps-key {
  color: var(--text-m);
  min-width: 160px;
  font-weight: 600;
}

.ps-val {
  color: var(--text);
  font-weight: 700;
}

/* BADGES */
.pd-badge {
  position: absolute;
  background: white;
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-md);
  animation: floatBadge 4s ease-in-out infinite;
}

.pd-badge--1 {
  top: 12%;
  right: -12%;
}

.pd-badge--2 {
  bottom: 14%;
  left: -10%;
  animation-delay: -2s;
}

@keyframes floatBadge {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-7px)
  }
}

.pd-badge strong {
  font-family: var(--font-narrow);
  font-size: 1.3rem;
  color: var(--green-dark);
  font-weight: 700;
}

.pd-badge span {
  font-size: 0.7rem;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* TAGS */
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.tg {
  padding: 5px 12px;
  border-radius: var(--r-sm);
  background: var(--green-bg);
  border: 1px solid var(--border-green);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

/* ─── OBJECTS SECTION ────────────────────────── */
.objects-section {
  padding: 72px 0;
  background: white;
}

.objects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
}

.obj-card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--trans);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.obj-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.obj-card__header {
  height: 180px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.obj-card__header--1 {
  background: linear-gradient(135deg, #4a7a24, #7eb240);
}

.obj-card__header--2 {
  background: linear-gradient(135deg, #2c5020, #5a9c2a);
}

.obj-card__header--3 {
  background: linear-gradient(135deg, #3a6830, #6ab040);
}

.obj-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
}

.obj-icon {
  font-size: 3rem;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.obj-card__body {
  padding: 20px;
  background: white;
}

.obj-card__body h3 {
  font-family: var(--font-narrow);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.obj-card__body p {
  font-size: 0.82rem;
  color: var(--text-m);
  line-height: 1.5;
}

.objects-cta {
  text-align: center;
}

/* ─── WHY SECTION ────────────────────────────── */
.why-section {
  padding: 100px 0;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(117, 197, 42, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  animation: orbFloat1 15s ease-in-out infinite;
}

.why-section::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(117, 197, 42, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 0;
  animation: orbFloat2 12s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50px, 80px) scale(1.1);
    opacity: 1;
  }
}

@keyframes orbFloat2 {

  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.8;
  }

  50% {
    transform: translate(60px, -60px) scale(1.2);
    opacity: 1;
  }
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-section .section-title {
  background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.why-section .section-line {
  background: linear-gradient(90deg, var(--green-light), var(--green-dark));
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  padding: 44px 36px;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(117, 197, 42, 0.1) 50%, var(--green-light));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 2;
}

.why-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(117, 197, 42, 0.15);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.why-card:hover::before {
  opacity: 1;
  background: linear-gradient(225deg, var(--green-light), transparent 50%, rgba(255, 255, 255, 0.4));
}

.why-card__num {
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--font-narrow);
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.03);
  line-height: 1;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 0;
}

.why-card:hover .why-card__num {
  color: rgba(117, 197, 42, 0.15);
  transform: scale(1.1) translate(-10px, 10px);
}

.why-card h3 {
  font-family: var(--font-narrow);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ─── CTA BAND ───────────────────────────────── */
.cta-band {
  background: var(--green);
  padding: 44px 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-band__title {
  font-family: var(--font-narrow);
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.cta-band__sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

/* ─── CONTACT ─────────────────────────────────── */
.contact-section {
  padding: 72px 0;
  background: white;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.c-details {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.c-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.c-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--r-md);
  background: var(--green-bg);
  border: 1px solid var(--border-green);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
}

.c-icon svg {
  width: 18px;
  height: 18px;
}

.c-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
}

.c-val {
  display: block;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.c-val:hover {
  color: var(--green-dark);
}

/* FORM */
.contact-form {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px 40px;
  box-shadow: var(--shadow-lg);
  transition: var(--trans);
}

.contact-form:hover {
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08), var(--shadow-glow);
  border-color: var(--border-green);
}

.form-title {
  font-family: var(--font-narrow);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--green);
}

.form-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.fg {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.fg:last-child {
  margin-bottom: 0;
}

.fg label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-m);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.fg input,
.fg select,
.fg textarea {
  background: var(--bg-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.92rem;
  padding: 10px 14px;
  transition: var(--trans);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.fg input::placeholder,
.fg textarea::placeholder {
  color: var(--text-light);
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: var(--green);
  background: white;
  box-shadow: 0 0 0 3px rgba(126, 178, 64, 0.15);
}

.fg select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a6478' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.fg select option {
  background: white;
}

.fg textarea {
  resize: vertical;
  min-height: 96px;
}

.form-note {
  font-size: 0.73rem;
  color: var(--text-light);
  margin-top: 10px;
}

.form-ok {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--green-bg);
  border: 1px solid var(--border-green);
  border-radius: var(--r-md);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 12px;
}

.form-ok svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.form-ok.visible {
  display: flex;
  animation: fadeInUp 0.4s ease;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--bg-dark);
}

.footer-main {
  padding: 52px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-main__inner {
  display: grid;
  grid-template-columns: 1.3fr 2fr;
  gap: 56px;
}

.footer-brand .nav__logo {
  padding: 0;
  border: none;
  margin-bottom: 14px;
}

.footer-brand__desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  max-width: 260px;
  margin-top: 6px;
}

.footer-nav-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-col h4 {
  font-family: var(--font-narrow);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col a,
.footer-addr {
  display: block;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  padding: 16px 0;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom__inner a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}

.footer-bottom__inner a:hover {
  color: white;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal,
.reveal-left,
.reveal-right {
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-36px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(36px);
}

.reveal.in-view,
.reveal-left.in-view,
.reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-strip__inner {
    gap: 48px;
  }

  .pd-layout {
    gap: 48px;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-main__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav-cols {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .topbar {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--green-dark);
    transform: translateY(-110%);
    transition: transform 0.4s ease;
    z-index: 99;
    overflow-y: auto;
    max-height: calc(100vh - 64px);
  }

  .nav-menu.open {
    transform: translateY(0);
  }

  .nav__list {
    flex-direction: column;
    height: auto;
  }

  .nav__link {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
  }

  .nav-drop {
    position: static;
    display: none;
    box-shadow: none;
    border-top: none;
    background: rgba(0, 0, 0, 0.15);
  }

  .nav__item--has-drop:hover .nav-drop {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav__logo {
    min-width: auto;
  }

  .hero {
    height: 480px;
  }

  .hero__title {
    font-size: 1.7rem;
  }

  .stats-bar__inner {
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
  }

  .stat-sep {
    display: none;
  }

  .stat-block {
    min-width: 40%;
  }

  .catalog-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-strip__inner,
  .pd-layout,
  .pd-layout--rev,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pd-layout--rev .pd-visual {
    order: 0;
  }

  .pd-layout--rev .pd-content {
    order: 0;
  }

  .pd-badge--1 {
    right: -4%;
    top: 5%;
  }

  .pd-badge--2 {
    left: -4%;
    bottom: 5%;
  }

  .objects-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .form-row2 {
    grid-template-columns: 1fr;
  }

  .footer-nav-cols {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom__inner {
    flex-direction: column;
    gap: 6px;
  }
}

@media (max-width: 480px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 24px 16px;
  }

  .footer-nav-cols {
    grid-template-columns: 1fr;
  }

  .hero__btns {
    flex-direction: column;
  }

  .hero {
    height: 440px;
  }
}

/* ──────────────────────────────────────────────
   LIVE CHAT WIDGET (PREMIUM REDESIGN)
   ────────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  font-family: var(--font);
}

.chat-bubble {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(86, 163, 10, 0.4);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.chat-bubble:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(86, 163, 10, 0.5);
}

.chat-bubble svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.chat-bubble-label {
  position: absolute;
  bottom: 80px;
  right: 0;
  background: white;
  color: var(--text);
  padding: 10px 18px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: float-label 3s ease-in-out infinite;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.chat-bubble-label::after {

  content: '';
  position: absolute;
  bottom: -6px;
  right: 25px;
  width: 12px;
  height: 12px;
  background: white;
  transform: rotate(45deg);
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@keyframes float-label {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.chat-badge {

  position: absolute;
  top: 0;
  right: 0;
  background: #ff4757;
  color: white;
  font-size: 11px;
  font-weight: 800;
  min-width: 22px;
  height: 22px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid white;
  box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.chat-window {
  position: absolute;
  bottom: 100px;
  right: 0;

  width: 350px;
  max-width: calc(100vw - 48px);
  height: 520px;
  max-height: calc(100vh - 120px);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(30px) scale(0.9);
  transform-origin: bottom right;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-window.open {
  display: flex;
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Hide label when chat is open */
.chat-window.open~.chat-bubble .chat-bubble-label {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}


.chat-header {
  background: linear-gradient(90deg, var(--green-dark), var(--green-light));
  padding: 20px 24px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.chat-header-avatar {
  position: relative;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.2);
}

.status-dot {
  position: absolute;
  bottom: -3px;
  right: -3px;
  width: 12px;
  height: 12px;
  background: #2ed573;
  border: 2px solid white;
  border-radius: 50%;
}

.status-dot-pulse {
  position: absolute;
  inset: 0;
  background: #2ed573;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.5);
    opacity: 0;
  }
}

.chat-header-text b {
  display: block;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font-narrow);
  letter-spacing: 0.02em;
}

.chat-header-text span {
  font-size: 12px;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.chat-close {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.chat-messages {
  flex: 1;
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: linear-gradient(to bottom, rgba(248, 249, 250, 0.4), rgba(255, 255, 255, 0.1));
}

.chat-messages::-webkit-scrollbar {
  width: 5px;
}

.chat-messages::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
}

.chat-msg {
  max-width: 85%;
  padding: 12px 18px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.6;
  position: relative;
  animation: msg-in 0.3s ease-out backwards;
}

@keyframes msg-in {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.chat-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: white;
  border-bottom-right-radius: 4px;
  box-shadow: 0 4px 15px rgba(86, 163, 10, 0.2);
}

.chat-msg--admin {
  align-self: flex-start;
  background: white;
  color: var(--text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-msg-time {
  font-size: 10px;
  opacity: 0.5;
  margin-top: 6px;
  display: block;
  text-align: right;
  font-weight: 600;
}

.chat-footer {
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 12px;
  backdrop-filter: blur(10px);
}

.chat-input {
  flex: 1;
  border: 1.5px solid rgba(0, 0, 0, 0.05);
  background: white;
  padding: 12px 18px;
  border-radius: 16px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.02);
}

.chat-input:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 4px rgba(86, 163, 10, 0.1);
}

.chat-send {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: var(--green);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(86, 163, 10, 0.2);
}

.chat-send:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
}

.chat-send:disabled {
  background: #e1e1e1;
  box-shadow: none;
  cursor: default;
  transform: none;
}

.chat-send svg {
  width: 20px;
  height: 20px;
  transform: translateX(1px);
}



/* ──────────────────────────────────────────────
   MANAGER CARDS (STAFF)
   ────────────────────────────────────────────── */
.contact-managers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
  border-top: 1px solid var(--border);
  padding-top: 30px;
}

.manager-card {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 20px;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.manager-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-light), var(--green-dark));
  opacity: 0;
  transition: var(--trans);
}

.manager-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: white;
  border-color: var(--green-light);
}

.manager-card:hover::before {
  opacity: 1;
}

.m-header {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.m-name {
  font-family: var(--font-narrow);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
}

.m-role {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.m-phone {
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.m-phone:hover {
  color: var(--green-light);
}

.m-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed var(--border);
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--trans);
}

.social-pill svg {
  width: 18px;
  height: 18px;
}

.social-pill--wa {
  background: rgba(37, 211, 102, 0.1);
  color: #128C7E;
}

.social-pill--wa:hover {
  background: #25D366;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.social-pill--tg {
  background: rgba(0, 136, 204, 0.1);
  color: #0077b5;
}

.social-pill--tg:hover {
  background: #0088cc;
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 136, 204, 0.3);
}

/* ── CHAT REGISTRATION SCREEN ────────── */
.chat-reg-screen {
  position: absolute;
  inset: 0;
  background: white;
  z-index: 10;
  display: flex;
  flex-direction: column;
  padding: 30px 24px;
  animation: fadeIn 0.3s ease;
}

.chat-reg-title {
  font-family: var(--font-narrow);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  text-align: center;
}

.chat-reg-sub {
  font-size: 0.85rem;
  color: var(--text-m);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

.chat-reg-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.chat-reg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chat-reg-field label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--green-dark);
  letter-spacing: 0.05em;
}

.chat-reg-input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  font-size: 14px;
  background: #fafafa;
  outline: none;
  transition: all 0.2s;
}

.chat-reg-input:focus {
  border-color: var(--green-light);
  background: white;
  box-shadow: 0 4px 12px rgba(86, 163, 10, 0.08);
}

.chat-reg-btn {
  margin-top: 10px;
  background: linear-gradient(135deg, var(--green-light), var(--green-dark));
  color: white;
  border: none;
  padding: 14px;
  border-radius: 14px;
  font-weight: 800;
  font-family: var(--font-narrow);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 6px 20px rgba(86, 163, 10, 0.2);
}

.chat-reg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(86, 163, 10, 0.3);
}

.chat-reg-btn:active {
  transform: scale(0.98);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .contact-managers {
    grid-template-columns: 1fr;
  }
}