/* ==========================================================
   XX Foods Export - PbootCMS theme
   WordPress-style food export website (EN)
   ========================================================== */

@font-face {
  font-family: "Inter";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-600.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Playfair Display";
  src: url("../fonts/playfair-700.woff2") format("woff2");
  font-weight: 700 900;
  font-display: swap;
}

:root {
  --green-950: #0a2618;
  --green-900: #103d29;
  --green-800: #155432;
  --green-700: #1b6b3d;
  --green-600: #24824a;
  --green-500: #2f9b5c;
  --green-100: #e6f2ea;
  --green-50: #f2f8f4;
  --gold: #c9a24b;
  --gold-dark: #a98333;
  --gold-light: #ecd9a8;
  --cream: #f7f4ee;
  --ink: #1c2b24;
  --muted: #5f6e66;
  --line: #e3e9e4;
  --white: #ffffff;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow-sm: 0 2px 10px rgba(16, 61, 41, 0.07);
  --shadow-md: 0 12px 34px rgba(16, 61, 41, 0.12);
  --shadow-lg: 0 24px 60px rgba(10, 38, 24, 0.18);
  --container: 1200px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
}

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

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

ul,
ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  background: none;
  border: 0;
}

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

/* ---------- helpers ---------- */
.section {
  padding: 88px 0;
}
.section--cream {
  background: var(--cream);
}
.section--tight {
  padding: 64px 0;
}
.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.18;
  color: var(--green-900);
  margin: 10px 0 14px;
}
.section-head p {
  color: var(--muted);
  font-size: 17px;
}
.section-more {
  text-align: center;
  margin-top: 44px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.center .eyebrow::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 0 3px 12px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin: 0 12px 3px 0;
}
.center .eyebrow::before {
  display: none;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s ease;
}
.btn:hover svg {
  transform: translateX(4px);
}
.btn--lg {
  padding: 17px 32px;
  font-size: 16px;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #fff;
  box-shadow: 0 8px 22px rgba(201, 162, 75, 0.32);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201, 162, 75, 0.42);
}
.btn--green {
  background: var(--green-800);
  color: #fff;
  box-shadow: 0 8px 22px rgba(21, 84, 50, 0.28);
}
.btn--green:hover {
  background: var(--green-700);
  transform: translateY(-2px);
}
.btn--outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.18);
}
.btn--outline-green {
  border-color: var(--green-800);
  color: var(--green-800);
  background: #fff;
}
.btn--outline-green:hover {
  background: var(--green-50);
  transform: translateY(-2px);
}

/* ---------- topbar ---------- */
.topbar {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  padding: 8px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar span,
.topbar a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.topbar svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
}
.topbar a:hover {
  color: #fff;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 0 var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}

/* ---------- homepage fullscreen banner: header overlays the hero ---------- */
.is-home .topbar {
  display: none;
}
.is-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}
.is-home .site-header .brand__name {
  color: #fff;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.55);
}
.is-home .site-header .brand__name em {
  color: var(--gold-light);
}
.is-home .site-header .main-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.is-home .site-header .main-nav a:hover,
.is-home .site-header .main-nav a.is-active {
  color: #fff;
}
.is-home .site-header .main-nav a::after {
  background: var(--gold);
}
.is-home .lang-dropdown__toggle {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}
.is-home .nav-toggle span {
  background: #fff;
}
.is-home .site-header.is-scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.is-home .site-header.is-scrolled .brand__name {
  color: var(--green-900);
}
.is-home .site-header.is-scrolled .brand__name em {
  color: var(--gold-dark);
}
.is-home .site-header.is-scrolled .main-nav a {
  color: var(--ink);
}
.is-home .site-header.is-scrolled .main-nav a:hover,
.is-home .site-header.is-scrolled .main-nav a.is-active {
  color: var(--green-700);
}
.is-home .site-header.is-scrolled .lang-dropdown__toggle {
  color: var(--green-800);
  border-color: var(--green-800);
  background: var(--white);
}
.is-home .site-header.is-scrolled .nav-toggle span {
  background: var(--green-900);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.brand__logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
}
.brand__text {
  line-height: 1.2;
}
.brand__name {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--green-900);
  letter-spacing: 0.01em;
}
.brand__name em {
  font-style: normal;
  color: var(--gold-dark);
}
.brand__tag {
  display: none;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.main-nav a:hover,
.main-nav a.is-active {
  color: var(--green-700);
}
.main-nav a:hover::after,
.main-nav a.is-active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.lang-switch {
  font-size: 14px;
  font-weight: 700;
  color: var(--green-800);
  padding: 8px 14px;
  border: 1.5px solid var(--green-800);
  border-radius: 999px;
  transition: all 0.2s ease;
}
.lang-switch:hover {
  background: var(--green-800);
  color: #fff;
}

/* ---------- language dropdown ---------- */
.lang-dropdown {
  position: relative;
}
.lang-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-800);
  padding: 9px 14px;
  border: 1.5px solid var(--green-800);
  border-radius: 999px;
  background: var(--white);
  transition: all 0.2s ease;
}
.lang-dropdown__toggle:hover {
  background: var(--green-800);
  color: #fff;
}
.lang-dropdown__toggle svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.lang-dropdown__toggle .lang-dropdown__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s ease;
}
.lang-dropdown.open .lang-dropdown__toggle .lang-dropdown__chevron {
  transform: rotate(180deg);
}
.lang-dropdown__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 152px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 300;
}
.lang-dropdown.open .lang-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.lang-dropdown__menu a {
  display: block;
  padding: 9px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.lang-dropdown__menu a:hover {
  background: var(--green-50);
  color: var(--green-800);
}
.btn--quote {
  padding: 12px 22px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: var(--green-900);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
}
.hero__slides {
  position: absolute;
  inset: 0;
}
.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s ease;
}
.hero__slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 26, 16, 0.82) 0%, rgba(6, 26, 16, 0.42) 26%, rgba(6, 26, 16, 0.12) 52%),
    linear-gradient(100deg, rgba(6, 26, 16, 0.82) 0%, rgba(10, 38, 24, 0.56) 48%, rgba(10, 38, 24, 0.34) 100%),
    linear-gradient(0deg, rgba(6, 26, 16, 0.74) 0%, transparent 42%);
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 48px;
  padding-bottom: 150px;
  max-width: 900px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(6px);
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 62px);
  line-height: 1.12;
  font-weight: 700;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}
.hero__sub {
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 34px;
}
.hero__cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__nav {
  position: absolute;
  right: 32px;
  bottom: 120px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease;
}
.hero__arrow svg {
  width: 20px;
  height: 20px;
}
.hero__arrow:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.hero__stats {
  position: relative;
  z-index: 4;
  margin-top: -52px;
}
.hero__stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-stat {
  padding: 28px 18px;
  text-align: center;
  border-right: 1px solid var(--line);
  color: var(--ink);
}
.hero-stat:last-child {
  border-right: 0;
}
.hero-stat strong {
  display: block;
  font-family: var(--serif);
  font-size: 38px;
  color: var(--green-800);
  line-height: 1.1;
}
.hero-stat strong span {
  font-family: var(--serif);
}
.hero-stat > span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---------- about teaser ---------- */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-teaser__media {
  position: relative;
}
.about-teaser__media > img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.about-teaser__badge {
  position: absolute;
  left: -22px;
  bottom: 34px;
  background: var(--gold);
  color: #fff;
  border-radius: 16px;
  padding: 22px 26px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-teaser__badge strong {
  font-family: var(--serif);
  font-size: 40px;
  line-height: 1;
}
.about-teaser__badge span {
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
}
.about-teaser__body h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.2;
  color: var(--green-900);
  margin: 10px 0 18px;
}
.about-teaser__body > p {
  color: var(--muted);
  margin-bottom: 14px;
}
.check-list {
  margin: 20px 0 28px;
  display: grid;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
}
.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  border-radius: 50%;
  background: var(--green-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b6b3d' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/12px no-repeat;
}

/* ---------- category cards ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.cat-card {
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.cat-card__media {
  display: block;
  height: 220px;
  overflow: hidden;
}
.cat-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-card__media img {
  transform: scale(1.08);
}
.cat-card__body {
  display: block;
  padding: 20px 22px 24px;
}
.cat-card__count {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.cat-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-900);
  margin-bottom: 6px;
}
.cat-card p {
  font-size: 13.5px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-700);
}
.cat-card__link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.25s ease;
}
.cat-card:hover .cat-card__link svg {
  transform: translateX(4px);
}

/* ---------- product cards ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.product-card__media {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--cream);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card__media img {
  transform: scale(1.07);
}
.product-card__tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(16, 61, 41, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 20px 20px;
}
.product-card__body h3 {
  font-size: 16.5px;
  line-height: 1.35;
  margin-bottom: 6px;
}
.product-card__body h3 a {
  color: var(--green-900);
  transition: color 0.2s ease;
}
.product-card__body h3 a:hover {
  color: var(--green-600);
}
.product-card__spec {
  font-size: 12.5px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card__desc {
  font-size: 13.5px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.product-card__foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-top: 1px dashed var(--line);
  padding-top: 14px;
}
.product-card__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-700);
}
.product-card__more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.product-card:hover .product-card__more svg {
  transform: translateX(4px);
}
.product-card__quote {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  padding: 7px 14px;
  transition: all 0.2s ease;
}
.product-card__quote:hover {
  background: var(--gold);
  color: #fff;
}

/* ---------- why ---------- */
.why {
  position: relative;
  background:
    linear-gradient(rgba(10, 38, 24, 0.94), rgba(13, 55, 35, 0.94)),
    url("../images/hero-farm.webp") center/cover no-repeat;
  color: #fff;
}
.why .section-head h2 {
  color: #fff;
}
.why .section-head p {
  color: rgba(255, 255, 255, 0.75);
}
.why .eyebrow {
  color: var(--gold-light);
}
.why .eyebrow::before,
.why .eyebrow::after {
  background: var(--gold);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 30px 26px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background 0.3s ease;
}
.why-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
}
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--gold);
  color: #fff;
  margin-bottom: 18px;
}
.why-card__icon svg {
  width: 28px;
  height: 28px;
}
.why-card h3 {
  font-family: var(--serif);
  font-size: 20px;
  margin-bottom: 8px;
}
.why-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 34px 26px 28px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.process-step__num {
  display: inline-block;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--green-100);
  line-height: 1;
  margin-bottom: 12px;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 46px;
  right: -25px;
  width: 24px;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 11px);
}
.process-step:last-child::after {
  display: none;
}
.process-step h3 {
  font-size: 17px;
  color: var(--green-900);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- certifications ---------- */
.cert {
  background: var(--green-900);
}
.cert-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: center;
}
.cert-intro h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.4vw, 40px);
  color: #fff;
  line-height: 1.2;
  margin: 10px 0 14px;
}
.cert-intro p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 24px;
}
.cert-intro .eyebrow {
  color: var(--gold-light);
}
.cert-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cert-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 82px;
  padding: 16px 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.cert-badge:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}

/* ---------- news ---------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.news-card__media {
  display: block;
  height: 200px;
  overflow: hidden;
}
.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.news-card:hover .news-card__media img {
  transform: scale(1.07);
}
.news-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 20px 22px 24px;
}
.news-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  color: var(--muted);
  margin-bottom: 10px;
}
.news-meta .cat {
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.news-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.35;
  margin-bottom: 10px;
}
.news-card h3 a {
  color: var(--green-900);
  transition: color 0.2s ease;
}
.news-card h3 a:hover {
  color: var(--green-600);
}
.news-card__body > p {
  font-size: 14px;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}
.read-more {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-700);
}
.read-more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}
.read-more:hover svg {
  transform: translateX(4px);
}

/* ---------- CTA banner ---------- */
.cta-banner-wrap {
  padding: 0 0 88px;
}
.cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 238, 0.96)),
    var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 44px 48px;
  box-shadow: var(--shadow-sm);
}
.cta-banner--dark {
  background:
    linear-gradient(rgba(10, 38, 24, 0.88), rgba(16, 61, 41, 0.9)),
    url("../images/hero-farm.webp") center/cover no-repeat;
  border: 0;
  color: #fff;
}
.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  color: var(--green-900);
  margin-bottom: 8px;
}
.cta-banner--dark h2 {
  color: #fff;
}
.cta-banner p {
  color: var(--muted);
}
.cta-banner--dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- partners ---------- */
.partner-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.partner-chip {
  padding: 14px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green-800);
  font-weight: 700;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.partner-chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

/* ---------- page header ---------- */
.page-header {
  background:
    linear-gradient(rgba(10, 38, 24, 0.82), rgba(16, 61, 41, 0.86)),
    url("../images/hero-farm.webp") center/cover no-repeat;
  color: #fff;
  padding: 74px 0 64px;
  text-align: center;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  margin-top: 10px;
}
.page-header p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 640px;
  margin: 10px auto 0;
}
.page-header__meta {
  font-size: 14px;
}
.breadcrumb {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb a {
  color: var(--gold-light);
}
.breadcrumb .sep {
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- single layout ---------- */
.single-layout,
.article-wrap {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}
.side-nav {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  position: sticky;
  top: 100px;
}
.side-nav h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-900);
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.side-nav__item {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
  margin-bottom: 4px;
}
.side-nav__item:hover {
  background: var(--green-100);
  color: var(--green-800);
}
.side-nav__item.is-active {
  background: var(--green-800);
  color: #fff;
}
.side-contact {
  margin-top: 22px;
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  border: 1px dashed var(--gold);
}
.side-contact h4 {
  font-size: 15px;
  color: var(--green-900);
  margin-bottom: 6px;
}
.side-contact p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 10px;
}
.side-contact a {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--green-700);
  word-break: break-all;
  margin-top: 4px;
}
.single-content {
  min-width: 0;
}

/* ---------- article body ---------- */
.article__body {
  font-size: 15.5px;
  color: #34463d;
}
.article__body h2,
.article__body h3,
.article__body h4 {
  font-family: var(--serif);
  color: var(--green-900);
  margin: 26px 0 12px;
  line-height: 1.3;
}
.article__body h2 {
  font-size: 26px;
}
.article__body h3 {
  font-size: 22px;
}
.article__body p {
  margin-bottom: 14px;
}
.article__body ul,
.article__body ol {
  margin: 0 0 16px 22px;
}
.article__body ul {
  list-style: disc;
}
.article__body ol {
  list-style: decimal;
}
.article__body li {
  margin-bottom: 6px;
}
.article__body img {
  border-radius: 14px;
  margin: 18px 0;
}
.article__body table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0;
  font-size: 14.5px;
}
.article__body th,
.article__body td {
  border: 1px solid var(--line);
  padding: 10px 14px;
  text-align: left;
}
.article__body th {
  background: var(--green-50);
  color: var(--green-900);
}
.article__cover {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.article__cover img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}
.article__tags {
  margin-top: 28px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.article__tags a {
  font-size: 13px;
  background: var(--green-100);
  color: var(--green-800);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.article__nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 600;
}
.article__nav a {
  color: var(--green-700);
}
.article__nav span > span {
  color: var(--muted);
}

/* ---------- products layout ---------- */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  align-items: start;
}
.filter-panel {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  position: sticky;
  top: 100px;
}
.filter-panel > h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--green-900);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}
.filter-group + .filter-group {
  margin-top: 22px;
}
.filter-group__title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 10px;
}
.filter-options {
  display: grid;
  gap: 4px;
}
.filter-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.filter-option:hover {
  background: var(--green-100);
  color: var(--green-800);
}
.filter-option.is-active {
  background: var(--green-800);
  color: #fff;
}
.filter-option .count {
  font-size: 12px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  padding: 2px 9px;
}
.filter-option.is-active .count {
  background: rgba(255, 255, 255, 0.2);
}
.filter-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px;
  transition: border-color 0.2s ease;
}
.filter-search:focus-within {
  border-color: var(--green-600);
}
.filter-search svg {
  width: 17px;
  height: 17px;
  color: var(--muted);
  flex-shrink: 0;
}
.filter-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 14px;
  min-width: 0;
}
.product-toolbar {
  margin-bottom: 24px;
  font-size: 14.5px;
  color: var(--muted);
}
.product-toolbar strong {
  color: var(--green-900);
}

/* ---------- product detail ---------- */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.pd-media {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.pd-media img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.pd-media__cat {
  position: absolute;
  left: 16px;
  top: 16px;
  background: rgba(16, 61, 41, 0.86);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  border-radius: 999px;
}
.pd-info h1 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--green-900);
  line-height: 1.2;
  margin-bottom: 8px;
}
.pd-sub {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}
.pd-summary {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 22px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 14.5px;
}
.spec-table th,
.spec-table td {
  border: 1px solid var(--line);
  padding: 11px 15px;
  text-align: left;
}
.spec-table th {
  width: 42%;
  background: var(--green-50);
  color: var(--green-900);
  font-weight: 700;
}
.pd-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pd-block {
  margin-top: 64px;
}
.pd-block > h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--green-900);
  margin-bottom: 14px;
}

/* ---------- contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 40px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 18px;
}
.contact-card {
  display: flex;
  gap: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.contact-card__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-100);
  color: var(--green-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-card__icon svg {
  width: 24px;
  height: 24px;
}
.contact-card h3 {
  font-size: 16px;
  color: var(--green-900);
}
.contact-card .hint {
  font-size: 12px;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 14px;
  color: var(--muted);
}
.contact-card a {
  display: inline-block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green-700);
  word-break: break-all;
}
.contact-form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 36px;
}
.contact-form-card h2 {
  font-family: var(--serif);
  font-size: 26px;
  color: var(--green-900);
  margin: 8px 0 10px;
}
.contact-form-card > p {
  font-size: 14.5px;
  color: var(--muted);
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--green-900);
}
.form-field input,
.form-field textarea {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 12px 15px;
  font-size: 14.5px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(36, 130, 74, 0.12);
}
.form-field textarea {
  min-height: 120px;
  resize: vertical;
}
.contact-form-card .btn {
  margin-top: 22px;
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 13px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
}
.form-success.show {
  display: block;
  background: var(--green-100);
  color: var(--green-800);
}

/* ---------- pagination ---------- */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 44px;
}
.page-btn {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}
.page-btn:hover,
.page-btn.current {
  background: var(--green-800);
  border-color: var(--green-800);
  color: #fff;
}
.no-results {
  text-align: center;
  padding: 60px 0;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- 404 ---------- */
.notfound {
  text-align: center;
  padding: 70px 0;
}
.notfound__code {
  display: block;
  font-family: var(--serif);
  font-size: clamp(90px, 14vw, 150px);
  line-height: 1;
  color: var(--green-100);
  font-weight: 800;
}
.notfound h1 {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--green-900);
  margin: 8px 0 12px;
}
.notfound p {
  color: var(--muted);
  margin-bottom: 28px;
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--green-950);
  color: rgba(255, 255, 255, 0.78);
  margin-top: 0;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 44px;
  padding: 72px 24px 56px;
}
.footer-brand .brand__name {
  color: #fff;
}
.footer-brand .brand__tag {
  color: rgba(255, 255, 255, 0.55);
}
.footer-brand p {
  font-size: 14px;
  margin: 18px 0 20px;
  max-width: 360px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-3px);
}
.footer-social svg {
  width: 17px;
  height: 17px;
}
.footer-col h4 {
  font-family: var(--serif);
  font-size: 18px;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.footer-col ul {
  display: grid;
  gap: 10px;
}
.footer-col ul a {
  font-size: 14px;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 13.5px;
  align-items: flex-start;
}
.footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  font-size: 13px;
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom .lang-switch {
  color: var(--gold-light);
  border-color: rgba(236, 217, 168, 0.5);
}
.footer-bottom .lang-switch:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
}

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease;
}
.wa-float:hover {
  transform: scale(1.08);
}
.wa-float svg {
  width: 30px;
  height: 30px;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1080px) {
  .cat-grid,
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cert-badges {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 960px) {
  .section {
    padding: 64px 0;
  }
  .about-teaser,
  .pd-layout,
  .contact-grid,
  .single-layout,
  .article-wrap,
  .products-layout,
  .cert-grid {
    grid-template-columns: 1fr;
  }
  .about-teaser__media img {
    height: 380px;
  }
  .about-teaser__badge {
    left: 16px;
  }
  .side-nav,
  .filter-panel {
    position: static;
  }
  .pd-media img {
    height: 380px;
  }
  .hero {
    min-height: 100vh;
  }
  .hero__inner {
    min-height: 100vh;
    padding-bottom: 40px;
  }
  .hero__nav {
    bottom: 30px;
  }
  .hero__stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .hero-stat {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 1020px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 100px 32px 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.14);
    transition: right 0.35s ease;
    overflow-y: auto;
    z-index: 250;
  }
  .main-nav.open {
    right: 0;
  }
  .main-nav a {
    font-size: 17px;
    padding: 10px 0;
    width: 100%;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .topbar__left span:last-child {
    display: none;
  }
}

@media (max-width: 720px) {
  .cat-grid,
  .product-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .cta-banner {
    padding: 34px 28px;
  }
}

@media (max-width: 540px) {
  .container {
    padding: 0 18px;
  }
  .cat-grid,
  .product-grid,
  .news-grid,
  .why-grid,
  .process-grid,
  .cert-badges {
    grid-template-columns: 1fr;
  }
  .topbar {
    display: none;
  }
  .header-inner {
    min-height: 66px;
  }
  .btn--quote {
    display: none;
  }
  .brand__tag {
    display: none;
  }
  .hero,
  .hero__inner {
    min-height: 100vh;
  }
  .hero__stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hero__badge {
    font-size: 11px;
  }
  .hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
  .about-teaser__media img {
    height: 300px;
  }
  .about-teaser__badge {
    padding: 16px 20px;
  }
  .about-teaser__badge strong {
    font-size: 32px;
  }
  .page-header {
    padding: 54px 0 48px;
  }
  .pd-media img {
    height: 280px;
  }
  .process-step::after {
    display: none;
  }
}
