/* =========================================================
   NutraVibe International Trading — stylesheet
   Hand-written, mobile-first, no framework dependencies.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --forest-ink:   #001204;
  --forest-deep:  #001f0a;
  --forest:       #063215;
  --lime:         #6bd53d;
  --lime-bright:  #8aec41;
  --mist:         #f0f5f1;

  /* Semantic */
  --background:        #ffffff;
  --foreground:        #001204;
  --card:              #ffffff;
  --muted-foreground:  #4e594f;
  --secondary:         var(--mist);
  --border:            #e0e6e1;

  /* Gradients */
  --gradient-brand: linear-gradient(135deg, var(--forest-deep), var(--forest) 55%, var(--lime));
  --gradient-lime:  linear-gradient(135deg, var(--lime-bright), var(--lime));
  --gradient-dark:  linear-gradient(160deg, var(--forest-ink) 0%, var(--forest-deep) 60%, #002809 100%);

  /* Shadows */
  --shadow-soft: 0 10px 30px -12px #001f0a2e;
  --shadow-glow: 0 20px 60px -20px #6bd53d73;
  --shadow-card: 0 1px 0 #e0e6e199, 0 20px 40px -24px #001f0a2e;

  /* Type */
  --font-display: "Sora", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-body:    "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Layout */
  --maxw: 80rem;          /* max-w-7xl */
  --nav-h: 64px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--foreground);
  background: var(--background);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.025em; }
button, input, textarea { font: inherit; color: inherit; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }
.section { padding-block: 5rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.22em;
  color: #2f7a3f;
}
.text-gradient-brand {
  background: var(--gradient-brand);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.text-gradient-lime {
  background: var(--gradient-lime);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.muted { color: var(--muted-foreground); }
.icon { width: 1.25rem; height: 1.25rem; flex: none; }

/* Glass surfaces */
.glass {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.glass-light {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.875rem 1.75rem;
  font-size: 0.875rem; font-weight: 600; cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-brand { background: var(--gradient-brand); color: #f9fdfa; box-shadow: var(--shadow-soft); }
.btn-lime  { background: var(--gradient-lime);  color: var(--forest-ink); box-shadow: var(--shadow-glow); }
.btn-glass { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.14); color: #fff; }
.btn-glass:hover { background: rgba(255,255,255,0.15); }
.btn-outline { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); }
.btn-outline:hover { border-color: rgba(255,255,255,0.4); }
.btn-ghost { background: #fff; border-color: var(--border); color: var(--foreground); }
.btn-ghost:hover { border-color: var(--forest); }
.btn .icon { width: 1rem; height: 1rem; }
.btn-arrow:hover .icon-arrow { transform: translateX(4px); }
.icon-arrow { transition: transform 0.2s ease; }

/* =========================================================
   Header / nav
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: var(--shadow-soft); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin-inline: auto;
  padding: 0.5rem 1.5rem;
}
.brand { display: flex; align-items: center; }
.brand img { height: 52px; width: auto; display: block; }
.nav-menu { display: none; gap: 2rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: rgba(0,18,4,0.8); transition: color 0.2s; }
.nav-link:hover { color: var(--forest); }
.nav-cta {
  background: var(--gradient-brand); color: #f9fdfa;
  border-radius: 999px; padding: 0.625rem 1.25rem;
  font-size: 0.875rem; font-weight: 600; box-shadow: var(--shadow-soft);
  transition: transform 0.2s;
}
.nav-cta:hover { transform: translateY(-2px); }

@media (min-width: 768px) {
  .nav-menu { display: flex; }
  .nav { padding-inline: 2.5rem; }
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative; overflow: hidden;
  background: linear-gradient(150deg, #001f0a 0%, #063215 48%, #0b5e2c 100%);
  color: #fff;
}
.hero__inner {
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: 6rem 1.5rem 2.5rem;
  display: grid; gap: 2rem; align-items: center;
}
.hero__content { max-width: 42rem; }
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border-radius: 999px; padding: 0.375rem 1rem;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); color: #d9f5c4;
}
.badge .icon { width: 0.875rem; height: 0.875rem; }
.hero h1 {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  font-weight: 700; line-height: 1.07; color: #fff;
}
.hero__lede {
  margin-top: 1.25rem; max-width: 40rem;
  font-size: 1rem; line-height: 1.65; color: rgba(255,255,255,0.78);
}
.hero__actions { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero__stats {
  margin-top: 2rem; max-width: 42rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.15); padding-top: 1.5rem;
}
.hero__stats dt { font-family: var(--font-display); font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 700; color: #fff; }
.hero__stats dd {
  margin-top: 0.25rem; font-size: 0.75rem;
  text-transform: uppercase; letter-spacing: 0.18em; color: rgba(255,255,255,0.6);
}
.hero__media img {
  width: 100%; height: auto; display: block;
  filter: drop-shadow(0 22px 38px rgba(0,0,0,0.45));
}

/* =========================================================
   Trust strip
   ========================================================= */
.trust {
  border-block: 1px solid var(--border);
  background: rgba(240,245,241,0.6);
}
.trust__inner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.75rem 2.5rem;
  max-width: var(--maxw); margin-inline: auto; padding: 1.25rem 1.5rem;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted-foreground);
}
.trust__item { display: flex; align-items: center; gap: 0.5rem; }
.trust__dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: var(--gradient-lime); }

/* =========================================================
   Generic section heading
   ========================================================= */
.section-head h2 { margin-top: 1rem; font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
.section-head--center { max-width: 42rem; margin-inline: auto; text-align: center; }
.section-head--center p { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }

/* =========================================================
   About
   ========================================================= */
.about { position: relative; overflow: hidden; }
.about__grid { display: grid; gap: 4rem; }
.about__lede { margin-top: 1.5rem; font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); }
.about__list { margin-top: 2rem; display: grid; gap: 1rem; }
.about__list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: rgba(0,18,4,0.85); }
.about__check {
  margin-top: 0.125rem; flex: none;
  width: 1.25rem; height: 1.25rem; border-radius: 50%;
  background: var(--gradient-lime);
  display: flex; align-items: center; justify-content: center;
}
.about__check .icon { width: 0.75rem; height: 0.75rem; color: var(--forest-ink); }
.about__stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.stat-card {
  position: relative; border: 1px solid var(--border); background: var(--card);
  border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}
.stat-card:hover { transform: translateY(-4px); }
.stat-card .icon { width: 1.75rem; height: 1.75rem; color: #2b8a3e; }
.stat-card__num { margin-top: 1.5rem; font-family: var(--font-display); font-size: 2.25rem; font-weight: 700; }
.stat-card__label { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground); }

/* =========================================================
   Products
   ========================================================= */
.products { background: rgba(240,245,241,0.6); }
.products__head {
  display: flex; flex-direction: column; gap: 1.5rem;
  align-items: flex-start;
}
.products__head .lede { max-width: 28rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.products__grid {
  margin-top: 3.5rem;
  display: grid; gap: 1.5rem; grid-template-columns: 1fr;
}
.product-card {
  overflow: hidden;
  border: 1px solid var(--border); border-radius: 1.25rem;
  background: #fff;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-glow); }
.product-card__media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--mist); }
.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.06); }
.product-card__body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }
.product-card__body h3 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-display); }
.product-card__items { margin-top: 0.75rem; display: grid; gap: 0.3rem; font-size: 0.8rem; color: var(--muted-foreground); flex: 1; }
.product-card__cta {
  margin-top: 1.25rem; display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.8rem; font-weight: 600; color: #246b30;
}
.product-card__cta .icon { width: 0.875rem; height: 0.875rem; }
.product-card__cta:hover .icon { transform: translateX(3px); transition: transform 0.2s; }

/* =========================================================
   Best-sellers product carousel
   ========================================================= */
.bestsellers { background: var(--background); }
.carousel { position: relative; margin-top: 3.5rem; }
.carousel__viewport {
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; -ms-overflow-style: none;
}
.carousel__viewport::-webkit-scrollbar { display: none; }
.carousel__track {
  display: flex; gap: 1.5rem;
  padding: 0.75rem 0.25rem 1rem;
}
.pcard {
  flex: 0 0 calc((100% - 1.5rem) / 2);
  scroll-snap-align: start;
  display: flex; flex-direction: column; text-align: center;
  border: 1px solid var(--border); border-radius: 1.25rem; background: #fff;
  padding: 1.25rem; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-glow); }
.pcard__media {
  aspect-ratio: 1 / 1; display: flex; align-items: center; justify-content: center;
  padding: 0.5rem;
}
.pcard__media img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pcard__name { margin-top: 0.5rem; font-size: 1rem; font-weight: 600; font-family: var(--font-display); }
.pcard__rating {
  margin-top: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 0.4rem;
  font-size: 0.78rem; color: var(--muted-foreground);
}
.pcard__stars { display: inline-flex; color: #f5a623; }
.pcard__stars .icon { width: 0.95rem; height: 0.95rem; }
.pcard__price { margin-top: 0.6rem; font-size: 1.15rem; font-weight: 700; font-family: var(--font-display); color: var(--forest); }
.pcard__cta {
  margin-top: 1rem; align-self: center;
  border-radius: 999px; padding: 0.55rem 1.5rem;
  font-size: 0.8rem; font-weight: 600;
  background: var(--mist); color: var(--forest); border: 1px solid var(--border);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.pcard__cta:hover { background: var(--gradient-brand); color: #f9fdfa; border-color: transparent; transform: translateY(-1px); }

.carousel__nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 3;
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-soft);
  color: var(--forest); transition: background 0.2s, opacity 0.2s;
}
.carousel__nav:hover { background: var(--mist); }
.carousel__nav[disabled] { opacity: 0.35; cursor: default; }
.carousel__nav .icon { width: 1.25rem; height: 1.25rem; }
.carousel__nav--prev { left: -0.5rem; }
.carousel__nav--next { right: -0.5rem; }
.carousel__dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.carousel__dot {
  width: 0.5rem; height: 0.5rem; border-radius: 999px; padding: 0; border: none; cursor: pointer;
  background: var(--border); transition: background 0.2s, width 0.2s;
}
.carousel__dot.is-active { background: var(--forest); width: 1.5rem; }

/* =========================================================
   Export (dark)
   ========================================================= */
.export {
  position: relative; overflow: hidden;
  background: var(--gradient-dark); color: #fff;
}
.export__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.25; }
.export__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,31,10,0.9), rgba(0,18,4,0.95)); }
.export__glow { position: absolute; right: -10rem; top: 2.5rem; width: 28rem; height: 28rem; border-radius: 50%; background: rgba(125,225,80,0.18); filter: blur(64px); }
.export__inner { position: relative; z-index: 2; max-width: var(--maxw); margin-inline: auto; padding-inline: 1.5rem; }
.export .eyebrow { color: #9cf06a; }
.export__lede { margin-top: 1.5rem; max-width: 42rem; font-size: 1rem; line-height: 1.7; color: rgba(255,255,255,0.7); }
.export__grid { margin-top: 3.5rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.feature-card { border-radius: 1rem; padding: 1.5rem; transition: transform 0.2s ease; }
.feature-card:hover { transform: translateY(-4px); }
.feature-card__icon {
  width: 2.75rem; height: 2.75rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-lime); color: var(--forest-ink);
}
.feature-card h3 { margin-top: 1.25rem; font-size: 1rem; font-weight: 600; color: #fff; }
.feature-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.65); }

/* =========================================================
   Quality
   ========================================================= */
.quality__grid { margin-top: 4rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.quality-card {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.quality-card:hover { transform: translateY(-4px); border-color: rgba(125,225,80,0.5); }
.quality-card__icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary); color: #1f5e29;
  transition: background 0.2s, color 0.2s;
}
.quality-card:hover .quality-card__icon { background: var(--gradient-lime); color: var(--forest-ink); }
.quality-card h3 { margin-top: 1.5rem; font-size: 1rem; font-weight: 600; }
.quality-card p { margin-top: 0.5rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }

/* =========================================================
   Why us
   ========================================================= */
.why { background: rgba(240,245,241,0.6); }
.why__grid { margin-top: 4rem; display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
.why-card {
  position: relative; overflow: hidden;
  border: 1px solid var(--border); background: var(--card);
  border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease;
}
.why-card:hover { transform: translateY(-4px); }
.why-card__head { display: flex; align-items: center; gap: 1rem; }
.why-card__icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--gradient-brand); color: #f9fdfa;
}
.why-card h3 { font-size: 1.125rem; font-weight: 600; }
.why-card p { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.why-card__bar { position: absolute; inset: auto 0 0 0; height: 4px; background: var(--gradient-lime); opacity: 0; transition: opacity 0.2s; }
.why-card:hover .why-card__bar { opacity: 1; }

/* =========================================================
   Contact
   ========================================================= */
.contact { position: relative; overflow: hidden; }
.contact__glow { position: absolute; left: -8rem; top: 5rem; width: 24rem; height: 24rem; border-radius: 50%; background: rgba(125,225,80,0.12); filter: blur(64px); pointer-events: none; }
.contact__grid { position: relative; display: grid; gap: 3rem; }
.contact__lede { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.7; color: var(--muted-foreground); }
.contact__list { margin-top: 2.5rem; display: grid; gap: 1.25rem; font-size: 0.875rem; }
.contact__list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact__icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem; flex: none;
  display: flex; align-items: center; justify-content: center;
  background: var(--secondary); color: #1f5e29;
}
.contact__icon .icon { width: 1rem; height: 1rem; }
.contact__list strong { display: block; font-weight: 600; }
.whatsapp {
  margin-top: 2.5rem;
  background: #2f9e44; color: #fff; box-shadow: var(--shadow-soft);
}
.whatsapp:hover { transform: translateY(-2px); }

/* Form */
.contact-form {
  border: 1px solid var(--border); background: var(--card);
  border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-card);
}
.form-grid { display: grid; gap: 1.25rem; }
.field label, .form-block label {
  display: block; margin-bottom: 0.5rem;
  font-size: 0.75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-foreground);
}
.field input, .contact-form textarea {
  width: 100%; border: 1px solid var(--border); background: var(--background);
  border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem;
  outline: none; transition: border-color 0.2s; resize: none;
}
.field input:focus, .contact-form textarea:focus { border-color: #2f9e44; }
.form-block { margin-top: 1.25rem; }
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
  cursor: pointer; border: 1px solid var(--border); background: var(--secondary);
  border-radius: 999px; padding: 0.5rem 1rem;
  font-size: 0.75rem; font-weight: 500; color: rgba(0,18,4,0.8);
  transition: border-color 0.2s, color 0.2s;
}
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip:hover { border-color: rgba(125,225,80,0.6); color: var(--foreground); }
.chip:has(input:checked) { border-color: #2f9e44; color: var(--forest); background: #eef9e6; }
.contact-form .btn { margin-top: 1.75rem; width: 100%; justify-content: center; }

/* =========================================================
   Footer
   ========================================================= */
.footer { background: #021907; color: rgba(255,255,255,0.8); border-top: 1px solid var(--border); }
.footer__top { display: grid; gap: 3rem; max-width: var(--maxw); margin-inline: auto; padding: 4rem 1.5rem; }
.footer__brand { display: flex; align-items: center; gap: 0.75rem; }
.footer__logo {
  display: inline-flex; background: #fff; border-radius: 1rem;
  padding: 0.85rem 1.1rem; box-shadow: var(--shadow-soft);
}
.footer__logo img { height: 84px; width: auto; display: block; }
.footer__about { margin-top: 1.5rem; max-width: 28rem; font-size: 0.875rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer__col h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(255,255,255,0.5); }
.footer__col ul { margin-top: 1.25rem; display: grid; gap: 0.5rem; font-size: 0.875rem; }
.footer__col a:hover { color: #fff; }
.footer__bar { border-top: 1px solid rgba(255,255,255,0.1); }
.footer__bar-inner {
  display: flex; flex-direction: column; gap: 0.75rem; align-items: center;
  max-width: var(--maxw); margin-inline: auto; padding: 1.5rem;
  font-size: 0.75rem; color: rgba(255,255,255,0.45);
}

/* =========================================================
   Responsive breakpoints
   ========================================================= */
@media (min-width: 640px) {
  .container { padding-inline: 1.5rem; }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 2.5rem; }
  .contact-form .btn { width: auto; }
  .footer__bar-inner { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 768px) {
  .section { padding-block: 7rem; }
  .products__head { flex-direction: row; align-items: flex-end; justify-content: space-between; }
  .products__grid { grid-template-columns: 1fr 1fr; }
  .export__grid, .quality__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .container { padding-inline: 2.5rem; }
  .section { padding-block: 9rem; }
  .about__grid { grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
  .products__grid { grid-template-columns: repeat(4, 1fr); }
  .export__grid, .quality__grid { grid-template-columns: repeat(4, 1fr); }
  .why__grid { grid-template-columns: repeat(3, 1fr); }
  .pcard { flex-basis: calc((100% - 4.5rem) / 4); }
  .carousel__nav--prev { left: -1.25rem; }
  .carousel__nav--next { right: -1.25rem; }
  .contact__grid { grid-template-columns: 2fr 3fr; gap: 4rem; }
  .footer__top { grid-template-columns: 2fr 1fr 1fr; }
  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr; gap: 3rem;
    padding: 7rem 2.5rem 3rem;
  }
  .export__inner, .trust__inner { padding-inline: 2.5rem; }
}

@media (max-width: 520px) {
  .pcard { flex-basis: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
