/* ============ SITE-SPECIFIC STYLES ============ */

/* ===== HEADER ===== */
.topbar {
  background: var(--green-900);
  color: rgba(255,255,255,.82);
  font-size: 13px;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap;
}
.topbar a { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; transition: color .2s var(--ease); }
.topbar-contact a svg { width: 14px; height: 14px; flex-shrink: 0; }
.topbar a:hover { color: var(--gold-400); }
.topbar-contact { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar-social { display: flex; gap: 10px; flex-shrink: 0; }
.topbar-social a {
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(255,255,255,.08); align-items: center; justify-content: center;
}
.topbar-social a:hover { background: var(--gold-500); color: var(--green-900); }

.header {
  background: rgba(255,255,255,.95);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--ink-200);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 16px; padding-bottom: 16px;
}
.logo { display: flex; align-items: center; }
.logo img { height: clamp(52px, 8vw, 80px); width: auto; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  padding: 10px 16px; border-radius: var(--radius-full); font-weight: 500; font-size: 15px;
  color: var(--ink-700); transition: all .25s var(--ease);
  display: inline-flex; align-items: center; gap: 6px;
}
.nav-link:hover { background: var(--green-50); color: var(--green-700); }
.nav-link .chev { width: 12px; height: 12px; transition: transform .25s var(--ease); }
.nav-item:hover .chev { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: #fff; border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  border: 1px solid var(--ink-200); padding: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; transition: all .25s var(--ease); z-index: 10;
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; color: var(--ink-700);
  transition: all .2s var(--ease);
}
.nav-dropdown a:hover { background: var(--green-50); color: var(--green-700); padding-left: 18px; }

.header-cta { display: flex; gap: 10px; align-items: center; }
.burger { display: none; width: 44px; height: 44px; border-radius: 12px; background: var(--green-50); }
.burger span { display: block; width: 20px; height: 2px; background: var(--green-800); margin: 3px auto; border-radius: 2px; }

/* ===== HERO ===== */
.hero[data-variant="fullbleed"] .eyebrow { color: rgba(255,255,255,.9); }
.hero[data-variant="fullbleed"] .eyebrow::before { background: var(--gold-400); }
.hero {
  position: relative; padding: 0; overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding-top: clamp(48px, 7vw, 96px);
  padding-bottom: clamp(64px, 9vw, 120px);
}
.hero-copy { display: flex; flex-direction: column; gap: 28px; max-width: 600px; }
.hero-copy h1 { color: var(--green-900); }
.hero-copy h1 em { font-style: normal; color: var(--green-700); position: relative; white-space: nowrap; }
.hero-copy h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 4px; height: 8px;
  background: var(--gold-300); border-radius: 4px; z-index: -1; opacity: .7;
}
.hero-lead { color: var(--ink-500); font-size: clamp(17px, 1.3vw, 20px); max-width: 52ch; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 8px; padding-top: 28px; border-top: 1px solid var(--ink-200);
}
.hero-stat .num {
  font-family: var(--f-display); font-size: clamp(28px, 3vw, 36px); font-weight: 800;
  color: var(--green-800); letter-spacing: -0.02em;
}
.hero-stat .num .accent { color: var(--gold-500); }
.hero-stat .label { font-size: 13px; color: var(--ink-500); margin-top: 4px; line-height: 1.3; }

/* Hero visual — asymmetric shape (inspired by Relix) */
.hero-visual {
  position: relative; aspect-ratio: 5/6;
  border-radius: 200px 24px 24px 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(31, 45, 16, .25));
}
.hero-badge {
  position: absolute; top: 24px; right: 24px;
  background: rgba(255,255,255,.95); padding: 10px 18px; border-radius: var(--radius-full);
  font-size: 13px; font-weight: 600; color: var(--green-800);
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: var(--shadow-md);
}
.hero-badge .dot { width: 8px; height: 8px; background: var(--gold-500); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

.hero-float {
  position: absolute; left: -24px; bottom: 48px;
  background: #fff; padding: 20px 24px; border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px;
  max-width: 260px;
}
.hero-float .icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center; flex-shrink: 0;
}
.hero-float .txt { font-size: 13px; line-height: 1.4; }
.hero-float .txt strong { display: block; font-size: 14px; color: var(--ink-900); margin-bottom: 2px; }

/* Decorative backdrop shapes */
.hero-bg {
  position: absolute; pointer-events: none; z-index: 0;
}
.hero-bg-1 {
  width: 500px; height: 500px; right: -180px; top: -100px;
  background: radial-gradient(circle, var(--green-50), transparent 70%);
  border-radius: 50%;
}
.hero-bg-2 {
  width: 300px; height: 300px; left: -140px; bottom: -80px;
  background: radial-gradient(circle, var(--gold-100), transparent 70%);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; }

/* ===== ABOUT ===== */
#about { overflow: hidden; }
.about-grid {
  display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(32px, 5vw, 80px);
  align-items: center;
}
.about-media {
  position: relative; aspect-ratio: 4/5;
  border-radius: var(--radius-lg); overflow: hidden;
  z-index: 1;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

/* Золотая рамка сзади */
.about-media::before {
  content: ''; position: absolute; left: -18px; top: -18px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold-400); border-radius: var(--radius-lg);
  z-index: -1;
}

/* Декоративные точки */
.about-wrapper {
  position: relative;
}
.about-wrapper::before {
  content: '';
  position: absolute; right: -40px; bottom: -40px;
  width: 220px; height: 220px;
  background-image: radial-gradient(circle, var(--green-500) 2.5px, transparent 2.5px);
  background-size: 18px 18px;
  border-radius: 50%;
  opacity: .8;
  z-index: 0;
}
.about-wrapper::after {
  content: '';
  position: absolute; left: -36px; top: 20%;
  width: 160px; height: 160px;
  background-image: radial-gradient(circle, var(--gold-500) 2.5px, transparent 2.5px);
  background-size: 16px 16px;
  border-radius: 50%;
  opacity: .75;
  z-index: 0;
}

/* Зелёный акцент-блок за фото */
.about-media-bg {
  position: absolute; bottom: 0; right: 0;
  width: 55%; height: 45%;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: .15;
}
.about-copy { display: flex; flex-direction: column; gap: 24px; }
.about-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.about-point { display: flex; flex-direction: column; gap: 12px; padding: 20px; background: var(--ink-50); border-radius: var(--radius-md); border-top: 2px solid var(--green-400); }
.about-point .pt-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--green-100); color: var(--green-700);
  display: grid; place-items: center; flex-shrink: 0;
}
.about-point .pt-icon svg { width: 22px; height: 22px; }
.about-point h4 { font-size: 15px; margin: 0; color: var(--ink-900); }
.about-point p { margin: 0; font-size: 13px; color: var(--ink-500); line-height: 1.5; }
.about-sub { margin-top: 8px; }
.about-mission {
  margin-top: 8px; padding: 32px 36px;
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 60%, var(--green-600) 100%);
  color: #fff; border-radius: var(--radius-lg);
  display: flex; flex-direction: column; gap: 16px;
  position: relative; overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.about-mission::before {
  content: '\201C';
  position: absolute; right: 24px; top: -10px;
  font-size: 140px; line-height: 1; font-family: Georgia, serif;
  color: rgba(255,255,255,.06); pointer-events: none;
}
.about-mission::after {
  content: ''; position: absolute; left: 0; bottom: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold-500), transparent);
}
.about-mission-mark { display: none; }
.about-mission-lbl {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-400);
}
.about-mission p {
  margin: 0; font-size: 17px; line-height: 1.65; color: rgba(255,255,255,.95);
  font-weight: 500; max-width: 52ch;
}

/* ===== WHY US ===== */
.why {
  background: var(--green-900);
  position: relative; overflow: hidden;
}

/* Декоративная сетка на фоне */
.why::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Световые пятна */
.why::after {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,141,54,.35), transparent 65%);
  pointer-events: none;
}

.why .container { position: relative; z-index: 1; }
.why .section-head h2 { color: #fff; }
.why .eyebrow { color: var(--gold-400); }
.why .eyebrow::before { background: var(--gold-400); }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: rgba(255,255,255,.05); border-radius: var(--radius-lg); padding: 36px 32px;
  border: 1px solid rgba(255,255,255,.1); position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease), background .4s var(--ease);
  backdrop-filter: blur(8px);
}
.why-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.3); border-color: rgba(0,141,54,.5); background: rgba(255,255,255,.08); }
.why-card::before {
  content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(0,141,54,.15), transparent 70%);
  transition: all .5s var(--ease);
}
.why-card:hover::before { width: 200px; height: 200px; }
.why-num {
  font-family: var(--f-display); font-size: 42px; font-weight: 800; letter-spacing: -0.02em;
  color: var(--gold-500); margin-bottom: 8px; display: block; line-height: 1;
}
.why-icon {
  width: 64px; height: 64px; border-radius: 18px;
  background: rgba(0,141,54,.25); color: var(--green-400);
  display: grid; place-items: center; margin-bottom: 24px;
  transition: all .4s var(--ease);
}
.why-card:hover .why-icon { background: var(--green-700); color: #fff; transform: rotate(-6deg); }
.why-icon svg { width: 30px; height: 30px; }
.why-card h3 { margin-bottom: 12px; color: #fff; }
.why-card p { margin: 0; color: rgba(255,255,255,.65); font-size: 15px; line-height: 1.6; }

/* ===== CATALOG ===== */
.catalog-head {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}

/* Слайдер */
.catalog-slider-outer {
  display: flex; align-items: center; gap: 16px;
}
.catalog-slider-wrap {
  overflow: hidden; flex: 1; min-width: 0;
}
.catalog-track {
  display: flex;
  gap: 20px;
  transition: transform .45s cubic-bezier(.2,.7,.2,1);
}

/* Стрелки */
.catalog-arrow {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--ink-200); color: var(--ink-700);
  display: grid; place-items: center; cursor: pointer;
  transition: all .25s var(--ease); box-shadow: var(--shadow-sm);
}
.catalog-arrow:hover:not(:disabled) {
  background: var(--green-700); color: #fff; border-color: var(--green-700); transform: scale(1.06);
}
.catalog-arrow:disabled { opacity: .3; cursor: default; pointer-events: none; }
.catalog-arrow svg { width: 18px; height: 18px; }
.catalog-arrow-prev svg { transform: rotate(180deg); }

/* На мобайле стрелки накладываются поверх карточек */
@media (max-width: 579px) {
  .catalog-slider-outer { position: relative; gap: 0; }
  .catalog-slider-wrap { width: 100%; }
  .catalog-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 10; width: 36px; height: 36px;
    background: rgba(255,255,255,.92); box-shadow: 0 2px 10px rgba(0,0,0,.18);
  }
  .catalog-arrow-prev { left: 6px; }
  .catalog-arrow-next { right: 6px; }
  .catalog-arrow:disabled { display: none; }
}

/* Карточки */
.catalog-card {
  position: relative; aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden;
  cursor: pointer; transition: transform .4s var(--ease);
  background: var(--green-800); display: block;
  /* Fallback ширина до инициализации JS */
  flex: 0 0 calc((100% - 60px) / 4);
}
@media (max-width: 579px) {
  .catalog-card { flex: 0 0 calc((100% - 20px) / 2); }
}
.catalog-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s var(--ease), opacity .4s var(--ease);
  opacity: .85;
}
.catalog-card:hover { transform: translateY(-4px); }
.catalog-card:hover img { transform: scale(1.06); opacity: 1; }
.catalog-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31, 45, 16, .05) 20%, rgba(31, 45, 16, .92));
  pointer-events: none;
}
.catalog-card-body {
  position: absolute; inset: 0; z-index: 2;
  padding: 24px; display: flex; flex-direction: column; justify-content: space-between;
  color: #fff;
}
.catalog-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.15); backdrop-filter: blur(8px);
  display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25);
}
.catalog-icon svg { width: 26px; height: 26px; color: #fff; }
.catalog-card:hover .catalog-icon { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); }
.catalog-card:hover .catalog-icon svg { color: var(--green-900); }
.catalog-title-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.catalog-title { font-size: 22px; font-weight: 700; margin: 0; letter-spacing: -0.01em; color: #fff; }
.catalog-title-row .arrow {
  width: 32px; height: 32px; flex-shrink: 0; border-radius: 50%;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center; transition: all .3s var(--ease);
}
.catalog-card:hover .catalog-title-row .arrow { background: var(--gold-500); color: var(--green-900); border-color: var(--gold-500); transform: translateX(4px); }

@media (max-width: 579px) {
  .catalog-card-body { padding: 12px; }
  .catalog-icon { width: 36px; height: 36px; border-radius: 10px; }
  .catalog-icon svg { width: 20px; height: 20px; }
  .catalog-title { font-size: 14px; }
  .catalog-title-row { gap: 6px; }
  .catalog-title-row .arrow { width: 26px; height: 26px; }
  .catalog-title-row .arrow svg { width: 12px; height: 12px; }
}

.catalog-footer { margin-top: 48px; text-align: center; }

/* ===== PARTNERS ===== */
.partners {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 50%, var(--green-600) 100%);
  position: relative; overflow: hidden;
}
.partners .section-head { position: relative; z-index: 1; }
.partners .section-head h2 { color: #fff; }
.partners .eyebrow { color: var(--gold-400); }
.partners .eyebrow::before { background: var(--gold-400); }

/* Декоративный фон — большой лист */
.partners::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 520px; height: 520px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='0.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 20A7 7 0 0 1 9.8 6.1C15.5 5 17 4.48 19.8 2c1 3.5.5 6.5-1 10'/%3E%3Cpath d='M2 21c0-3 1.85-5.36 5.08-6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: .07; pointer-events: none;
}
.partners::after {
  content: '';
  position: absolute; left: -60px; bottom: -60px;
  width: 360px; height: 360px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='0.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2c4 4 4 10 0 14-4-4-4-10 0-14z'/%3E%3Cpath d='M12 16v6'/%3E%3C/svg%3E");
  background-size: contain; background-repeat: no-repeat;
  opacity: .06; pointer-events: none;
}

.partners-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.partner-card {
  background: #fff; border-radius: var(--radius-lg); padding: 40px 32px; aspect-ratio: 3/2;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.2);
  transition: all .35s var(--ease);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(0,0,0,.2); }
.partner-card img {
  width: 220px; height: 110px;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter .3s var(--ease);
}
.partner-card:hover img { filter: grayscale(0); }

/* ===== CONTACTS ===== */
.contacts-grid {
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px;
  background: #fff; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-md);
  border: 1px solid var(--ink-200);
}
.contacts-info { padding: clamp(32px, 4vw, 56px); display: flex; flex-direction: column; gap: 24px; }
.contacts-info h3 { font-size: 22px; }
.contact-item { display: flex; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--ink-200); }
.contact-item:last-of-type { border-bottom: 0; }
.contact-icon {
  width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center;
}
.contact-icon svg { width: 20px; height: 20px; stroke-width: 1.8; }
.contact-item .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-500); margin-bottom: 2px; }
.contact-item .val { font-size: 15px; color: var(--ink-900); font-weight: 500; }
.contact-item a.val:hover { color: var(--green-700); }
.contact-socials { display: flex; gap: 10px; margin-top: 8px; }
.contact-socials a {
  width: 40px; height: 40px; border-radius: 50%; background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center; transition: all .2s var(--ease);
}
.contact-socials a svg { width: 18px; height: 18px; }
.topbar-social a svg { width: 14px; height: 14px; }
.footer-social a svg { width: 14px; height: 14px; }
.contact-socials a:hover { background: var(--green-700); color: #fff; transform: translateY(-2px); }

.contacts-map {
  background: var(--ink-100); min-height: 440px; position: relative;
  display: grid; place-items: center;
}
.contacts-map iframe { display: block; }

/* ===== Callback modal ===== */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(31, 45, 16, .55);
  backdrop-filter: blur(6px); z-index: 1000;
  display: grid; place-items: center; padding: 20px;
  animation: fadeIn .2s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: #fff; border-radius: var(--radius-xl); padding: 36px;
  max-width: 440px; width: 100%; position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
  animation: modalIn .3s var(--ease);
}
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.97); } to { opacity: 1; transform: none; } }
.modal-close {
  position: absolute; top: 16px; right: 16px; width: 36px; height: 36px;
  border-radius: 50%; background: var(--ink-100); color: var(--ink-700);
  display: grid; place-items: center; font-size: 14px;
}
.modal-close:hover { background: var(--green-50); color: var(--green-800); }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.modal-form label { display: flex; flex-direction: column; gap: 6px; font-size: 13px; color: var(--ink-500); font-weight: 500; }
.modal-form input, .modal-form select {
  width: 100%; height: 46px; padding: 0 16px; border-radius: 12px;
  border: 1.5px solid var(--ink-200); background: var(--ink-50);
  font: inherit; color: var(--ink-900); outline: none;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.modal-form input:focus, .modal-form select:focus { border-color: var(--green-500); background: #fff; }
.modal-success { text-align: center; padding: 20px 0; }
.modal-success-icon {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--green-50); color: var(--green-700);
  display: grid; place-items: center;
}
.modal-success-icon svg { width: 36px; height: 36px; }
.modal-success h3 { margin-bottom: 8px; }
.modal-success p { color: var(--ink-500); margin: 0; }
.map-placeholder {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(107, 142, 35, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 142, 35, .08) 1px, transparent 1px),
    linear-gradient(135deg, #eef1e8 0%, #dde2d4 100%);
  background-size: 40px 40px, 40px 40px, 100% 100%;
}
.map-pin {
  position: relative; z-index: 2; background: var(--green-700); color: #fff;
  padding: 12px 20px; border-radius: var(--radius-full); font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 24px rgba(61, 90, 31, .35);
  display: inline-flex; align-items: center; gap: 8px;
}
.map-pin::after {
  content: ''; position: absolute; left: 50%; bottom: -8px; transform: translateX(-50%);
  border: 8px solid transparent; border-top-color: var(--green-700);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--green-900); color: rgba(255,255,255,.75); padding: 64px 0 24px;
  position: relative; overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--green-500), var(--gold-500), var(--green-500));
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px;
}
.footer-brand img { height: 90px; filter: brightness(0) invert(1) opacity(.95); }
.footer-brand p { margin-top: 16px; font-size: 14px; max-width: 280px; line-height: 1.6; }
.footer-req-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-300);
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  cursor: pointer;
  transition: color .2s, border-color .2s, background .2s;
}
.footer-req-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.07);
}
.footer h5 { font-family: var(--f-display); font-size: 14px; font-weight: 700; color: #fff; margin: 0 0 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color .2s var(--ease); }
.footer ul a:hover { color: var(--gold-400); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: grid; place-items: center; transition: all .2s var(--ease);
}
.footer-social a:hover { background: var(--gold-500); color: var(--green-900); }

.footer-bottom-right { display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }

.footer-tg-block { display: flex; gap: 10px; align-items: center; margin-top: 28px; }
.btn-tg-write {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 28px; border-radius: var(--radius-full);
  background: #2aabee; color: #fff; font-weight: 600; font-size: 14px;
  transition: all .25s var(--ease);
}
.btn-tg-write:hover { background: #1a9bde; transform: translateY(-2px); }
.btn-tg-icon {
  width: 42px; height: 42px; border-radius: 50%;
  background: #2aabee; color: #fff;
  display: grid; place-items: center; flex-shrink: 0;
  transition: all .25s var(--ease);
}
.btn-tg-icon:hover { background: #1a9bde; transform: translateY(-2px); }
.btn-tg-icon svg { width: 18px; height: 18px; }

.footer-dev {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: rgba(255,255,255,.45);
}
.footer-dev img { height: 22px; width: auto; opacity: .6; filter: brightness(0) invert(1); transition: opacity .2s; }
.footer-dev a:hover img { opacity: 1; }

/* ========== TWEAKS — HERO VARIANT ========== */
.hero[data-variant="split"] .hero-visual { border-radius: var(--radius-lg); }
.hero[data-variant="fullbleed"] .hero-inner { grid-template-columns: 1fr; padding-top: 0; padding-bottom: 0; }
.hero[data-variant="fullbleed"] .hero-copy { max-width: 800px; padding-top: clamp(80px, 12vw, 140px); padding-bottom: clamp(80px, 12vw, 140px); position: relative; z-index: 2; }
.hero[data-variant="fullbleed"] .hero-copy h1 { color: #fff; }
.hero[data-variant="fullbleed"] .hero-copy h1 em { color: var(--gold-400); }
.hero[data-variant="fullbleed"] .hero-copy h1 em::after { background: rgba(212, 164, 55, .3); }
.hero[data-variant="fullbleed"] .hero-lead { color: rgba(255,255,255,.9); }
.hero[data-variant="fullbleed"] .hero-stat .num { color: #fff; }
.hero[data-variant="fullbleed"] .hero-stat .label { color: rgba(255,255,255,.75); }
.hero[data-variant="fullbleed"] .hero-stats { border-top-color: rgba(255,255,255,.2); }
.hero[data-variant="fullbleed"] .hero-visual,
.hero[data-variant="fullbleed"] .hero-bg-1,
.hero[data-variant="fullbleed"] .hero-bg-2 { display: none; }
.hero[data-variant="fullbleed"] {
  background-image: linear-gradient(180deg, rgba(31, 45, 16, .4) 0%, rgba(31, 45, 16, .75) 100%), url('../images/hero-field.jpg');
  background-size: cover; background-position: center;
}
.hero[data-variant="fullbleed"] .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero[data-variant="fullbleed"] .btn-ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ========== TWEAKS — WHY STYLE ========== */
.why[data-style="minimal"] .why-card { padding: 0; border: 0; background: transparent; box-shadow: none; }
.why[data-style="minimal"] .why-card::before { display: none; }
.why[data-style="minimal"] .why-card:hover { transform: none; }
.why[data-style="minimal"] .why-card:hover .why-icon { transform: none; }

/* ========== TWEAKS — CATALOG STYLE ========== */
.catalog[data-style="tiles"] .catalog-card { aspect-ratio: 1; background: var(--green-700); }
.catalog[data-style="tiles"] .catalog-card img { display: none; }
.catalog[data-style="tiles"] .catalog-card::after { background: none; }
.catalog[data-style="tiles"] .catalog-card:hover { background: var(--green-800); }
.catalog[data-style="tiles"] .catalog-icon { width: 72px; height: 72px; background: rgba(255,255,255,.12); }
.catalog[data-style="tiles"] .catalog-icon svg { width: 40px; height: 40px; }
.catalog[data-style="tiles"] .catalog-card-body { justify-content: center; align-items: center; text-align: center; gap: 20px; }
.catalog[data-style="tiles"] .catalog-title { font-size: 18px; }
.catalog[data-style="tiles"] .catalog-meta { display: none; }

/* ========== RESPONSIVE ========== */

/* --- Планшет широкий (1100px) --- */
@media (max-width: 1100px) {
  .topbar a.hide-mid { display: none; }
}

/* --- Планшет (1024px) --- */
@media (max-width: 1024px) {
  .hero-inner, .about-grid { grid-template-columns: 1fr; }
  .hero-visual { aspect-ratio: 16/9; max-height: 480px; }
  .about-media { aspect-ratio: 3/2; max-height: 420px; }
  .about-points { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-float { display: none; }
}

/* --- Планшет (820px) --- */
@media (max-width: 820px) {
  /* Герой — гарантированные боковые отступы */
  .hero[data-variant="fullbleed"] .hero-inner {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  /* Шапка */
  .nav { display: none; }
  .burger { display: block; }
  .header-cta .btn-primary { display: none; }
  .header { position: sticky; top: 0; z-index: 100; }
  .nav.open {
    display: flex; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; background: #fff; padding: 16px; gap: 4px;
    border-top: 1px solid var(--ink-200); box-shadow: var(--shadow-md);
    z-index: 99;
  }
  .nav.open .nav-item { width: 100%; }
  .nav.open .nav-link { width: 100%; justify-content: space-between; }
  .nav.open .nav-dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border: 0; padding-left: 16px; margin-top: 4px;
  }

  /* Секции */
  .contacts-grid { grid-template-columns: 1fr; }
  .contacts-map { min-height: 320px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .why-card { padding: 28px 20px; }
  .partners-row { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .partner-card { padding: 28px 20px; }
  .about-points { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; }

  /* Футер */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bottom-right { width: 100%; flex-direction: row; justify-content: space-between; align-items: center; }
}

/* --- Мобильный (580px) --- */
@media (max-width: 580px) {
  .why-grid { grid-template-columns: 1fr; }
  .partners-row { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .topbar-inner { justify-content: space-between; flex-wrap: nowrap; gap: 12px; }
  .topbar-social { display: flex; }
  .topbar-social a { width: 28px; height: 28px; }
  .btn-tg-write { padding: 10px 18px; font-size: 13px; }

  /* Футер — лого и контакты на всю ширину, навигация в 2 компактных колонки между ними */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .footer-brand img { height: 64px; }
  .footer-brand p { font-size: 13px; max-width: 100%; margin-top: 12px; }
  .footer-req-link { margin-top: 10px; }

  /* Каталог и Компания — 2 компактные колонки */
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    padding-bottom: 28px;
  }
  .footer-grid > div:nth-child(2) { padding-right: 12px; }
  .footer-grid > div:nth-child(3) { padding-left: 12px; border-left: 1px solid rgba(255,255,255,.08); }
  .footer h5 { font-size: 12px; margin-bottom: 14px; }
  .footer ul { gap: 8px; }
  .footer ul a { font-size: 13px; }

  /* Контакты — на всю ширину */
  .footer-grid > div:nth-child(4) {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .footer-tg-block { margin-top: 20px; }
}

/* --- Мобильный маленький (420px) --- */
@media (max-width: 420px) {
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-visual { border-radius: var(--radius-lg); }
  .footer-bottom-right { flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-points { grid-template-columns: 1fr; }
  .contacts-info { padding: 24px 20px; }
  .section-head { margin-bottom: 28px; }
  .why-card { padding: 24px 20px; }
  .modal { padding: 24px 20px; }

  /* Футер совсем маленький — всё в 1 колонку */
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    padding-left: 0; padding-right: 0; border-left: 0;
  }
  .footer-grid > div:nth-child(2) {
    border-top: 1px solid rgba(255,255,255,.1);
    padding-top: 24px;
  }
  .footer-grid > div:nth-child(3) {
    padding-top: 0; padding-bottom: 24px;
  }
}

/* ===================================================
   CATALOG PAGE — catalog.html
   =================================================== */

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--ink-400);
  padding: 16px 0;
}
.breadcrumb a { color: var(--ink-400); transition: color .2s; }
.breadcrumb a:hover { color: var(--green-700); }
.breadcrumb-sep { color: var(--ink-300); }
.breadcrumb span { color: var(--ink-700); font-weight: 500; }

/* Page layout */
.catalog-page-wrap {
  padding: clamp(16px, 2vw, 24px) 0 clamp(32px, 4vw, 48px);
}
body.page-catalog #contacts {
  padding-top: clamp(32px, 4vw, 56px);
}
.catalog-page-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar */
.catalog-sidebar {
  position: sticky;
  top: 24px;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.catalog-sidebar-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-400);
  padding: 16px 20px 10px;
}
.catalog-sidebar-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px; cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--ink-700);
  border-left: 3px solid transparent;
  transition: background .18s, color .18s, border-color .18s;
  background: transparent; border-top: 0; border-right: 0; border-bottom: 0;
  width: 100%; text-align: left;
}
.catalog-sidebar-item:hover { background: var(--green-50); color: var(--green-700); }
.catalog-sidebar-item.active {
  background: var(--green-50); color: var(--green-700);
  border-left-color: var(--green-700); font-weight: 600;
}
.catalog-sidebar-icon {
  width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0;
  background: var(--ink-100); display: grid; place-items: center;
  transition: background .18s;
}
.catalog-sidebar-item.active .catalog-sidebar-icon,
.catalog-sidebar-item:hover .catalog-sidebar-icon { background: var(--green-100); }
.catalog-sidebar-icon svg { width: 16px; height: 16px; color: var(--green-700); }

/* Main content */
.catalog-main-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
}
.catalog-main-head h1 { font-size: clamp(24px, 3vw, 36px); }
.catalog-count {
  font-size: 13px; color: var(--ink-400); margin-top: 6px;
}

/* Variety cards grid */
.variety-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Variety card */
.variety-card {
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.variety-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
}
.variety-card-img {
  width: 100%; aspect-ratio: 3/4; overflow: hidden;
  background: #fff; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  box-sizing: border-box;
}
.variety-card-img img {
  width: 100%; height: 100%; object-fit: contain;
  transition: transform .5s var(--ease);
}
.variety-card:hover .variety-card-img img { transform: scale(1.05); }
.variety-badge {
  position: absolute; top: 10px; left: 10px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; border-radius: var(--radius-full);
  padding: 3px 10px;
}
.variety-badge--in  { background: var(--green-50);  color: var(--green-700); }
.variety-badge--out { background: #fff3cd; color: #856404; }
.variety-card-body {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}
.variety-card-name {
  font-size: 17px; font-weight: 700; color: var(--ink-900);
  margin: 0; letter-spacing: -0.01em; flex: 1;
}
.variety-card-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-700); color: #fff;
  border-radius: var(--radius-full); padding: 9px 20px;
  font-size: 13px; font-weight: 600;
  transition: background .2s, transform .2s;
  border: 0; cursor: pointer; text-decoration: none;
  align-self: flex-start;
}
.variety-card-btn:hover { background: var(--green-800); transform: translateY(-1px); }
.variety-card-btn svg { width: 14px; height: 14px; }

/* Mobile tabs instead of sidebar */
.catalog-tabs {
  display: none;
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  gap: 8px; padding: 0 0 4px;
  scrollbar-width: none;
}
.catalog-tabs::-webkit-scrollbar { display: none; }
.catalog-tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 500; white-space: nowrap; cursor: pointer;
  border: 1.5px solid var(--ink-200); background: var(--white); color: var(--ink-700);
  transition: all .2s; flex-shrink: 0;
}
.catalog-tab:hover { border-color: var(--green-400); color: var(--green-700); }
.catalog-tab.active {
  background: var(--green-700); color: #fff; border-color: var(--green-700);
}
.catalog-tab svg { width: 16px; height: 16px; }

/* Responsive */
@media (max-width: 1100px) {
  .variety-grid { gap: 16px; }
}
@media (max-width: 900px) {
  .catalog-page-layout {
    grid-template-columns: 160px 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .catalog-sidebar { display: none; }
  .catalog-tabs { display: flex; }
  .catalog-page-layout { grid-template-columns: 1fr; gap: 24px; }
  .variety-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
}
@media (max-width: 520px) {
  .variety-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .variety-card-body { padding: 12px 14px 14px; }
  .variety-card-name { font-size: 14px; }
}

/* ===== CROPS OVERVIEW PAGE ===== */
.crops-hero {
  margin-bottom: 36px;
}
.crops-hero-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-900);
  margin: 0 0 12px;
}
.crops-hero-sub {
  font-size: 15px;
  color: var(--ink-400);
  line-height: 1.6;
  margin: 0;
}

.crops-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.crop-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  display: block;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}
.crop-card-img {
  position: absolute;
  inset: 0;
}
.crop-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.crop-card:hover .crop-card-img img { transform: scale(1.07); }

.crop-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0,0,0,.10) 0%,
    rgba(0,0,0,.08) 40%,
    rgba(0,0,0,.62) 100%
  );
  transition: background .3s;
}
.crop-card:hover .crop-card-overlay {
  background: linear-gradient(to bottom,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.10) 40%,
    rgba(0,0,0,.72) 100%
  );
}

.crop-card-icon {
  position: absolute;
  top: 14px; left: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
}
.crop-card-icon svg { width: 16px; height: 16px; color: #fff; }

.crop-card-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 14px 16px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
}
.crop-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.crop-card-meta {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.65);
}
.crop-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.crop-card-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s, transform .2s;
}
.crop-card-arrow svg { width: 16px; height: 16px; color: #fff; }
.crop-card:hover .crop-card-arrow {
  background: var(--green-600);
  border-color: var(--green-600);
  transform: translateX(2px);
}

@media (max-width: 1024px) {
  .crops-grid { grid-template-columns: repeat(3, 1fr); }
  .crop-card-title { font-size: 16px; }
}
@media (max-width: 640px) {
  .crops-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .crop-card-title { font-size: 15px; }
  .crop-card-meta { display: none; }
}

/* =================================================================
   PRODUCT DETAIL PAGE — product.html
   ================================================================= */

/* Hero: image + specs */
.product-hero {
  display: grid;
  grid-template-columns: 413px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 48px;
}
.product-image-wrap {
  position: sticky;
  top: 24px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 28px 72px rgba(0,0,0,.16), 0 6px 18px rgba(0,0,0,.08);
}
.product-image-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to bottom, transparent, rgba(10,24,10,.32));
  pointer-events: none;
  border-radius: 0 0 22px 22px;
}
.product-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform .45s var(--ease);
}
.product-image-wrap:hover img { transform: scale(1.025); }
.product-specs {}

/* Badge + title */
.product-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  background: var(--green-50);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-full);
  padding: 4px 12px;
}
.product-title {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
  color: var(--ink-900);
}

/* Meta: подвид + тип роста */
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.product-meta-item {
  padding: 14px 16px;
  background: var(--white);
}
.product-meta-item:first-child {
  border-right: 1px solid var(--ink-200);
}
.product-meta-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-400);
  margin-bottom: 5px;
}
.product-meta-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-800);
  line-height: 1.4;
}

/* Feature icons row */
.product-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.product-feature {
  background: linear-gradient(145deg, var(--green-600) 0%, var(--green-800) 100%);
  border-radius: var(--radius-md);
  padding: 22px 14px 20px;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s;
  box-shadow: 0 4px 18px rgba(0,141,54,.22);
  position: relative;
  overflow: hidden;
}
.product-feature::before {
  content: '';
  position: absolute;
  top: -30px; right: -30px;
  width: 90px; height: 90px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  pointer-events: none;
}
.product-feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(0,141,54,.32);
}
.product-feature-icon {
  width: 52px; height: 52px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
  border: 1.5px solid rgba(255,255,255,.3);
}
.product-feature-icon svg { width: 22px; height: 22px; color: #fff; }
.product-feature-label {
  font-size: 10px;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
  margin-bottom: 6px;
}
.product-feature-value {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Seed info */
.product-seed {
  display: flex;
  gap: 16px;
  padding: 16px 18px;
  background: #fffdf5;
  border: 1px solid var(--gold-300);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  align-items: center;
}
.product-seed-icon {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--gold-100);
  border: 2px solid var(--gold-300);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(184,137,30,.14);
}
.product-seed-icon svg { width: 24px; height: 24px; color: var(--gold-600); }
.product-seed-title {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--gold-600); margin-bottom: 6px;
}
.product-seed-row {
  font-size: 13px; color: var(--ink-700);
  line-height: 1.6;
}
.product-seed-row b { color: var(--ink-400); font-weight: 500; }

/* Resistance dots */
.product-resistance {
  padding: 18px 20px;
  background: var(--ink-50);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.product-resistance-title {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--ink-400); margin-bottom: 14px;
}
.resistance-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid var(--ink-200);
}
.resistance-item:last-child { border-bottom: 0; padding-bottom: 0; }
.resistance-name {
  font-size: 13px; font-weight: 500; color: var(--ink-700);
  flex: 0 0 140px;
}
.resistance-pips {
  flex: 1;
  display: flex;
  gap: 6px;
  align-items: center;
}
.resistance-pip {
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--ink-200);
  flex-shrink: 0;
  transition: background .2s;
}
.resistance-pip.filled {
  background: var(--green-600);
  box-shadow: 0 0 0 2px rgba(0,163,62,.18);
}
.resistance-score {
  font-size: 12px; font-weight: 700; color: var(--green-700);
  flex: 0 0 28px; text-align: right;
}

/* Stats badges */
.product-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.product-stat {
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-md);
  padding: 18px 12px 16px;
  text-align: center;
  border-top: 3px solid var(--green-500);
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: box-shadow .2s, border-color .2s;
}
.product-stat:hover {
  border-top-color: var(--green-700);
  box-shadow: 0 6px 20px rgba(0,141,54,.10);
}
.product-stat-value {
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 800;
  color: var(--green-700);
  letter-spacing: -0.03em;
  line-height: 1.15;
}
.product-stat-label {
  font-size: 10px;
  color: var(--ink-400);
  line-height: 1.3;
  margin-top: 6px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  word-break: break-word;
}

/* Characteristics table */
.product-section {
  margin-bottom: 40px;
}
.product-section-title {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 18px;
}
.chars-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-200);
  -webkit-overflow-scrolling: touch;
}
.chars-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}
.chars-table th {
  padding: 14px 16px;
  background: var(--green-800);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.15);
}
.chars-table th:first-child {
  background: var(--green-900);
  text-align: left;
  min-width: 190px;
}
.chars-table th:last-child { border-right: 0; }
.chars-zone-hint {
  font-size: 11px;
  color: rgba(255,255,255,.6);
  margin-top: 3px;
  font-weight: 400;
  line-height: 1.3;
}
.chars-table td {
  padding: 12px 16px;
  font-size: 13px;
  border-right: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  vertical-align: top;
  text-align: center;
  color: var(--ink-700);
}
.chars-table td:first-child {
  text-align: left;
  font-weight: 600;
  color: var(--ink-800);
  background: var(--ink-50);
}
.chars-table td:last-child { border-right: 0; }
.chars-table tr:last-child td { border-bottom: 0; }
.chars-table tr:nth-child(even) td:not(:first-child) { background: var(--ink-50); }

/* Yield table */
.yield-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--ink-200);
  -webkit-overflow-scrolling: touch;
}
.yield-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 400px;
}
.yield-table th {
  padding: 10px 16px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-400);
  background: var(--ink-50);
  border-bottom: 1px solid var(--ink-200);
  text-align: left;
}
.yield-table td {
  padding: 11px 16px;
  font-size: 13px;
  border-bottom: 1px solid var(--ink-100);
  color: var(--ink-700);
}
.yield-table tr:last-child td { border-bottom: 0; }
.yield-table tr:hover td { background: var(--green-50); }
.yield-table td:last-child {
  font-weight: 800;
  color: var(--green-700);
  font-size: 15px;
}

/* CTA */
.product-cta {
  text-align: center;
  padding: 40px 24px;
  background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 100%);
  border-radius: var(--radius-xl);
  margin-bottom: 48px;
  color: #fff;
}
.product-cta h3 {
  font-size: clamp(20px, 2vw, 28px);
  margin: 0 0 8px;
  color: #fff;
}
.product-cta p {
  color: rgba(255,255,255,.7);
  margin: 0 0 24px;
  font-size: 15px;
}
.product-cta .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-500);
  color: var(--ink-900);
  border-radius: var(--radius-full);
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  transition: background .2s, transform .2s;
}
.product-cta .btn-cta:hover { background: var(--gold-400); transform: translateY(-2px); }
.product-cta .btn-cta svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Related */
.product-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  .product-hero { grid-template-columns: 1fr 1.3fr; gap: 28px; }
  .product-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .product-hero { grid-template-columns: 1fr; gap: 24px; }
  .product-image-wrap { position: static; max-height: 280px; }
  .product-image-wrap img { aspect-ratio: 4/3; }
}
@media (max-width: 580px) {
  .product-stats { gap: 8px; }
  .product-stat { padding: 14px 8px 12px; }
  .product-stat-value { font-size: 16px; }
  .product-features { gap: 8px; }
  .product-feature { padding: 14px 8px 12px; }
  .product-feature-icon { width: 40px; height: 40px; }
  .product-feature-icon svg { width: 18px; height: 18px; }
  .product-feature-value { font-size: 12px; }
  .product-related-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .resistance-name { flex: 0 0 100px; font-size: 12px; }
  .resistance-pip { width: 11px; height: 11px; }
}

/* ===================================================
   AGROSUPPORT PAGE
   =================================================== */

.agro-page-wrap {
  padding-top: 48px;
  padding-bottom: 80px;
}

/* Hero */
.agro-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.agro-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agro-page-title {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.1;
  margin: 0;
}

.agro-page-lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-500);
  margin: 0;
}

.agro-hero-visual {
  position: relative;
}

.agro-hero-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-xl);
  display: block;
}

.agro-hero-badge {
  position: absolute;
  bottom: 24px;
  left: -28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
}

.agro-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-700);
}

.agro-badge-icon svg { width: 22px; height: 22px; }

.agro-badge-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}

.agro-badge-sub {
  font-size: 13px;
  color: var(--ink-500);
  margin-top: 2px;
}

/* Services Grid */
.agro-services-section {
  margin-bottom: 80px;
}

.agro-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.agro-svc-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--green-700);
  box-shadow: var(--shadow-md);
  padding: 32px 28px 28px;
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.agro-svc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.agro-svc-num {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 72px;
  font-weight: 800;
  line-height: 1;
  color: var(--green-100);
  user-select: none;
  pointer-events: none;
}

.agro-svc-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--green-50);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-700);
  margin-bottom: 16px;
}

.agro-svc-icon svg { width: 26px; height: 26px; }

.agro-svc-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 10px;
  line-height: 1.3;
}

.agro-svc-card p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-500);
  margin: 0;
}

/* Info Section */
.agro-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: var(--ink-50);
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  margin-bottom: 80px;
}

.agro-info-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.agro-info-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.agro-info-content h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800;
  color: var(--ink-900);
  line-height: 1.2;
}

.agro-benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.agro-benefits-list li {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-700);
  padding-left: 30px;
  position: relative;
}

.agro-benefits-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--green-700);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 5.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
}

/* Table Section */
.agro-table-section {
  margin-bottom: 40px;
}

.agro-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.agro-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
  min-width: 560px;
}

.agro-table thead tr {
  background: var(--green-800);
  color: var(--white);
}

.agro-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.agro-table tbody tr {
  background: var(--white);
  transition: background .15s;
}

.agro-table tbody tr:nth-child(even) {
  background: var(--ink-50);
}

.agro-table tbody tr:hover {
  background: var(--green-50);
}

.agro-table tbody td {
  padding: 14px 20px;
  color: var(--ink-700);
  border-bottom: 1px solid var(--ink-100);
  vertical-align: middle;
  line-height: 1.5;
}

.agro-table tbody tr:last-child td {
  border-bottom: none;
}

.agro-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.agro-tag + .agro-tag { margin-left: 4px; }

.agro-tag--green {
  background: var(--green-100);
  color: var(--green-800);
}

.agro-tag--gold {
  background: var(--gold-100);
  color: var(--gold-600);
}

/* Responsive — Agrosupport */
@media (max-width: 1024px) {
  .agro-hero { gap: 40px; }
  .agro-info-section { gap: 40px; padding: 40px 32px; }
}

@media (max-width: 820px) {
  .agro-hero {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 56px;
  }
  .agro-hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .agro-hero-badge { left: 12px; bottom: 12px; }
  .agro-services-grid { grid-template-columns: 1fr; }
  .agro-services-section { margin-bottom: 56px; }
  .agro-info-section {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 24px;
    margin-bottom: 56px;
  }
}

@media (max-width: 580px) {
  .agro-page-wrap { padding-top: 28px; padding-bottom: 48px; }
  .agro-page-title { font-size: 28px; }
  .agro-hero { margin-bottom: 40px; }
  .agro-hero-badge { min-width: 0; padding: 10px 14px; gap: 10px; }
  .agro-badge-title { font-size: 13px; }
  .agro-badge-sub { font-size: 12px; }
  .agro-badge-icon { width: 36px; height: 36px; }
  .agro-badge-icon svg { width: 18px; height: 18px; }
  .agro-svc-card { padding: 24px 20px 20px; }
  .agro-svc-num { font-size: 52px; }
  .agro-info-section { padding: 24px 16px; }
  .agro-table { font-size: 13px; }
  .agro-table thead th { padding: 12px 14px; font-size: 11px; }
  .agro-table tbody td { padding: 10px 14px; }
}

/* ===================================================
   REQUISITES MODAL
   =================================================== */

.req-backdrop {
  position: fixed; inset: 0;
  background: rgba(31, 45, 16, .55);
  backdrop-filter: blur(6px);
  z-index: 1001;
  display: grid;
  place-items: center;
  padding: 20px;
  animation: fadeIn .2s var(--ease);
}

.req-modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  max-width: 640px;
  width: 100%;
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,.3);
  max-height: 90vh;
  overflow-y: auto;
  animation: modalIn .3s var(--ease);
}

.req-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--ink-100);
  color: var(--ink-700);
  display: grid; place-items: center;
  font-size: 14px;
  transition: background .15s, color .15s;
}
.req-close:hover { background: var(--green-50); color: var(--green-800); }

.req-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink-900);
  margin: 8px 0 24px;
  line-height: 1.2;
}

.req-sections { display: flex; flex-direction: column; gap: 24px; }

.req-section-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-700);
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink-100);
}

.req-list { margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }

.req-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 8px 16px;
  padding: 6px 0;
}

.req-row dt {
  font-size: 13px;
  color: var(--ink-400);
  font-weight: 500;
  line-height: 1.5;
}

.req-row dd {
  font-size: 14px;
  color: var(--ink-900);
  font-weight: 600;
  margin: 0;
  line-height: 1.5;
  word-break: break-all;
}

@media (max-width: 580px) {
  .req-modal { padding: 28px 20px; }
  .req-title { font-size: 20px; }
  .req-row { grid-template-columns: 1fr; gap: 2px; }
  .req-row dt { font-size: 12px; }
  .req-row dd { font-size: 13px; }
}
