/* ==================================================
   GLOBAL
================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-red: #d32f2f;
  --primary-green: #087052;
  --dark-green: #063f30;
  --light-green: #7c9f1b;
  --accent-green: #4db8a0;
  --gold: #b48629;
  --white: #ffffff;
  --off-white: #f7faf7;
  --text-dark: #252a28;
  --text-muted: #69716d;
  --border: rgba(6, 63, 48, 0.12);
  --header-height: 92px;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);
  font-family: "Cairo", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

section {
  scroll-margin-top: var(--header-height);
}

/* ==================================================
   UPDATED HEADER
================================================== */

body.reh-menu-open {
  overflow: hidden;
}

.reh-site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(6, 63, 48, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
  direction: ltr;
}

.reh-site-header.reh-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 35px rgba(6, 63, 48, 0.12);
}

.reh-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  width: min(94%, 1500px);
  height: 100%;
  margin: 0 auto;
}

.reh-logo {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  text-decoration: none;
}

.reh-logo-image {
  display: block;
  width: auto;
  height: 76px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.reh-logo:hover .reh-logo-image {
  transform: scale(1.04);
}

/* Desktop navigation */

.reh-desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(15px, 1.6vw, 29px);
  flex: 1;
  height: 100%;
}

.reh-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--text-dark);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.reh-nav-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--primary-red);
  border-radius: 20px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.reh-nav-link:hover,
.reh-nav-link.active {
  color: var(--primary-green);
}

.reh-nav-link:hover::after,
.reh-nav-link.active::after {
  transform: scaleX(1);
}

/* Contact button */

.reh-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  color: var(--white);
  background: var(--primary-green);
  border: 1px solid var(--primary-green);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(8, 112, 82, 0.22);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.reh-contact-button svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}

.reh-contact-button:hover {
  background: var(--primary-red);
  border-color: var(--primary-red);
  transform: translateY(-2px);
}

.reh-contact-button:hover svg {
  transform: translateX(4px);
}

/* Hamburger */

.reh-menu-button {
  position: relative;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--primary-green);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.reh-menu-button span {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  border-radius: 20px;
  transition:
    top 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.reh-menu-button span:nth-child(1) {
  top: 15px;
}

.reh-menu-button span:nth-child(2) {
  top: 22px;
}

.reh-menu-button span:nth-child(3) {
  top: 29px;
}

.reh-menu-button.active span:nth-child(1) {
  top: 22px;
  transform: rotate(45deg);
}

.reh-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.reh-menu-button.active span:nth-child(3) {
  top: 22px;
  transform: rotate(-45deg);
}

/* Mobile menu */

.reh-mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: none;
  height: calc(100dvh - var(--header-height));
  overflow-y: auto;
  visibility: hidden;
  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(124, 159, 27, 0.22),
      transparent 42%
    ),
    linear-gradient(145deg, var(--dark-green), var(--primary-green));
  opacity: 0;
  transform: translateY(-15px);
  transition:
    visibility 0.3s ease,
    opacity 0.3s ease,
    transform 0.3s ease;
}

.reh-mobile-menu.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.reh-mobile-menu-inner {
  display: flex;
  flex-direction: column;
  width: min(90%, 520px);
  min-height: 100%;
  margin: 0 auto;
  padding: 24px 0 30px;
}

.reh-mobile-nav {
  display: flex;
  flex-direction: column;
}

.reh-mobile-link {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 14px 4px;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 0.25s ease,
    padding-left 0.25s ease;
}

.reh-mobile-link span {
  min-width: 25px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.reh-mobile-link:hover,
.reh-mobile-link.active {
  padding-left: 10px;
  color: var(--white);
}

.reh-mobile-link:hover span,
.reh-mobile-link.active span {
  color: #c1d86c;
}

.reh-mobile-contact-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 55px;
  margin-top: 24px;
  padding: 0 20px;
  color: var(--dark-green);
  background: var(--white);
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    color 0.25s ease,
    background 0.25s ease;
}

.reh-mobile-contact-button svg {
  width: 20px;
  height: 20px;
}

.reh-mobile-contact-button:hover {
  color: var(--white);
  background: var(--primary-red);
}

.reh-mobile-contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 20px;
  margin-top: auto;
  padding-top: 28px;
}

.reh-mobile-contact-info a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-decoration: none;
}

.reh-mobile-contact-info a:hover {
  color: var(--white);
}

/* Smaller desktop */

@media (max-width: 1200px) {
  .reh-header-container {
    gap: 16px;
  }

  .reh-desktop-nav {
    gap: 14px;
  }

  .reh-nav-link {
    font-size: 12px;
  }

  .reh-logo-image {
    height: 67px;
  }

  .reh-contact-button {
    min-height: 44px;
    padding: 0 17px;
    font-size: 12px;
  }
}

/* Tablet and mobile */

@media (max-width: 1050px) {
  :root {
    --header-height: 80px;
  }

  .reh-desktop-nav,
  .reh-contact-button {
    display: none;
  }

  .reh-menu-button {
    display: flex;
  }

  .reh-mobile-menu {
    display: block;
  }

  .reh-logo-image {
    height: 64px;
  }
}

/* Mobile */

@media (max-width: 600px) {
  :root {
    --header-height: 74px;
  }

  .reh-header-container {
    width: calc(100% - 32px);
  }

  .reh-logo-image {
    height: 57px;
  }

  .reh-menu-button {
    width: 43px;
    height: 43px;
  }

  .reh-menu-button span:nth-child(1) {
    top: 14px;
  }

  .reh-menu-button span:nth-child(2) {
    top: 20px;
  }

  .reh-menu-button span:nth-child(3) {
    top: 26px;
  }

  .reh-menu-button.active span:nth-child(1),
  .reh-menu-button.active span:nth-child(3) {
    top: 20px;
  }

  .reh-mobile-menu-inner {
    width: calc(100% - 36px);
    padding-top: 18px;
  }

  .reh-mobile-link {
    padding: 12px 3px;
    font-size: 16px;
  }

  .reh-mobile-contact-button {
    min-height: 52px;
    margin-top: 18px;
  }
}
/* ==================================================
   HERO
================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: calc(100svh - var(--header-height));
  margin-top: var(--header-height);
  overflow: hidden;
  isolation: isolate;
}

.hero-picture {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.16) 0%,
    rgba(6, 45, 34, 0.12) 48%,
    rgba(0, 30, 22, 0.24) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  animation: heroFadeIn 1s ease both;
}

.hero-content h1 {
  max-width: 1050px;
  margin: 0 auto 20px;
  color: var(--white);
  font-family: "Cairo", sans-serif;
  font-size: clamp(36px, 5.8vw, 74px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -2px;
  text-shadow: 0 4px 22px rgba(0, 0, 0, 0.42);
}

.hero-subtitle {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(16px, 1.7vw, 24px);
  font-weight: 500;
  line-height: 1.6;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

/* ==================================================
   ABOUT RAWDAT ELHANA
================================================== */

.company-about {
  --about-dark-green: #064c3a;
  --about-green: #138666;
  --about-light-green: #7fa21b;
  --about-lime: #a3c52e;
  --about-text: #252b29;

  position: relative;
  width: 100%;
  overflow: hidden;
  background: var(--white);
  direction: ltr;
}

.company-about-container {
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(500px, 1.1fr);
  min-height: 720px;
}

/* About image */

.company-about-image {
  position: relative;
  grid-column: 2;
  grid-row: 1;
  min-height: 720px;
  overflow: hidden;
}

.company-about-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  object-position: center;
  transition: none;
}

.company-about-image::before {
  content: "";
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: -100px;
  z-index: 2;
  width: 190px;
  background: var(--white);
  border-radius: 0 50% 50% 0;
}

.company-about-image::after {
  content: "";
  position: absolute;
  top: -5%;
  bottom: -5%;
  left: -114px;
  z-index: 1;
  width: 20px;
  background: linear-gradient(
    180deg,
    var(--about-light-green),
    var(--about-dark-green)
  );
  border-radius: 0 50% 50% 0;
}

.company-about-image-shape {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(5, 75, 56, 0.15), transparent 28%);
}

/* About content */

.company-about-content {
  position: relative;
  z-index: 5;
  display: flex;
  grid-column: 1;
  grid-row: 1;
  flex-direction: column;
  justify-content: center;
  padding: 65px 80px 65px max(6vw, 50px);
  background:
    radial-gradient(
      circle at 10% 100%,
      rgba(127, 162, 27, 0.1),
      transparent 30%
    ),
    var(--white);
}

.company-about-logo {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 30px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid rgba(6, 76, 58, 0.08);
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(6, 76, 58, 0.08);
}

.company-about-logo img {
  display: block;
  width: 165px;
  max-height: 105px;
  object-fit: contain;
}

.company-about-heading {
  margin-bottom: 30px;
}

.company-about-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--about-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.company-about-heading h2 {
  margin: 0;
  color: var(--about-dark-green);
  font-size: clamp(38px, 4.2vw, 67px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
}

.company-about-heading h2 span {
  color: var(--about-light-green);
}

.company-about-line {
  width: 95px;
  height: 4px;
  margin-top: 24px;
  background: linear-gradient(
    90deg,
    var(--about-light-green),
    var(--about-dark-green)
  );
  border-radius: 10px;
}

.company-about-text {
  max-width: 680px;
}

.company-about-text p {
  margin: 0 0 22px;
  color: var(--about-text);
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  line-height: 1.85;
}

.company-about-text p:last-child {
  margin-bottom: 0;
}

.company-about-text strong {
  color: var(--about-dark-green);
  font-weight: 800;
}

/* About facts */

.company-about-facts {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  width: 100%;
  padding: 24px max(4vw, 30px);
  color: var(--white);
  background:
    radial-gradient(
      circle at 95% 50%,
      rgba(163, 197, 46, 0.18),
      transparent 22%
    ),
    linear-gradient(135deg, #063c30, #07513f 55%, #063c30);
  border-top: 4px solid var(--about-light-green);
}

.company-about-fact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-width: 0;
  padding: 8px 24px;
}

.company-about-fact:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 8%;
  right: 0;
  width: 1px;
  height: 84%;
  background: rgba(255, 255, 255, 0.38);
}

.company-about-fact-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  color: var(--about-lime);
  border: 2px solid var(--about-lime);
  border-radius: 50%;
}

.company-about-fact-icon svg {
  width: 39px;
  height: 39px;
}

.company-about-fact-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.company-about-fact-copy strong {
  color: var(--about-lime);
  font-size: clamp(19px, 1.7vw, 28px);
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.company-about-fact-copy span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(12px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.3;
}

/* ==================================================
   FRESH PRODUCE PORTFOLIO
================================================== */

.refp-section {
  --refp-dark: #063f30;
  --refp-green: #087052;
  --refp-lime: #7c9f1b;
  --refp-gold: #b48629;
  --refp-red: #cb171f;
  --refp-orange: #df5015;
  --refp-text: #252a28;
  --refp-muted: #69716d;

  position: relative;
  width: 100%;
  padding: 100px 28px 80px;
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 5%, rgba(124, 159, 27, 0.1), transparent 18%),
    linear-gradient(180deg, #ffffff, #f7faf7);
  direction: ltr;
}

.refp-section::before {
  content: "";
  position: absolute;
  top: -130px;
  right: -140px;
  width: 380px;
  height: 380px;
  border: 50px solid rgba(6, 63, 48, 0.08);
  border-radius: 50%;
}

.refp-container {
  position: relative;
  z-index: 2;
  width: min(100%, 1600px);
  margin: 0 auto;
}

/* Portfolio heading */

.refp-header {
  position: relative;
  z-index: auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: auto;
  gap: 50px;
  margin-bottom: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.refp-heading-copy {
  max-width: 960px;
}

.refp-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--refp-green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.refp-title {
  margin: 0;
  color: var(--refp-dark);
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -3px;
}

.refp-title span {
  color: var(--refp-lime);
}

.refp-tagline {
  margin: 14px 0 20px;
  color: var(--refp-gold);
  font-size: clamp(18px, 1.6vw, 25px);
  font-weight: 600;
}

.refp-description {
  margin: 0;
  color: var(--refp-text);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.refp-description strong {
  color: var(--refp-dark);
  font-weight: 800;
}

.refp-logo {
  flex: 0 0 auto;
  padding: 18px 25px;
  background: var(--white);
  border: 1px solid rgba(6, 63, 48, 0.08);
  border-radius: 18px;
  box-shadow: 0 16px 45px rgba(6, 63, 48, 0.1);
}

.refp-logo img {
  display: block;
  width: 165px;
  max-height: 110px;
  object-fit: contain;
}

/* Product cards */

.refp-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.refp-card {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  background: #10251e;
  border-radius: 22px;
  box-shadow: 0 20px 45px rgba(6, 63, 48, 0.14);
  isolation: isolate;
}

.refp-card-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.refp-card-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(2, 20, 14, 0.88),
    rgba(2, 20, 14, 0.48) 38%,
    rgba(2, 20, 14, 0.05) 75%,
    rgba(2, 20, 14, 0.18)
  );
}

.refp-card-content {
  position: relative;
  z-index: 2;
  padding: 28px 24px;
}

.refp-card-heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.refp-card-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  border: 2px solid currentColor;
  border-radius: 50%;
}

.refp-card-icon svg {
  width: 31px;
  height: 31px;
}

.refp-card-heading h3 {
  margin: 0;
  font-size: clamp(22px, 1.8vw, 31px);
  font-weight: 800;
  line-height: 1.15;
}

.refp-card-line {
  display: block;
  width: 55px;
  height: 4px;
  margin-top: 13px;
  background: currentColor;
  border-radius: 10px;
}

.refp-card--peppers .refp-card-icon,
.refp-card--peppers .refp-card-line {
  color: #83b527;
}

.refp-card--tomatoes .refp-card-icon,
.refp-card--tomatoes .refp-card-line {
  color: #e0202b;
}

.refp-card--dates .refp-card-icon,
.refp-card--dates .refp-card-line {
  color: #c5963d;
}

.refp-card--stone .refp-card-icon,
.refp-card--stone .refp-card-line {
  color: #f06b22;
}

.refp-card-list {
  display: grid;
  gap: 17px;
  margin: 28px 0 0;
  padding: 0 0 0 22px;
}

.refp-card-list li {
  padding-left: 2px;
  font-size: 17px;
  line-height: 1.45;
}

.refp-card-list strong {
  display: block;
  font-weight: 700;
}

.refp-card-list small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-style: italic;
  line-height: 1.5;
}

.refp-scroll-hint {
  display: none;
}

/* Portfolio benefits */

.refp-benefits {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  align-items: stretch;
  margin-top: 24px;
  padding: 26px 0;
  background: var(--white);
  border: 1px solid rgba(6, 63, 48, 0.09);
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(6, 63, 48, 0.07);
}

.refp-benefit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 10px 24px;
}

.refp-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 1px;
  height: 90%;
  background: rgba(6, 63, 48, 0.2);
}

.refp-benefit-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  color: var(--refp-lime);
}

.refp-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.refp-benefit > div {
  display: flex;
  flex-direction: column;
}

.refp-benefit strong {
  color: var(--refp-dark);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 800;
  line-height: 1.25;
}

.refp-benefit span:not(.refp-benefit-icon) {
  margin-top: 5px;
  color: var(--refp-muted);
  font-size: clamp(11px, 0.9vw, 14px);
  line-height: 1.4;
}

.refp-benefit--intro p {
  margin: 0;
  color: var(--refp-text);
  font-size: 14px;
  line-height: 1.6;
}

.refp-benefit--intro p strong {
  color: var(--refp-green);
}

/* ==================================================
   FOOTER
================================================== */

footer {
  position: relative;
  padding: 70px 40px 25px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.85);
  background:
    radial-gradient(
      circle at 90% 20%,
      rgba(124, 159, 27, 0.18),
      transparent 25%
    ),
    linear-gradient(135deg, #052f25, #064c3a 55%, #06382d);
}

.footer-content {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 50px;
  width: min(100%, 1450px);
  margin: 0 auto;
}

.footer-section h3 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 12px;
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42px;
  height: 3px;
  background: var(--light-green);
  border-radius: 10px;
}

.footer-section p {
  margin-bottom: 12px;
  font-size: 14px;
  line-height: 1.8;
}

.footer-section a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  text-decoration: none;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.footer-section a:hover {
  color: var(--light-green);
  transform: translateX(-4px);
}

.footer-bottom {
  width: min(100%, 1450px);
  margin: 45px auto 0;
  padding-top: 22px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--light-green);
  text-decoration: none;
}

/* ==================================================
   LAPTOP
================================================== */

@media (max-width: 1200px) {
  .company-about-container {
    grid-template-columns: 1fr 1fr;
  }

  .company-about-content {
    padding: 55px 50px 55px 35px;
  }

  .company-about-fact {
    gap: 12px;
    padding: 8px 14px;
  }

  .company-about-fact-icon {
    width: 58px;
    height: 58px;
  }

  .company-about-fact-icon svg {
    width: 31px;
    height: 31px;
  }

  .refp-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .refp-card {
    min-height: 560px;
  }

  .refp-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 12px;
  }

  .refp-benefit--intro {
    grid-column: 1 / -1;
  }

  .refp-benefit::after {
    display: none;
  }

  .refp-benefit {
    padding: 18px;
    border-bottom: 1px solid rgba(6, 63, 48, 0.1);
  }
}

/* ==================================================
   TABLET AND MOBILE NAVIGATION
================================================== */

@media (max-width: 900px) {
  :root {
    --header-height: 78px;
  }

  .nav-wrapper {
    padding: 0 20px;
  }

  .logo img {
    height: 62px !important;
  }

  .nav-container {
    flex: 0 0 auto;
  }

  nav {
    position: fixed;
    top: var(--header-height);
    right: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 3px;
    max-height: 0;
    padding: 0 15px;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    background: rgba(255, 255, 255, 0.99);
    border: 1px solid rgba(6, 63, 48, 0.1);
    border-radius: 0 0 20px 20px;
    box-shadow: 0 18px 40px rgba(6, 63, 48, 0.15);
    transform: translateY(-12px);
    transition:
      max-height 0.4s ease,
      padding 0.4s ease,
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  }

  nav.active {
    max-height: 520px;
    padding: 15px;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  nav a {
    width: 100%;
    padding: 12px 14px;
    text-align: right;
    border-radius: 10px;
  }

  nav a:hover {
    background: rgba(8, 112, 82, 0.07);
  }

  nav a::after {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .cta-button {
    margin-right: auto;
    margin-left: 18px;
    padding: 10px 20px;
    font-size: 13px;
  }

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

/* ==================================================
   MOBILE
================================================== */

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

  /* Hero */

  .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-image {
    object-position: center center;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(4, 37, 28, 0.68) 0%,
      rgba(4, 37, 28, 0.48) 35%,
      rgba(0, 0, 0, 0.06) 68%,
      rgba(0, 0, 0, 0.22) 100%
    );
  }

  .hero-content {
    padding: 105px 18px 115px !important;
  }

  .hero-content h1 {
    font-size: clamp(31px, 9vw, 43px);
    line-height: 1.15;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  /* About */

  .company-about-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .company-about-image {
    order: 1;
    width: 100%;
    min-height: 370px;
  }

  .company-about-image img {
    width: 100%;
    height: 370px;
    min-height: 370px;
    object-position: center;
  }

  .company-about-image::before,
  .company-about-image::after {
    display: none;
  }

  .company-about-image-shape {
    background: linear-gradient(180deg, transparent 55%, rgba(6, 76, 58, 0.5));
  }

  .company-about-content {
    order: 2;
    padding: 42px 22px 45px;
    text-align: left;
  }

  .company-about-logo {
    margin-bottom: 22px;
    padding: 9px 14px;
    border-radius: 12px;
  }

  .company-about-logo img {
    width: 125px;
    max-height: 80px;
  }

  .company-about-heading {
    margin-bottom: 25px;
  }

  .company-about-heading h2 {
    font-size: clamp(36px, 11vw, 50px);
    letter-spacing: -1.5px;
  }

  .company-about-line {
    width: 70px;
    height: 3px;
    margin-top: 18px;
  }

  .company-about-text p {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.8;
  }

  .company-about-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 14px 8px;
  }

  .company-about-fact {
    flex-direction: column;
    gap: 7px;
    padding: 15px 6px;
    text-align: center;
  }

  .company-about-fact:nth-child(2)::after {
    display: none;
  }

  .company-about-fact:nth-child(1),
  .company-about-fact:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  }

  .company-about-fact-icon {
    width: 44px;
    height: 44px;
    border-width: 1px;
  }

  .company-about-fact-icon svg {
    width: 25px;
    height: 25px;
  }

  .company-about-fact-copy {
    align-items: center;
  }

  .company-about-fact-copy strong {
    font-size: 15px;
    white-space: normal;
  }

  .company-about-fact-copy span {
    margin-top: 2px;
    font-size: 10px;
  }

  /* Portfolio */

  .refp-section {
    padding: 70px 0 55px;
  }

  .refp-header {
    display: block;
    margin-bottom: 30px;
    padding: 0 20px;
  }

  .refp-logo {
    display: none;
  }

  .refp-title {
    font-size: clamp(37px, 11vw, 52px);
    letter-spacing: -1.8px;
  }

  .refp-tagline {
    margin-top: 12px;
    font-size: 17px;
    line-height: 1.5;
  }

  .refp-description {
    font-size: 14px;
  }

  .refp-products {
    display: flex;
    gap: 14px;
    padding: 0 20px 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .refp-products::-webkit-scrollbar {
    display: none;
  }

  .refp-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 500px;
    border-radius: 18px;
    scroll-snap-align: center;
  }

  .refp-card-content {
    padding: 23px 19px;
  }

  .refp-card-icon {
    width: 49px;
    height: 49px;
  }

  .refp-card-icon svg {
    width: 26px;
    height: 26px;
  }

  .refp-card-heading h3 {
    font-size: 23px;
  }

  .refp-card-list {
    gap: 13px;
    margin-top: 23px;
  }

  .refp-card-list li {
    font-size: 15px;
  }

  .refp-scroll-hint {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin: 4px 0 24px;
  }

  .refp-scroll-hint span {
    display: block;
    width: 7px;
    height: 7px;
    background: rgba(6, 63, 48, 0.25);
    border-radius: 50%;
  }

  .refp-scroll-hint span:first-child {
    width: 22px;
    background: var(--refp-green);
    border-radius: 10px;
  }

  .refp-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin: 0 15px;
    padding: 8px;
    border-radius: 17px;
  }

  .refp-benefit {
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    padding: 17px 8px;
    text-align: center;
  }

  .refp-benefit--intro {
    grid-column: 1 / -1;
    flex-direction: row;
    padding: 16px 12px 20px;
    text-align: left;
  }

  .refp-benefit-icon {
    width: 40px;
    height: 40px;
  }

  .refp-benefit strong {
    font-size: 13px;
  }

  .refp-benefit span:not(.refp-benefit-icon) {
    font-size: 10px;
  }

  .refp-benefit--intro p {
    font-size: 12px;
  }

  /* Footer */

  footer {
    padding: 55px 22px 22px;
  }

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

  .footer-section {
    text-align: right;
  }
}

/* ==================================================
   SMALL MOBILE
================================================== */

@media (max-width: 480px) {
  :root {
    --header-height: 72px;
  }

  .nav-wrapper {
    padding: 0 14px;
  }

  .logo img {
    height: 56px !important;
  }

  .cta-button {
    margin-left: 12px;
    padding: 9px 16px;
    font-size: 12px;
  }

  .hamburger {
    width: 32px;
  }

  .hero-content {
    padding: 135px 15px 105px !important;
  }

  .hero-content h1 {
    font-size: 29px;
  }

  .hero-subtitle {
    font-size: 12px;
  }

  .company-about-image,
  .company-about-image img {
    height: 310px;
    min-height: 310px;
  }

  .company-about-content {
    padding: 35px 18px 40px;
  }

  .company-about-heading h2 {
    font-size: 34px;
  }

  .company-about-text p {
    font-size: 14px;
  }

  .company-about-fact {
    padding: 13px 4px;
  }

  .company-about-fact-icon {
    width: 40px;
    height: 40px;
  }

  .company-about-fact-icon svg {
    width: 22px;
    height: 22px;
  }

  .company-about-fact-copy strong {
    font-size: 13px;
  }

  .company-about-fact-copy span {
    font-size: 9px;
  }

  .refp-header {
    padding: 0 17px;
  }

  .refp-products {
    padding-right: 17px;
    padding-left: 17px;
  }

  .refp-card {
    flex-basis: 84vw;
    min-height: 470px;
  }

  .refp-benefits {
    margin: 0 10px;
  }

  .refp-benefit {
    padding: 14px 5px;
  }

  .refp-benefit-icon {
    width: 35px;
    height: 35px;
  }

  .refp-benefit strong {
    font-size: 12px;
  }

  .refp-benefit span:not(.refp-benefit-icon) {
    font-size: 9px;
  }

  .footer-bottom {
    margin-top: 35px;
  }

  .footer-bottom p {
    font-size: 11px;
  }
}

/* ==================================================
   REDUCED MOTION
================================================== */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==================================================
   FRESH PRODUCE SPECIALISTS
   Unique prefix: fpx-
================================================== */

.fpx-section {
  --fpx-dark: #023f2d;
  --fpx-green: #006b47;
  --fpx-light: #42a846;
  --fpx-red: #c80f1a;
  --fpx-white: #ffffff;
  --fpx-text: #27302c;
  --fpx-muted: #67706c;

  position: relative;
  width: 100%;
  padding: 90px 25px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(3, 90, 63, 0.08), transparent 25%),
    #f4f3ef;
  direction: ltr;
}

.fpx-container {
  width: min(100%, 1600px);
  margin: 0 auto;
  overflow: hidden;
  background: #fffefa;
  border: 1px solid rgba(3, 63, 45, 0.08);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(3, 63, 45, 0.14);
}

/* Main layout */

.fpx-showcase {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, 0.65fr);
  grid-template-rows: 310px 310px 310px;
  gap: 8px;
  padding: 15px;
}

/* Introduction */

.fpx-intro-card {
  position: relative;
  grid-column: 1;
  grid-row: 1 / 4;
  min-height: 100%;
  overflow: hidden;
  background: #f5f1ea;
  border-radius: 18px;
  isolation: isolate;
}

.fpx-intro-image {
  position: absolute;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: none;
}

.fpx-intro-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.94) 0%,
    rgba(255, 255, 255, 0.86) 33%,
    rgba(255, 255, 255, 0.18) 58%,
    rgba(3, 35, 25, 0.08) 100%
  );
}

.fpx-intro-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 32px 35px;
}

.fpx-intro-logo {
  width: fit-content;
  padding: 13px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(3, 63, 45, 0.06);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(3, 63, 45, 0.08);
}

.fpx-intro-logo img {
  display: block;
  width: 145px;
  max-height: 95px;
  object-fit: contain;
}

.fpx-intro-copy {
  width: min(100%, 510px);
  margin-top: 45px;
  margin-left: auto;
}

.fpx-intro-label {
  display: inline-block;
  margin-bottom: 9px;
  color: var(--fpx-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.7px;
  text-transform: uppercase;
}

.fpx-intro-copy h2 {
  margin: 0;
  color: var(--fpx-dark);
  font-size: clamp(45px, 4.6vw, 76px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.fpx-intro-copy h2 strong {
  display: block;
  margin-top: 12px;
  color: var(--fpx-red);
  font-size: 0.67em;
  letter-spacing: -1px;
}

.fpx-intro-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 16px;
}

.fpx-intro-line span {
  display: block;
  width: 55px;
  height: 3px;
  background: var(--fpx-green);
  border-radius: 5px;
}

.fpx-intro-line svg {
  width: 25px;
  height: 25px;
  color: var(--fpx-green);
}

.fpx-intro-copy p {
  max-width: 400px;
  margin: 0;
  color: var(--fpx-text);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 500;
  line-height: 1.7;
}

/* Product cards */

.fpx-product-grid {
  display: contents;
}

.fpx-product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #e9e5dc;
  border-radius: 16px;
  isolation: isolate;
}

.fpx-product-card:nth-child(1) {
  grid-column: 2;
  grid-row: 1;
}

.fpx-product-card:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.fpx-product-card:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.fpx-product-card:nth-child(4) {
  grid-column: 2;
  grid-row: 2;
}

.fpx-product-card:nth-child(5) {
  grid-column: 3;
  grid-row: 2;
}

.fpx-product-card:nth-child(6) {
  grid-column: 4;
  grid-row: 2;
}

.fpx-product-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  /* Completely disable image interaction and motion */
  transform: none !important;
  transition: none !important;
  pointer-events: none !important;
  user-select: none !important;
  -webkit-user-select: none !important;
  -webkit-user-drag: none !important;
}

.fpx-product-card::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  pointer-events: none;
  background: linear-gradient(transparent, rgba(0, 25, 18, 0.5));
}

.fpx-product-name {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 13px;
  color: var(--fpx-white);
  background: rgba(0, 98, 65, 0.94);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 55, 38, 0.22);
  backdrop-filter: blur(8px);
}

.fpx-product-leaf {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  color: var(--fpx-white);
  background: var(--fpx-light);
  border-radius: 50%;
}

.fpx-product-leaf svg {
  width: 18px;
  height: 18px;
}

.fpx-product-name strong {
  min-width: 0;
  font-size: clamp(11px, 0.9vw, 15px);
  font-weight: 700;
  line-height: 1.2;
}

.fpx-product-name small {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.83em;
}

/* Pallet */

.fpx-pallet-card {
  display: grid;
  grid-column: 2 / 4;
  grid-row: 3;
  grid-template-columns: minmax(0, 1.5fr) minmax(130px, 0.55fr);
  overflow: hidden;
  background: var(--fpx-white);
  border: 1px solid rgba(3, 63, 45, 0.1);
  border-radius: 16px;
}

.fpx-pallet-image {
  min-width: 0;
  overflow: hidden;
}

.fpx-pallet-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.fpx-pallet-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}

.fpx-pallet-label {
  margin-bottom: 8px;
  color: var(--fpx-green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.fpx-pallet-content h3 {
  margin: 0;
  color: var(--fpx-dark);
  font-size: clamp(17px, 1.5vw, 25px);
  font-weight: 800;
  line-height: 1.25;
}

.fpx-pallet-content p {
  margin: 7px 0 0;
  color: var(--fpx-muted);
  font-size: 13px;
}

.fpx-pallet-line {
  display: block;
  width: 42px;
  height: 3px;
  margin: 18px 0 13px;
  background: var(--fpx-red);
}

.fpx-pallet-icon {
  width: 55px;
  height: 55px;
  color: var(--fpx-dark);
}

/* Peach cards */

.fpx-peach-card .fpx-product-name,
.fpx-flat-peach-card .fpx-product-name {
  right: 6px;
  bottom: 8px;
  left: 6px;
  padding: 7px 9px;
}

.fpx-peach-card .fpx-product-name strong,
.fpx-flat-peach-card .fpx-product-name strong {
  font-size: 11px;
}

/* Bottom section */

.fpx-bottom {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.38fr);
  color: var(--fpx-white);
  background: var(--fpx-dark);
  border-top: 4px solid #d8a632;
}

.fpx-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  padding: 22px 15px;
}

.fpx-benefit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 8px 17px;
}

.fpx-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 12%;
  right: 0;
  width: 1px;
  height: 76%;
  background: rgba(255, 255, 255, 0.3);
}

.fpx-benefit-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  padding: 10px;
  color: var(--fpx-white);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.fpx-benefit-icon svg {
  width: 100%;
  height: 100%;
}

.fpx-benefit > div {
  display: flex;
  flex-direction: column;
}

.fpx-benefit strong {
  color: var(--fpx-white);
  font-size: clamp(12px, 0.95vw, 15px);
  font-weight: 700;
  line-height: 1.3;
}

.fpx-benefit div span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(9px, 0.75vw, 12px);
  line-height: 1.4;
}

.fpx-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 22px 25px;
  background: linear-gradient(135deg, #a90713, #d10c1b);
}

.fpx-brand img {
  width: 150px;
  max-height: 85px;
  padding: 8px;
  object-fit: contain;
  background: var(--fpx-white);
  border-radius: 10px;
}

.fpx-brand-divider {
  display: block;
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.5);
}

.fpx-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fpx-brand-copy strong {
  color: var(--fpx-white);
  font-size: 15px;
  white-space: nowrap;
}

.fpx-brand-copy span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  white-space: nowrap;
}

/* ==================================================
   SPECIALISTS SECTION — LAPTOP
================================================== */

@media (max-width: 1200px) {
  .fpx-showcase {
    grid-template-columns: 0.95fr repeat(3, 0.7fr);
    grid-template-rows: repeat(3, 270px);
  }

  .fpx-intro-content {
    padding: 25px;
  }

  .fpx-intro-copy {
    margin-top: 35px;
  }

  .fpx-intro-copy h2 {
    font-size: 50px;
  }

  .fpx-bottom {
    grid-template-columns: 1fr;
  }

  .fpx-brand {
    justify-content: center;
    padding: 17px;
  }
}

/* ==================================================
   SPECIALISTS SECTION — TABLET
================================================== */

@media (max-width: 900px) {
  .fpx-section {
    padding: 70px 20px;
  }

  .fpx-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 600px repeat(3, 260px) 280px;
  }

  .fpx-intro-card {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .fpx-product-card:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .fpx-product-card:nth-child(2) {
    grid-column: 2;
    grid-row: 2;
  }

  .fpx-product-card:nth-child(3) {
    grid-column: 1;
    grid-row: 3;
  }

  .fpx-product-card:nth-child(4) {
    grid-column: 2;
    grid-row: 3;
  }

  .fpx-product-card:nth-child(5) {
    grid-column: 1;
    grid-row: 4;
  }

  .fpx-product-card:nth-child(6) {
    grid-column: 2;
    grid-row: 4;
  }

  .fpx-pallet-card {
    grid-column: 1 / -1;
    grid-row: 5;
  }

  .fpx-peach-card,
  .fpx-flat-peach-card {
    display: none;
  }

  .fpx-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fpx-benefit:nth-child(2)::after {
    display: none;
  }

  .fpx-benefit:nth-child(1),
  .fpx-benefit:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }
}

/* ==================================================
   SPECIALISTS SECTION — MOBILE
================================================== */

@media (max-width: 600px) {
  .fpx-section {
    padding: 55px 0;
  }

  .fpx-container {
    border-radius: 0;
    box-shadow: none;
  }

  .fpx-showcase {
    display: block;
    padding: 10px;
  }

  .fpx-intro-card {
    min-height: 650px;
    margin-bottom: 12px;
    border-radius: 16px;
  }

  .fpx-intro-content {
    padding: 20px 18px 25px;
  }

  .fpx-intro-logo {
    padding: 8px 12px;
  }

  .fpx-intro-logo img {
    width: 105px;
  }

  .fpx-intro-copy {
    margin-top: 38px;
  }

  .fpx-intro-copy h2 {
    font-size: clamp(39px, 13vw, 55px);
    letter-spacing: -2px;
  }

  .fpx-intro-copy p {
    max-width: 280px;
    font-size: 13px;
  }

  /* Horizontally scrollable products */

  .fpx-product-grid {
    display: flex;
    gap: 11px;
    padding-bottom: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .fpx-product-grid::-webkit-scrollbar {
    display: none;
  }

  .fpx-product-card {
    display: block;
    flex: 0 0 78vw;
    height: 310px;
    margin: 0;
    border-radius: 15px;
    scroll-snap-align: center;
  }

  .fpx-product-name {
    right: 8px;
    bottom: 8px;
    left: 8px;
  }

  .fpx-product-name strong {
    font-size: 12px;
  }

  .fpx-pallet-card {
    display: grid;
    grid-template-columns: 1fr;
    margin: 3px 0 12px;
  }

  .fpx-pallet-image {
    height: 260px;
  }

  .fpx-pallet-content {
    padding: 22px;
  }

  .fpx-pallet-content h3 {
    font-size: 22px;
  }

  .fpx-peach-card,
  .fpx-flat-peach-card {
    display: none;
  }

  .fpx-bottom {
    display: block;
  }

  .fpx-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 10px 6px;
  }

  .fpx-benefit {
    flex-direction: column;
    gap: 7px;
    padding: 15px 5px;
    text-align: center;
  }

  .fpx-benefit::after {
    display: none;
  }

  .fpx-benefit:nth-child(1),
  .fpx-benefit:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .fpx-benefit-icon {
    width: 42px;
    height: 42px;
    padding: 8px;
  }

  .fpx-benefit strong {
    font-size: 11px;
  }

  .fpx-benefit div span {
    font-size: 9px;
  }

  .fpx-brand {
    gap: 12px;
    padding: 15px 10px;
  }

  .fpx-brand img {
    width: 100px;
  }

  .fpx-brand-divider {
    height: 50px;
  }

  .fpx-brand-copy strong {
    font-size: 11px;
  }

  .fpx-brand-copy span {
    font-size: 10px;
  }
}

/* ==================================================
   FROM FARM TO GLOBAL MARKETS
   Unique prefix: rfgl-
================================================== */

.rfgl-section {
  --rfgl-dark: #043f2d;
  --rfgl-green: #086849;
  --rfgl-light: #72a928;
  --rfgl-red: #b20e18;
  --rfgl-white: #ffffff;
  --rfgl-text: #252c29;
  --rfgl-muted: #626b67;
  --rfgl-border: rgba(4, 63, 45, 0.14);

  position: relative;
  width: 100%;
  padding: 100px 24px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(114, 169, 40, 0.09),
      transparent 22%
    ),
    linear-gradient(180deg, #f7f8f5, #ffffff);
  direction: ltr;
}

.rfgl-container {
  width: min(100%, 1650px);
  margin: 0 auto;
  padding: 45px 16px 22px;
  overflow: hidden;
  background: var(--rfgl-white);
  border: 1px solid rgba(4, 63, 45, 0.08);
  border-radius: 26px;
  box-shadow: 0 25px 70px rgba(4, 63, 45, 0.13);
}

/* Header */

.rfgl-header {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: 240px 1fr 190px;
  align-items: start;
  width: 100%;
  height: auto;
  gap: 35px;
  padding: 0 30px 42px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.rfgl-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 18px;
  background: var(--rfgl-white);
  border: 1px solid rgba(4, 63, 45, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(4, 63, 45, 0.07);
}

.rfgl-logo img {
  display: block;
  width: 160px;
  max-height: 115px;
  object-fit: contain;
}

.rfgl-heading {
  text-align: center;
}

.rfgl-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--rfgl-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rfgl-heading h2 {
  margin: 0;
  color: var(--rfgl-dark);
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.rfgl-heading h2 strong {
  display: block;
  margin-top: 8px;
  color: var(--rfgl-red);
}

.rfgl-title-line {
  display: block;
  width: 85px;
  height: 3px;
  margin: 23px auto 15px;
  background: var(--rfgl-red);
  border-radius: 10px;
}

.rfgl-heading p {
  margin: 0;
  color: var(--rfgl-text);
  font-size: clamp(15px, 1.25vw, 20px);
}

.rfgl-values {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 22px 24px;
  color: rgba(255, 255, 255, 0.84);
  background:
    radial-gradient(
      circle at 100% 100%,
      rgba(114, 169, 40, 0.3),
      transparent 45%
    ),
    var(--rfgl-dark);
  border-radius: 18px 0 0 18px;
  box-shadow: 0 10px 25px rgba(4, 63, 45, 0.12);
}

.rfgl-values span {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

/* Process cards */

.rfgl-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  align-items: stretch;
  gap: 7px;
  padding: 0 15px;
}

.rfgl-step {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  text-align: center;
}

.rfgl-step-number {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  color: var(--rfgl-dark);
}

.rfgl-step-number span {
  position: relative;
  z-index: 2;
  padding: 0 8px;
  background: var(--rfgl-white);
  font-size: clamp(20px, 1.6vw, 29px);
  font-weight: 900;
}

.rfgl-step-number i {
  position: relative;
  display: block;
  flex: 1;
  height: 2px;
  background: rgba(4, 63, 45, 0.55);
}

.rfgl-step-number i::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  background: var(--rfgl-dark);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rfgl-step:not(:last-child) .rfgl-step-number::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: 0;
  width: 1px;
  height: 13px;
  background: var(--rfgl-dark);
}

.rfgl-step-image {
  position: relative;
  height: 310px;
  overflow: hidden;
  background: #e9ece9;
  border-radius: 16px 16px 8px 8px;
}

.rfgl-step-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: none;
}

.rfgl-step-icon {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: -38px auto 0;
  color: var(--rfgl-white);
  background: linear-gradient(145deg, #087052, #043f2d);
  border: 4px solid var(--rfgl-white);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(4, 63, 45, 0.22);
}

.rfgl-step-icon svg {
  width: 34px;
  height: 34px;
}

.rfgl-step-copy {
  flex: 1;
  padding: 17px 8px 20px;
  border-right: 1px solid rgba(4, 63, 45, 0.11);
}

.rfgl-step:last-child .rfgl-step-copy {
  border-right: 0;
}

.rfgl-step-copy h3 {
  min-height: 52px;
  margin: 0;
  color: var(--rfgl-dark);
  font-size: clamp(14px, 1.05vw, 19px);
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.rfgl-step-copy p {
  margin: 13px 0 0;
  color: var(--rfgl-text);
  font-size: clamp(11px, 0.8vw, 14px);
  line-height: 1.65;
}

/* Swipe indicator */

.rfgl-swipe-indicator {
  display: none;
}

/* Bottom banner */

.rfgl-bottom {
  display: grid;
  grid-template-columns: 1.05fr 1.55fr 1fr;
  min-height: 130px;
  margin: 28px 0 0;
  overflow: hidden;
  color: var(--rfgl-white);
  background: var(--rfgl-dark);
  border-radius: 18px;
}

.rfgl-bottom-brand {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px;
}

.rfgl-bottom-brand img {
  display: block;
  width: 95px;
  max-height: 82px;
  padding: 7px;
  object-fit: contain;
  background: var(--rfgl-white);
  border-radius: 10px;
}

.rfgl-bottom-divider {
  display: block;
  width: 2px;
  height: 65px;
  background: var(--rfgl-red);
}

.rfgl-bottom-brand > div {
  display: flex;
  flex-direction: column;
}

.rfgl-bottom-brand strong {
  color: var(--rfgl-white);
  font-size: clamp(14px, 1.2vw, 20px);
}

.rfgl-bottom-brand div span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(11px, 0.9vw, 15px);
}

.rfgl-bottom-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
}

.rfgl-bottom-value {
  position: relative;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 15px;
}

.rfgl-bottom-value:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  width: 1px;
  height: 56%;
  background: rgba(255, 255, 255, 0.3);
}

.rfgl-bottom-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 9px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
}

.rfgl-bottom-icon svg {
  width: 100%;
  height: 100%;
}

.rfgl-bottom-value strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(10px, 0.8vw, 13px);
  line-height: 1.4;
  text-transform: uppercase;
}

.rfgl-bottom-image {
  min-width: 0;
}

.rfgl-bottom-image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 130px;
  object-fit: cover;
}

/* ==================================================
   PROCESS SECTION — LAPTOP
================================================== */

@media (max-width: 1250px) {
  .rfgl-header {
    grid-template-columns: 180px 1fr 150px;
  }

  .rfgl-logo {
    min-height: 130px;
  }

  .rfgl-logo img {
    width: 130px;
  }

  .rfgl-heading h2 {
    font-size: 48px;
  }

  .rfgl-step-image {
    height: 260px;
  }

  .rfgl-step-icon {
    width: 62px;
    height: 62px;
    margin-top: -33px;
  }

  .rfgl-step-icon svg {
    width: 29px;
    height: 29px;
  }

  .rfgl-step-copy {
    padding-right: 5px;
    padding-left: 5px;
  }

  .rfgl-bottom {
    grid-template-columns: 1fr;
  }

  .rfgl-bottom-brand {
    justify-content: center;
  }

  .rfgl-bottom-values {
    padding: 10px 20px 20px;
  }

  .rfgl-bottom-image {
    height: 180px;
  }
}

/* ==================================================
   PROCESS SECTION — TABLET
================================================== */

@media (max-width: 900px) {
  .rfgl-section {
    padding: 75px 18px;
  }

  .rfgl-container {
    padding-top: 30px;
  }

  .rfgl-header {
    grid-template-columns: 130px 1fr;
    gap: 20px;
    padding: 0 20px 35px;
  }

  .rfgl-logo {
    min-height: 105px;
    padding: 12px;
  }

  .rfgl-logo img {
    width: 105px;
  }

  .rfgl-heading {
    text-align: left;
  }

  .rfgl-heading h2 {
    font-size: clamp(36px, 7vw, 53px);
  }

  .rfgl-title-line {
    margin-right: 0;
    margin-left: 0;
  }

  .rfgl-values {
    display: none;
  }

  .rfgl-process {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
  }

  .rfgl-step-image {
    height: 250px;
  }

  .rfgl-step-copy {
    border-right: 0;
  }

  .rfgl-step-number i {
    display: none;
  }

  .rfgl-step-number {
    min-height: 45px;
  }

  .rfgl-step-number span {
    padding: 0;
  }

  .rfgl-step:not(:last-child) .rfgl-step-number::after {
    display: none;
  }
}

/* ==================================================
   PROCESS SECTION — MOBILE
================================================== */

@media (max-width: 600px) {
  .rfgl-section {
    padding: 55px 0;
  }

  .rfgl-container {
    padding: 28px 0 0;
    border-radius: 0;
    box-shadow: none;
  }

  .rfgl-header {
    display: block;
    padding: 0 18px 30px;
  }

  .rfgl-logo {
    width: fit-content;
    min-height: auto;
    margin-bottom: 24px;
    padding: 9px 12px;
  }

  .rfgl-logo img {
    width: 100px;
  }

  .rfgl-heading {
    text-align: left;
  }

  .rfgl-eyebrow {
    font-size: 10px;
  }

  .rfgl-heading h2 {
    font-size: clamp(36px, 11vw, 48px);
    letter-spacing: -2px;
  }

  .rfgl-heading h2 strong {
    margin-top: 6px;
  }

  .rfgl-heading p {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Horizontal swipe */

  .rfgl-process {
    display: flex;
    gap: 14px;
    padding: 0 18px 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .rfgl-process::-webkit-scrollbar {
    display: none;
  }

  .rfgl-step {
    flex: 0 0 min(78vw, 305px);
    padding: 12px;
    background: var(--rfgl-white);
    border: 1px solid rgba(4, 63, 45, 0.1);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(4, 63, 45, 0.08);
    scroll-snap-align: center;
  }

  .rfgl-step-number {
    min-height: 42px;
  }

  .rfgl-step-number span {
    font-size: 24px;
  }

  .rfgl-step-number i {
    display: block;
  }

  .rfgl-step-image {
    height: 320px;
    border-radius: 14px;
  }

  .rfgl-step-icon {
    width: 64px;
    height: 64px;
    margin-top: -34px;
  }

  .rfgl-step-icon svg {
    width: 30px;
    height: 30px;
  }

  .rfgl-step-copy {
    padding: 17px 9px 10px;
    border: 0;
  }

  .rfgl-step-copy h3 {
    min-height: 0;
    font-size: 18px;
  }

  .rfgl-step-copy p {
    font-size: 13px;
  }

  .rfgl-swipe-indicator {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 7px 0 25px;
  }

  .rfgl-swipe-indicator span {
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(4, 63, 45, 0.23);
    border-radius: 50%;
  }

  .rfgl-swipe-indicator span:first-child {
    width: 20px;
    background: var(--rfgl-green);
    border-radius: 10px;
  }

  .rfgl-bottom {
    display: block;
    margin: 0;
    border-radius: 0;
  }

  .rfgl-bottom-brand {
    justify-content: flex-start;
    gap: 12px;
    padding: 18px;
  }

  .rfgl-bottom-brand img {
    width: 75px;
  }

  .rfgl-bottom-divider {
    height: 55px;
  }

  .rfgl-bottom-values {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 8px 6px 20px;
  }

  .rfgl-bottom-value {
    flex-direction: column;
    gap: 7px;
    padding: 8px 4px;
    text-align: center;
  }

  .rfgl-bottom-value:not(:last-child)::after {
    top: 8%;
    height: 84%;
  }

  .rfgl-bottom-icon {
    width: 39px;
    height: 39px;
    padding: 7px;
  }

  .rfgl-bottom-value strong {
    font-size: 8px;
  }

  .rfgl-bottom-image {
    height: 160px;
  }

  .rfgl-bottom-image img {
    min-height: 160px;
  }
}

/* ==================================================
   VISION AND MISSION
   Unique prefix: rvm-
================================================== */

.rvm-section {
  --rvm-dark: #043f2d;
  --rvm-green: #086b4b;
  --rvm-light: #77a72e;
  --rvm-red: #b20d18;
  --rvm-text: #252a28;
  --rvm-muted: #626a66;
  --rvm-white: #ffffff;
  --rvm-border: rgba(4, 63, 45, 0.1);

  position: relative;
  width: 100%;
  padding: 100px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 5%, rgba(119, 167, 46, 0.09), transparent 23%),
    linear-gradient(180deg, #ffffff, #f6f8f5);
  direction: ltr;
}

.rvm-container {
  width: min(100%, 1580px);
  margin: 0 auto;
  padding: 30px;
  overflow: hidden;
  background: var(--rvm-white);
  border: 1px solid var(--rvm-border);
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(4, 63, 45, 0.12);
}

/* Main layout */

.rvm-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(650px, 1.75fr);
  gap: 46px;
}

/* Farm image */

.rvm-farm-image {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  background: #e8eee9;
  border-radius: 28px;
  isolation: isolate;
}

.rvm-farm-image > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: none;
}

.rvm-farm-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(4, 35, 25, 0.02) 45%,
    rgba(3, 38, 27, 0.72) 100%
  );
}

.rvm-farm-label {
  position: absolute;
  right: 25px;
  bottom: 25px;
  left: 25px;
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  color: var(--rvm-white);
  background: rgba(4, 63, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.rvm-farm-label span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rvm-farm-label strong {
  margin-top: 3px;
  font-size: 20px;
}

/* Main content */

.rvm-content {
  min-width: 0;
}

.rvm-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.rvm-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--rvm-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rvm-heading h2 {
  margin: 0;
  color: var(--rvm-dark);
  font-size: clamp(42px, 4.7vw, 71px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.rvm-heading h2 strong {
  color: var(--rvm-red);
}

.rvm-heading-line {
  display: block;
  width: 90px;
  height: 4px;
  margin-top: 20px;
  background: linear-gradient(90deg, var(--rvm-green), var(--rvm-red));
  border-radius: 10px;
}

.rvm-logo {
  flex: 0 0 auto;
  padding: 17px 22px;
  background: var(--rvm-white);
  border: 1px solid var(--rvm-border);
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(4, 63, 45, 0.08);
}

.rvm-logo img {
  display: block;
  width: 145px;
  max-height: 100px;
  object-fit: contain;
}

/* Vision and mission cards */

.rvm-main-card {
  position: relative;
  display: grid;
  grid-template-columns: 150px 1px 1fr;
  align-items: center;
  gap: 30px;
  min-height: 225px;
  margin-bottom: 18px;
  padding: 30px 44px 30px 30px;
  overflow: hidden;
  background: var(--rvm-white);
  border: 1px solid rgba(4, 63, 45, 0.08);
  border-radius: 24px;
  box-shadow: 0 13px 35px rgba(4, 63, 45, 0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.rvm-main-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  color: var(--rvm-white);
  border: 6px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(4, 63, 45, 0.2);
}

.rvm-main-icon svg {
  width: 64px;
  height: 64px;
}

.rvm-main-card--vision .rvm-main-icon {
  background: linear-gradient(145deg, #086b4b, #043f2d);
}

.rvm-main-card--mission .rvm-main-icon {
  background: linear-gradient(145deg, #cf1621, #960711);
}

.rvm-card-divider {
  display: block;
  width: 1px;
  height: 80%;
  background: rgba(4, 63, 45, 0.42);
}

.rvm-main-card--mission .rvm-card-divider {
  background: rgba(178, 13, 24, 0.5);
}

.rvm-main-copy {
  position: relative;
  z-index: 2;
}

.rvm-card-label {
  display: inline-block;
  margin-bottom: 2px;
  color: var(--rvm-muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.rvm-main-copy h3 {
  margin: 0 0 7px;
  color: var(--rvm-dark);
  font-size: clamp(31px, 2.8vw, 45px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.rvm-main-card--mission .rvm-main-copy h3 {
  color: var(--rvm-red);
}

.rvm-main-copy p {
  max-width: 780px;
  margin: 0;
  color: var(--rvm-text);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 500;
  line-height: 1.7;
}

.rvm-leaf-decoration {
  position: absolute;
  right: -5px;
  bottom: -15px;
  width: 125px;
  height: 155px;
  color: rgba(119, 167, 46, 0.09);
}

/* Values */

.rvm-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.rvm-value {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  padding: 8px 30px;
}

.rvm-value:first-child {
  padding-left: 0;
}

.rvm-value:last-child {
  padding-right: 0;
}

.rvm-value:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 5%;
  right: 0;
  width: 1px;
  height: 90%;
  background: rgba(4, 63, 45, 0.18);
}

.rvm-value-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  padding: 22px;
  border: 1px solid rgba(4, 63, 45, 0.08);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(4, 63, 45, 0.08);
}

.rvm-value-icon svg {
  width: 100%;
  height: 100%;
}

.rvm-value-icon--green {
  color: var(--rvm-light);
  background: #f6f9ef;
}

.rvm-value-icon--red {
  color: var(--rvm-red);
  background: #fff2f2;
}

.rvm-value-copy h4 {
  margin: 0 0 5px;
  color: var(--rvm-dark);
  font-size: clamp(15px, 1.2vw, 20px);
  font-weight: 900;
  text-transform: uppercase;
}

.rvm-value:nth-child(2) .rvm-value-copy h4 {
  color: var(--rvm-red);
}

.rvm-value-copy p {
  margin: 0;
  color: var(--rvm-text);
  font-size: clamp(11px, 0.85vw, 14px);
  line-height: 1.55;
}

/* Bottom banner */

.rvm-banner {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1.3fr 1fr;
  align-items: center;
  min-height: 175px;
  margin-top: 25px;
  overflow: hidden;
  color: var(--rvm-white);
  background:
    radial-gradient(
      circle at 15% 50%,
      rgba(119, 167, 46, 0.16),
      transparent 25%
    ),
    var(--rvm-dark);
  border-radius: 24px;
}

.rvm-banner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, 0.08);
}

.rvm-banner-logo img {
  width: 90px;
  max-height: 90px;
  padding: 7px;
  object-fit: contain;
  background: var(--rvm-white);
  border-radius: 11px;
}

.rvm-banner-copy {
  padding: 25px 40px;
}

.rvm-banner-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(15px, 1.5vw, 24px);
}

.rvm-banner-copy strong {
  display: block;
  margin-top: 3px;
  color: var(--rvm-white);
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 2.6vw, 42px);
  font-style: italic;
  font-weight: 600;
}

.rvm-banner-copy i {
  display: block;
  width: 170px;
  height: 3px;
  margin-top: 17px;
  background: var(--rvm-red);
  border-radius: 10px;
}

.rvm-banner-map {
  position: relative;
  min-width: 0;
  height: 175px;
  overflow: hidden;
}

.rvm-banner-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    var(--rvm-dark),
    rgba(4, 63, 45, 0.08) 48%,
    rgba(4, 63, 45, 0.05)
  );
}

.rvm-banner-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.rvm-jordan-point {
  position: absolute;
  right: 17%;
  bottom: 25%;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--rvm-white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.rvm-jordan-point i {
  display: block;
  width: 13px;
  height: 13px;
  background: var(--rvm-white);
  border: 3px solid var(--rvm-red);
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.14);
}

/* ==================================================
   VISION SECTION — TABLET
================================================== */

@media (max-width: 1100px) {
  .rvm-layout {
    grid-template-columns: minmax(300px, 0.7fr) minmax(500px, 1.3fr);
    gap: 25px;
  }

  .rvm-farm-image {
    min-height: 740px;
  }

  .rvm-heading h2 {
    font-size: 45px;
  }

  .rvm-logo img {
    width: 115px;
  }

  .rvm-main-card {
    grid-template-columns: 115px 1px 1fr;
    gap: 20px;
    min-height: 210px;
    padding: 25px;
  }

  .rvm-main-icon {
    width: 100px;
    height: 100px;
  }

  .rvm-main-icon svg {
    width: 52px;
    height: 52px;
  }

  .rvm-value {
    flex-direction: column;
    padding: 10px 18px;
    text-align: center;
  }

  .rvm-value-icon {
    width: 70px;
    height: 70px;
    padding: 17px;
  }
}

/* ==================================================
   VISION SECTION — MOBILE
================================================== */

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

  .rvm-container {
    padding: 12px;
    border-radius: 0;
    box-shadow: none;
  }

  .rvm-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .rvm-farm-image {
    min-height: 520px;
    border-radius: 20px;
  }

  .rvm-farm-label {
    right: 15px;
    bottom: 15px;
    left: 15px;
  }

  .rvm-heading {
    align-items: flex-start;
    padding: 0 7px;
  }

  .rvm-eyebrow {
    font-size: 10px;
  }

  .rvm-heading h2 {
    font-size: clamp(36px, 10.5vw, 48px);
    letter-spacing: -2px;
  }

  .rvm-logo {
    display: none;
  }

  .rvm-main-card {
    grid-template-columns: 72px 1px minmax(0, 1fr);
    gap: 13px;
    min-height: auto;
    padding: 22px 16px;
    border-radius: 18px;
  }

  .rvm-main-icon {
    width: 66px;
    height: 66px;
    border-width: 3px;
  }

  .rvm-main-icon svg {
    width: 34px;
    height: 34px;
  }

  .rvm-card-divider {
    height: 85%;
  }

  .rvm-main-copy h3 {
    font-size: 27px;
  }

  .rvm-main-copy p {
    font-size: 13px;
    line-height: 1.65;
  }

  .rvm-leaf-decoration {
    width: 80px;
    height: 105px;
  }

  .rvm-values {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 24px;
  }

  .rvm-value {
    flex-direction: row;
    gap: 16px;
    padding: 18px 6px;
    text-align: left;
  }

  .rvm-value:first-child,
  .rvm-value:last-child {
    padding: 18px 6px;
  }

  .rvm-value:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .rvm-value-icon {
    width: 65px;
    height: 65px;
    padding: 16px;
  }

  .rvm-value-copy h4 {
    font-size: 16px;
  }

  .rvm-value-copy p {
    font-size: 12px;
  }

  .rvm-banner {
    display: grid;
    grid-template-columns: 75px 1fr;
    min-height: 150px;
    border-radius: 18px;
  }

  .rvm-banner-logo {
    grid-column: 1;
    grid-row: 1;
    padding: 10px;
  }

  .rvm-banner-logo img {
    width: 58px;
  }

  .rvm-banner-copy {
    grid-column: 2;
    grid-row: 1;
    padding: 18px 12px;
  }

  .rvm-banner-copy span {
    font-size: 11px;
  }

  .rvm-banner-copy strong {
    font-size: 19px;
  }

  .rvm-banner-copy i {
    width: 90px;
    margin-top: 11px;
  }

  .rvm-banner-map {
    grid-column: 1 / -1;
    height: 135px;
  }
}

/* ==================================================
   VISION SECTION — SMALL MOBILE
================================================== */

@media (max-width: 430px) {
  .rvm-farm-image {
    min-height: 450px;
  }

  .rvm-main-card {
    display: grid;
    grid-template-columns: 55px minmax(0, 1fr);
  }

  .rvm-main-icon {
    width: 52px;
    height: 52px;
  }

  .rvm-main-icon svg {
    width: 27px;
    height: 27px;
  }

  .rvm-card-divider {
    display: none;
  }

  .rvm-main-copy h3 {
    font-size: 24px;
  }

  .rvm-main-copy p {
    font-size: 12px;
  }
}

/* ==================================================
   JORDAN TO EUROPE
   Unique prefix: rje-
================================================== */

.rje-section {
  --rje-dark: #03442f;
  --rje-green: #076e4c;
  --rje-light: #78a932;
  --rje-red: #bf0c18;
  --rje-white: #ffffff;
  --rje-text: #27302c;
  --rje-muted: #69716d;

  position: relative;
  width: 100%;
  padding: 100px 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at 96% 8%, rgba(120, 169, 50, 0.1), transparent 25%),
    linear-gradient(180deg, #f5f6f3, #ffffff);
  direction: ltr;
}

.rje-container {
  width: min(100%, 1650px);
  margin: 0 auto;
  padding: 28px 18px 0;
  overflow: hidden;
  background: #fffefa;
  border: 1px solid rgba(3, 68, 47, 0.08);
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(3, 68, 47, 0.13);
}

/* Heading */

.rje-header {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 0 25px 30px;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.rje-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 145px;
  padding: 17px;
  background: var(--rje-white);
  border: 1px solid rgba(3, 68, 47, 0.08);
  border-radius: 18px;
  box-shadow: 0 10px 28px rgba(3, 68, 47, 0.07);
}

.rje-logo img {
  display: block;
  width: 165px;
  max-height: 110px;
  object-fit: contain;
}

.rje-heading {
  grid-column: 2 / 4;
  text-align: center;
}

.rje-eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--rje-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.rje-heading h2 {
  margin: 0;
  color: var(--rje-dark);
  font-size: clamp(48px, 5.5vw, 83px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.rje-heading h2 strong {
  color: var(--rje-red);
}

.rje-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 12px;
}

.rje-subtitle i {
  display: block;
  width: 75px;
  height: 3px;
  background: var(--rje-red);
  border-radius: 10px;
}

.rje-subtitle p {
  margin: 0;
  color: var(--rje-dark);
  font-size: clamp(17px, 1.8vw, 27px);
  font-weight: 500;
}

/* Journey */

.rje-journey {
  position: relative;
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1.4fr;
  align-items: center;
  min-height: 520px;
  padding: 25px 25px 15px;
  overflow: hidden;
}

.rje-route-line {
  position: absolute;
  right: 2%;
  bottom: 7%;
  left: 2%;
  z-index: 2;
  width: 96%;
  height: 70%;
  pointer-events: none;
}

/* Jordan origin */

.rje-origin {
  position: relative;
  z-index: 3;
  align-self: stretch;
}

.rje-origin-image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  overflow: hidden;
  background: #dbe7d9;
  border-radius: 35% 18% 28% 20%;
  box-shadow: 0 15px 38px rgba(3, 68, 47, 0.16);
  isolation: isolate;
}

.rje-origin-image > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rje-origin-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(3, 68, 47, 0.05),
    rgba(3, 48, 34, 0.7)
  );
}

.rje-origin-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 33px 27px;
}

.rje-origin-country {
  color: var(--rje-white);
  font-size: clamp(27px, 2.8vw, 42px);
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.rje-location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--rje-white);
}

.rje-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--rje-white);
  background: var(--rje-red);
  border: 4px solid var(--rje-white);
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.rje-pin svg {
  width: 28px;
  height: 28px;
}

.rje-location div {
  display: flex;
  flex-direction: column;
}

.rje-location small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rje-location strong {
  font-size: 20px;
}

/* Truck */

.rje-truck {
  position: relative;
  z-index: 5;
  align-self: end;
  margin-right: -55px;
  margin-bottom: 25px;
  margin-left: -50px;
}

.rje-truck > img {
  display: block;
  width: 100%;
  max-height: 410px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.2));
}

.rje-truck-brand {
  position: absolute;
  top: 20%;
  right: 13%;
  display: flex;
  align-items: center;
  gap: 11px;
  width: 38%;
  min-width: 170px;
  padding: 13px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(3, 68, 47, 0.12);
}

.rje-truck-brand img {
  width: 60px;
  height: 45px;
  object-fit: contain;
}

.rje-truck-brand div {
  display: flex;
  flex-direction: column;
}

.rje-truck-brand strong {
  color: var(--rje-dark);
  font-size: 13px;
}

.rje-truck-brand span {
  color: var(--rje-muted);
  font-size: 9px;
}

/* European markets */

.rje-markets {
  position: relative;
  z-index: 1;
  align-self: stretch;
  min-height: 470px;
}

.rje-markets-map {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
}

.rje-market-points {
  position: absolute;
  inset: 0;
  z-index: 4;
}

.rje-market-point {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
}

.rje-market-point span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  background: var(--rje-white);
  border: 5px solid var(--rje-green);
  border-radius: 50% 50% 50% 0;
  box-shadow: 0 4px 12px rgba(3, 68, 47, 0.2);
  transform: rotate(-45deg);
}

.rje-market-point strong {
  color: var(--rje-dark);
  font-size: clamp(9px, 0.8vw, 13px);
  white-space: nowrap;
}

.rje-market-point--poland {
  top: 18%;
  left: 57%;
}

.rje-market-point--czech {
  top: 37%;
  left: 37%;
}

.rje-market-point--slovakia {
  top: 42%;
  left: 69%;
}

.rje-market-point--slovenia {
  top: 61%;
  left: 28%;
}

.rje-market-point--hungary {
  top: 56%;
  left: 56%;
}

.rje-market-point--romania {
  top: 68%;
  left: 72%;
}

.rje-promise {
  position: absolute;
  right: 6%;
  bottom: 2%;
  z-index: 5;
  text-align: center;
}

.rje-promise span {
  display: block;
  color: var(--rje-green);
  font-family: "Playfair Display", serif;
  font-size: clamp(21px, 2vw, 32px);
  font-style: italic;
}

.rje-promise strong {
  display: block;
  color: var(--rje-red);
  font-size: clamp(23px, 2.2vw, 36px);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.rje-promise p {
  margin: 5px 0 0;
  color: var(--rje-dark);
  font-size: 12px;
}

/* Features */

.rje-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 15px;
  padding: 20px 25px;
  border-top: 1px solid rgba(3, 68, 47, 0.11);
}

.rje-feature {
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  padding: 8px 25px;
}

.rje-feature:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 7%;
  right: 0;
  width: 1px;
  height: 86%;
  background: rgba(3, 68, 47, 0.18);
}

.rje-feature-icon {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 16px;
  color: var(--rje-white);
  background: linear-gradient(145deg, var(--rje-green), var(--rje-dark));
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(3, 68, 47, 0.16);
}

.rje-feature-icon svg {
  width: 100%;
  height: 100%;
}

.rje-feature > div {
  display: flex;
  flex-direction: column;
}

.rje-feature strong {
  color: var(--rje-dark);
  font-size: clamp(13px, 1.1vw, 18px);
  font-weight: 900;
  line-height: 1.3;
  text-transform: uppercase;
}

.rje-feature div span {
  margin-top: 5px;
  color: var(--rje-muted);
  font-size: clamp(10px, 0.8vw, 13px);
  line-height: 1.45;
}

/* Contact */

.rje-contact {
  display: grid;
  grid-template-columns: 1.1fr 1.15fr 0.8fr 1fr 1.25fr;
  align-items: stretch;
  margin: 0 -18px;
  padding: 23px 30px;
  color: var(--rje-white);
  background: var(--rje-dark);
  border-top: 6px solid var(--rje-red);
}

.rje-contact-column {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 10px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.rje-contact-column h3 {
  margin: 0 0 9px;
  color: var(--rje-white);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.rje-contact-column p,
.rje-contact-column span,
.rje-contact-column address,
.rje-contact-column a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-style: normal;
  line-height: 1.7;
  text-decoration: none;
}

.rje-contact-column a:hover {
  color: var(--rje-white);
}

.rje-company {
  flex-direction: row;
  align-items: center;
  gap: 14px;
}

.rje-company img {
  width: 75px;
  max-height: 70px;
  padding: 6px;
  object-fit: contain;
  background: var(--rje-white);
  border-radius: 9px;
}

.rje-company div {
  display: flex;
  flex-direction: column;
}

.rje-company h3 {
  margin-bottom: 3px;
}

.rje-website-title {
  margin-top: 13px !important;
}

.rje-qr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-left: 25px;
  padding: 12px 18px;
  color: var(--rje-dark);
  background: var(--rje-white);
  border-radius: 17px;
  text-decoration: none;
}

.rje-qr img {
  width: 110px;
  height: 110px;
  object-fit: contain;
}

.rje-qr > span {
  display: block;
  width: 2px;
  height: 80px;
  background: var(--rje-dark);
}

.rje-qr strong {
  color: var(--rje-dark);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

/* ==================================================
   JORDAN TO EUROPE — TABLET
================================================== */

@media (max-width: 1100px) {
  .rje-header {
    grid-template-columns: 190px 1fr;
  }

  .rje-heading {
    grid-column: 2;
  }

  .rje-heading h2 {
    font-size: 51px;
  }

  .rje-logo {
    min-height: 120px;
  }

  .rje-logo img {
    width: 130px;
  }

  .rje-journey {
    grid-template-columns: 0.8fr 1.1fr 1.2fr;
  }

  .rje-origin-image {
    min-height: 400px;
  }

  .rje-markets {
    min-height: 420px;
  }

  .rje-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .rje-feature:nth-child(2)::after {
    display: none;
  }

  .rje-feature:nth-child(1),
  .rje-feature:nth-child(2) {
    border-bottom: 1px solid rgba(3, 68, 47, 0.12);
  }

  .rje-contact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .rje-contact-column {
    border-bottom: 1px solid rgba(255, 255, 255, 0.17);
  }

  .rje-qr {
    margin: 18px;
  }
}

/* ==================================================
   JORDAN TO EUROPE — MOBILE
================================================== */

@media (max-width: 700px) {
  .rje-section {
    padding: 60px 0;
  }

  .rje-container {
    padding: 20px 10px 0;
    border-radius: 0;
    box-shadow: none;
  }

  .rje-header {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0 10px 30px;
  }

  .rje-logo {
    width: fit-content;
    min-height: auto;
    padding: 9px 12px;
  }

  .rje-logo img {
    width: 100px;
  }

  .rje-heading {
    text-align: left;
  }

  .rje-eyebrow {
    font-size: 10px;
  }

  .rje-heading h2 {
    font-size: clamp(38px, 12vw, 50px);
    letter-spacing: -2px;
  }

  .rje-subtitle {
    justify-content: flex-start;
    gap: 10px;
  }

  .rje-subtitle i {
    width: 30px;
  }

  .rje-subtitle p {
    font-size: 14px;
  }

  .rje-journey {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: auto;
    padding: 0;
  }

  .rje-route-line {
    display: none;
  }

  .rje-origin {
    width: 100%;
  }

  .rje-origin-image {
    min-height: 420px;
    border-radius: 22px;
  }

  .rje-truck {
    width: 100%;
    margin: -40px 0 -10px;
  }

  .rje-truck-brand {
    top: 20%;
    right: 8%;
    width: 45%;
    min-width: 145px;
    padding: 9px;
  }

  .rje-truck-brand img {
    width: 45px;
  }

  .rje-markets {
    width: 100%;
    min-height: 450px;
  }

  .rje-promise {
    right: 10px;
    bottom: 10px;
  }

  .rje-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 17px 5px;
  }

  .rje-feature {
    flex-direction: column;
    gap: 8px;
    padding: 15px 6px;
    text-align: center;
  }

  .rje-feature::after {
    display: none;
  }

  .rje-feature:nth-child(1),
  .rje-feature:nth-child(2) {
    border-bottom: 1px solid rgba(3, 68, 47, 0.12);
  }

  .rje-feature-icon {
    width: 48px;
    height: 48px;
    padding: 11px;
  }

  .rje-feature strong {
    font-size: 11px;
  }

  .rje-feature div span {
    font-size: 9px;
  }

  .rje-contact {
    display: grid;
    grid-template-columns: 1fr;
    margin: 0 -10px;
    padding: 22px 17px;
  }

  .rje-contact-column {
    padding: 17px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .rje-company {
    flex-direction: row;
  }

  .rje-qr {
    margin: 20px 0 0;
  }
}

/* ==================================================
   ABOUT SECTION — NEW MOBILE DESIGN
================================================== */

@media (max-width: 768px) {
  .company-about {
    padding: 18px 14px 0;
    background: #f4f7f5;
  }

  .company-about-container {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  /* Mobile image card */
  .company-about-image {
    position: relative;
    order: 1;
    width: 100%;
    height: 300px;
    min-height: 300px;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(6, 76, 58, 0.16);
  }

  .company-about-image img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
  }

  .company-about-image::before,
  .company-about-image::after {
    display: none;
  }

  .company-about-image-shape {
    display: block;
    background: linear-gradient(
      180deg,
      transparent 45%,
      rgba(3, 45, 33, 0.55) 100%
    );
  }

  /* Mobile content card */
  .company-about-content {
    position: relative;
    order: 2;
    width: calc(100% - 20px);
    margin: -46px auto 0;
    padding: 26px 20px 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(6, 76, 58, 0.08);
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(6, 76, 58, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .company-about-logo {
    margin: 0 0 20px;
    padding: 7px 11px;
    border-radius: 10px;
    box-shadow: 0 7px 20px rgba(6, 76, 58, 0.08);
  }

  .company-about-logo img {
    width: 105px;
    max-height: 62px;
  }

  .company-about-heading {
    margin-bottom: 21px;
  }

  .company-about-label {
    margin-bottom: 7px;
    font-size: 10px;
    letter-spacing: 1.6px;
  }

  .company-about-heading h2 {
    max-width: 300px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .company-about-heading h2 span {
    display: block;
  }

  .company-about-line {
    width: 60px;
    height: 3px;
    margin-top: 15px;
  }

  .company-about-text {
    max-width: none;
  }

  .company-about-text p {
    margin-bottom: 15px;
    color: #454c49;
    font-size: 13.5px;
    line-height: 1.75;
  }

  .company-about-text p:last-child {
    margin-bottom: 0;
  }

  /* Horizontally scrollable facts */
  .company-about-facts {
    display: flex;
    gap: 10px;
    margin: 22px -14px 0;
    padding: 18px 14px 20px;
    overflow-x: auto;
    background: linear-gradient(135deg, #063c30, #07513f);
    border-top: 3px solid var(--about-light-green);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .company-about-facts::-webkit-scrollbar {
    display: none;
  }

  .company-about-fact {
    display: flex;
    flex: 0 0 145px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 132px;
    padding: 15px 10px;
    text-align: center;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 17px;
    scroll-snap-align: center;
  }

  .company-about-fact::after {
    display: none !important;
  }

  .company-about-fact:nth-child(1),
  .company-about-fact:nth-child(2) {
    border-bottom-color: rgba(255, 255, 255, 0.13);
  }

  .company-about-fact-icon {
    width: 47px;
    height: 47px;
    border: 1.5px solid var(--about-lime);
  }

  .company-about-fact-icon svg {
    width: 25px;
    height: 25px;
  }

  .company-about-fact-copy {
    align-items: center;
  }

  .company-about-fact-copy strong {
    font-size: 15px;
    line-height: 1.2;
    white-space: normal;
  }

  .company-about-fact-copy span {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .company-about {
    padding-right: 10px;
    padding-left: 10px;
  }

  .company-about-image {
    height: 265px;
    min-height: 265px;
    border-radius: 20px;
  }

  .company-about-content {
    width: calc(100% - 14px);
    margin-top: -38px;
    padding: 23px 17px 27px;
    border-radius: 19px;
  }

  .company-about-heading h2 {
    font-size: 31px;
  }

  .company-about-text p {
    font-size: 13px;
    line-height: 1.7;
  }

  .company-about-facts {
    margin-right: -10px;
    margin-left: -10px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .company-about-fact {
    flex-basis: 137px;
    min-height: 125px;
  }
}

/* ==================================================
   VISION & MISSION — COMPACT HORIZONTAL MOBILE
================================================== */

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

  .rvm-container {
    padding: 14px;
    overflow: hidden;
  }

  .rvm-layout {
    gap: 24px;
  }

  /* Shorter farm image */
  .rvm-farm-image {
    min-height: 300px;
    border-radius: 20px;
  }

  .rvm-farm-label {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 13px 15px;
  }

  .rvm-farm-label span {
    font-size: 9px;
  }

  .rvm-farm-label strong {
    font-size: 16px;
  }

  /* Compact heading */
  .rvm-heading {
    margin-bottom: 22px;
    padding: 0 4px;
  }

  .rvm-heading h2 {
    max-width: 340px;
    font-size: clamp(32px, 9vw, 43px);
    line-height: 1.05;
  }

  /* Vision and Mission cards */
  .rvm-main-card {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 14px;
    min-height: 0;
    margin-bottom: 12px;
    padding: 19px 15px;
    border-radius: 17px;
  }

  .rvm-main-icon {
    width: 56px;
    height: 56px;
    border-width: 3px;
  }

  .rvm-main-icon svg {
    width: 29px;
    height: 29px;
  }

  .rvm-card-divider {
    display: none;
  }

  .rvm-main-copy h3 {
    margin-bottom: 5px;
    font-size: 24px;
  }

  .rvm-main-copy p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .rvm-leaf-decoration {
    width: 65px;
    height: 85px;
  }

  /* Horizontal values carousel */
  .rvm-values {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin: 20px -14px 0;
    padding: 4px 14px 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .rvm-values::-webkit-scrollbar {
    display: none;
  }

  .rvm-value,
  .rvm-value:first-child,
  .rvm-value:last-child {
    display: flex;
    flex: 0 0 min(76vw, 290px);
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    min-height: 175px;
    padding: 22px;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(4, 63, 45, 0.1);
    border-radius: 19px;
    box-shadow: 0 10px 25px rgba(4, 63, 45, 0.08);
    scroll-snap-align: center;
  }

  .rvm-value::after,
  .rvm-value:not(:last-child)::after {
    display: none;
  }

  .rvm-value-icon {
    width: 57px;
    height: 57px;
    padding: 14px;
  }

  .rvm-value-copy h4 {
    margin-bottom: 6px;
    font-size: 17px;
  }

  .rvm-value-copy p {
    font-size: 12px;
    line-height: 1.55;
  }
}

@media (max-width: 480px) {
  .rvm-farm-image {
    min-height: 260px;
  }

  .rvm-main-card {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
    padding: 17px 13px;
  }

  .rvm-main-icon {
    width: 49px;
    height: 49px;
  }

  .rvm-main-icon svg {
    width: 25px;
    height: 25px;
  }

  .rvm-main-copy h3 {
    font-size: 21px;
  }

  .rvm-value,
  .rvm-value:first-child,
  .rvm-value:last-child {
    flex-basis: 78vw;
  }
}

/* ==================================================
   FIX MOBILE HEADER OPTIONS
================================================== */

@media (max-width: 1050px) {
  .reh-mobile-menu .reh-mobile-nav {
    position: static;
    top: auto;
    right: auto;
    left: auto;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;

    width: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    gap: 0;

    overflow: visible;
    visibility: visible;
    opacity: 1;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    transform: none;
  }

  .reh-mobile-menu .reh-mobile-link {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
    padding: 14px 4px;

    color: rgba(255, 255, 255, 0.86);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 0;

    font-size: 17px;
    font-weight: 600;
    text-align: left;
    text-decoration: none;

    visibility: visible;
    opacity: 1;
  }

  .reh-mobile-menu .reh-mobile-link::after {
    display: none;
  }

  .reh-mobile-menu .reh-mobile-link span {
    display: inline-block;
    min-width: 26px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 11px;
  }

  .reh-mobile-menu .reh-mobile-link:hover,
  .reh-mobile-menu .reh-mobile-link.active {
    padding-left: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.07);
  }
}

@media (max-width: 768px) {
  .refp-products,
  .fpx-product-grid,
  .rfgl-process,
  .rvm-values,
  .company-about-facts {
    position: relative;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: none !important;
    scroll-behavior: auto !important;
    -webkit-overflow-scrolling: touch;
    touch-action: auto !important;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
    -webkit-user-select: none;
  }

  .refp-products::-webkit-scrollbar,
  .fpx-product-grid::-webkit-scrollbar,
  .rfgl-process::-webkit-scrollbar,
  .rvm-values::-webkit-scrollbar,
  .company-about-facts::-webkit-scrollbar {
    display: none;
  }

  .refp-card,
  .fpx-product-card,
  .rfgl-step,
  .rvm-value,
  .company-about-fact {
    flex-shrink: 0 !important;
    scroll-snap-align: none !important;
    touch-action: auto !important;
    cursor: default !important;
    transform: none !important;
    transition: none !important;
  }

  .refp-card *,
  .fpx-product-card *,
  .rfgl-step *,
  .rvm-value *,
  .company-about-fact * {
    pointer-events: none !important;
    user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-user-drag: none !important;
    touch-action: auto !important;
  }

  .refp-card img,
  .fpx-product-card img,
  .rfgl-step img,
  .rvm-value img,
  .company-about-fact img {
    transform: none !important;
    transition: none !important;
  }
}
