/* ============ TOKENS ============ */
:root {
  --green-900: #0f1a14;
  --green-700: #004d24;
  --green-500: #006838;
  --orange: #ff6600;
  --cream: #faf7f1;
  --gray-600: #737373;
  --gray-400: #8c8686;
  --white: #ffffff;
  --font-display: 'Fraunces', serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Montserrat', sans-serif;
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: #1a1a1a;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  margin: 0;
  color: var(--green-700);
}

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

.section {
  padding: 80px 0;
}

.section-tint {
  background: var(--cream);
}

.section-dark {
  background: var(--green-900);
  color: #ddd;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.eyebrow {
  font: 500 20px/1 var(--font-body);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin: 0 0 12px;
}

.eyebrow.center {
  text-align: center;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 16px;
}

.center {
  text-align: center;
}

.lede {
  max-width: 780px;
  margin: 0 auto 48px;
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.6;
}

.body-text {
  color: var(--gray-600);
  font-size: 17px;
  line-height: 1.7;
}

.body-text.muted {
  color: #ddd;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 15px 32px;
  border-radius: 50px;
  font: 600 15px var(--font-body);
  transition: opacity .2s ease, transform .2s ease;
}

.btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}

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

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

.btn-outline {
  border: 1px solid currentColor;
  color: inherit;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo img {
  height: 44px;
}

.main-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--green-700);
}

.main-nav a.active {
  font-weight: 700;
}

.main-nav a:hover {
  color: var(--orange);
}

.hamburger-menu{
  display: none;
  margin-left: 0;
}

.ml-auto{
  margin-left: auto;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 77, 36, .85) 40%, rgba(0, 104, 56, .8) 100%);
}

.hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 90px 24px 70px;
}

.hero-title {
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 24px;
  color: #fff;
}

.hero-title span.accent {
  color: var(--orange);
  display: block;
}

.hero-title em {
  font-style: italic;
  display: block;
  font-weight: 400;
  color: #fff;
}

.hero-copy {
  max-width: 560px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .25);
  margin: 0 0 40px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 44px;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  margin-top: 10px;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.about-copy h2 {
  font-size: 30px;
  margin: 8px 0 20px;
}

.about-copy .body-text+.body-text {
  margin-top: 18px;
}

/* ============ PRODUCT CATEGORIES ============ */
.category-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.category-col {
  display: grid;
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  overflow: hidden;
}

.category-card.tall {
  min-height: 464px;
}

.category-card.short {
  min-height: 150px;
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 77, 36, 0) 40%, rgba(0, 77, 36, .9) 100%);
}

.category-card span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
}

/* ============ WHY CHOOSE US ============ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
  margin-bottom: 18px;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature h3 {
  font-size: 19px;
  margin-bottom: 10px;
}

.feature p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============ PROCESS ============ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
}

.process-copy h2 {
  font-size: 30px;
  margin: 8px 0 16px;
}

.process-copy .btn {
  margin: 24px 0 32px;
}

.process-image {
  border-radius: 24px;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.process-steps li {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.process-steps li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-num {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--orange);
  min-width: 46px;
}

.process-steps h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.process-steps p {
  color: #ddd;
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* ============ CERTIFICATIONS ============ */
.cert-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.cert-list li {
  background: var(--cream);
  border-radius: 50px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cert-icon {
  font-size: 18px;
}

.cert-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--green-700);
}

.cert-list small {
  color: #444;
  font-size: 10px;
}

/* ============ CTA ============ */
.cta {
  background: linear-gradient(115deg, var(--green-700) 0%, #00b354 130%);
  color: var(--white);
  padding: 80px 0;
}

.cta .eyebrow {
  color: var(--orange);
}

.cta h2 {
  color: var(--white);
  font-size: 30px;
  max-width: 760px;
}

.cta .body-text {
  max-width: 560px;
  margin: 16px 0 32px;
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--green-900);
  color: var(--gray-400);
  padding: 70px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.3fr;
  gap: 32px;
  padding-bottom: 60px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 15px;
  margin-bottom: 18px;
}

.footer-col a {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-col a:hover {
  color: var(--orange);
}

.footer-col p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 20px 24px;
  font-size: 12px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  position: relative;
  color: var(--white);
  padding: 120px 0 70px;
  overflow: hidden;
}

.page-hero .hero-media {
  background-size: cover;
  background-position: center;
}

.page-hero .hero-media::after {
  background: rgba(0, 0, 0, .6);
}

.page-hero-inner {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero h1 {
  color: var(--white);
  font-size: 48px;
  line-height: 1.2;
  margin: 8px 0 18px;
}

.page-hero h1 em {
  font-style: italic;
  display: block;
}

.page-hero .lede {
  color: #eee;
  text-align: left;
  margin: 0;
  max-width: 700px;
}

/* ============ SPLIT SECTION (vision/mission/about pairs) ============ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.split.reverse .split-media {
  order: 2;
}

.split-media img {
  border-radius: 24px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.split-copy h2 {
  font-size: 26px;
}

/* ============ VALUES GRID (icons row) ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.value-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--cream);
  margin-bottom: 18px;
}

.value-icon svg {
  width: 24px;
  height: 24px;
}

.values-grid h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.values-grid p {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============ INFRA / FACILITY CARDS ============ */
.infra-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.infra-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .05);
}

.infra-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--orange);
  margin-bottom: 18px;
}

.infra-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.infra-card h3 {
  color: var(--orange);
  font-size: 19px;
  margin-bottom: 10px;
}

.infra-card p {
  color: var(--green-700);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* ============ CHECKLIST (manufacturing / process steps) ============ */
.checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--green-700);
  color: var(--white);
  border-radius: 50px;
  padding: 18px 28px;
  font-size: 16px;
}

.checklist li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: var(--orange);
}

/* ============ TEAM GRID ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--orange);
  border-radius: 20px;
  padding: 32px;
}

.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 28px;
  height: 28px;
  stroke: var(--green-700);
}

.team-card h3 {
  font-size: 21px;
  margin-bottom: 4px;
}

.team-card p {
  color: var(--gray-600);
  margin: 0;
  font-size: 14px;
}

/* ============ PRODUCT FILTER PILLS ============ */
.filter-pills {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 48px 0;
}

.filter-pill {
  padding: 15px 32px;
  border-radius: 50px;
  font: 500 16px var(--font-display);
  background: #ffeadd;
  color: var(--orange);
  border: none;
  cursor: pointer;
}

.filter-pill.active {
  background: var(--green-700);
  color: var(--white);
}

.product-tab-contents li {
  display: none;
}

.product-tab-contents li.active {
  display: block;
}

.product-banner img {
  border-radius: 20px;
  width: 100%;
}

.product-banner .product-title {
  text-align: center;
  margin-top: -40px;
  margin-bottom: 50px;
}

.product-banner .product-title span {
  display: inline-block;
  padding: 15px 70px;
  border-radius: 50px;
  background-color: #FF6600;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  font-family: var(--font-display);
}

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

.product-banner table tr th {
  font-size: 20px;
  font-weight: 600;
  color: #004D24;
  padding: 17px 20px;
  border-bottom: 1px solid #D8D8D8;
}

.product-banner table tr td {
  font-size: 16px;
  font-weight: 500;
  color: #004D24;
  padding: 17px 20px;
}

.product-banner table tr:nth-child(odd) td{
  background-color: #FFEADD;
}

.product-thumbnails{
  overflow: auto;
}
.product-thumbnails li{
  display: block;
  width: 33.33333%;
  box-sizing: border-box;
  float: left;
  padding: 15px;
}

.product-thumbnails li img{
  width: 100%;
  border-radius: 20px;
  border: 1px solid #ccc;
}

/* ============ PRODUCT SHOWCASE ============ */
.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 90px;
}

.product-showcase.reverse .product-media {
  order: 2;
}

.product-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.product-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, .5);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.carousel-arrow.prev {
  left: 0;
  border-radius: 0 10px 10px 0;
}

.carousel-arrow.next {
  right: 0;
  border-radius: 10px 0 0 10px;
}

.carousel-arrow svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
}

.product-copy .eyebrow-italic {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 16px;
}

.product-copy h2 {
  font-size: 30px;
  margin-bottom: 6px;
}

.product-copy .btn {
  margin-top: 24px;
}

/* ============ FACILITY CARDS (Infrastructure page) ============ */
.facility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 60px;
}

.facility-card {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 24px;
  padding: 40px;
}

.facility-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #cdffe4;
  margin-bottom: 22px;
}

.facility-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--green-700);
}

.facility-card h3 {
  color: var(--orange);
  font-size: 24px;
  margin-bottom: 12px;
}

.facility-card p {
  color: var(--green-700);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ============ QUALITY STEPS ============ */
.quality-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.quality-step {
  display: flex;
  align-items: center;
  gap: 32px;
  background: var(--green-700);
  border-radius: 20px;
  padding: 24px 40px;
  color: var(--white);
}

.quality-step.alt {
  background: transparent;
  color: var(--green-700);
  padding: 0 40px;
}

.quality-step .thumb {
  width: 110px;
  height: 90px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.quality-step .num {
  font-family: var(--font-body);
  font-weight: 200;
  font-size: 64px;
  opacity: .5;
  line-height: 1;
  min-width: 90px;
}

.quality-step h3 {
  font-size: 24px;
  margin-bottom: 6px;
  color: inherit;
}

.quality-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  opacity: .9;
}

.quality-step.alt p {
  color: var(--gray-600);
  opacity: 1;
}

/* ============ CERTIFICATION GRID ============ */
.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.cert-item {
  background: var(--white);
  border: 1px solid var(--orange);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
}

.cert-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--green-700);
}

.cert-item small {
  color: #444;
  font-size: 11px;
}

/* ============ REGION CARDS (Export page) ============ */
.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.region-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 28px;
}

.region-card h3 {
  color: var(--orange);
  font-size: 20px;
  margin-bottom: 16px;
}

.country-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.country-pills span {
  background: var(--white);
  border-radius: 30px;
  padding: 8px 16px;
  font-size: 14px;
  color: var(--green-700);
  font-weight: 500;
}

/* ============ PACKAGING CARDS ============ */
.packaging-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.packaging-card {
  background: var(--white);
  border-radius: 20px;
  padding: 24px 28px;
}

.packaging-card h3 {
  color: var(--orange);
  font-size: 19px;
  margin-bottom: 6px;
}

.packaging-card p {
  color: #333;
  font-size: 15px;
  margin: 0;
}

/* ============ LOGISTICS GRID ============ */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.logistics-card {
  background: var(--white);
  border: 1px solid #ebebeb;
  border-radius: 24px;
  padding: 28px;
}

.logistics-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #cdffe4;
  margin-bottom: 18px;
}

.logistics-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-700);
}

.logistics-card h3 {
  color: var(--orange);
  font-size: 19px;
  margin-bottom: 8px;
}

.logistics-card p {
  color: var(--green-700);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============ CONTACT INFO ROW ============ */
.contact-info-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #eee;
  margin-bottom: 60px;
}

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

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  border-radius: 10px;
  background: #cdffe4;
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--green-700);
}

.contact-info-item h3 {
  color: var(--orange);
  font-size: 19px;
  margin-bottom: 6px;
}

.contact-info-item p {
  color: var(--green-700);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ============ MAP EMBED ============ */
.map-embed {
  border-radius: 24px;
  overflow: hidden;
  height: 460px;
  margin-top: 40px;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

  /* .hamburger-menu{
    display: inline-block;
  } */

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

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

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

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

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

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

  .main-nav {
    display: none;
  }

  

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

  .split.reverse .split-media {
    order: 0;
  }

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

  .infra-cards,
  .team-grid {
    grid-template-columns: 1fr;
  }

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

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

  .product-showcase.reverse .product-media {
    order: 0;
  }

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

  .quality-step,
  .quality-step.alt {
    flex-direction: column;
    text-align: center;
    padding: 32px;
  }

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

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

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

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

@media (max-width: 600px) {
  .hero-title {
    font-size: 40px;
  }

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

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

  .cert-list {
    grid-template-columns: 1fr;
  }

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

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

  .page-hero h1 {
    font-size: 34px;
  }

  .region-grid,
  .logistics-grid {
    grid-template-columns: 1fr;
  }

  .contact-info-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .contact-info-row {
    grid-template-columns: 1fr;
  }
}