/* Amalowo Farms — layout & theme from reference homepage */

:root {
  --green: #004d2c;
  --green-dark: #0a2318;
  --gold: #d4a017;
  --white: #ffffff;
  --gray-bg: #f3f4f4;
  --gray-border: #e2e4e5;
  --text-muted: #c8d4ce;
  --font: "Montserrat", system-ui, -apple-system, sans-serif;
  --container: 1200px;
  --radius-card: 12px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.55;
  color: #1a1a1a;
  background: var(--white);
}

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

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

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ----- Top bar ----- */
.top-bar {
  background: var(--green);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 44px;
  flex-wrap: wrap;
}

.top-bar__tagline {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--white);
  white-space: nowrap;
}

.top-bar__link:hover {
  text-decoration: underline;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.top-bar__social a {
  display: flex;
  opacity: 0.95;
}

.top-bar__social a:hover {
  opacity: 1;
}

/* ----- Main nav ----- */
.main-nav-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand__text {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  color: var(--green);
}

.nav {
  flex: 1;
  min-width: 0;
  overflow: visible;
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.nav__list > li {
  flex-shrink: 0;
  white-space: nowrap;
}

.nav__list > li > a {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.045em;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.nav__list > li > a:hover {
  color: var(--gold);
}

.caret {
  font-size: 10px;
  opacity: 0.85;
}

.nav__item {
  position: relative;
}

.nav__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  min-width: 180px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  z-index: 50;
}

.nav__dropdown a {
  display: block;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green);
}

.nav__dropdown a:hover {
  background: var(--gray-bg);
}

.nav__item:hover .nav__dropdown {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 22px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--nav {
  background: var(--green);
  color: var(--white);
  flex-shrink: 0;
  padding: 12px 16px;
  font-size: 11px;
}

.btn--nav:hover {
  background: #003822;
}

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border: 2px solid var(--gold);
}

.btn--primary:hover {
  filter: brightness(1.05);
}

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

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.btn--dark:hover {
  background: #003822;
}

.btn--subscribe {
  background: var(--gold);
  color: var(--white);
  padding-inline: 28px;
}

.btn--subscribe:hover {
  filter: brightness(1.05);
}

.arrow {
  font-weight: 700;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 20px 140px;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: url("12.png") right center / cover no-repeat;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    #0a2318 0%,
    rgba(0, 77, 44, 0.94) 12%,
    rgba(0, 77, 44, 0.82) 28%,
    rgba(0, 77, 44, 0.45) 48%,
    rgba(0, 77, 44, 0.12) 65%,
    transparent 82%
  );
  z-index: 1;
}

.hero .container.hero__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin-inline: 0 auto;
  text-align: left;
}

.hero__title {
  margin: 0 0 16px;
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--white);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  margin: 0 0 28px;
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  max-width: 540px;
}

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

/* ----- Value bar (overlapping) ----- */
.value-bar {
  position: relative;
  z-index: 3;
  margin-top: -72px;
  margin-bottom: 64px;
}

.value-bar__inner {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 28px 0;
}

.value-item {
  padding: 8px 20px;
  border-right: 1px solid var(--gray-border);
  text-align: center;
}

.value-item:last-child {
  border-right: none;
}

.value-item__icon {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--green);
}

.value-item__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.02em;
}

.value-item__text {
  margin: 0;
  font-size: 12px;
  color: #555;
  line-height: 1.45;
}

/* ----- Sections ----- */
.section {
  padding: 48px 0 64px;
}

.section--products {
  padding-top: 8px;
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.section__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--green);
  line-height: 1.2;
}

.section__title--mb {
  margin-bottom: 36px;
}

.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ----- Products ----- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.product-card {
  background: var(--gray-bg);
  border-radius: var(--radius-card);
  border: 1px solid var(--gray-border);
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.product-card__media {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 4 / 5;
  background: #ddd;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
}

.product-card__desc {
  margin: 0 0 14px;
  font-size: 13px;
  color: #444;
  flex: 1;
}

.product-card__link {
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.product-card__link:hover {
  color: var(--gold);
}

/* ----- Stats ----- */
.stats-bar {
  background: var(--green);
  color: var(--white);
  padding: 44px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}

.stat__icon {
  opacity: 0.95;
}

.stat__text {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.95);
}

.stat__num {
  display: block;
  font-size: 26px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}

/* ----- About ----- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr 1fr;
  gap: 36px;
  align-items: start;
}

.about__lead {
  margin: 16px 0 20px;
  color: #444;
  font-size: 15px;
}

.checklist {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--green);
}

.about-col--image img {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  min-height: 420px;
}

.why-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.why-list li {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
}

.why-list__icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.why-list__title {
  font-size: 15px;
  color: var(--green);
}

.why-list__text {
  margin: 4px 0 0;
  font-size: 13px;
  color: #555;
}

/* ----- Solutions ----- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.solution-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.solution-card__image-wrap {
  position: relative;
}

.solution-card__image-wrap img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.solution-card__badge {
  position: absolute;
  left: 16px;
  bottom: -28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.solution-card__body {
  padding: 40px 18px 22px;
}

.solution-card__title {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--green);
}

.solution-card__text {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.5;
}

/* ----- Newsletter ----- */
.newsletter {
  background: var(--green);
  color: var(--white);
  padding: 44px 0;
  margin-top: 24px;
}

.newsletter__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.newsletter__copy {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 520px;
}

.newsletter__title {
  margin: 0 0 6px;
  font-size: 1.35rem;
  font-weight: 800;
}

.newsletter__sub {
  margin: 0;
  font-size: 14px;
  opacity: 0.92;
}

.newsletter__form {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
}

.newsletter__input {
  font-family: var(--font);
  font-size: 14px;
  padding: 14px 18px;
  min-width: 260px;
  border: none;
  border-radius: 4px 0 0 4px;
}

.newsletter__form .btn--subscribe {
  border-radius: 0 4px 4px 0;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--green-dark);
  color: var(--text-muted);
  padding: 56px 0 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) 1.2fr;
  gap: 28px 20px;
  padding-bottom: 40px;
}

.brand--footer .brand__text {
  color: var(--white);
}

.footer__mission {
  margin: 16px 0 20px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social a:hover {
  opacity: 0.85;
}

.footer__heading {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-muted);
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-contact {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.45;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0 22px;
  font-size: 12px;
}

.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom__legal a {
  color: var(--text-muted);
  font-weight: 600;
}

.footer-bottom__legal a:hover {
  color: var(--white);
}

.sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* ----- Icons (inline SVG masks / simple shapes) ----- */
.icon {
  display: inline-block;
  vertical-align: middle;
}

.icon--leaf-sm {
  width: 16px;
  height: 16px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17 8C8 10 5 16 4 21c2-1 5-2 7-1 5 1 9-4 6-12z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--mail {
  width: 16px;
  height: 16px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M4 6h16v12H4V6zm2 2 6 5 6-5H6zm-2 9V8l7 6 7-6v9H4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--phone {
  width: 16px;
  height: 16px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M7 3h3l1 4-2 1c1 3 3 5 6 6l1-2 4 1v3c0 1-1 2-2 2C11 18 4 11 4 5c0-1 1-2 3-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--facebook,
.icon--facebook-w {
  width: 18px;
  height: 18px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M14 9h3V6h-3c-2 0-3 1-3 3v2H8v3h3v8h3v-8h3l1-3h-4V9c0-.5.5-1 1-1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--linkedin,
.icon--linkedin-w {
  width: 18px;
  height: 18px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M6 9H3v12h3V9zm12.5 0c-2 0-3.5 1-4 2V9H11v12h3v-6.5c0-2 1-3 2.5-3S19 13 19 15V21h3v-7c0-3.5-2-5.5-5.5-5.5zM6 6a2 2 0 110-4 2 2 0 010 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--youtube,
.icon--youtube-w {
  width: 20px;
  height: 20px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M21 8s-.2-1.4-.8-2c-.7-.8-1.5-.8-1.9-.9C16 4 12 4 12 4h0s-4 0-6.3.1c-.4.1-1.2.1-1.9.9-.6.6-.8 2-.8 2S3 10 3 12v2c0 2 .2 4 .2 4s.2 1.4.8 2c.7.7 1.7.7 2.1.8 1.5.1 6.1.2 6.1.2s4 0 6.3-.1c.4-.1 1.2-.1 1.9-.9.6-.6.8-2 .8-2s.2-2 .2-4v-2c0-2-.2-4-.2-4zm-9 7V9l5 3-5 3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--leaf {
  width: 36px;
  height: 36px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 8C8 10 5 16 4 21c2-1 5-2 7-1 5 1 9-4 6-12z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--shield {
  width: 36px;
  height: 36px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l8 4v6c0 5-3.4 9.4-8 10-4.6-.6-8-5-8-10V6l8-4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--people {
  width: 36px;
  height: 36px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M16 11a3 3 0 100-6 3 3 0 000 6zm-8 1a4 4 0 10-.1 0zm8 3c2 0 4 .7 4 2v2H8v-2c0-1.3 2-2 4-2zm-8-1a5 5 0 015 5v1H2v-1a5 5 0 015-5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--truck {
  width: 36px;
  height: 36px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M3 6h11v10H3V6zm12 3h3l3 3v4h-6V9zm-9 9a2 2 0 104 0H6zm10 0h4v-1a2 2 0 10-4 0v1z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--chart {
  width: 36px;
  height: 36px;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 19h16v2H4v-2zm3-4h3v7H7v-7zm5-5h3v12h-3V10zm5-3h3v15h-3V7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--factory {
  width: 40px;
  height: 40px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M4 20h16v2H4v-2zm2-8l4 2v6H6v-8zm6-4l4 2v10h-4V8zm6-3l4 2v13h-4V5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--people-w {
  width: 40px;
  height: 40px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M16 11a3 3 0 100-6 3 3 0 000 6zm-8 1a4 4 0 10-.1 0zm8 3c2 0 4 .7 4 2v2H8v-2c0-1.3 2-2 4-2zm-8-1a5 5 0 015 5v1H2v-1a5 5 0 015-5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--box {
  width: 40px;
  height: 40px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M4 8l8-4 8 4v8l-8 4-8-4V8zm8-2L6.5 8 12 10.5 17.5 8 12 6zm9 3.5l-7 3.5v7l7-3.5v-7zM11 18.5v-7L4 8v7l7 3.5z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--building {
  width: 40px;
  height: 40px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M4 21V8l8-4v17H4zm10 0V10h6v11h-6zm-6-9h2v2H8v-2zm0 4h2v2H8v-2zm4-4h2v2h-2v-2zm0 4h2v2h-2v-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--map {
  width: 40px;
  height: 40px;
  background: var(--white);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M12 2C8.7 2 6 4.5 6 8c0 5 6 12 6 12s6-7 6-12c0-3.5-2.7-6-6-6zm0 8a2 2 0 110-4 2 2 0 010 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--green);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--shield-g,
.icon--bulb,
.icon--farmer,
.icon--earth {
  width: 28px;
  height: 28px;
  background: var(--green);
}

.icon--shield-g {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2l8 4v6c0 5-3.4 9.4-8 10-4.6-.6-8-5-8-10V6l8-4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--bulb {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M9 21h6v-1H9v1zm3-19a6 6 0 00-3 11.2V15h6v-1.8A6 6 0 0012 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--farmer {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 5a3 3 0 110-6 3 3 0 010 6zm-6 8c0-2 2.5-4 6-4s6 2 6 4v3H6v-3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--earth {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1010 10A10 10 0 0012 2zm7.9 9h-3.5a15 15 0 00-.3-3 8 8 0 013.8 3zM14 12h4.8a8 8 0 01-16 0H10a15 15 0 001 3 8 8 0 003-3zm-5.6-6a15 15 0 00-.3 3H5.1a8 8 0 013.8-3zM5.1 13h3a15 15 0 00.3 3 8 8 0 01-3.3-3zm9.5 6a15 15 0 00.3-3h3.1a8 8 0 01-3.4 3z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--envelope-lg {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.95);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16v12H4V6zm2 2 6 5 6-5H6zm-2 9V8l7 6 7-6v9H4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--pin,
.icon--phone-sm,
.icon--mail-sm,
.icon--clock {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  background: var(--gold);
}

.icon--pin {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2C8.7 2 6 4.5 6 8c0 5 6 12 6 12s6-7 6-12c0-3.5-2.7-6-6-6zm0 8a2 2 0 110-4 2 2 0 010 4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--phone-sm {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M7 3h3l1 4-2 1c1 3 3 5 6 6l1-2 4 1v3c0 1-1 2-2 2C11 18 4 11 4 5c0-1 1-2 3-2z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--mail-sm {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M4 6h16v12H4V6zm2 2 6 5 6-5H6zm-2 9V8l7 6 7-6v9H4z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon--clock {
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 2a10 10 0 1010 10A10 10 0 0012 2zm1 5h-2v6l5 3 1-1.7-4-2.3V7z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.solution-card__badge.icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px;
}

.icon--circle-chicken {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23004d2c'%3E%3Cpath d='M12 3L4 9v12h16V9l-8-6zm0 2.2l5 3.8H7l5-3.8zM8 13h2v6H8v-6zm6 0h2v6h-2v-6z'/%3E%3C/svg%3E");
}

.icon--circle-fish {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23004d2c'%3E%3Cpath d='M12 20c-3 0-6-2-8-5 2-3 5-5 8-5s6 2 8 5c-2 3-5 5-8 5zm-3-5a1.5 1.5 0 100-3 1.5 1.5 0 000 3z'/%3E%3C/svg%3E");
}

.icon--circle-cow {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23004d2c'%3E%3Cpath d='M8 10c-2 0-3 2-3 4v5h14v-5c0-2-1-4-3-4V8h2V6H6v2h2v2zm1 8H7v-2h2v2zm8 0h-2v-2h2v2z'/%3E%3C/svg%3E");
}

.icon--circle-truck {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23004d2c'%3E%3Cpath d='M3 6h11v10H3V6zm12 3h3l3 3v4h-6V9z'/%3E%3C/svg%3E");
}

.icon--circle-silo {
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23004d2c'%3E%3Cpath d='M8 4h8v2H8V4zm-1 4h10l1 14H6l1-14zm2 2v8h2v-8h-2zm4 0v8h2v-8h-2z'/%3E%3C/svg%3E");
}

/* ----- Responsive ----- */
@media (max-width: 1100px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .brand {
    order: 1;
  }

  .btn--nav {
    order: 2;
  }

  .nav {
    order: 3;
    flex-basis: 100%;
  }

  .nav__list {
    justify-content: center;
    row-gap: 10px;
  }

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

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

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

  .about-col--image {
    grid-column: 1 / -1;
    order: 3;
  }

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

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

@media (max-width: 768px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
    padding-block: 10px;
  }

  .main-nav {
    flex-wrap: wrap;
    min-height: auto;
    padding-block: 16px;
  }

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

  .value-bar__inner {
    grid-template-columns: 1fr;
  }

  .value-item {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
  }

  .value-item:last-child {
    border-bottom: none;
  }

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

  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .newsletter__input {
    border-radius: 4px;
    width: 100%;
  }

  .newsletter__form .btn--subscribe {
    border-radius: 4px;
    width: 100%;
    margin-top: 10px;
  }

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

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
