/* shirinagro.com (prod) ilə uyğun tokenlər: primary #e85d04, secondary #2d6a4f */
:root {
  --navy: #0f172a;
  --orange: #e85d04;
  --orange-rgb: 232, 93, 4;
  --orange-light: #ff8f3a;
  --secondary: #2d6a4f;
  --light: #f8fafc;
  --muted: #64748b;
  --footer-bg: #0f172a;
  --section-tint: #f4f6f9;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  color: var(--navy);
  background: #fff;
}

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.section {
  padding: 52px 0;
}

html.js-scroll-animate .scroll-reveal {
  opacity: 0;
  transform: translate3d(0, 32px, 0);
  transition:
    opacity 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

html.js-scroll-animate .scroll-reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  html.js-scroll-animate .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgb(226 232 240);
}

.site-header-inner {
  width: min(1320px, calc(100% - clamp(32px, 5vw, 72px)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: clamp(18px, 2.5vw, 36px);
  padding: 12px 0 14px;
}

.site-header .brand {
  grid-column: 1;
  justify-self: start;
}

.site-header .desktop-nav {
  grid-column: 2;
  justify-self: center;
}

.site-header .header-right {
  grid-column: 3;
  justify-self: end;
}

.header-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand img {
  width: 98px;
  height: auto;
  display: block;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  border: none;
  padding: 0;
  background: transparent;
}

.lang-switch a {
  text-decoration: none;
  color: #111827;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 7px 11px;
  border-radius: 7px;
  transition: color 0.15s ease, background 0.15s ease;
}

.lang-switch a:not(.active):hover {
  color: #0f172a;
}

.lang-switch a.active {
  background: var(--orange);
  color: #fff;
}

.menu-btn {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: none;
  cursor: pointer;
  box-shadow:
    0 8px 22px rgba(12, 34, 78, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.52);
  box-shadow:
    0 12px 28px rgba(12, 34, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 190, 150, 0.55);
}

.menu-btn:active {
  transform: translateY(0);
}

.menu-icon {
  width: 20px;
  height: 14px;
  display: grid;
  gap: 4px;
  align-content: center;
}

.menu-icon .bar {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: rgba(27, 47, 92, 0.9);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}

.menu-btn.open .menu-icon .bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-btn.open .menu-icon .bar:nth-child(2) {
  opacity: 0;
}

.menu-btn.open .menu-icon .bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-btn.open {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(255, 170, 120, 0.55);
}

.desktop-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.4vw, 26px);
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
}

.desktop-nav a {
  text-decoration: none;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 4px;
  border-radius: 0;
  white-space: nowrap;
}

.desktop-nav a:hover {
  color: #0f172a;
  background: transparent;
}

.desktop-nav .admin-link {
  color: var(--orange);
}

.menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: clamp(16px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
  box-shadow:
    0 22px 50px rgba(6, 22, 63, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
  min-width: 220px;
  padding: 10px;
  display: none;
  z-index: 120;
}

.menu-panel.open {
  display: grid;
}

.menu-panel a {
  text-decoration: none;
  color: #111827;
  padding: 10px 12px;
  border-radius: 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.menu-panel a:hover {
  background: rgba(255, 242, 234, 0.88);
  color: #c74f0b;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 22, 52, 0.22);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 90;
  display: none;
}

.menu-backdrop.open {
  display: block;
}

body.menu-open {
  overflow: hidden;
}

body.has-cookie-banner {
  padding-bottom: 110px;
}

/* Cookie consent */
.cookie-banner {
  position: fixed;
  left: 12px;
  right: 72px;
  bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  z-index: 350;
  width: auto;
  max-width: min(520px, calc(100vw - 84px));
  margin-inline: 0;
  padding: 0;
  border-radius: 20px;
  border: 1px solid rgba(226, 233, 251, 0.95);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 18px 44px rgba(8, 28, 72, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px 18px;
  align-items: end;
  padding: 18px 20px;
}

.cookie-banner-copy {
  min-width: 0;
}

.cookie-banner-title {
  margin: 0 0 8px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.cookie-banner-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #3d4f78;
}

.cookie-banner-text a {
  color: var(--orange);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--orange-rgb), 0.35);
}

.cookie-banner-text a:hover {
  border-bottom-color: var(--orange);
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  align-items: center;
  justify-content: flex-end;
}

.btn-cookie {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 12px;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  padding: 11px 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}

.btn-cookie.accept {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: #fff;
  box-shadow: 0 8px 18px rgba(var(--orange-rgb), 0.25);
}

.btn-cookie.accept:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-cookie.link {
  background: #f0f4ff;
  color: var(--navy);
  border: 1px solid #d4e2fc;
}

.btn-cookie.link:hover {
  background: #e6eeff;
}

/* Scroll to top */
.scroll-to-top {
  position: fixed;
  right: calc(14px + env(safe-area-inset-right, 0px));
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 400;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border: 1px solid rgba(226, 233, 251, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow:
    0 10px 28px rgba(8, 28, 72, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  font-family: "Baloo 2", system-ui, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, border-color 0.2s ease, color 0.2s ease;
}

.scroll-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  border-color: #ffd6bf;
  color: var(--orange);
}

.scroll-to-top:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(var(--orange-rgb), 0.25), 0 10px 28px rgba(8, 28, 72, 0.12);
}

.scroll-to-top span[aria-hidden] {
  font-size: 16px;
  line-height: 1;
}

@media (max-width: 520px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    max-width: none;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    align-items: stretch;
    padding: 16px 16px 14px;
  }

  .cookie-banner-actions {
    justify-content: stretch;
  }

  .btn-cookie.accept {
    width: 100%;
    justify-content: center;
  }

  body.has-cookie-banner .scroll-to-top {
    bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }

  .legal-header-inner {
    padding: 12px 0;
  }

  .legal-main {
    padding: 18px 0 40px;
  }
}

.menu-panel .admin-link {
  color: var(--orange);
  font-weight: 700;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: #fff;
  display: grid;
  place-items: center;
  transition: opacity .35s ease, visibility .35s ease;
}

.preloader img {
  width: 108px;
  height: auto;
  animation: pulseLogo 1s ease-in-out infinite;
}

.preloader.done {
  opacity: 0;
  visibility: hidden;
}

/* Ana səhifə hero — shirinagro.com (Vite) ilə eyni: relative overflow, max-w-7xl mətn, şəkil absolute right:-24px bottom:0 */
.hero.hero--banner.section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  width: 100%;
  max-width: none;
  padding: 64px 16px;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero.hero--banner.section {
    padding: 96px 16px;
  }
}

.hero-container {
  width: 100%;
  max-width: 80rem;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

.hero-copy {
  font-family: "Inter", system-ui, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .hero-copy {
    max-width: 42rem;
    /* Mətn sütunu dar — şəkil sağda absolute qalır (shirinagro.com md:max-w-2xl) */
    padding-right: 1rem;
  }
}

/* Dar ekranda şəkil mətnə toxunmasın: sağ boşluq ≈ şəkil eni */
@media (max-width: 639px) {
  .hero-copy {
    padding-right: min(12rem, 42vw);
  }
}

@media (min-width: 640px) and (max-width: 767px) {
  .hero-copy {
    padding-right: min(14rem, 38vw);
  }
}

.hero .chip {
  display: inline-block;
  width: fit-content;
  max-width: min(100%, 26rem);
  margin: 0;
  padding: 6px 12px;
  border: 1px solid rgba(251, 146, 60, 0.45);
  color: #c2410c;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-wrap: balance;
  border-radius: 20px;
  background: #ffedd5;
  box-shadow: none;
}

.hero h1 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-size: clamp(calc(2.25rem - 5px), calc(5vw - 5px), calc(3.75rem - 5px));
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
  margin: 0;
  max-width: 100%;
  color: #0f172a;
}

.hero-lead {
  font-family: inherit;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  font-weight: 500;
  line-height: 1.55;
  max-width: 100%;
  margin: 0;
  color: #334155;
}

.hero .cta {
  display: inline-block;
  margin: 16px 0 0;
  align-self: flex-start;
  text-decoration: none;
  color: var(--orange);
  background: #ffffff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  border: 1px solid rgba(229, 231, 235, 0.95);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.hero .cta:hover {
  color: #c2410c;
  border-color: rgba(251, 146, 60, 0.45);
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1);
  transform: translateY(-1px);
}

.hero .cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(var(--orange-rgb), 0.28),
    0 4px 10px rgba(15, 23, 42, 0.08);
}

.hero-banner-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  width: clamp(390px, 46vw, 560px);
  height: 100%;
  overflow: hidden;
  border-radius: 380px 0 0 0;
  display: block;
  pointer-events: none;
  opacity: 1;
}

.hero-banner-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: 0;
  object-fit: cover;
  object-position: 72% 82%;
}

@media (min-width: 640px) {
  .hero-banner-visual {
    width: clamp(350px, 45vw, 500px);
    border-radius: 340px 0 0 0;
  }
}

@media (min-width: 768px) {
  .hero-banner-visual {
    width: clamp(390px, 46vw, 560px);
    border-radius: 380px 0 0 0;
  }
}

@media (max-width: 639px) {
  .hero-banner-visual {
    right: -8px;
    width: clamp(250px, 52vw, 340px);
    border-radius: 260px 0 0 0;
  }
  .hero-banner-img {
    object-position: 74% 84%;
  }
}

h2 {
  font-size: clamp(24px, 2.9vw, 36px);
  font-weight: 800;
  text-align: center;
}

.section-subtitle {
  font-size: clamp(15px, 1.4vw, 20px);
  color: #475569;
  margin-top: 8px;
  text-align: center;
}

.section-link {
  border: 0;
  color: var(--orange);
  background: transparent;
  font: inherit;
  font-size: clamp(15px, 1.4vw, 20px);
  padding: 0;
  margin-top: 10px;
  font-weight: 700;
  display: block;
  margin-inline: auto;
}

.harvest-section {
  padding-block: clamp(48px, 6vw, 80px);
}

.harvest-head {
  margin-bottom: clamp(18px, 2.5vw, 26px);
}

.harvest-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px 28px;
  flex-wrap: wrap;
}

.harvest-header-copy {
  flex: 1 1 220px;
  min-width: 0;
}

.harvest-title {
  margin: 0;
  text-align: left;
  color: var(--navy);
  font-size: clamp(26px, 3.1vw, 38px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.harvest-subtitle {
  margin: 8px 0 0;
  text-align: left;
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
  max-width: 46ch;
}

.harvest-view-all {
  flex: 0 0 auto;
  align-self: center;
  border: 0;
  background: transparent;
  color: var(--orange);
  font: inherit;
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 700;
  padding: 6px 0;
  cursor: pointer;
  white-space: nowrap;
}

.harvest-view-all:hover {
  text-decoration: underline;
}

.harvest-slider-block {
  margin-top: 4px;
  position: relative;
  padding-inline: 56px;
}

.varieties-page {
  background: #fff;
}

.varieties-section {
  padding-top: 132px;
}

.varieties-head {
  text-align: center;
  margin-bottom: 26px;
}

.varieties-head h1 {
  font-family: "Poppins", "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 0 0 10px;
}

.varieties-head p {
  margin: 0;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.5;
  color: #64748b;
}

.harvest-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}

.harvest-slider {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-block: 8px 12px;
  margin-inline: -4px;
  padding-inline: 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.harvest-slider::-webkit-scrollbar {
  display: none;
}

.fruit-card {
  flex: 0 0 min(220px, calc((100% - 64px) / 5));
  min-width: min(220px, calc((100% - 64px) / 5));
  max-width: 240px;
  border-radius: 18px;
  border: 1px solid #e8ecf4;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: none;
  scroll-snap-align: start;
}

.fruit-card-visual {
  background: transparent !important;
  flex-shrink: 0;
}

.fruit-card-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  object-position: center;
  padding: 12px 14px;
  box-sizing: border-box;
  border-radius: 18px 18px 0 0;
}

.fruit-meta {
  padding: 14px 14px 16px;
}

.fruit-meta h4 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 800;
  color: #001a33;
}

.fruit-meta span {
  display: block;
  margin-top: 4px;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.fruit-card--modal {
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.fruit-card--modal:hover {
  transform: translateY(-3px);
  box-shadow: none;
  border-color: #d5dff5;
}

.fruit-card--modal:focus {
  outline: none;
}

.fruit-card--modal:focus-visible {
  box-shadow: 0 0 0 3px rgba(var(--orange-rgb), 0.28);
}

body.product-modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: grid;
  place-items: center;
  padding: 20px 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.product-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.product-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - 32px));
  height: min(720px, calc(100vh - 44px));
  max-height: min(720px, calc(100vh - 44px));
  overflow: hidden;
  background: #f8fafc;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.14);
  border: 0;
  padding: 48px;
  box-sizing: border-box;
  transform: scale(0.97);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.25s ease;
  will-change: transform, opacity;
}

.product-modal.is-open .product-modal-dialog {
  transform: scale(1);
  opacity: 1;
}

.product-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #f0f3f7;
  background: #fff;
  color: #f05a00;
  font-family: "Inter", "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.06);
}

.product-modal-close:hover {
  border-color: rgba(240, 90, 0, 0.28);
  color: #d64e00;
}

.product-modal-close-x {
  font-size: 20px;
  line-height: 1;
  font-weight: 600;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 0;
}

.product-modal-visual {
  width: 100%;
  max-width: 520px;
  height: 100%;
  min-height: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  overflow: hidden;
  border-radius: 16px;
}

.product-modal-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 16px;
}

.product-modal-body {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 6px 4px 0 0;
  font-family: "Inter", "Open Sans", system-ui, sans-serif;
  color: #1a1f2c;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.product-modal-badge {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f05a00;
}

.product-modal-title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.product-modal-section {
  margin: 0;
}

.product-modal-section--varieties {
  margin: 0;
}

.product-modal-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
}

.product-modal-varieties {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.product-modal-variety {
  width: 150px;
  height: 130px;
  min-width: 150px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 12px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-modal-variety img {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0;
}

.product-modal-variety strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  color: #1a1f2c;
  text-align: center;
}

.product-modal-variety span {
  display: block;
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: #f05a00;
  line-height: 1.2;
  text-align: center;
}

.product-modal-empty {
  margin: 0;
  padding: 14px 12px;
  border: 1px dashed #f3c38d;
  border-radius: 12px;
  color: #9a5b15;
  font-size: 13px;
  line-height: 1.4;
  background: #fffaf3;
}

.product-modal-dl {
  margin: 0;
  padding: 0;
}

.product-modal-dl-row {
  margin-bottom: 14px;
}

.product-modal-dl--with-dividers .product-modal-dl-row {
  margin: 0;
  padding: 10px 0;
  border-top: 1px solid #e9edf3;
}

.product-modal-dl--with-dividers .product-modal-dl-row:last-child {
  border-bottom: 1px solid #e9edf3;
}

.product-modal-dl--mini .product-modal-dl-row {
  margin: 0 0 10px;
}

.product-modal-dl dt {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #94a3b8;
}

.product-modal-dl dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 500;
  color: #0f172a;
}

.product-modal-section--desc {
  margin-top: auto;
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
}

.product-modal-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
  max-width: 90%;
}

.product-modal-variety--expandable {
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.product-modal-variety--expandable:hover {
  border-color: #f4c29d;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
  transform: scale(1.02);
}

.product-modal-variety--expandable:focus-visible {
  outline: 2px solid #ea580c;
  outline-offset: 2px;
}

.variety-nested-modal {
  position: fixed;
  inset: 0;
  z-index: 480;
  display: grid;
  place-items: center;
  padding: 20px 14px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.24s ease, visibility 0.24s ease;
}

.variety-nested-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.variety-nested-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 52, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.variety-nested-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(800px, calc(100% - 36px));
  max-height: min(86vh, 620px);
  overflow: auto;
  background: #fff;
  border-radius: 20px;
  padding: clamp(18px, 3vw, 28px);
  padding-top: clamp(54px, 8vw, 62px);
  box-shadow: 0 28px 72px rgba(15, 23, 42, 0.22);
  border: 1px solid #e8ecf0;
  transform: scale(0.96) translateY(12px);
  opacity: 0;
  transition: transform 0.24s ease, opacity 0.2s ease;
}

.variety-nested-modal.is-open .variety-nested-modal-dialog {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.variety-nested-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--orange);
  font-family: "Inter", "Open Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.variety-nested-close:hover {
  border-color: rgba(251, 146, 60, 0.45);
  color: #c2410c;
}

.variety-nested-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 16px;
  padding: 9px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: var(--orange);
  font-family: "Inter", "Open Sans", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
}

.variety-nested-back:hover {
  border-color: rgba(251, 146, 60, 0.45);
  color: #c2410c;
}

.variety-nested-title {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 1rem + 1.1vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1a1f2c;
  font-family: "Inter", "Open Sans", system-ui, sans-serif;
}

.variety-nested-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.variety-nested-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 20px;
  align-items: start;
}

.variety-nested-visual {
  border: 1px solid #edf1f5;
  border-radius: 16px;
  background: #fff;
  padding: 14px;
}

.variety-nested-visual img {
  width: 100%;
  max-height: min(360px, 46vh);
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.variety-nested-body {
  min-width: 0;
}

@media (max-width: 820px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: stretch;
  }

  .product-modal-visual {
    width: 100%;
    max-width: none;
    height: min(42vh, 320px);
    padding: 12px 0;
  }

  .product-modal-body {
    width: 100%;
    height: auto;
    padding: 8px 0 0;
    gap: 14px;
  }

  .product-modal-title {
    margin-top: 0;
    font-size: clamp(1.75rem, 1.2rem + 2.2vw, 2.2rem);
  }

  .product-modal-close {
    top: 10px;
    right: 10px;
    font-size: 12px;
    padding: 8px 12px;
  }

  .product-modal-varieties {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
  }

  .product-modal-variety {
    width: 100%;
    min-width: 0;
    height: 120px;
  }

  .variety-nested-layout {
    grid-template-columns: 1fr;
  }
}

/* Who we are — premium orange + glass cards (1440 canvas, balanced 50/50) */
.about-orange.section {
  padding: 0;
  max-width: none;
}

.about-orange {
  background: linear-gradient(180deg, #f05a00 0%, #e65100 100%);
  color: #fff;
}

.about-orange-inner {
  width: min(1440px, 100%);
  margin: 0 auto;
  min-height: 680px;
  padding: 100px clamp(24px, 8vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  box-sizing: border-box;
}

.about-orange-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  width: 100%;
  max-width: 620px;
  min-width: 0;
}

.about-orange-kicker {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.8;
  margin: 0 0 20px;
  text-align: left;
}

.about-orange-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 64px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  max-width: 620px;
  width: 100%;
  margin: 0;
  text-align: left;
  text-wrap: balance;
  word-break: normal;
  overflow-wrap: normal;
}

.about-orange-lead {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  color: #fff;
  opacity: 0.9;
  max-width: 520px;
  width: 100%;
  margin: 24px 0 0;
  text-align: left;
}

.about-orange-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 360px));
  gap: 24px;
  width: 100%;
  max-width: 744px;
  justify-content: start;
  justify-self: end;
  align-content: center;
  box-sizing: border-box;
}

.about-orange-card {
  width: 100%;
  max-width: 360px;
  min-width: 0;
  min-height: 160px;
  height: auto;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 24px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
}

.about-orange-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.about-orange-card-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.about-orange-card-label {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.7;
  margin: 0 0 8px;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.about-orange-card-value {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 800;
  color: #fff;
  margin: 0;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: normal;
}

@media (max-width: 1024px) {
  .about-orange-inner {
    grid-template-columns: 1fr;
    padding: 48px clamp(24px, 6vw, 48px);
    gap: 48px;
    min-height: 0;
  }

  .about-orange-copy {
    max-width: 620px;
    width: 100%;
  }

  .about-orange-cards {
    max-width: 744px;
    width: 100%;
    margin-inline: auto;
    justify-self: center;
    gap: 24px;
    grid-template-columns: repeat(2, minmax(140px, 1fr));
  }
}

@media (max-width: 768px) {
  .about-orange-inner {
    padding: 24px;
    gap: 40px;
  }

  .about-orange-title {
    font-size: 36px;
    line-height: 1;
    letter-spacing: -1px;
    max-width: 100%;
    text-align: left;
  }

  .about-orange-kicker {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
  }

  .about-orange-lead {
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    opacity: 0.9;
  }

  .about-orange-card-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
  }

  .about-orange-card-value {
    font-size: 22px;
    line-height: 1.3;
  }

  .about-orange-card-icon svg {
    width: 20px;
    height: 20px;
  }

  .about-orange-cards {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin-inline: 0;
    justify-self: stretch;
  }

  .about-orange-card {
    height: auto;
    min-height: 0;
    max-width: none;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .about-orange-cards {
    grid-template-columns: repeat(2, minmax(140px, 360px));
    justify-content: center;
  }
}

/* Missiya — #F7F7F7, sitat kartı, 3 dəyər kartı */
.mission-block.section {
  padding: 0;
  max-width: none;
  background: #f7f7f7;
}

.mission-block-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px clamp(24px, 8vw, 120px);
  box-sizing: border-box;
}

.mission-block-head {
  text-align: center;
  margin: 0 auto 0;
}

.mission-block-kicker {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2f7d57;
  margin: 0 0 10px;
}

.mission-block-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 50px;
  text-align: center;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.mission-quote-card {
  position: relative;
  width: 100%;
  background: #eceff1;
  border-radius: 16px;
  padding: 40px 50px;
  margin: 0 0 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.mission-quote-accent {
  position: absolute;
  left: 0;
  top: 20px;
  bottom: 20px;
  width: 6px;
  background: #f05a00;
  border-radius: 0 4px 4px 0;
  pointer-events: none;
}

.mission-quote-inner {
  position: relative;
  padding-left: 8px;
}

.mission-quote-mark {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 40px;
  line-height: 1;
  color: #e5cfc4;
  margin-bottom: 20px;
  font-style: normal;
  user-select: none;
}

.mission-quote-text {
  margin: 0;
  padding: 0;
  border: 0;
  font-family: "Lora", Georgia, serif;
  font-size: 20px;
  line-height: 1.8;
  font-style: italic;
  font-weight: 400;
  color: #334155;
  max-width: 900px;
  text-align: left;
}

.mission-value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.mission-value-card {
  background: #eceff1;
  border-radius: 14px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.mission-value-icon-wrap {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 14px;
  background: #f4e3da;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-value-icon-wrap svg {
  display: block;
  flex-shrink: 0;
}

.mission-value-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.25;
}

.mission-value-desc {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

.soft-card {
  border: 1px solid #e8effa;
  border-radius: 18px;
  padding: 16px;
  background: var(--light);
}

.soft-card h4 {
  font-size: 19px;
}

.soft-card p {
  font-size: 15px;
  color: #36507e;
}

@media (max-width: 900px) {
  .mission-block-inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .mission-block-title {
    font-size: clamp(28px, 6vw, 42px);
    margin-bottom: 36px;
  }

  .mission-quote-card {
    padding: 28px 24px 28px 32px;
  }

  .mission-value-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.geography-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.geography-section::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -12%;
  width: min(520px, 70vw);
  height: min(380px, 55vh);
  background: radial-gradient(ellipse at center, rgba(255, 220, 196, 0.42) 0%, rgba(255, 245, 235, 0.12) 45%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.geography-section .container {
  position: relative;
  z-index: 1;
}

.geo-header {
  text-align: center;
  max-width: 52rem;
  margin-inline: auto;
  margin-bottom: clamp(24px, 4vw, 40px);
}

.geo-header h2 {
  font-family: "Open Sans", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(1.45rem, 1.1rem + 1.2vw, 2rem);
  letter-spacing: -0.02em;
  color: #0f172a;
}

.geo-subtitle {
  margin: 10px 0 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(15px, 0.4vw + 14px, 18px);
  font-weight: 400;
  line-height: 1.55;
  color: #64748b;
}

.geo-layout {
  margin-top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(260px, 0.88fr);
  gap: clamp(18px, 3vw, 36px);
  align-items: stretch;
}

.map-block {
  margin-top: 0;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.05),
    0 16px 40px -12px rgba(15, 23, 42, 0.08);
  padding: clamp(12px, 2vw, 22px);
}

.map-block img {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.region-pin {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  pointer-events: none;
}

.region-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #0f766e;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.12);
}

.region-label {
  background: #1e293b;
  color: #fff;
  border-radius: 999px;
  padding: 5px 12px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.15);
}

.geo-cards {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 2vw, 20px);
  justify-content: center;
}

.geo-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: clamp(16px, 2.2vw, 22px) clamp(16px, 2.2vw, 22px);
  border-radius: 16px;
  border: 1px solid #e8eef5;
  background: #fff;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.05);
}

.geo-feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #ecfdf5;
  border: 1px solid #d1fae5;
}

.geo-feature-icon--sun {
  background: #ecfdf5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M4.93 19.07l1.41-1.41M17.66 6.34l1.41-1.41'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

.geo-feature-icon--droplet {
  background: #ecfdf5 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2'%3E%3Cpath d='M12 2.69l5.66 5.66a8 8 0 1 1-11.32 0L12 2.69z'/%3E%3C/svg%3E") center / 24px 24px no-repeat;
}

.geo-feature-body h4 {
  margin: 0 0 6px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(17px, 1.1vw + 15px, 20px);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.geo-feature-body p {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  color: #64748b;
}

.quality-section {
  background: #f8fafc;
}

.quality-header {
  text-align: center;
  max-width: 48rem;
  margin-inline: auto;
  margin-bottom: clamp(22px, 3vw, 36px);
}

.quality-eyebrow {
  margin: 0 0 10px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0f766e;
}

.quality-header h2 {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.1rem + 1.4vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.15;
}

.quality-list {
  margin-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 1120px;
  margin-inline: auto;
}

.quality-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(18px, 2.2vw, 22px) clamp(18px, 2.2vw, 22px) 20px;
  border-radius: 16px;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quality-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.quality-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.quality-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

.quality-card-icon--shield {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 3l8 4v6c0 5-3.5 9-8 11-4.5-2-8-6-8-11V7l8-4z' fill='none' stroke='%23ea580c' stroke-width='1.65' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.quality-card-icon--globe {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='9' fill='none' stroke='%23ea580c' stroke-width='1.65'/%3E%3Cpath d='M3 12h18M12 3a15 15 0 0 0 0 18M12 3a15 15 0 0 1 0 18' fill='none' stroke='%23ea580c' stroke-width='1.65'/%3E%3C/svg%3E");
}

.quality-card-icon--kit {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M8 8V6a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2' fill='none' stroke='%23ea580c' stroke-width='1.65'/%3E%3Crect x='4' y='8' width='16' height='12' rx='2' fill='none' stroke='%23ea580c' stroke-width='1.65'/%3E%3Cpath d='M12 12v3' fill='none' stroke='%23ea580c' stroke-width='1.65'/%3E%3C/svg%3E");
}

.quality-card-num {
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(1.75rem, 1.4rem + 1vw, 2.25rem);
  font-weight: 700;
  line-height: 1;
  color: #e2e8f0;
  letter-spacing: 0.02em;
}

.quality-card-title {
  margin: 0 0 12px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(16px, 0.5vw + 15px, 18px);
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
}

.quality-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.quality-card-body p {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.6;
  color: #64748b;
}

.quality-card-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.quality-card-list li {
  position: relative;
  padding-left: 18px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
}

.quality-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ea580c;
}

.partners {
  overflow: hidden;
  background: #fafbfc;
}

.partner-marquee {
  margin-top: clamp(18px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.partner-track {
  overflow: hidden;
  padding-inline: clamp(14px, 4vw, 40px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}

.partner-row {
  display: flex;
  width: max-content;
  gap: 16px;
  will-change: transform;
}

.partner-row--left {
  animation: partner-marquee-left 52s linear infinite;
}

.partner-row--right {
  animation: partner-marquee-right 52s linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .partner-row--left,
  .partner-row--right {
    animation: none;
  }
}

.partner-card {
  width: 148px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 16px;
  border: 1px solid #e8ecf0;
  background: #fff;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.partner-card img {
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.site-footer {
  position: relative;
  margin-top: 0;
  background: #0a0e17;
  color: #e2e8f0;
  padding: clamp(28px, 4vw, 48px) 0 clamp(22px, 3vw, 36px);
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: min(560px, 85vw);
  height: min(420px, 55vh);
  background: radial-gradient(ellipse at center, rgba(217, 119, 6, 0.26) 0%, rgba(120, 53, 15, 0.1) 38%, transparent 68%);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr) minmax(0, 1.05fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  padding: clamp(22px, 3vw, 36px) clamp(18px, 3vw, 40px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 22, 36, 0.94);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.footer-col-brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo-link {
  display: inline-block;
  line-height: 0;
}

.footer-logo-link:focus-visible {
  outline: none;
  border-radius: 12px;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
}

.footer-logo {
  width: clamp(108px, 18vw, 140px);
  height: auto;
  display: block;
}

.footer-description {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(14px, 0.35vw + 13px, 16px);
  line-height: 1.55;
  color: #f1f5f9;
  max-width: 40rem;
}

.footer-address {
  margin: 16px 0 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  line-height: 1.45;
  color: #94a3b8;
}

.footer-address-icon {
  flex-shrink: 0;
  margin-top: 1px;
  color: #94a3b8;
}

.footer-dept-label {
  margin: 0 0 14px;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f59e0b;
}

.footer-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  text-decoration: none;
  color: #fb923c;
  background: rgba(10, 14, 23, 0.88);
  border: 1px solid rgba(245, 158, 11, 0.38);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.25),
    0 0 20px rgba(234, 88, 12, 0.14);
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-contact-card:hover {
  color: #fdba74;
  border-color: rgba(251, 191, 36, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.2),
    0 0 26px rgba(251, 146, 60, 0.22);
  background: rgba(15, 23, 42, 0.95);
}

.footer-contact-card:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35), 0 0 20px rgba(234, 88, 12, 0.14);
}

.footer-contact-card-icon {
  display: grid;
  place-items: center;
  color: #fb923c;
  flex-shrink: 0;
}

.footer-contact-card-text {
  word-break: break-word;
}

.footer-social {
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-social-link {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(15, 23, 42, 0.7);
  text-decoration: none;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.footer-social-link:hover {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.62);
  background: rgba(15, 23, 42, 0.92);
}

.footer-social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
}

.footer-subbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin-top: clamp(18px, 2.5vw, 26px);
  padding-top: 18px;
}

.footer-copyright {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  max-width: min(100%, 52rem);
}

.footer-credit {
  margin: 0;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #f59e0b;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-legal a {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #f59e0b;
}

@media (max-width: 900px) {
  .footer-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col-brand {
    justify-content: center;
  }

  .footer-description {
    margin-inline: auto;
  }

  .footer-address {
    justify-content: center;
    text-align: left;
  }

  .footer-col-contact {
    max-width: 360px;
    margin-inline: auto;
    width: 100%;
  }

  .footer-subbar {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@keyframes partner-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes partner-marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: inline-grid;
    place-items: center;
  }

  .site-header-inner {
    width: min(1320px, calc(100% - clamp(20px, 4vw, 28px)));
    grid-template-columns: auto 1fr;
    column-gap: 12px;
    padding: 12px 0 14px;
  }

  .site-header .brand {
    grid-column: 1;
    justify-self: start;
  }

  .site-header .desktop-nav {
    display: none;
  }

  .site-header .header-right {
    grid-column: 2;
    justify-self: end;
    margin-left: 0;
  }

  .lang-switch a {
    font-size: 12px;
    padding: 6px 9px;
  }

  .menu-panel {
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    min-width: 0;
    padding: 10px;
  }

  .menu-panel a {
    text-align: center;
    font-size: 14px;
    padding: 10px 10px;
  }

  .hero.hero--banner.section {
    padding: 48px 16px 56px;
    background: #ffffff;
  }

  .mission-value-grid,
  .geo-layout,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-items: flex-start;
    text-align: left;
    max-width: min(100%, 42rem);
  }

  .hero .chip {
    margin-inline: 0;
  }

  .hero-lead {
    max-width: 42ch;
    margin-inline: 0;
  }

  .hero .cta {
    margin-top: 16px;
    align-self: flex-start;
  }

  .fruit-card {
    flex: 0 0 min(200px, calc((100% - 16px) / 2.15));
    min-width: min(200px, calc((100% - 16px) / 2.15));
  }

  .fruit-card-visual img {
    max-height: 220px;
  }

  .section-subtitle,
  .section-link {
    font-size: 16px;
  }

  .hero .cta {
    font-size: 16px;
    padding: 14px 28px;
  }

  .hero .chip {
    font-size: 10px;
    padding: 9px 16px;
  }

  .mission-value-desc,
  .geo-feature-body p,
  .quality-card-body p {
    font-size: 14px;
  }

  .quality-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .footer-description {
    font-size: 15px;
  }

  .footer-copyright,
  .footer-address {
    font-size: 13px;
  }

}

@media (min-width: 769px) and (max-width: 1024px) {
  .hero h1 {
    font-size: clamp(31px, 4.5vw, 43px);
    line-height: 1.15;
    font-weight: 800;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 31px;
    line-height: 1.2;
    font-weight: 800;
  }
}

.harvest-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid #d1d9e8;
  background: #fff;
  color: #334155;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.harvest-prev {
  left: 0;
}

.harvest-next {
  right: 0;
}

.harvest-arrow:hover {
  border-color: #b8c4da;
  color: #0f172a;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  transform: translateY(-50%) scale(1.03);
}

.harvest-arrow:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 136, 49, 0.28);
}

@media (max-width: 620px) {
  .harvest-slider-block {
    padding-inline: 40px;
  }

  .harvest-arrow {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .fruit-card {
    flex: 0 0 min(200px, 78vw);
    min-width: min(200px, 78vw);
  }

  .harvest-header {
    flex-direction: column;
    align-items: stretch;
  }

  .harvest-view-all {
    align-self: flex-start;
  }

  .quality-list {
    grid-template-columns: 1fr;
  }

  .fruit-card img {
    max-height: min(300px, 70vw);
    aspect-ratio: 4 / 3;
    padding: 12px 14px;
  }
}

@keyframes pulseLogo {
  0%, 100% { opacity: .35; transform: scale(.94); }
  50% { opacity: 1; transform: scale(1); }
}

/* Legal pages (legal.php) */
.legal-body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f8ff 0%, #eef3ff 45%, #f4f7ff 100%);
  color: var(--navy);
  font-family: "Baloo 2", system-ui, sans-serif;
  line-height: 1.45;
}

.legal-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid #e6ecfb;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.legal-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  flex-wrap: wrap;
}

.legal-back {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 15px;
}

.legal-back:hover {
  color: var(--orange);
}

.legal-lang {
  display: inline-flex;
  gap: 6px;
  border: 1px solid #dce6fa;
  border-radius: 999px;
  padding: 3px;
  background: #fff;
}

.legal-lang a {
  text-decoration: none;
  color: #4e6391;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 8px;
  border-radius: 999px;
}

.legal-lang a.active {
  background: var(--orange);
  color: #fff;
}

.legal-main {
  padding: 28px 0 48px;
}

.legal-doc {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(230, 236, 251, 0.95);
  border-radius: 22px;
  padding: clamp(18px, 3vw, 28px) clamp(16px, 3vw, 28px) 32px;
  box-shadow:
    0 18px 40px rgba(8, 28, 72, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.legal-subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.legal-subnav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e2e9fb;
  color: #3d4f78;
  background: #f7f9ff;
}

.legal-subnav a:hover {
  border-color: #ffd6bf;
  color: var(--orange);
}

.legal-subnav a.is-active {
  background: #fff2ea;
  border-color: #ffc7a3;
  color: #b3440a;
}

.legal-doc h1 {
  text-align: left;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 8px 0 18px;
  line-height: 1.2;
}

.legal-prose {
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  line-height: 1.7;
  color: #2a3a5c;
  white-space: pre-line;
  word-break: break-word;
}

.legal-doc > p {
  font-family: "Lora", Georgia, serif;
  font-size: 16px;
  line-height: 1.65;
  color: #3d4f78;
}

/* --- About us page (about.php) --- */
.identity-body {
  background: #f6f8fc;
}

.identity-body .site-header {
  border-bottom-color: #e4eaf5;
}

.identity-body .desktop-nav a.is-active {
  color: #c2410c;
  font-weight: 700;
  background: rgba(251, 146, 60, 0.12);
  border-radius: 8px;
  padding: 8px 10px;
}

.contact-page .desktop-nav a.is-active {
  color: #c2410c;
  font-weight: 700;
}

.identity-main {
  padding: 0;
}

.identity-breadcrumb-wrap {
  background: #f6f8fc;
  border-bottom: 1px solid #e8ecf1;
  padding: 14px 0 16px;
}

.identity-breadcrumb {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(248, 250, 252, 0.72);
  margin: 0;
}

.identity-breadcrumb--on-light {
  color: #64748b;
}

.identity-breadcrumb--on-light a {
  color: #334155;
  text-decoration: none;
}

.identity-breadcrumb--on-light a:hover {
  color: #0f172a;
  text-decoration: underline;
}

.identity-breadcrumb--on-light .identity-breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.45;
  color: #94a3b8;
}

.identity-breadcrumb--on-light .identity-breadcrumb-current {
  color: #0f172a;
  font-weight: 600;
}

.identity-breadcrumb a {
  color: rgba(248, 250, 252, 0.88);
  text-decoration: none;
}

.identity-breadcrumb a:hover {
  color: #fff;
  text-decoration: underline;
}

.identity-breadcrumb-sep {
  margin: 0 8px;
  opacity: 0.55;
}

.identity-breadcrumb-current {
  color: #fffbeb;
  font-weight: 600;
}

.identity-who {
  background: #f26522;
  color: #fff;
  padding: clamp(40px, 5.5vw, 72px) 0 clamp(48px, 6vw, 80px);
}

.identity-who-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
}

.identity-who-copy {
  max-width: 38rem;
}

.identity-who-eyebrow {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}

.identity-who-title {
  margin: 14px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.1rem + 2.2vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.18;
  color: #fff;
}

.identity-who-body {
  margin: 18px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(15px, 0.35vw + 14px, 17px);
  line-height: 1.6;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
}

.identity-who-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.identity-who-card {
  margin: 0;
  border-radius: 14px;
  padding: 16px 16px 18px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.identity-who-card-icon {
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.identity-who-card-icon svg {
  display: block;
  flex-shrink: 0;
}

.identity-who-card-label {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

.identity-who-card-value {
  margin: 8px 0 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1rem, 0.85rem + 0.6vw, 1.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}

.identity-mission {
  background: #0f172a;
  color: #e2e8f0;
  padding-block: clamp(44px, 6vw, 72px);
}

.identity-mission-inner {
  text-align: center;
}

.identity-mission-heading {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  color: #fff;
}

.identity-mission-quote {
  margin: 22px auto 0;
  max-width: 900px;
  border: 0;
  border-left: 5px solid var(--orange);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 22px 24px;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(17px, 1.9vw, 24px);
  line-height: 1.45;
  font-style: italic;
  color: rgba(248, 250, 252, 0.95);
  text-align: left;
}

.identity-values {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  text-align: left;
}

.identity-value-card {
  border-radius: 16px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.identity-value-card h4 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fdba74;
}

.identity-value-card p {
  margin: 8px 0 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(226, 232, 240, 0.88);
  font-family: "Inter", system-ui, sans-serif;
}

.identity-retail {
  background: #fff;
  padding-block: clamp(40px, 5vw, 64px);
}

.identity-retail-head {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.identity-retail-kicker {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}

.identity-retail-title {
  margin: 10px 0 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #001a33;
}

.identity-retail-lead {
  margin: 0;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.6;
  color: #475569;
  font-family: "Inter", system-ui, sans-serif;
}

.identity-partner-marquee {
  margin-top: 28px;
}

/* --- About us page content blocks --- */
.identity-live-eyebrow {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

.identity-live-hero {
  padding-block: clamp(36px, 5vw, 56px);
  background: #fff;
}

.identity-live-hero-inner {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.identity-live-title {
  margin: 0 0 16px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #001a33;
}

.identity-live-lead {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.65;
  color: #475569;
}

.identity-live-section-title {
  margin: 0 0 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #001a33;
  text-align: center;
}

.identity-live-subtitle {
  margin: 0 auto 24px;
  max-width: 720px;
  text-align: center;
  font-size: clamp(15px, 1.35vw, 17px);
  line-height: 1.6;
  color: #64748b;
}

.identity-live-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  text-align: center;
}

.identity-live-kpi {
  background: #f8fafc;
  padding-block: clamp(36px, 5vw, 56px);
}

.identity-live-kpi-subtitle {
  margin: 10px auto 22px;
  max-width: 560px;
  text-align: center;
  font-size: clamp(16px, 1.45vw, 19px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #64748b;
}

.identity-live-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 4px;
}

.identity-live-kpi-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px 16px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 100%;
}

.identity-live-kpi-icon-wrap {
  margin: 0 0 12px;
  color: var(--orange);
  line-height: 0;
}

.identity-live-kpi-icon-wrap svg {
  display: block;
}

.identity-live-kpi-eyebrow {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #94a3b8;
}

.identity-live-kpi-line,
.identity-live-kpi-metric {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 600;
  color: #1e293b;
}

.identity-live-kpi-stat + .identity-live-kpi-line {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
}

.identity-live-kpi-eyebrow + .identity-live-kpi-line {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
}

.identity-live-kpi-stat {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #001a33;
  line-height: 1.1;
}

.identity-live-kpi-unit {
  margin: 6px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.identity-live-story {
  background: #fff;
  padding-block: clamp(40px, 5vw, 64px);
}

.identity-live-story-inner {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.identity-live-story-title {
  margin: 0 0 16px;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  color: #001a33;
}

.identity-live-story-body {
  margin: 0 0 20px;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.7;
  color: #475569;
  text-align: left;
}

.identity-live-story-aside {
  margin: 0;
  padding: 18px 22px;
  border-left: 4px solid var(--orange);
  border-radius: 12px;
  background: #fff8f1;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(16px, 1.4vw, 19px);
  font-style: italic;
  line-height: 1.5;
  color: #334155;
  text-align: left;
}

.identity-live-approach {
  background: #f1f5f9;
  padding-block: clamp(40px, 5vw, 64px);
}

.identity-live-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 8px;
}

.identity-live-pillar-card {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 20px 18px;
  background: #fff;
}

.identity-live-pillar-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  color: #001a33;
}

.identity-live-pillar-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
}

.identity-live-ops {
  background: #fff;
  padding-block: clamp(40px, 5vw, 64px);
}

.identity-live-ops-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.identity-live-ops-card {
  border: 1px solid #e8ecf4;
  border-radius: 20px;
  padding: 22px 18px 20px;
  background: linear-gradient(180deg, #fafbfe 0%, #fff 100%);
}

.identity-live-ops-step-num {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.identity-live-ops-card h3 {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 800;
  color: #001a33;
}

.identity-live-ops-list {
  margin: 0;
  padding-left: 18px;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.identity-live-ops-list li {
  margin-bottom: 6px;
}

.identity-live-geo {
  background: #f8fafc;
  padding-block: clamp(40px, 5vw, 64px);
}

.identity-live-geo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.identity-live-geo-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 16px 18px;
  background: #fff;
}

.identity-live-geo-card h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #001a33;
}

.identity-live-geo-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: #64748b;
}

.identity-live-why {
  background: #fff;
  padding-block: clamp(40px, 5vw, 64px);
}

.identity-live-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 12px;
}

.identity-live-why-card {
  border: 1px solid #e8ecf4;
  border-radius: 18px;
  padding: 20px 18px;
  background: #fafbfe;
}

.identity-live-why-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
  color: #001a33;
}

.identity-live-why-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: #475569;
}

@media (max-width: 1020px) {
  .identity-live-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .identity-live-ops-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .identity-live-kpi-grid {
    grid-template-columns: 1fr;
  }

  .identity-live-pillars {
    grid-template-columns: 1fr;
  }

  .identity-live-geo-grid,
  .identity-live-why-grid {
    grid-template-columns: 1fr;
  }
}

.identity-cta {
  background: linear-gradient(90deg, #0b1f35 0%, #123554 50%, #0b1f35 100%);
  padding-block: clamp(28px, 4vw, 40px);
}

.identity-cta-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  justify-content: center;
  align-items: center;
}

.identity-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.identity-cta-btn--primary {
  background: var(--orange);
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(212, 136, 49, 0.35);
}

.identity-cta-btn--primary:hover {
  transform: translateY(-2px);
  background: #e5983f;
}

.identity-cta-btn--ghost {
  background: transparent;
  color: #e2e8f0;
  border: 1px solid rgba(248, 250, 252, 0.35);
}

.identity-cta-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(248, 250, 252, 0.55);
}

@media (max-width: 980px) {
  .identity-who-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .identity-who-copy {
    max-width: none;
  }

  .identity-values {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .identity-who-cards {
    grid-template-columns: 1fr;
  }

  .identity-cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .identity-cta-btn {
    width: 100%;
  }
}

/* --- Dedicated contact page (contact.php) --- */
body.contact-page {
  margin: 0;
  background: #f4f6fb;
  color: var(--navy);
}

.contact-page-main {
  padding: clamp(28px, 5vw, 56px) 0 clamp(48px, 6vw, 72px);
}

.contact-hero {
  position: relative;
  max-width: 920px;
  margin: 0 auto clamp(28px, 4vw, 40px);
  padding: clamp(22px, 3vw, 32px) clamp(18px, 3vw, 28px);
  border-radius: 22px;
  background: #fff;
  border: 1px solid #e4eaf5;
  box-shadow: 0 18px 44px rgba(12, 34, 78, 0.06);
  overflow: hidden;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
}

.contact-hero-kicker {
  margin: 0 0 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ea580c;
}

.contact-hero-title {
  margin: 0 0 12px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.75rem, 1.2rem + 2vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.contact-hero-lead {
  margin: 0;
  max-width: 52ch;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(15px, 0.4vw + 14px, 17px);
  line-height: 1.55;
  color: #64748b;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  margin-top: 22px;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.contact-hero-btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 10px 26px rgba(var(--orange-rgb), 0.28);
}

.contact-hero-btn--primary:hover {
  transform: translateY(-1px);
  background: #d35400;
}

.contact-hero-btn--ghost {
  background: #fff;
  color: #334155;
  border-color: #e2e8f0;
}

.contact-hero-btn--ghost:hover {
  border-color: #cbd5e1;
  background: #f8fafc;
}

.contact-dept-grid {
  display: grid;
  gap: clamp(16px, 2.5vw, 22px);
}

.contact-dept-card {
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e4eaf5;
  padding: clamp(18px, 2.5vw, 24px);
  box-shadow: 0 12px 32px rgba(12, 34, 78, 0.05);
}

.contact-dept-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-dept-name {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ea580c;
}

.contact-dept-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b45309;
  background: #fff7ed;
  border: 1px solid #ffedd5;
  padding: 5px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.contact-dept-rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-dept-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #eef2f7;
  text-decoration: none;
  color: inherit;
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: 14px;
  transition: border-color 0.15s ease, background 0.15s ease;
}

a.contact-dept-row:hover {
  border-color: #fed7aa;
  background: #fffbeb;
}

.contact-dept-row-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #fff7ed;
  color: #c2410c;
}

.contact-dept-row-icon svg {
  display: block;
}

.contact-dept-row-text {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.contact-dept-social {
  margin-top: 12px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.contact-dept-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-dept-social-wrap {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid #fde7cf;
  border-radius: 12px;
  background: linear-gradient(180deg, #fff9f2 0%, #fff6ec 100%);
  padding: 10px 12px;
}

.contact-dept-social-title {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a3412;
}

.contact-dept-social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fdc995;
  background: #fff;
  color: #c2410c;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.contact-dept-social-link:hover {
  transform: translateY(-1px);
  background: #ffedd5;
  border-color: #fb923c;
  color: #9a3412;
}

.contact-dept-social-link:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.28);
}

@media (max-width: 640px) {
  .contact-dept-social-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
