/* ============================================
   ГАРАНТ АГРО — Стили сайта
   Вдохновлено: Syngenta, ZemlyakoFF
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-dark: #1a1f2e;
  --color-dark-alt: #242938;
  --color-accent: #e8a020;
  --color-accent-hover: #d4911a;
  --color-green: #3a8f47;
  --color-green-light: #4caf50;
  --color-text: #333;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-light: #f5f6f8;
  --color-white: #ffffff;
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1280px;
  --header-height: 100px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

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

ul, ol {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

.section-title {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--color-accent);
  border-radius: 2px;
}

.section-title.light h2 {
  color: var(--color-white);
}

.section-title.light h2::after {
  background: var(--color-accent);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 160, 32, 0.3);
}

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

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-dark-alt);
  transform: translateY(-2px);
}

.btn-arrow::after {
  content: '→';
  font-size: 1.2em;
  transition: transform var(--transition);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: var(--color-dark);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding-top: 8px;
  padding-bottom: 8px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--color-white);
  z-index: 1001;
  flex-shrink: 0;
}

.logo-img {
  height: 80px;
  width: 220px;
  object-fit: cover;
  object-position: center 40%;
}

.header.scrolled .logo-img {
  height: 56px;
  width: 160px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 8px 8px;
  border-radius: 4px;
  transition: all var(--transition);
}

.nav a:hover,
.nav a.active {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.header-phones {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-phones-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  max-width: 20px;
  fill: var(--color-accent);
  flex-shrink: 0;
}

.header-phones-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.header-phone {
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.92rem;
  white-space: nowrap;
}

.header-phone--second {
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 8px;
}

.burger span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}

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

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

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

/* Mobile nav overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
  z-index: 999;
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  padding: 12px 24px;
  text-transform: uppercase;
}

.mobile-nav a:hover {
  color: var(--color-accent);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  z-index: 0;
  animation: heroZoom 25s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,20,5,0.75) 0%, rgba(10,20,5,0.5) 60%, rgba(10,20,5,0.3) 100%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 120px 0 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero h1 {
  color: var(--color-white);
  margin-bottom: 24px;
}

.hero h1 em {
  color: var(--color-accent);
  font-style: normal;
}

.hero-description {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- Catalog Section --- */
.catalog {
  padding: 100px 0;
  background: var(--color-dark);
}

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

.catalog-card {
  position: relative;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.catalog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.catalog-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.catalog-card:hover .catalog-card-bg {
  transform: scale(1.08);
}

.catalog-card-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.catalog-card:hover .catalog-card-overlay {
  opacity: 0.75;
}

.catalog-card-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.catalog-card h3 {
  color: var(--color-white);
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.catalog-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  line-height: 1.5;
}

.catalog-card-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}

.catalog-card:hover .catalog-card-arrow {
  background: var(--color-white);
}

.catalog-card-arrow svg {
  width: 18px;
  height: 18px;
  fill: var(--color-white);
  transition: fill var(--transition);
}

.catalog-card:hover .catalog-card-arrow svg {
  fill: var(--color-dark);
}

/* Card colors */
.catalog-card--green .catalog-card-bg { background: linear-gradient(135deg, #1b5e20, #388e3c); }
.catalog-card--teal .catalog-card-bg { background: linear-gradient(135deg, #00695c, #00897b); }
.catalog-card--blue .catalog-card-bg { background: linear-gradient(135deg, #1565c0, #1e88e5); }
.catalog-card--orange .catalog-card-bg { background: linear-gradient(135deg, #e65100, #f57c00); }
.catalog-card--purple .catalog-card-bg { background: linear-gradient(135deg, #4a148c, #7b1fa2); }
.catalog-card--amber .catalog-card-bg { background: linear-gradient(135deg, #f57f17, #fbc02d); }

/* --- Seeds Section --- */
.seeds {
  padding: 100px 0;
  background: var(--color-bg-light);
  background-image: radial-gradient(circle at 10% 20%, rgba(58,143,71,0.04) 0%, transparent 50%),
                     radial-gradient(circle at 90% 80%, rgba(232,160,32,0.04) 0%, transparent 50%);
}

.seeds-intro {
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.seeds-intro-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

.seeds-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.seed-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: all var(--transition);
}

.seed-item:first-child {
  border-top: 1px solid #e0e0e0;
}

.seed-item:hover {
  padding-left: 16px;
}

.seed-item h3 {
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.seed-item:hover h3 {
  color: var(--color-green);
}

.seed-item-arrow {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition);
}

.seed-item:hover .seed-item-arrow {
  transform: translateX(8px);
}

.seed-item-arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--color-text);
}

.seed-item:hover .seed-item-arrow svg {
  fill: var(--color-green);
}

/* Seeds grid (hybrid cards) */
.seeds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.seed-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.seed-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.seed-card-img {
  height: 200px;
  background: linear-gradient(135deg, #f0c040, #e8a020);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.seed-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.seed-card-img svg {
  width: 80px;
  height: 80px;
  fill: rgba(255, 255, 255, 0.4);
}

.seed-card-body {
  padding: 24px;
}

.seed-card-badge {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(58, 143, 71, 0.1);
  color: var(--color-green);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  margin-bottom: 12px;
}

.seed-card-badge--new {
  background: rgba(232, 160, 32, 0.15);
  color: var(--color-accent);
}

.seed-card-specs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #eee;
}

.seed-card-specs span {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-text-light);
  background: var(--color-bg-light);
  padding: 3px 8px;
  border-radius: 4px;
}

.seed-card h4 {
  font-weight: 800;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.seed-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.6;
}

.seed-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.seed-card-link:hover {
  color: var(--color-green-light);
}

.seed-card-link::after {
  content: '→';
  transition: transform var(--transition);
}

.seed-card-link:hover::after {
  transform: translateX(4px);
}

/* --- Seeds Block (compact layout from brief) --- */
.seeds-block {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

.seeds-block:hover {
  border-color: var(--color-green);
}

.seeds-block--partner {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  border-color: rgba(58, 143, 71, 0.15);
}

.seeds-block--partner:hover {
  border-color: var(--color-green);
}

.seeds-block-header {
  margin-bottom: 24px;
}

.seeds-block-header--with-image {
  display: flex;
  align-items: center;
  gap: 32px;
}

.seeds-block-image {
  flex-shrink: 0;
  width: 160px;
  height: 120px;
  border-radius: 10px;
  overflow: hidden;
}

.seeds-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seeds-block-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.seeds-block-desc {
  color: var(--color-text-light);
  font-size: 0.95rem;
  line-height: 1.6;
}

.seeds-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.seeds-table-row {
  padding: 16px 0;
  padding-left: 16px;
  border-top: 1px solid #e5e7eb;
  border-left: 3px solid transparent;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.seeds-table-row:hover {
  border-left-color: var(--color-green);
  background: rgba(58, 143, 71, 0.03);
}

.seeds-row-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  margin-top: 2px;
}

.seeds-row-icon svg {
  width: 100%;
  height: 100%;
}

.seeds-row-content {
  flex: 1;
  min-width: 0;
}

.seeds-table-row:first-child {
  border-top: none;
  padding-top: 0;
}

.seeds-table-row:last-child {
  padding-bottom: 0;
}

.seeds-table-name {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.seeds-table-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 6px;
}

.seeds-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 4px;
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
  color: #2d6a3a;
  border: 1px solid rgba(58, 143, 71, 0.12);
}

.seeds-table-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* --- Messenger Buttons --- */
.contact-messengers {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.messenger-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  transition: all var(--transition);
}

.messenger-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.messenger-btn--wa {
  background: #25D366;
}

.messenger-btn--wa:hover {
  background: #1ebe57;
  transform: translateY(-2px);
}

.messenger-btn--tg {
  background: #2AABEE;
}

.messenger-btn--tg:hover {
  background: #229ed9;
  transform: translateY(-2px);
}

/* --- Regional Reps --- */
.contacts-reps h3 {
  font-size: 1.1rem;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.rep-region {
  margin-bottom: 16px;
}

.rep-region h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 8px;
}

.rep-person {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  margin-bottom: 4px;
  font-size: 0.9rem;
}

.rep-person span {
  color: rgba(255, 255, 255, 0.8);
}

.rep-person a {
  color: var(--color-accent);
  font-weight: 600;
}

.rep-person a:hover {
  color: #f0b840;
}

.contacts-map {
  border-radius: 12px;
  overflow: hidden;
  min-height: 400px;
}

.contacts-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* --- Price Card Icon Accent --- */
.price-card-icon--accent {
  background: rgba(232, 160, 32, 0.2);
}

.price-card-icon--accent svg {
  fill: var(--color-accent);
}

/* --- About Section --- */
.about {
  padding: 100px 0;
  background: var(--color-bg);
}

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

.about-text p {
  font-size: 1.05rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-text p:last-of-type {
  margin-bottom: 32px;
}

.about-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 500px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* --- Advantages --- */
.advantages {
  padding: 100px 0;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.advantages::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/advantages-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
}

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

.advantage-card {
  padding: 40px 32px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: all var(--transition);
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: var(--color-accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.advantage-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--color-dark);
}

.advantage-card h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.advantage-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
}

/* --- Price Lists --- */
.price-lists {
  padding: 100px 0;
  background: var(--color-bg-light);
  background-image: radial-gradient(circle at 85% 15%, rgba(232,160,32,0.05) 0%, transparent 50%),
                     radial-gradient(circle at 15% 85%, rgba(58,143,71,0.04) 0%, transparent 50%);
}

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

.price-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}

.price-card:hover {
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.price-card-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: rgba(232, 160, 32, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--color-accent);
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.price-card p {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-bottom: 20px;
  flex: 1;
}

.price-card .btn {
  width: 100%;
  justify-content: center;
}

/* --- Contacts Section --- */
.contacts {
  padding: 100px 0;
  background: var(--color-dark);
  color: var(--color-white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contacts-info h3 {
  font-size: 1.3rem;
  margin-bottom: 24px;
  color: var(--color-accent);
}

.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--color-accent);
}

.contact-item-text {
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-white);
}

.contact-item-text span,
.contact-item-text a {
  color: rgba(255, 255, 255, 0.7);
}

.contact-item-text a:hover {
  color: var(--color-accent);
}


/* --- Footer --- */
.footer {
  padding: 60px 0 32px;
  background: #12151f;
  color: rgba(255, 255, 255, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-logo span {
  color: var(--color-green-light);
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer .footer-title {
  color: var(--color-white);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}

.footer-links a {
  display: block;
  font-size: 0.88rem;
  padding: 6px 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  align-items: flex-start;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  min-width: 16px;
  fill: var(--color-accent);
  margin-top: 3px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-disclaimer {
  max-width: 700px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
  margin-top: 16px;
}

.appushka-link {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

.appushka-link .ab-text {
  display: inline;
  line-height: inherit;
  vertical-align: baseline;
}

.appushka-link .ab-text:empty::before {
  content: "\200B";
}

.appushka-link .ab-text.ab-logo-on {
  padding-right: 1.3em;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAUCAYAAACNiR0NAAAETUlEQVR42p2UW2xUVRSG/7X3OXNmpjPTaSudtpApD4hyKylWQsKlRV4MxoSXaYhANDFo9JFoeUAzcwIabokJkYcmJSaEJw7EQDD4hK1gIqYaIqVJVYhFWnqZaZl2LmfmnL2XD6ioFGJcj3tlf+v/s/e/gKcUp9NiwXOAnnTHeBqMbFtzz+H1KFXeh9LNPsnrhUVrDpK9I88MIiL+T0BOpwVsm/mDkyswPTEAj4PI5mEIbIxPf9nBfGOr0z1MBKh/Exe0hOHhh9Pv3T2JohfUY1MVzOfV+IxVGc0t35LdZezqdhx1pTP9mKDHgJw6K8lxFO/p2Y35ylY9lfOF71q/qMXywugG88bdDj0y0n5oMjUU6R+AZjA9EchggnOLOf1ZHNn8UeQLWrhV0mS4g/eS5aUANQdyulUHk5XJX/fZsHV/Z0Y+WWHKEQRbY/D7Q3C5GaWyB0VSBPRH0Wrd/udDmqJ6lg2a0HEv/x7vvNbSNZBRf/8N4pHVlCSnW/GedAfm/Hfguj5Krqm9ag4vtp54JSZ6JSbGmuW8GRE5PyrcKGaHDxKIMbyKFrbMLDCaPwlPChRdDSWFCAQ/JtueQ+qW3yhzmTjyiHiTQiOr4c6+zt0n1pKT0pxKyb+Afz6E2pZ5C2VjPdxyFQXPhOI7WLqilzvTBtm2Dt2y+xDNj3CiYohlIYW2lRKh2BGAGEgBAIiRFhkAmZ1LFmHk9jD8UhzujAJgwhJ7aOj0GQDgd89uUlMjPVS4t03oSojrk8TNW5SghPRr9XYzvfYyn2Up+jshbNj6wcj4EVTN+mqFffhBU7mlfho6fYbfuLyZd57/HJOzV2W58mrRC4aLKql52tTu7TzmszGeud1wlJkNx3EeZnK07fCmGk9c9apzSlSypFTRE8nVBxJLNq5D+cFrEHloKnNVPufdLIUNi2ZEG91B1nO5YCZ1bWy9LEfDexefqusjZjb72/uuB+7fbWdRUBSKyLrEWr8xmpANpEhzkYtWwivRMiMua4UrfdykwS8SP50na3JsuxFf4sdaNsj5cMt4ePWKNXSl68f9RgGH54rDKhSMybqaVtQJRkjMQ8lgtUSNMmq2yBoLEOHKQCCG42Zv8NJ1Xtm0avnun9moDXNiFUdrn5XTvv7UmJmd3SfdGo6E24UpAc+tICeV8rgWEasxEAlZIGvua/MZeSx4KnIJDAy+0Gt2/PD2xJiV/CRsNHyYLQp/PmRxVcm9RrFUjgmltXAVSoLhK0URMy5j4TDYLF0Ttf6xxLmmi+A/opmCgAM/jXHxW6j+eEzXv0kcS+RKnhJmyBIw6LRQQZkrl2S5wtKSNUIG1TdG3NvR9lVyc6vTdJGZiVMsCcTkkCIQd3V2iQ3fbZ8rywY7HFkmw0aTUax6F2goPRS4ce7+AeFZL1sBY6ouFux76dt1F6AfKSKH1AJbk9LIUFdnRgQ550iY94vk9jzq/3OpE6dY4n/U7wlkIacR7zvXAAAAAElFTkSuQmCC") right center/1em 1em no-repeat;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.3s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.4s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.5s; }
.stagger-children .fade-up:nth-child(7) { transition-delay: 0.6s; }
.stagger-children .fade-up:nth-child(8) { transition-delay: 0.7s; }

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

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

  .seeds-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-image {
    height: 350px;
  }

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

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

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

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

  .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 64px;
  }

  .nav {
    display: none;
  }

  .header-phones {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-content {
    padding: 100px 0 60px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
    justify-content: center;
  }

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

  .catalog-card {
    height: 220px;
  }

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

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

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

  .contact-messengers {
    flex-direction: column;
  }

  .seeds-block-header--with-image {
    flex-direction: column;
  }

  .seeds-block-image {
    width: 100%;
    height: 160px;
  }

  .seeds-row-icon {
    display: none;
  }

  .seeds-table-row {
    padding-left: 12px;
  }

  .seeds-table-tags {
    gap: 4px;
  }

  .rep-person {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  section {
    padding: 64px 0;
  }

  .catalog, .seeds, .about, .advantages, .price-lists, .contacts {
    padding: 64px 0;
  }

  .section-title {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-stat-number {
    font-size: 2rem;
  }

  .seed-item h3 {
    font-size: 1.2rem;
  }
}
