/* ====================================================
   KOMBIKORM — MAIN STYLESHEET v2
   Попільнянський комбікормовий завод
   ==================================================== */

@import url('https://fonts.googleapis.com/css2?family=Unbounded:wght@400;600;700;900&family=Geologica:wght@300;400;500;600;700&display=swap');

/* --- Variables --- */
:root {
  --yellow: #E8B400;
  --yellow-light: #FFD84D;
  --yellow-dark: #C49800;
  --yellow-glow: rgba(232, 180, 0, 0.25);

  --green: #1A7A42;
  --green-light: #2EAB5A;
  --green-mid: #0F5C2E;
  --green-dark: #083D1E;
  --green-ultra: #041F0F;
  --green-glass: rgba(15, 92, 46, 0.65);
  --green-pale: #E8F5EE;

  --white: #FFFFFF;
  --off-white: #F5F9F6;
  --gray-100: #EEF5F1;
  --gray-200: #D6E8DC;
  --gray-400: #90A898;
  --gray-500: #5C7A67;
  --text: #0D2918;

  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --shadow: 0 4px 28px rgba(8, 61, 30, 0.13);
  --shadow-lg: 0 12px 48px rgba(8, 61, 30, 0.22);
  --shadow-glow: 0 0 40px rgba(26, 122, 66, 0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Geologica', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

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

/* --- Container --- */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* --- Section base --- */
section {
  padding: 96px 0;
}

.section-alt {
  background: var(--off-white);
}

/* ====================================================
   SECTION LABELS & TITLES
==================================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-light));
  color: var(--green-dark);
  font-size: 0.7rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-label::before {
  display: none;
}

.label-logo {
  height: 16px !important;
  width: auto !important;
  object-fit: contain;
  margin-right: 8px !important;
  display: inline-block !important;
}

.section-title {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 16px;
  line-height: 1.15;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  margin-bottom: 44px;
  font-weight: 400;
}

/* ====================================================
   BUTTONS
==================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Geologica', sans-serif;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(232, 180, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(232, 180, 0, 0.55);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
  transform: translateY(-3px);
}

/* ====================================================
   NAVBAR
==================================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(4, 31, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(46, 171, 90, 0.12);
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(4, 31, 15, 0.98);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.4), 0 1px 0 rgba(46, 171, 90, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 14px rgba(46, 171, 90, 0.35);
  border: 1px solid rgba(46, 171, 90, 0.3);
  overflow: hidden;
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.logo-title {
  color: var(--yellow);
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.logo-sub {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 2px;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--yellow);
  background: rgba(232, 180, 0, 0.1);
}

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* Lang switch */
.lang-switch {
  display: flex;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Unbounded', sans-serif;
  letter-spacing: 0.06em;
}

.lang-btn.active {
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  color: var(--green-dark);
  box-shadow: 0 2px 8px rgba(232, 180, 0, 0.3);
}

.lang-btn:hover:not(.active) {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* Burger */
.burger {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 10px;
  transition: var(--transition);
}

.burger:hover {
  background: rgba(46, 171, 90, 0.2);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--green-ultra);
  padding: 12px 24px 20px;
  border-top: 1px solid rgba(46, 171, 90, 0.1);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.98rem;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--yellow);
  padding-left: 10px;
}

/* ====================================================
   HERO
==================================================== */
#hero {
  min-height: 100vh;
  background:
    linear-gradient(155deg, rgba(4, 31, 15, 0.93) 0%, rgba(8, 61, 30, 0.82) 40%, rgba(4, 31, 15, 0.95) 100%),
    url('https://images.unsplash.com/photo-1523348837708-15d4a09cfac2?w=1600&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 60px;
}

/* Animated grain overlay */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 60%, rgba(46, 171, 90, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(232, 180, 0, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Decorative geometric element */
#hero::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(46, 171, 90, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(4, 31, 15, 0.6) 100%);
}

/* Decorative circles */
.hero-content::before {
  content: '';
  position: absolute;
  left: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border: 1px solid rgba(46, 171, 90, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  max-width: 860px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(46, 171, 90, 0.12);
  border: 1px solid rgba(46, 171, 90, 0.3);
  color: #7DDDA0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 50px;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
  animation: fadeInDown 0.9s ease both;
}

.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--green-light);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

.hero-title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  animation: fadeInDown 0.9s 0.15s ease both;
}

.hero-main-logo {
  height: 180px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
}

.hero-content h1 {
  font-family: 'Unbounded', sans-serif;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
}

/* Green accent on first word */
.hero-content h1 em {
  color: var(--green-light);
  font-style: normal;
}

.hero-content h1+p {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: fadeInDown 0.9s 0.3s ease both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInDown 0.9s 0.45s ease both;
}

/* Hero stats */
.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  padding: 26px 48px;
  animation: fadeInUp 0.9s 0.6s ease both;
  flex-wrap: wrap;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(46, 171, 90, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 36px;
  position: relative;
  z-index: 1;
}

.stat-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  color: var(--yellow);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.12), transparent);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-icon {
  width: 26px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 13px;
  position: relative;
}

.scroll-icon::before {
  content: '';
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--yellow);
  border-radius: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  50% {
    opacity: 0.3;
    transform: translateX(-50%) translateY(10px);
  }
}

/* ====================================================
   ABOUT
==================================================== */
#about {
  position: relative;
  background: var(--white);
}

/* Decorative side stripe */
#about::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, var(--green-light), var(--yellow));
}

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

.about-text p {
  font-size: 1.05rem;
  color: #3A5245;
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-values {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(46, 171, 90, 0.15);
  transition: var(--transition);
}

.value-item:hover {
  background: var(--green-light);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 122, 66, 0.25);
}

.value-item:hover .value-icon i {
  color: var(--yellow);
}

.value-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.about-image {
  display: flex;
  justify-content: center;
}

.about-img-wrap {
  position: relative;
  width: 340px;
  height: 360px;
}

.about-img-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 50%, var(--green-light) 100%);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.about-img-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 60%);
}

.about-badge-float {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dark));
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(232, 180, 0, 0.4);
  animation: float 4.5s ease-in-out infinite;
}

@keyframes float {

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

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

.badge-num {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.badge-text {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}

/* Second floating card */
.about-img-wrap::after {
  content: '🌾 Якість';
  position: absolute;
  top: -16px;
  left: -20px;
  background: var(--green-dark);
  color: var(--yellow);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 12px 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(46, 171, 90, 0.3);
  animation: float 4.5s 2s ease-in-out infinite;
  white-space: nowrap;
}

/* ====================================================
   SERVICES
==================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 38px 30px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card.featured {
  background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(26, 122, 66, 0.3);
}

.service-card.featured::after {
  background: linear-gradient(90deg, var(--yellow), var(--yellow-dark));
  transform: scaleX(1);
  height: 4px;
}

.service-card.featured h3 {
  color: var(--yellow);
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.75);
}

.service-card.featured li {
  color: rgba(255, 255, 255, 0.88);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--green-light);
  transform: scale(1.08) rotate(-3deg);
}

.service-card.featured .service-icon {
  background: rgba(255, 255, 255, 0.1);
}

.service-card h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 22px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.service-list li {
  font-size: 0.88rem;
  font-weight: 500;
  padding: 8px 14px 8px 36px;
  position: relative;
  color: var(--green-mid);
  background: var(--green-pale);
  border-radius: 8px;
  transition: var(--transition);
}

.service-list li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: var(--green-light);
  font-weight: 700;
  font-size: 0.85rem;
}

.service-card.featured .service-list li {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
}

.service-card.featured .service-list li::before {
  color: var(--yellow);
}

/* ====================================================
   PRICES
==================================================== */
#prices {
  background: var(--white);
  position: relative;
}

#prices::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at right center, rgba(46, 171, 90, 0.05) 0%, transparent 65%);
  pointer-events: none;
}

.prices-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.86rem;
  color: var(--gray-500);
  font-weight: 500;
}

.price-update-dot {
  width: 8px;
  height: 8px;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 171, 90, 0.5);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(46, 171, 90, 0);
  }
}

.prices-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  margin-bottom: 32px;
  border: 1px solid var(--gray-200);
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
}

.prices-table thead {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  color: var(--white);
}

.prices-table th {
  padding: 20px 28px;
  text-align: left;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Unbounded', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.85);
}

.prices-table th:first-child {
  border-radius: 0;
}

.prices-table td {
  padding: 20px 28px;
  font-size: 1rem;
  border-bottom: 1px solid var(--gray-100);
  vertical-align: middle;
}

.prices-table tbody tr {
  background: var(--white);
  transition: var(--transition);
}

.prices-table tbody tr:hover {
  background: var(--green-pale);
}

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

.crop-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--green-dark);
}

.crop-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--green-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.price-val {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-dark);
}

.quality-tag {
  display: inline-block;
  background: var(--gray-100);
  color: var(--gray-500);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid var(--gray-200);
}

.trend-up {
  color: #16a34a;
  font-weight: 700;
  font-size: 1.2rem;
}

.trend-down {
  color: #dc2626;
  font-weight: 700;
  font-size: 1.2rem;
}

.trend-flat {
  color: var(--gray-400);
  font-weight: 700;
  font-size: 1.2rem;
}

.prices-note {
  font-size: 1rem;
  color: var(--gray-500);
  margin-bottom: 26px;
  padding: 16px 20px;
  background: var(--green-pale);
  border-radius: var(--radius);
  border-left: 3px solid var(--green-light);
}

/* ====================================================
   EXPORT
==================================================== */
#export {
  position: relative;
  overflow: hidden;
}

#export::before {
  content: '';
  position: absolute;
  left: -150px;
  bottom: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(26, 122, 66, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.export-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 52px;
}

.country-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  padding: 11px 22px;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--green-dark);
  transition: var(--transition);
  cursor: default;
}

.country-card:hover {
  background: var(--green-dark);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.flag {
  font-size: 1.5rem;
}

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

.exp-card {
  background: linear-gradient(145deg, var(--green-dark), var(--green-mid));
  border-radius: var(--radius-xl);
  padding: 40px 28px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(46, 171, 90, 0.2);
  transition: var(--transition);
}

.exp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.exp-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(232, 180, 0, 0.12), transparent 70%);
}

.exp-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--yellow);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.exp-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  font-weight: 500;
}

/* ====================================================
   EQUIPMENT
==================================================== */
#equipment {
  background: var(--white);
}

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

.eq-card {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 34px 24px;
  text-align: center;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.eq-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, var(--green-light), var(--green-mid));
  transition: height 0.4s ease;
  z-index: 0;
}

.eq-card:hover::before {
  height: 100%;
}

.eq-icon,
.eq-num,
.eq-name,
.eq-desc {
  position: relative;
  z-index: 1;
  transition: color 0.4s ease;
}

.eq-card:hover .eq-num,
.eq-card:hover .eq-name {
  color: var(--yellow);
}

.eq-card:hover .eq-desc {
  color: rgba(255, 255, 255, 0.75);
}

.eq-card:hover .eq-icon i {
  color: rgba(255, 255, 255, 0.9);
}

.eq-icon {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.eq-num {
  font-family: 'Unbounded', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--green-dark);
  line-height: 1;
}

.eq-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 10px 0 4px;
}

.eq-desc {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ====================================================
   TEAM
==================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 24px;
}

.team-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  padding: 42px 28px 32px;
  text-align: center;
  border: 1px solid rgba(46, 171, 90, 0.15);
  box-shadow: 0 10px 40px rgba(8, 61, 30, 0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--yellow), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(8, 61, 30, 0.18);
  border-color: var(--green-light);
  background: var(--white);
}

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


.team-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--yellow);
  box-shadow: 0 4px 16px rgba(232, 180, 0, 0.25);
}

.photo-placeholder {
  font-size: 2.6rem;
}

.team-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 6px;
  line-height: 1.35;
}

.team-role {
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 18px;
}

.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-100);
}

.team-contacts a {
  font-size: 0.85rem;
  color: var(--gray-500);
  transition: var(--transition);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.team-contacts a:hover {
  color: var(--green-light);
}

/* ====================================================
   CONTACTS
==================================================== */
#contacts {
  background: var(--white);
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.info-block:hover {
  background: var(--green-pale);
}

.info-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26, 122, 66, 0.25);
}

.info-icon i {
  color: var(--white) !important;
  font-size: 1.1rem !important;
}

.info-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--green-light);
  margin-bottom: 5px;
  font-family: 'Unbounded', sans-serif;
}

.info-value {
  font-size: 0.97rem;
  color: var(--text);
  line-height: 1.7;
}

.info-value a {
  color: var(--text);
  transition: var(--transition);
}

.info-value a:hover {
  color: var(--green-light);
}

.contact-person {
  font-size: 0.8rem;
  color: var(--gray-500);
  font-weight: 500;
}

/* Social */
.social-block {
  margin-top: 8px;
  padding: 0 16px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.social-btn {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-btn svg {
  width: 22px;
  height: 22px;
}

.social-btn.telegram {
  background: #0088CC;
  color: var(--white);
}

.social-btn.viber {
  background: #7360F2;
  color: var(--white);
}

.social-btn.whatsapp {
  background: #25D366;
  color: var(--white);
}

.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Contact Form */
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius-xl);
  padding: 44px 38px;
  border: 1.5px solid var(--gray-200);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light), var(--yellow));
}

.contact-form h3 {
  font-family: 'Unbounded', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-bottom: 9px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 18px;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: 'Geologica', sans-serif;
  color: var(--text);
  transition: var(--transition);
  outline: none;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(46, 171, 90, 0.12);
}

.form-success {
  margin-top: 16px;
  padding: 14px 18px;
  background: rgba(46, 171, 90, 0.1);
  border: 1px solid rgba(46, 171, 90, 0.3);
  border-radius: var(--radius);
  color: var(--green-mid);
  font-weight: 600;
  font-size: 0.93rem;
}

/* ====================================================
   FOOTER
==================================================== */
#footer {
  background: var(--green-ultra) !important;
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

#footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg,
      transparent,
      transparent 60px,
      rgba(46, 171, 90, 0.02) 60px,
      rgba(46, 171, 90, 0.02) 61px);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.footer-logo-sub {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-center p {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.82rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.f-social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
}

.f-social-icon svg {
  width: 16px;
  height: 16px;
}

.f-social-icon:hover {
  background: var(--yellow);
  color: var(--green-dark);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(232, 180, 0, 0.35);
}

/* ====================================================
   ANIMATIONS
==================================================== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-25px);
  }

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ====================================================
   RESPONSIVE
==================================================== */
@media (max-width: 1024px) {

  .about-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-image {
    display: none;
  }

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

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

@media (max-width: 768px) {
  section {
    padding: 68px 0;
  }

  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .nav-inner {
    height: 64px;
    gap: 16px;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .logo-img {
    width: 26px;
    height: 26px;
  }

  .logo-text {
    gap: 1px;
  }

  .logo-title {
    font-size: 0.82rem;
  }

  .logo-sub {
    font-size: 0.58rem;
  }

  .hero-main-logo {
    height: 110px;
  }

  .hero-title-wrap {
    gap: 16px;
    margin-bottom: 20px;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.15;
  }

  .hero-stats {
    padding: 20px 16px;
    gap: 0;
  }

  .stat {
    padding: 0 18px;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  .services-grid,
  .team-grid,
  .export-info-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 340px !important;
    margin: 0 auto 48px !important;
    display: flex !important;
  }

  .hero-btns .btn {
    width: 100% !important;
    justify-content: center !important;
  }

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

  .contact-form {
    padding: 28px 22px;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .nav-inner {
    padding: 0 16px;
    gap: 8px;
  }

  .logo {
    gap: 10px;
  }

  .logo-title {
    font-size: 0.75rem;
  }

  .logo-sub {
    display: none;
  }

  .nav-right {
    gap: 6px;
  }

  .lang-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }

  .burger {
    padding: 7px 10px;
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto 32px;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.88rem;
  }

  .hero-badge {
    padding: 7px 16px;
    font-size: 0.7rem;
    margin-bottom: 24px;
  }

  .stat-divider {
    display: none;
  }

  .hero-stats {
    gap: 16px;
    padding: 20px 12px;
    border-radius: var(--radius-lg);
  }

  .stat {
    padding: 0 10px;
    flex: 1 1 40%;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .stat-label {
    font-size: 0.64rem;
  }

  .hero-main-logo {
    height: 85px;
  }

  .hero-content h1 {
    font-size: 1.55rem;
    line-height: 1.25;
  }

  .hero-content h1+p {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    margin-bottom: 32px;
  }
}

/* ====================================================
   ICON SIZES
==================================================== */
.logo-icon i {
  font-size: 1.3rem;
  color: var(--white) !important;
}

.service-icon i {
  font-size: 1.7rem;
  color: var(--green-light);
  transition: var(--transition);
}

.service-card.featured .service-icon i {
  color: var(--yellow);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.eq-icon i {
  font-size: 2rem;
  color: var(--green-mid);
}

.about-img-inner i {
  font-size: 7rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 1;
}

.value-icon i {
  color: var(--green-light);
  font-size: 1rem;
}

.photo-placeholder i {
  font-size: 2.6rem;
  color: rgba(255, 255, 255, 0.9);
}

.team-contacts i {
  font-size: 0.85rem;
  color: var(--green-light);
}

.footer-wheat {
  font-size: 1.5rem;
  color: var(--yellow);
}