/* Riyan Exim — logo palette: forest green, sage, gold, terracotta */
:root {
  --royal: #1e3d2b;
  --rich: #3d6b4f;
  --lav: #a8c49a;
  --lav-bg: #f7f3eb;
  --warm: #faf7f0;
  --surface: #ffffff;
  --surface-soft: #f0ebe3;
  --page-bg: #f8f5ef;

  --green: #3d6b4f;
  --green-soft: #8fa67a;
  --green-deep: #152a1f;
  --gold: #c4a574;
  --gold-light: #e8dcc4;
  --terra: #a86342;
  --terra-soft: #c4896a;
  --text: #1a2e22;
  --muted: rgba(26, 46, 34, 0.62);

  --royal-rgb: 30, 61, 43;
  --rich-rgb: 61, 107, 79;
  --lav-rgb: 168, 196, 154;
  --gold-rgb: 196, 165, 116;
  --deep-rgb: 21, 42, 31;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-ui: "Plus Jakarta Sans", system-ui, sans-serif;

  --radius: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-max: 1400px;

  --accent-top-green: var(--gold);

  --reveal-duration: 0.8s;
  --stagger: 0.12s;

  --shadow: 0 20px 50px rgba(var(--deep-rgb), 0.07);
  --shadow-strong: 0 28px 72px rgba(var(--deep-rgb), 0.1);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-strong: rgba(255, 255, 255, 0.88);

  --border-soft: rgba(var(--royal-rgb), 0.08);

  --hero-motif: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 540' fill='none'%3E%3Cg stroke='%231e3d2b' stroke-width='1.06' opacity='0.058'%3E%3Cellipse cx='130' cy='100' rx='66' ry='19'/%3E%3Cellipse cx='130' cy='100' rx='52' ry='15'/%3E%3Ccircle cx='380' cy='92' r='52'/%3E%3Cpath stroke-dasharray='4 9' d='M330 76a54 54 0 0150 102'/%3E%3Cpath d='M56 466c154-174 392-294 764-394' opacity='0.065'/%3E%3Crect x='70' y='296' rx='16' ry='16' width='100' height='72' opacity='0.065'/%3E%3Cpath d='M248 394h148v112H248z'/%3E%3Cpath d='M466 394l42-214 54 214z' opacity='0.06'/%3E%3Cpath d='M660 442c174-226 446-394 834-478' opacity='0.04'/%3E%3C/g%3E%3C/svg%3E");

  --product-line-pattern: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300' viewBox='0 0 300 300' fill='none'%3E%3Cg stroke='%231e3d2b' stroke-width='0.88' stroke-linecap='round' stroke-linejoin='round' opacity='0.09'%3E%3Cellipse cx='56' cy='52' rx='32' ry='11'/%3E%3Cellipse cx='56' cy='52' rx='22' ry='7'/%3E%3Crect x='122' y='34' width='62' height='46' rx='8'/%3E%3Cline x1='138' y1='40' x2='138' y2='74'/%3E%3Cline x1='168' y1='40' x2='168' y2='74'/%3E%3Cpath d='M216 50c20-14 38 2 36 22s-18 26-36 22'/%3E%3Cpath d='M216 50c-8 16 2 28 36 22'/%3E%3Cpath d='M36 168c4 22 24 38 52 42s50-14 60-42'/%3E%3Cellipse cx='94' cy='168' rx='50' ry='13'/%3E%3Cpath d='M164 148h50v56h-50z'/%3E%3Cpath d='M164 148v-18h50v18'/%3E%3Cline x1='216' y1='168' x2='228' y2='168'/%3E%3Cpath d='M234 158c24-30 56-20 52 8s-36 26-52 8'/%3E%3Crect x='24' y='220' width='52' height='60' rx='5'/%3E%3Cline x1='32' y1='232' x2='68' y2='232'/%3E%3Crect x='128' y='214' width='26' height='50' rx='3'/%3E%3Cpath d='M141 214v-18'/%3E%3Cpath d='M132 200h18'/%3E%3Cpath d='M196 232l40-11v38l-40 11-40-11v-38z'/%3E%3Cline x1='196' y1='232' x2='196' y2='260'/%3E%3Ccircle cx='274' cy='88' r='11'/%3E%3Cpath d='M263 88h22M274 77v22'/%3E%3C/g%3E%3C/svg%3E");
}

/* ===== Keyframes (global timing: float 6s, transitions 0.3s hero/header 0.35s) ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatAlt {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-10px) rotate(1deg);
  }
}
@keyframes pulseGlow {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--lav-rgb), 0.45);
  }
  50% {
    box-shadow: 0 0 40px 6px rgba(var(--lav-rgb), 0.35);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.88);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes routeDash {
  from {
    stroke-dashoffset: 180;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes pinBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes whatsappPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

html {
  scroll-behavior: smooth;
  /* Horizontal clip without disabling position:sticky on descendants (body overflow:hidden breaks sticky nav). */
  overflow-x: clip;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--page-bg);
  background-image: radial-gradient(
      140% 80% at 50% -20%,
      rgba(168, 220, 196, 0.14),
      transparent 56%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--warm) 28%, var(--page-bg) 100%);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-underline-offset: 3px;
}

address {
  font-style: normal;
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -120px;
  background: var(--royal);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 4000;
  text-decoration: none;
  transition: top 0.25s var(--ease);
}
.skip-link:focus {
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* ===== Header: scroll-away top tier (wrap) + sticky white nav (direct child of body) =====
   NOTE: #site-header must NOT sit inside a short wrapper â€” sticky is clipped to the parent's
   vertical box; if the wrapper only wraps tier + nav, the bar scrolls away once that box ends. */

.site-header-wrap {
  position: relative;
  z-index: 3000;
}

.header-top-tier {
  background: linear-gradient(90deg, #152a1f 0%, #1e3d2b 50%, #2d5340 100%);
  color: #fff;
  font-family: var(--font-ui);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-top-tier__inner {
  width: min(100%, var(--nav-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 0.45rem clamp(14px, 4vw, 28px);
  min-height: 38px;
  box-sizing: border-box;
}

.header-top-tier__brand {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  flex-wrap: wrap;
  min-width: 0;
}

.header-top-tier__company {
  font-weight: 600;
  letter-spacing: 0.055em;
  white-space: nowrap;
}

.header-top-tier__tagline {
  font-weight: 700;
  font-size: clamp(0.62rem, 1.85vw, 0.71rem);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-top-green);
  white-space: nowrap;
}

.header-top-tier__rule {
  width: 1px;
  height: 1.05rem;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.header-top-tier__rule.header-top-tier__rule--utilities {
  display: none;
}

@media (min-width: 760px) {
  .header-top-tier__rule.header-top-tier__rule--utilities {
    display: inline-block;
  }
}

.header-top-tier__right {
  display: flex;
  align-items: center;
  gap: 0.9rem 1.15rem;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-top-tier__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: inherit;
}

.header-top-tier__contact:hover {
  opacity: 0.88;
}

.header-top-tier__contact i {
  color: var(--accent-top-green);
  font-size: 0.92em;
}

.header-top-tier__utilities {
  display: flex;
  gap: 0.4rem;
}

.header-top-util-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--accent-top-green);
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    color 0.25s ease;
}

.header-top-util-btn:hover {
  background: rgba(var(--rich-rgb), 0.18);
  color: #e8fff4;
  transform: translateY(-1px);
}

.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 3001;
  background: #ffffff;
  transition:
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
  border-bottom: 1px solid rgba(var(--royal-rgb), 0.06);
  box-shadow: none;
}

.site-header.header-scrolled {
  background: #ffffff;
  box-shadow: 0 12px 36px rgba(var(--deep-rgb), 0.08);
  border-bottom-color: rgba(var(--royal-rgb), 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .quote-btn::before {
    transition-duration: 0.14s !important;
  }
}

.nav-container {
  width: 100%;
  max-width: var(--nav-max);
  margin: 0 auto;
  padding: 6px clamp(14px, 4vw, 28px);
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.75rem min(2vw, 1.65rem);
  box-sizing: border-box;
  background: #ffffff;
  transition: padding 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.header-scrolled .nav-container {
  background: #ffffff;
  padding-block: 5px;
}

.brand {
  display: flex;
  align-items: center;
  z-index: 3205;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo {
  height: clamp(72px, 8.2vw, 96px);
  width: auto;
  max-width: min(280px, 54vw);
  object-fit: contain;
  object-position: left center;
  transition: height 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.header-scrolled .brand-logo {
  height: clamp(66px, 7.2vw, 84px);
}

@media (max-width: 960px) {
  .brand-logo {
    height: clamp(64px, 15vw, 80px);
    max-width: min(240px, 60vw);
  }

  .site-header.header-scrolled .brand-logo {
    height: clamp(58px, 13vw, 72px);
  }
}

@media (max-width: 760px) {
  .header-top-tier__utilities {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-top-tier__company {
    font-size: 0.71rem;
    letter-spacing: 0.045em;
  }

  .header-top-tier__tagline {
    display: none;
  }

  .header-top-tier__inner {
    padding-block: 0.38rem;
  }
}

@media (max-width: 420px) {
  .header-top-tier__contact-text {
    display: none;
  }
}

/* ========== Hamburger (mobile) ========== */
.hamburger {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(var(--rich-rgb), 0.14);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 8px 20px rgba(var(--royal-rgb), 0.06);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  z-index: 3210;
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  transition:
    box-shadow 0.3s ease,
    background 0.3s ease,
    border-color 0.3s ease;
}

.hamburger:hover {
  box-shadow: 0 10px 28px rgba(var(--royal-rgb), 0.11);
  border-color: rgba(var(--rich-rgb), 0.24);
}

.hamburger-bar {
  width: 22px;
  height: 2px;
  background: var(--royal);
  border-radius: 2px;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(2) {
  opacity: 0;
}

.hamburger[aria-expanded="true"] .hamburger-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.site-nav {
  justify-self: center;
  max-width: 100%;
}

.nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
}

/* ========== Nav pills (mint active) ========== */
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  color: #1a3d32;
  z-index: 1;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

.nav-link span {
  position: relative;
  z-index: 2;
}

.nav-link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  transform: scaleX(0.6) scaleY(0.88);
  transform-origin: center;
  opacity: 0;
  z-index: 0;
  background: linear-gradient(135deg, rgba(240, 242, 248, 0.95), rgba(255, 255, 255, 0.85));
  transition:
    opacity 0.34s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-link:hover {
  color: var(--royal);
  transform: translateY(-1px);
}

.nav-link:hover::before {
  opacity: 1;
  transform: scaleX(1) scaleY(1);
}

.nav-link.is-active {
  color: #173d31;
  font-weight: 700;
}

.nav-link.is-active::before {
  opacity: 1;
  transform: scaleX(1) scaleY(1);
  background: linear-gradient(145deg, #e8faf2, #d5f3e8);
  box-shadow: inset 0 0 0 1px rgba(var(--rich-rgb), 0.25);
}

/* ========== Nav dropdown (Products) ========== */
.nav-item--dropdown {
  position: relative;
}

.nav-link--has-dropdown {
  gap: 0.38rem;
}

.nav-link__caret {
  font-size: 0.58rem;
  line-height: 1;
  opacity: 0.72;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.nav-item--dropdown:hover .nav-link__caret,
.nav-item--dropdown:focus-within .nav-link__caret,
.nav-item--dropdown.is-open .nav-link__caret {
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 228px;
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(var(--royal-rgb), 0.1);
  box-shadow: 0 18px 44px rgba(var(--deep-rgb), 0.12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  z-index: 220;
}

.nav-item--dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 0.55rem;
}

.nav-item--dropdown:hover .nav-dropdown,
.nav-item--dropdown:focus-within .nav-dropdown,
.nav-item--dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 960px) {
  .nav-menu--mobile .nav-item--dropdown-mobile .nav-dropdown,
  .nav-menu--mobile .nav-item--dropdown-mobile.is-open .nav-dropdown {
    transform: none;
  }
}

.nav-dropdown__link {
  display: block;
  padding: 0.58rem 0.88rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #1a3d32;
  text-decoration: none;
  transition:
    background 0.22s ease,
    color 0.22s ease;
}

.nav-dropdown__link:hover,
.nav-dropdown__link:focus-visible {
  background: rgba(var(--lav-rgb), 0.24);
  color: var(--royal);
  outline: none;
}

.nav-dropdown__link.is-active {
  background: linear-gradient(145deg, #e8faf2, #d5f3e8);
  color: var(--royal);
  box-shadow: inset 0 0 0 1px rgba(var(--rich-rgb), 0.22);
}

.nav-mobile-dropdown-row {
  display: none;
}

.nav-dropdown-toggle {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  flex-shrink: 0;
}

.header-social {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--royal-rgb), 0.12);
  background: #ffffff;
  min-width: 0;
  margin: 0;
}

.header-search:focus-within {
  border-color: rgba(var(--royal-rgb), 0.22);
  box-shadow: 0 0 0 3px rgba(var(--rich-rgb), 0.12);
}

.header-search .fa-magnifying-glass {
  color: rgba(var(--royal-rgb), 0.32);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.header-search input {
  border: none;
  outline: none;
  background: transparent;
  margin: 0;
  padding: 0;
  min-width: 0;
  width: clamp(96px, 12vw, 168px);
  font-size: 0.815rem;
  font-family: inherit;
  color: var(--text);
}

.header-search input::placeholder {
  color: rgba(26, 46, 34, 0.38);
}

.header-search--mobile {
  width: 100%;
  margin-bottom: 1.35rem;
  box-sizing: border-box;
}

.header-search--mobile input {
  width: 100%;
  flex: 1;
}

.social-chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ffffff;
  border: 1px solid rgba(var(--rich-rgb), 0.1);
  color: var(--rich);
  text-decoration: none;
  transition:
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.32s ease,
    color 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease;
}

.social-chip:hover {
  transform: translateY(-4px);
  background: linear-gradient(145deg, #3d6b4f, #1e3d2b);
  color: #fff;
  border-color: transparent;
  box-shadow:
    0 14px 28px rgba(var(--rich-rgb), 0.28),
    0 0 24px rgba(var(--lav-rgb), 0.35);
}

/* ========== CTA button (navy-to-green gradient) ========== */
.quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.56rem;
  padding: 9px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  font-family: inherit;
  color: #fff;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--royal) 42%, var(--gold) 100%);
  background-size: 150% auto;
  background-position: 0% center;
  box-shadow:
    0 12px 30px rgba(26, 16, 40, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 0%,
    transparent 36%,
    rgba(255, 255, 255, 0.38),
    transparent 62%,
    transparent 100%
  );
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.quote-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(26, 16, 40, 0.35),
    0 0 28px rgba(var(--rich-rgb), 0.2);
  background-position: 100% center;
}

.quote-btn:hover::before {
  transform: translateX(120%);
}

.quote-btn:hover .fa-arrow-right {
  transform: translateX(5px);
}

.quote-btn .fa-arrow-right {
  font-size: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-btn--block {
  width: 100%;
  justify-content: center;
}

@media (max-width: 1180px) {
  .header-search:not(.header-search--mobile) {
    display: none;
  }

  .header-actions {
    gap: 0.55rem;
  }
}

/* ========== Mobile menu ========== */
@media (max-width: 960px) {
  .nav-container {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.75rem 1rem;
    padding: 6px 16px;
  }

  .brand {
    grid-column: 1;
    grid-row: 1;
    min-width: 0;
    flex-shrink: 1;
    overflow: hidden;
  }

  .brand-logo {
    max-width: min(220px, calc(100vw - 98px));
  }

  .hamburger {
    display: flex;
    grid-column: 2;
    grid-row: 1;
    flex-shrink: 0;
  }

  body.mobile-menu-open .brand {
    visibility: hidden;
    pointer-events: none;
  }

  body.mobile-menu-open .mobile-nav-close {
    display: none;
  }

  body.mobile-menu-open .hamburger {
    position: relative;
    z-index: 3300;
  }

  .nav-container > .site-nav {
    display: none;
  }

  .nav-container > .header-actions {
    display: none;
  }

  .mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 400px);
    height: 100vh;
    height: 100dvh;
    padding: calc(env(safe-area-inset-top, 0px) + 72px) 1.35rem 2rem;
    background: #ffffff;
    border-left: 1px solid rgba(var(--rich-rgb), 0.1);
    box-shadow: -24px 0 48px rgba(var(--royal-rgb), 0.12);
    transform: translateX(104%);
    opacity: 0;
    visibility: hidden;
    transition:
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.35s ease,
      visibility 0.35s ease;
    z-index: 3150;
    overflow-y: auto;
  }

  .mobile-nav-close {
    position: absolute;
    top: max(16px, calc(env(safe-area-inset-top, 0px) + 12px));
    right: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(var(--rich-rgb), 0.14);
    background: #ffffff;
    color: var(--royal);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 2;
    font-size: 1.2rem;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(var(--royal-rgb), 0.08);
    transition:
      background 0.28s ease,
      color 0.28s ease,
      border-color 0.28s ease,
      transform 0.28s ease;
  }

  .mobile-nav-close:hover {
    background: var(--rich);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.04);
  }

  body.mobile-menu-open .mobile-nav-panel {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu--mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .nav-menu--mobile .nav-link {
    width: 100%;
    justify-content: flex-start;
    font-size: 1.06rem;
  }

  .nav-menu--mobile .nav-item--dropdown-mobile .nav-link--has-dropdown {
    display: none;
  }

  .nav-menu--mobile .nav-mobile-dropdown-row {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-menu--mobile .nav-mobile-dropdown-row .nav-link {
    flex: 1;
    width: auto;
  }

  .nav-menu--mobile .nav-dropdown-toggle {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid rgba(var(--rich-rgb), 0.14);
    border-radius: 10px;
    background: #ffffff;
    color: var(--royal);
    cursor: pointer;
    transition:
      background 0.25s ease,
      border-color 0.25s ease,
      transform 0.25s ease;
  }

  .nav-menu--mobile .nav-dropdown-toggle:hover {
    background: rgba(var(--lav-rgb), 0.18);
    border-color: rgba(var(--rich-rgb), 0.24);
  }

  .nav-menu--mobile .nav-dropdown-toggle i {
    font-size: 0.72rem;
    transition: transform 0.3s ease;
  }

  .nav-menu--mobile .nav-item--dropdown-mobile.is-open .nav-dropdown-toggle i {
    transform: rotate(180deg);
  }

  .nav-menu--mobile .nav-dropdown--mobile {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    min-width: 0;
    margin: 0.15rem 0 0.35rem;
    padding: 0 0 0 0.65rem;
    border: none;
    border-left: 2px solid rgba(var(--rich-rgb), 0.12);
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease;
  }

  .nav-menu--mobile .nav-item--dropdown-mobile.is-open .nav-dropdown.nav-dropdown--mobile {
    max-height: 320px;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu--mobile .nav-dropdown__link {
    padding: 0.62rem 0.75rem;
    font-size: 0.95rem;
  }

  .mobile-nav-footer {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px dashed rgba(var(--rich-rgb), 0.15);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .mobile-nav-footer .header-social {
    justify-content: center;
  }

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

@media (min-width: 961px) {
  .mobile-nav-panel {
    display: none !important;
  }

  body.mobile-menu-open {
    overflow: visible;
  }

  /* Desktop Products dropdown — must not flow inline in the nav bar */
  .site-nav {
    overflow: visible;
  }

  .nav-container {
    overflow: visible;
  }

  .site-nav .nav-item--dropdown {
    position: relative;
  }

  .site-nav .nav-dropdown {
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 228px;
    list-style: none;
    margin: 0;
    padding: 0.45rem;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(var(--royal-rgb), 0.1);
    box-shadow: 0 18px 44px rgba(var(--deep-rgb), 0.12);
    display: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 3000;
    transition:
      opacity 0.28s ease,
      transform 0.28s ease,
      visibility 0.28s ease;
  }

  .site-nav .nav-dropdown > li {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .site-nav .nav-item--dropdown:hover > .nav-dropdown,
  .site-nav .nav-item--dropdown:focus-within > .nav-dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .site-nav .nav-item--dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 0.55rem;
  }
}

@media (max-width: 1024px) and (min-width: 961px) {
  .site-nav .nav-link {
    padding: 8px 12px;
    font-size: 0.805rem;
  }
}

/* ========== Quote popup modal ========== */
.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.35s,
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-modal.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 10, 35, 0.72);
  cursor: pointer;
}

.quote-dialog {
  position: relative;
  width: min(100%, 480px);
  max-height: min(92vh, 720px);
  overflow-y: auto;
  padding: 2rem 2rem 1.75rem;
  border-radius: var(--radius);
  z-index: 2;
  transform: translate3d(0, 28px, 0) scale(0.96);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-modal.is-open .quote-dialog {
  transform: translate3d(0, 0, 0) scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .quote-modal .quote-dialog {
    transition: none;
    transform: none;
  }

  .quote-modal.is-open .quote-dialog {
    opacity: 1;
  }
}

.glass-quote-card {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow:
    0 28px 64px rgba(var(--deep-rgb), 0.1),
    0 0 0 1px var(--border-soft);
}

.quote-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(var(--rich-rgb), 0.08);
  color: var(--royal);
  font-size: 1.35rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.28s ease,
    transform 0.28s ease,
    color 0.28s ease;
}

.quote-close:hover {
  background: rgba(var(--rich-rgb), 0.15);
  color: var(--rich);
  transform: rotate(90deg);
}

.quote-modal-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--royal);
  margin: 0 1.75rem 0.5rem 0;
}

.quote-modal-sub {
  margin: 0 1.75rem 1.35rem 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.product-inquiry-modal .product-inquiry-dialog {
  width: min(100%, 580px);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.product-inquiry-modal .cp-form__grid {
  gap: 0.85rem;
}

.product-inquiry-modal .cp-form__submit {
  margin-top: 0.35rem;
}

.product-inquiry-modal .cp-form__note {
  margin-top: 0.75rem;
  font-size: 0.78rem;
}

button.pp-btn,
button.pp-cta-strip__btn {
  border: none;
  cursor: pointer;
  font-family: var(--font-ui);
  text-align: center;
  appearance: none;
  -webkit-appearance: none;
}

button.pd-btn-outline {
  cursor: pointer;
  font-family: var(--font-ui);
  appearance: none;
  -webkit-appearance: none;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.quote-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--rich);
}

.quote-field input,
.quote-field select,
.quote-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(var(--rich-rgb), 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: var(--text);
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
}

.quote-field textarea {
  resize: vertical;
  min-height: 100px;
}

.quote-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%231f7a55' d='M4 6h8l-4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.quote-field input:focus,
.quote-field select:focus,
.quote-field textarea:focus {
  outline: none;
  border-color: rgba(var(--lav-rgb), 0.85);
  box-shadow:
    0 0 0 4px rgba(var(--lav-rgb), 0.28),
    0 8px 20px rgba(var(--rich-rgb), 0.08);
  transform: translateY(-1px);
}

.quote-submit {
  margin-top: 0.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 15px 24px;
  border-radius: 999px;
  border: none;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.96rem;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #1e3d2b, #3d6b4f, #8fa67a);
  background-size: 220% auto;
  background-position: 0% center;
  box-shadow: 0 14px 32px rgba(var(--rich-rgb), 0.32);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    background-position 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.quote-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(var(--rich-rgb), 0.38);
  background-position: 100% center;
}

.quote-form-status {
  min-height: 1.35em;
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
}

.quote-form-status.ok {
  color: var(--green);
}

.quote-form-status.err {
  color: #c94a61;
}

/* ========== Hero / banner slider ========== */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes heroSlideInRight {
  from {
    opacity: 0;
    transform: translate3d(40px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes floatOrbitSlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes pulseGlobeHero {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(var(--lav-rgb), 0.4);
  }
  50% {
    box-shadow: 0 0 28px 8px rgba(var(--lav-rgb), 0.2);
  }
}

@keyframes orbitRouteSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes glowBlobHero {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.06);
  }
}

@keyframes btnShineSweep {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(120%);
  }
}

.hero-slider {
  --hero-head: 0px;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 1.1s step-end;
  z-index: 1;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s step-start;
  z-index: 2;
  pointer-events: auto;
}

.hero-slider.is-transitioning .hero-slide {
  transition-duration: 1.1s;
}

.hero-slide-inner {
  position: relative;
  z-index: 5;
  width: 100%;
  min-height: calc(100vh - var(--hero-head));
  min-height: calc(100dvh - var(--hero-head));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.hero-container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  min-height: calc(100vh - var(--hero-head) - 80px);
  min-height: calc(100dvh - var(--hero-head) - 80px);
}

.hero-slider .hero-container {
  grid-template-columns: 1fr;
}

.hero-slider .hero-visual {
  display: none;
}

.hero-slider .hero-content {
  max-width: 760px;
}

/* Background layers */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Faint export / tableware motifs (Vegnar-style) â€” sits above media, under overlay */
.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: -14% -10%;
  z-index: 1;
  pointer-events: none;
  background-image: var(--hero-motif);
  background-repeat: no-repeat;
  background-position: 58% 44%;
  background-size: min(1020px, 150%);
}

@media (max-width: 960px) {
  .hero-slide-bg::after {
    background-position: 50% 36%;
    background-size: min(720px, 180%);
    opacity: 0.85;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide-bg::after {
    opacity: 0.42;
  }
}

.hero-bg-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.36;
  transform: scale(1.02);
}

/* Placeholder gradients â€” airy whites with light accent washes */
.hero-bg-media--1 {
  background-image:
    radial-gradient(circle at 82% 18%, rgba(var(--lav-rgb), 0.2), transparent 58%),
    linear-gradient(
      155deg,
      #ffffff 0%,
      #f7f3eb 38%,
      rgba(232, 246, 239, 0.45) 96%
    );
}

.hero-bg-media--2 {
  background-image:
    radial-gradient(ellipse 72% 52% at 50% 108%, rgba(76, 140, 90, 0.16), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f4faf6 48%, #f8f5ef 100%);
}

.hero-bg-media--3 {
  background-image:
    radial-gradient(circle at 18% 28%, rgba(var(--lav-rgb), 0.18), transparent 52%),
    linear-gradient(122deg, #ffffff 0%, #faf7f0 45%, #f8f5ef 100%);
}

.hero-bg-fallback {
  position: absolute;
  inset: 0;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.hero-slide.is-active .hero-bg-video {
  opacity: 1;
  transform: scale(1.04);
  animation: heroVideoKenBurns 8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide:has(.hero-bg-video) .hero-bg-media {
  opacity: 0.18;
}

@keyframes heroVideoKenBurns {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video {
    display: none;
  }

  .hero-slide:has(.hero-bg-video) .hero-bg-media {
    opacity: 0.36;
  }
}

/* Layered overlays — dark wash so video reads clearly behind copy */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      92deg,
      rgba(6, 18, 14, 0.82) 0%,
      rgba(8, 24, 18, 0.58) 50%,
      rgba(5, 14, 11, 0.45) 100%
    ),
    radial-gradient(circle at 76% 26%, rgba(var(--rich-rgb), 0.14), transparent 46%);
}

.hero-overlay--accent {
  background:
    linear-gradient(
      96deg,
      rgba(6, 20, 14, 0.84) 0%,
      rgba(8, 26, 18, 0.56) 55%,
      rgba(5, 14, 11, 0.48) 100%
    ),
    radial-gradient(circle at 70% 24%, rgba(76, 140, 90, 0.16), transparent 50%);
}

.hero-overlay--warm {
  background:
    linear-gradient(
      100deg,
      rgba(8, 22, 16, 0.82) 0%,
      rgba(10, 28, 20, 0.58) 52%,
      rgba(6, 16, 12, 0.46) 100%
    ),
    radial-gradient(circle at 28% 72%, rgba(var(--lav-rgb), 0.12), transparent 52%);
}

.hero-deco-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  animation: glowBlobHero 10s ease-in-out infinite;
}

.hero-blob-a {
  width: 420px;
  height: 420px;
  background: rgba(var(--lav-rgb), 0.18);
  top: -12%;
  right: -6%;
}

.hero-blob-b {
  width: 300px;
  height: 300px;
  background: rgba(76, 140, 90, 0.1);
  bottom: 5%;
  left: -5%;
  animation-delay: -3s;
}

.hero-blob-c {
  width: 360px;
  height: 360px;
  background: rgba(168, 212, 200, 0.2);
  top: 10%;
  right: 0;
}

.hero-blob-d {
  width: 280px;
  height: 280px;
  background: rgba(var(--lav-rgb), 0.14);
  bottom: 15%;
  left: 10%;
}

.hero-dots-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(var(--rich-rgb), 0.028) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.65;
}

.hero-map-line {
  position: absolute;
  right: 8%;
  top: 15%;
  width: 45%;
  height: 40%;
  border: 1px dashed rgba(var(--rich-rgb), 0.1);
  border-radius: 50%;
  opacity: 0.6;
}

.hero-leaf-float {
  position: absolute;
  inset: 0;
}

.hero-leaf-float .lf {
  position: absolute;
  opacity: 0.2;
  font-size: clamp(1rem, 2vw, 1.5rem);
}

/* Text */
.hero-content {
  text-align: left;
}

.hero-slider .hero-slide-bg::after {
  opacity: 0.22;
}

.hero-eyebrow-line {
  margin: 0 0 1rem;
}

.hero-slider .hero-eyebrow {
  color: rgba(var(--lav-rgb), 0.95);
  border-bottom-color: rgba(var(--lav-rgb), 0.4);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--rich);
  padding: 0.35rem 0;
  border-bottom: 2px solid rgba(var(--lav-rgb), 0.45);
}

.hero-main-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.625rem, 5.5vw, 6rem);
  line-height: 1.05;
  color: var(--royal);
  margin: 0 0 0.5rem;
  letter-spacing: -0.025em;
}

.hero-slider .hero-main-title {
  color: #ffffff;
}

/* Hero headings: two deliberate lines â€” short copy + nowrap on desktop avoids a stray third wrap */
.hero-main-title .hero-title-line {
  display: block;
  overflow-wrap: normal;
  word-break: normal;
}

@media (min-width: 961px) {
  .hero-main-title .hero-title-line {
    white-space: nowrap;
  }
}

@media (max-width: 960px) {
  .hero-main-title .hero-title-line {
    white-space: normal;
    text-wrap: balance;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-main-title {
    font-size: clamp(3.25rem, 6vw, 3.5rem);
  }
}

.hero-tagline-slide {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.375rem, 2.8vw, 2.375rem);
  color: var(--green);
  margin: 0 0 1.25rem;
}

.hero-slider .hero-tagline-slide {
  color: #8ee4b8;
}

.hero-tagline-slide.tag-purple {
  color: #22885c;
}

.hero-slider .hero-tagline-slide.tag-purple {
  color: #9cf0c4;
}

.hero-desc {
  max-width: 620px;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.8;
  color: #5a5568;
  margin: 0 0 1.85rem;
}

.hero-slider .hero-desc {
  color: rgba(228, 238, 233, 0.9);
}

.hero-slider .hero-desc .hero-desc-line {
  display: block;
}

.hero-slider .hero-desc .hero-desc-line + .hero-desc-line {
  margin-top: 0.35em;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-slider .btn-pill-primary,
.hero-slider .btn-pill-soft {
  position: relative;
  overflow: hidden;
}

.hero-slider .btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.45),
    transparent
  );
  transform: translateX(-130%);
  transition: none;
}

.hero-slider .btn-shine:hover::after {
  animation: btnShineSweep 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

/* Active slide text animation */
.hero-slide.is-active .h-anim {
  opacity: 0;
  animation: heroFadeUp 0.92s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-slide.is-active .h-anim[data-anim]:nth-of-type(1) {
  animation-delay: 0s;
}

.hero-slide.is-active .hero-content .h-anim:nth-child(2) {
  animation-delay: 0.15s;
}

.hero-slide.is-active .hero-content .h-anim:nth-child(3) {
  animation-delay: 0.3s;
}

.hero-slide.is-active .hero-content .h-anim:nth-child(4) {
  animation-delay: 0.45s;
}

.hero-slide.is-active .hero-content .h-anim:nth-child(5) {
  animation-delay: 0.6s;
}

.hero-slide:not(.is-active) .h-anim,
.hero-slide:not(.is-active) .h-anim-vis {
  animation: none !important;
  opacity: 0;
}

.hero-slide.is-active .h-anim-vis {
  animation: heroSlideInRight 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active .h-anim,
  .hero-slide.is-active .h-anim-vis {
    animation: none !important;
    transition: opacity 0.3s ease;
  }

  .hero-slide.is-active .h-anim {
    opacity: 1;
    transform: none;
  }

  .hero-slide.is-active .h-anim-vis {
    opacity: 1;
    transform: none;
  }

  .float-orbit,
  .pulse-glow-globe,
  .orbit-dashed,
  .hero-blob {
    animation: none !important;
  }
}

/* Buttons (hero) */
.hero-slider .btn-pill-primary,
.hero-slider .btn-pill-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-ui);
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.hero-slider .btn-pill-primary {
  background: linear-gradient(135deg, var(--royal), var(--rich));
  color: #fff;
  box-shadow: 0 16px 40px rgba(var(--rich-rgb), 0.32);
}

.hero-slider .btn-pill-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(var(--rich-rgb), 0.42);
}

.hero-slider .btn-pill-primary:hover .fa-arrow-right-long {
  transform: translateX(6px);
}

.hero-slider .btn-pill-soft {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.hero-slider .btn-pill-soft:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
  border-color: rgba(var(--lav-rgb), 0.45);
}

.hero-slider .btn-pill-primary .fa-arrow-right-long,
.hero-slider .btn-pill-soft .fa-paper-plane,
.hero-slider .btn-pill-soft .fa-file-pdf,
.hero-slider .btn-pill-soft .fa-envelope-open-text {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Orbit visual — slide 1 */
.hero-visual-orbit {
  position: relative;
  min-height: 400px;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}

.orbit-glow {
  position: absolute;
  inset: 10%;
  background: radial-gradient(circle, rgba(var(--lav-rgb), 0.18) 0%, transparent 65%);
  filter: blur(18px);
  border-radius: 50%;
}

.orbit-route {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110%;
  max-width: 420px;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

.orbit-dashed {
  transform-origin: 200px 200px;
  animation: orbitRouteSpin 120s linear infinite;
}

.orbit-globe {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  z-index: 3;
}

.globe-core-lg {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--lav), #fff);
  display: grid;
  place-items: center;
  font-size: 2.5rem;
  color: var(--royal);
  margin: 10px auto 0;
  box-shadow: var(--shadow-strong);
}

.pulse-glow-globe {
  animation: pulseGlobeHero 3.5s ease-in-out infinite;
}

.globe-ring-ring {
  position: absolute;
  inset: -8px;
  border: 2px dashed rgba(var(--rich-rgb), 0.12);
  border-radius: 50%;
}

.pin-orbit {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(var(--royal-rgb), 0.15);
}

.pin-o1 {
  right: -4px;
  top: 38%;
}

.pin-o2 {
  left: 8%;
  top: 60%;
}

.orbit-card {
  position: absolute;
  margin: 0;
  padding: 0.65rem 0.85rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.07);
  min-width: 118px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 4;
}

.orbit-card:hover {
  transform: translateY(-6px) scale(1.03);
}

.orbit-card span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--royal);
}

.orbit-card small {
  font-size: 0.68rem;
  color: var(--muted);
}

.orbit-card-ico {
  height: 48px;
  margin-bottom: 0.35rem;
}

.oc1 {
  left: -2%;
  top: 6%;
}

.oc2 {
  right: -4%;
  top: 12%;
}

.oc3 {
  left: -6%;
  bottom: 14%;
}

.oc4 {
  right: -2%;
  bottom: 6%;
}

.float-orbit {
  animation: floatOrbitSlow 6.5s ease-in-out infinite;
}

.float-orbit-delay {
  animation: floatOrbitSlow 7.2s ease-in-out infinite;
  animation-delay: -2s;
}

.float-orbit-rev {
  animation: floatOrbitSlow 7s ease-in-out infinite reverse;
}

.bagasse-ico-mini {
  background: radial-gradient(at 40% 30%, #fff 0%, transparent 55%),
    linear-gradient(180deg, #e8f9ec, #bce5c9);
  border-radius: 10px;
}
.honey-ico-mini {
  background: linear-gradient(180deg, #ffd86b, #e8a317);
  border-radius: 8px;
}
.diary-ico-mini {
  background: linear-gradient(165deg, var(--rich), var(--royal));
  border-radius: 6px;
}
.extract-ico-mini {
  background: linear-gradient(90deg, #a05a15, #e8a010);
  border-radius: 6px 8px;
}

/* Bagasse showcase Ã¢â‚¬â€ slide 2 */
.hero-visual-bagasse {
  max-width: 480px;
  margin: 0 auto;
}

.bagasse-show-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.glass-tile {
  border-radius: 16px;
  padding: 1.25rem 1rem;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 30px rgba(var(--deep-rgb), 0.06);
  text-align: center;
}

.glass-tile span {
  display: block;
  height: 56px;
  border-radius: 12px;
  margin-bottom: 0.5rem;
  background: linear-gradient(180deg, #f4fff7, #d4f0dd);
  border: 1px solid rgba(76, 140, 90, 0.15);
}

.bw-tray span {
  background: repeating-linear-gradient(
    -45deg,
    #eef8f2,
    #eef8f2 8px,
    #dceee4 8px 16px
  );
}

.bw-clams span {
  border-radius: 50% / 45%;
  background: radial-gradient(#f2fff4, #c8e8d0);
}

.bw-plate span {
  border-radius: 50%;
  height: 48px;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(180deg, #fff, #d8ede3);
}

.bw-bowl span {
  border-radius: 50%;
  width: 70%;
  margin: 0 auto;
  background: radial-gradient(#fffef8, #e5ddd0);
}

.glass-tile small {
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--rich);
}

.float-slow-br {
  animation: floatOrbitSlow 6s ease-in-out infinite;
}

.float-med-br {
  animation: floatOrbitSlow 6.8s ease-in-out infinite;
  animation-delay: -1.5s;
}

.bagasse-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.bagasse-badges li {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(76, 140, 90, 0.12);
  color: var(--green);
  border: 1px solid rgba(76, 140, 90, 0.2);
}

/* Product cluster Ã¢â‚¬â€ slide 3 */
.hero-visual-cluster {
  position: relative;
  max-width: 440px;
  margin: 0 auto;
  min-height: 360px;
}

.cluster-map-soft {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  border: 1px dashed rgba(var(--rich-rgb), 0.1);
  opacity: 0.7;
}

.cluster-cluster {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1rem;
}

.cluster-item {
  padding: 1.15rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.07);
  text-align: center;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--royal);
  transition: transform 0.35s ease;
}

.cluster-item:hover {
  transform: translateY(-6px);
}

.cluster-item span {
  display: block;
  margin-top: 0.65rem;
}

.c-hjar {
  height: 72px;
  border-radius: 12px;
  background: linear-gradient(180deg, #ffd973, #d4920a);
  box-shadow: inset 0 -6px rgba(0, 0, 0, 0.06);
}

.c-cover {
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(160deg, var(--rich), var(--royal));
  box-shadow: inset 4px 0 rgba(255, 255, 255, 0.12);
}

.c-bot-inner {
  height: 72px;
  border-radius: 10px;
  margin: 0 auto;
  width: 54%;
  background: linear-gradient(90deg, #8b4513, #e8a010);
}

.c-box {
  display: grid;
  place-items: center;
}

.c-box i {
  font-size: 2.25rem;
  color: var(--rich);
  margin-bottom: 0.35rem;
}

/* Slider UI (full-height layer so side arrows use true vertical center of hero) */
.hero-slider-ui {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.hero-slider-ui .hero-arrow {
  pointer-events: auto;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: max(28px, calc(env(safe-area-inset-bottom) + 16px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(6, 18, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 0;
  pointer-events: auto;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.32);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    width 0.35s,
    background 0.35s;
}

.hero-dot.is-current {
  width: 32px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green-soft), var(--green));
  transform: scale(1);
}

.hero-arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(6, 18, 14, 0.82);
  color: #ffffff;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s,
    color 0.3s,
    box-shadow 0.35s,
    scale 0.3s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 22;
}

.hero-arrow-prev {
  left: max(14px, env(safe-area-inset-left));
}

.hero-arrow-next {
  right: max(14px, env(safe-area-inset-right));
}

.hero-arrow:hover {
  background: linear-gradient(135deg, var(--rich), var(--royal));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(var(--rich-rgb), 0.28);
  transform: translateY(-50%) scale(1.06);
}

.curve-divider.curve-hero-bottom {
  display: none;
}

/* Mobile hero */
@media (max-width: 960px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 100px;
  }

  .hero-content {
    text-align: center;
    order: 1;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-slider .btn-pill-primary,
  .hero-slider .btn-pill-soft {
    min-width: min(280px, 100%);
    justify-content: center;
  }

  .hero-visual {
    order: 2;
    margin-top: 0.5rem;
  }

  .hero-visual-orbit {
    max-width: 360px;
    min-height: 340px;
  }

  .hero-slide-inner {
    min-height: auto;
  }

  .hero-arrow {
    width: 42px;
    height: 42px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-arrow-prev {
    left: 12px;
  }

  .hero-arrow-next {
    right: 12px;
  }

  .hero-arrow:hover {
    transform: translateY(-50%) scale(1.06);
  }

  .hero-main-title {
    font-size: clamp(2.5rem, 9vw, 2.9rem);
  }

  .hero-tagline-slide {
    font-size: clamp(1.35rem, 4.5vw, 1.65rem);
  }

  .oc1,
  .oc2,
  .oc3,
  .oc4 {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    margin: 0.35rem;
  }

  .hero-visual-orbit {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    place-items: center;
  }

  .orbit-glow,
  .orbit-route,
  .orbit-globe,
  .globe-ring-ring,
  .pin-orbit {
    display: none;
  }

  .hero-visual-orbit .orbit-card {
    position: relative;
    width: 100%;
    max-width: 160px;
  }
}

/* ===== Sections ===== */
.section {
  position: relative;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.eyebrow-purple {
  color: var(--rich);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.eyebrow-dash {
  color: var(--rich);
  font-weight: 800;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.eyebrow-dash.light {
  color: var(--lav);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--royal);
  margin: 0 0 1rem;
}

.section-intro {
  margin: 0;
  font-size: 1.085rem;
  color: var(--muted);
  max-width: 36rem;
}

.narrow-head {
  text-align: center;
}
.narrow-head .section-title,
.narrow-head .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.glass-strong {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

.glass-soft {
  background: #ffffff;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
}

/* ===== About section (premium Our Story layout) ===== */
.about-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(3rem, 7vw, 5.25rem);
  margin-top: -2px;
  background:
    radial-gradient(120% 72% at 8% 12%, rgba(var(--lav-rgb), 0.08), transparent 48%),
    radial-gradient(92% 62% at 92% 76%, rgba(76, 140, 90, 0.06), transparent 50%),
    linear-gradient(180deg, var(--surface) 0%, var(--surface-soft) 50%, #ffffff 100%);
}

.about-bg-pattern {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.38;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(var(--rich-rgb), 0.04) 1px, transparent 0),
    radial-gradient(ellipse 140% 80% at 50% -24%, rgba(var(--lav-rgb), 0.08), transparent 55%);
  background-size:
    22px 22px,
    100% 100%;
  z-index: 0;
}

.about-leaf-layer {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-section .about-leaf-layer .lf-about {
  position: absolute;
  font-size: 0.95rem;
  opacity: 0.18;
  color: var(--green);
}

.about-container {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(1rem, 4vw, 3rem), 1480px);
  margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 22px);
}

.about-grid-main {
  display: grid;
  gap: clamp(1.75rem, 4vw, 2.75rem);
  align-items: stretch;
}

@media (min-width: 1024px) {
  .about-grid-main {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1.5rem, 3.5vw, 3rem);
  }
}

.about-visual {
  position: relative;
  display: flex;
  min-height: 100%;
  align-items: center;
}

.about-image-card {
  margin: 0;
  width: 100%;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  box-shadow: 0 18px 48px rgba(var(--deep-rgb), 0.08);
  background: #ffffff;
}

.about-image-card img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* --- Scroll reveal helpers (IntersectionObserver adds .is-visible) --- */
.about-section .reveal:not(.is-visible),
.about-section .reveal-left:not(.is-visible),
.about-section .reveal-scale:not(.is-visible) {
  opacity: 0;
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

.about-section .reveal:not(.is-visible) {
  transform: translate3d(0, 32px, 0);
}

.about-section .reveal-left:not(.is-visible) {
  transform: translate3d(-44px, 0, 0);
}

.about-section .reveal-scale:not(.is-visible) {
  transform: scale(0.92);
}

.about-section .reveal.is-visible,
.about-section .reveal-left.is-visible,
.about-section .reveal-scale.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .about-section .reveal,
  .about-section .reveal-left,
  .about-section .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* --- Left: trade map card --- */
.trade-map-card {
  position: relative;
  min-height: 348px;
  padding: clamp(22px, 3vw, 28px);
  border-radius: 24px;
  border: 1px solid var(--border-soft);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(var(--deep-rgb), 0.06);
  overflow: hidden;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

@media (max-width: 639px) {
  .trade-map-card {
    min-height: 300px;
    padding: 22px 18px;
  }
}

.trade-map-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 76px rgba(var(--deep-rgb), 0.09);
}

.trade-map-card__glow {
  position: absolute;
  inset: -40% -20% auto;
  height: 70%;
  background: radial-gradient(circle, rgba(var(--lav-rgb), 0.2), transparent 62%);
  pointer-events: none;
}

.trade-map-dots {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 2px 2px, rgba(var(--rich-rgb), 0.12) 1.5px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

.trade-map-card__watermark {
  position: absolute;
  left: 50%;
  top: 46%;
  width: min(220px, 50%);
  transform: translate(-50%, -50%);
  opacity: 0.055;
  z-index: 0;
}

.trade-map-card.is-visible .trade-map-card__watermark {
  animation: aboutWmPulse 14s ease-in-out infinite;
}

@keyframes aboutWmPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.055;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0.09;
  }
}

.trade-map-svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  margin-top: 0.75rem;
  color: rgba(var(--rich-rgb), 0.35);
}

.trade-map-card:not(.is-visible) .trade-map-svg .route-line {
  opacity: 0;
}

.trade-map-card.is-visible .trade-map-svg .route-line {
  opacity: 1;
  stroke-dasharray: 10 16;
  animation: aboutRouteMarch 26s linear infinite;
}

.trade-map-card.is-visible .route-line--b {
  animation-duration: 32s;
  animation-direction: reverse;
}

@keyframes aboutRouteMarch {
  to {
    stroke-dashoffset: -520;
  }
}

.location-pin {
  fill: #4c8c5a;
  stroke: #fff;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
}

.trade-map-card.is-visible .location-pin {
  animation: aboutPinPulse 2.8s ease-in-out infinite;
}

.trade-map-card.is-visible .location-pin--2 {
  animation-delay: 0.6s;
}

.trade-map-card.is-visible .location-pin--3 {
  animation-delay: 1.1s;
}

@keyframes aboutPinPulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 0 rgba(76, 140, 90, 0));
  }
  50% {
    transform: scale(1.12);
    filter: drop-shadow(0 0 8px rgba(76, 140, 90, 0.45));
  }
}

.floating-badge {
  position: absolute;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(var(--rich-rgb), 0.12);
  color: var(--rich);
  box-shadow: 0 10px 28px rgba(var(--royal-rgb), 0.1);
}

.floating-badge--1 {
  top: 12%;
  left: 8%;
  animation: aboutFloatA 6.5s ease-in-out infinite;
}

.floating-badge--2 {
  top: 18%;
  right: 10%;
  animation: aboutFloatB 7.2s ease-in-out infinite;
}

.floating-badge--3 {
  bottom: 38%;
  left: 4%;
  animation: aboutFloatA 5.8s ease-in-out infinite 0.5s;
}

.floating-badge--4 {
  bottom: 32%;
  right: 6%;
  animation: aboutFloatB 6.8s ease-in-out infinite 0.3s;
}

@keyframes aboutFloatA {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes aboutFloatB {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(8px);
  }
}

.about-visual-minis {
  position: absolute;
  z-index: 2;
  inset: auto 0 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  pointer-events: none;
}

.about-mini-card {
  padding: 10px 14px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(var(--rich-rgb), 0.1);
  box-shadow: 0 12px 32px rgba(var(--royal-rgb), 0.08);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  animation: aboutFloatB 8s ease-in-out infinite;
}

.about-mini-card:nth-child(2) {
  animation-delay: 0.9s;
  animation-duration: 7s;
}

.about-mini-card:nth-child(3) {
  animation-delay: 1.7s;
  animation-duration: 6.5s;
}

.about-mini-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--rich);
}

.about-mini-card__lbl {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-visual-strip {
  position: relative;
  z-index: 2;
  margin: 0;
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(var(--rich-rgb), 0.14);
  font-size: 0.9rem;
  line-height: 1.65;
  color: #5f5870;
  text-align: center;
}

/* --- Right column copy --- */
.about-content {
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rich);
}

.about-eyebrow__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 140, 90, 0.22);
}

.about-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.72rem, 3.05vw, 2.65rem);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: #1e3d2b;
  margin: 0 0 1rem;
}

@media (min-width: 1060px) {
  .about-section .about-title {
    font-size: clamp(1.6rem, 1.85vw + 0.92rem, 2.42rem);
  }
}

.about-text {
  max-width: 100%;
  margin: 0 0 1rem;
}

.about-text p {
  margin: 0;
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.8;
  color: #5f5870;
}

.about-text abbr {
  text-decoration: none;
  cursor: help;
  border-bottom: 1px dotted rgba(var(--rich-rgb), 0.35);
}

.about-highlight {
  background: linear-gradient(
    120deg,
    rgba(var(--lav-rgb), 0.28),
    rgba(76, 140, 90, 0.15)
  );
  color: var(--royal);
  font-weight: 700;
  padding: 0.08em 0.2em;
  border-radius: 4px;
}

.about-trust-line {
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--rich);
}

.about-trust-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0;
}

.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rich);
  background: rgba(238, 248, 242, 0.95);
  border: 1px solid rgba(var(--rich-rgb), 0.12);
  transition:
    transform 0.28s var(--ease),
    background 0.28s,
    color 0.28s,
    box-shadow 0.28s;
}

.about-pill i {
  color: var(--green);
  font-size: 0.85rem;
}

.about-pill:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(120deg, var(--green), var(--rich));
  border-color: transparent;
  box-shadow: 0 12px 28px rgba(var(--rich-rgb), 0.22);
}

.about-pill:hover i {
  color: #fff;
}

.about-content-cta {
  margin-top: 1.65rem;
}

.about-content-cta .btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0 1.65rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, var(--royal), var(--rich));
  box-shadow: 0 14px 36px rgba(var(--rich-rgb), 0.3);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.about-content-cta .btn-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(var(--rich-rgb), 0.38);
  color: #fff;
}

.about-content-cta .btn-pill-primary .fa-arrow-right-long {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-content-cta .btn-pill-primary:hover .fa-arrow-right-long {
  transform: translateX(5px);
}

/* --- About feature cards --- */
.about-feature-grid {
  display: grid;
  gap: 20px;
  margin-top: 0.35rem;
}

@media (min-width: 560px) {
  .about-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-feature-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(var(--rich-rgb), 0.1);
  background: linear-gradient(
    148deg,
    rgba(255, 255, 255, 0.95),
    rgba(238, 248, 242, 0.65)
  );
  box-shadow: 0 18px 45px rgba(var(--royal-rgb), 0.08);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s;
}

.about-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(var(--lav-rgb), 0.4),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.about-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 56px rgba(var(--royal-rgb), 0.14), 0 0 0 1px rgba(var(--lav-rgb), 0.45);
  border-color: rgba(var(--lav-rgb), 0.45);
}

.about-feature-card:hover::before {
  opacity: 1;
}

.about-feat-ico {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.22);
  margin-bottom: 0.85rem;
  transition:
    transform 0.35s var(--ease),
    background 0.35s,
    color 0.35s;
}

.about-feature-card:hover .about-feat-ico {
  transform: scale(1.06);
  background: linear-gradient(135deg, var(--rich), var(--green));
  color: #fff;
}

.about-feature-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #1e3d2b;
}

.about-feature-card p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

/* --- Stats row (clean SVG orbit icons) --- */
.about-stats {
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.35rem);
  margin-top: clamp(2.5rem, 5vw, 3.25rem);
  grid-template-columns: 1fr;
}

@media (min-width: 560px) and (max-width: 900px) {
  .about-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 901px) {
  .about-stats {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(0.85rem, 1.8vw, 1.15rem);
  }
}

.about-stat-card {
  position: relative;
  text-align: center;
  padding: clamp(1.35rem, 2.5vw, 1.65rem) clamp(0.85rem, 2vw, 1rem) clamp(1.15rem, 2vw, 1.35rem);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(var(--rich-rgb), 0.08);
  box-shadow: 0 8px 28px rgba(var(--royal-rgb), 0.04);
  overflow: hidden;
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.4s var(--ease),
    background 0.4s var(--ease);
}

.about-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(var(--lav-rgb), 0.22) 50%,
    transparent 58%
  );
  transform: translateX(-120%);
  transition: transform 0.65s var(--ease);
  pointer-events: none;
}

.about-stat-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(var(--rich-rgb), 0.28);
  box-shadow:
    0 20px 44px rgba(var(--royal-rgb), 0.1),
    0 0 0 1px rgba(var(--lav-rgb), 0.35);
}

.about-stat-card:hover::before {
  transform: translateX(120%);
}

.about-stat-card:hover .stat-orbit {
  transform: scale(1.06);
}

.about-stat-card:hover .stat-orbit__dash {
  color: rgba(var(--rich-rgb), 0.9);
  animation-duration: 5s;
}

.about-stat-card:hover .stat-orbit__icon {
  background: linear-gradient(145deg, var(--rich), var(--accent-top-green));
  border-color: transparent;
  box-shadow: 0 10px 24px rgba(var(--rich-rgb), 0.28);
  transform: scale(1.05);
}

.about-stat-card:hover .stat-orbit__icon svg {
  color: #fff;
  transform: scale(1.08);
}

.about-stat-card:hover .stat-number {
  color: var(--rich);
  transform: scale(1.04);
}

.about-stat-card:hover .stat-label {
  color: var(--royal);
}

/* Icon + rotating dashed ring */
.stat-orbit {
  position: relative;
  width: 84px;
  height: 84px;
  margin: 0 auto 1rem;
  transition: transform 0.4s var(--ease);
}

.stat-orbit__dash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(var(--rich-rgb), 0.55);
  animation: statDashSpin 16s linear infinite;
  animation-direction: var(--spin-dir, normal);
  animation-duration: var(--spin-dur, 16s);
  transition: color 0.35s var(--ease);
}

.about-stat-card:nth-child(1) {
  --spin-dur: 14s;
  --spin-dir: normal;
}

.about-stat-card:nth-child(2) {
  --spin-dur: 18s;
  --spin-dir: reverse;
}

.about-stat-card:nth-child(3) {
  --spin-dur: 15s;
  --spin-dir: normal;
}

.about-stat-card:nth-child(4) {
  --spin-dur: 20s;
  --spin-dir: reverse;
}

@keyframes statDashSpin {
  to {
    transform: rotate(360deg);
  }
}

.stat-orbit__icon {
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(160deg, #ffffff, #f3faf6);
  border: 1px solid rgba(var(--rich-rgb), 0.1);
  box-shadow: 0 6px 18px rgba(var(--royal-rgb), 0.06);
  transition:
    transform 0.4s var(--ease),
    background 0.4s var(--ease),
    border-color 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}

.stat-orbit__icon svg {
  width: 26px;
  height: 26px;
  color: var(--royal);
  transition:
    transform 0.4s var(--ease),
    color 0.35s var(--ease);
}

.about-stats .stat-number {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 2.8vw, 2.15rem);
  color: var(--royal);
  line-height: 1;
  letter-spacing: -0.02em;
  transition:
    transform 0.4s var(--ease),
    color 0.35s var(--ease);
}

.about-stats .stat-number .count-up {
  display: inline-block;
  min-width: 1ch;
}

.about-stats .stat-number .suffix {
  font-size: 0.62em;
  font-weight: 700;
  color: var(--rich);
}

.about-stats .stat-label {
  margin: 0.55rem 0 0;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--muted);
  max-width: 11rem;
  margin-inline: auto;
  transition: color 0.35s var(--ease);
}

@media (max-width: 900px) {
  .about-content {
    text-align: center;
  }

  .about-eyebrow {
    justify-content: center;
  }

  .about-title {
    margin-inline: auto;
  }

  .about-text {
    margin-inline: auto;
  }

  .about-trust-pills {
    justify-content: center;
  }

  .about-content-cta {
    display: flex;
    justify-content: center;
  }

  .about-stats .stat-number {
    font-size: clamp(28px, 7vw, 34px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trade-map-card:hover {
    transform: none;
  }
  .floating-badge,
  .about-mini-card {
    animation: none !important;
  }
  .trade-map-card.is-visible .trade-map-card__watermark,
  .trade-map-card.is-visible .route-line,
  .trade-map-card.is-visible .location-pin {
    animation: none !important;
  }
  .trade-map-svg .route-line {
    opacity: 0.5 !important;
  }

  .stat-orbit__dash {
    animation: none !important;
  }

  .about-stat-card:hover {
    transform: none;
  }

  .about-stat-card:hover .stat-orbit,
  .about-stat-card:hover .stat-orbit__icon,
  .about-stat-card:hover .stat-orbit__icon svg,
  .about-stat-card:hover .stat-number {
    transform: none;
  }
}
/* Products */
.products {
  background: var(--warm);
}

.product-grid-full {
  margin-top: 2.75rem;
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 700px) {
  .product-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .product-grid-full {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(var(--rich-rgb), 0.08);
  box-shadow: var(--shadow);
  position: relative;
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s,
    border-color 0.45s;
  --gx: 50%;
  --gy: 50%;
}

.product-card::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    420px circle at var(--gx) var(--gy),
    rgba(var(--lav-rgb), 0.35),
    transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  z-index: 1;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow:
    var(--shadow-strong),
    0 0 0 2px rgba(var(--lav-rgb), 0.45);
  border-color: rgba(76, 140, 90, 0.25);
}

.product-card:hover::after {
  opacity: 1;
}

.product-visual {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  z-index: 0;
}

.pv-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(var(--royal-rgb), 0.88);
  color: #fff;
}

.pv-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 25%,
    rgba(var(--royal-rgb), 0.35) 100%
  );
  z-index: 2;
  opacity: 0.75;
  transition: opacity 0.4s;
}

.product-card:hover .pv-overlay {
  opacity: 0.45;
}

.pv-art {
  position: absolute;
  inset: 0;
  transform: scale(1.02);
  transition: transform 0.7s var(--ease);
}

.product-card:hover .pv-art {
  transform: scale(1.08);
}

/* Product art blocks */
.pv-nicotine {
  background: linear-gradient(145deg, #fff6e6, #ffd27a, #c67c18);
}
.pv-nicotine .bot {
  position: absolute;
  width: 28%;
  height: 58%;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
  border-radius: 14px 14px 10px 10px / 28px 28px 12px 12px;
  background: linear-gradient(90deg, #7a3a0a, #d4881c, #f4b03a);
  box-shadow: 0 16px 30px rgba(var(--royal-rgb), 0.12);
}
.pv-nicotine .droplet {
  position: absolute;
  width: 12px;
  height: 18px;
  border-radius: 50% 50% 50% 0;
  background: rgba(255, 220, 120, 0.9);
  right: 28%;
  top: 22%;
  transform: rotate(-25deg);
}

.pv-bagasse {
  background: linear-gradient(145deg, #eef8f2, #d4f0dd, #b8e0c4);
}
.pv-bagasse .eco-plate {
  position: absolute;
  width: 42%;
  height: 10%;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #dceee4);
  left: 18%;
  bottom: 40%;
  box-shadow: 0 10px 18px rgba(var(--royal-rgb), 0.12);
}
.pv-bagasse .eco-bowl {
  position: absolute;
  width: 35%;
  height: 22%;
  border-radius: 50% 50% 45% 45%;
  background: linear-gradient(180deg, #f7fff9, #c8e8d0);
  right: 18%;
  bottom: 22%;
  box-shadow: inset 0 -10px 0 rgba(0, 0, 0, 0.05);
}

.pv-diary {
  background: linear-gradient(135deg, #e6f5ec, #a8dcc0, #3d6b4f);
}
.pv-diary .book-cover {
  position: absolute;
  inset: 18% 22% 18% 22%;
  border-radius: 8px;
  background: linear-gradient(160deg, #1e3d2b, #3d6b4f);
  box-shadow:
    8px 16px 30px rgba(0, 0, 0, 0.18),
    inset 4px 0 0 rgba(255, 255, 255, 0.15);
}
.pv-diary .book-lines {
  position: absolute;
  left: 32%;
  right: 32%;
  top: 38%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow:
    0 10px 0 rgba(255, 255, 255, 0.15),
    0 20px 0 rgba(255, 255, 255, 0.1);
}

.pv-honey {
  background: linear-gradient(145deg, #fff8e6, #ffe08a, #ffc53d);
}
.pv-honey .h-jar {
  position: absolute;
  width: 32%;
  height: 48%;
  left: 50%;
  bottom: 16%;
  transform: translateX(-50%);
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(90deg, #ffd86b, #ffbd2e);
  box-shadow: inset 0 -12px 0 rgba(0, 0, 0, 0.08);
}
.pv-honey .h-drip {
  position: absolute;
  width: 11px;
  height: 16px;
  border-radius: 50% 50% 50% 0;
  background: #ffc53d;
  left: 58%;
  top: 24%;
  transform: rotate(12deg);
}

.product-body {
  padding: 1.65rem 1.75rem 1.85rem;
  position: relative;
  z-index: 2;
}

.product-name {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
}

.product-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.tag-row {
  list-style: none;
  margin: 1.1rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-row li {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(var(--lav-rgb), 0.25);
  color: var(--rich);
}

.detail-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.45rem;
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--royal);
  text-decoration: none;
}

.detail-link .fa-arrow-right {
  transition: transform 0.35s var(--ease);
}

.detail-link:hover .fa-arrow-right {
  transform: translateX(8px);
}

/* Bagasse range */
.bagasse {
  background: linear-gradient(
    175deg,
    #1e3d2b 0%,
    #3d6b4f 35%,
    #3d6b4f 70%,
    #eef8f2 100%
  );
  color: #fff;
  overflow: hidden;
}

.bagasse-deco-leaf {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50% 20% 60% 25%;
  background: rgba(76, 140, 90, 0.16);
  filter: blur(2px);
  opacity: 0.45;
}

.leaf-l {
  top: 10%;
  left: -5%;
  animation: float 10s ease-in-out infinite;
}

.leaf-r {
  bottom: 20%;
  right: -6%;
  animation: floatAlt 11s ease-in-out infinite;
}

.bagasse-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bblob {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  background: rgba(var(--lav-rgb), 0.25);
  top: 8%;
  right: 5%;
  animation: float 12s ease-in-out infinite;
}

.bblob.delayed {
  left: 0;
  bottom: 0;
  top: auto;
  background: rgba(76, 140, 90, 0.2);
  animation-delay: -4s;
}

.bagasse-intro {
  position: relative;
  z-index: 2;
}

.section-title.invert {
  color: #fff;
}

.lead-invert {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.08rem;
  max-width: 52rem;
}

.badge-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1.75rem 0 0.75rem;
}

.eco-badge {
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.badge-cloud.show .slide-up-badge {
  opacity: 1;
  animation: fadeUp var(--reveal-duration) var(--ease) forwards;
}

.delay-b1 { animation-delay: 0.06s; }
.delay-b2 { animation-delay: 0.12s; }
.delay-b3 { animation-delay: 0.18s; }
.delay-b4 { animation-delay: 0.24s; }
.delay-b5 { animation-delay: 0.3s; }
.delay-b6 { animation-delay: 0.36s; }
.delay-b7 { animation-delay: 0.42s; }

.small-note-inv {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.bagasse-cta-row {
  margin-top: 1.5rem;
}

.bagasse-cta-row .btn-pill-primary {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.bagasse-grid {
  position: relative;
  z-index: 2;
  margin-top: 3rem;
  display: grid;
  gap: 1.35rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.bagasse-cat {
  background: rgba(255, 255, 255, 0.93);
  color: var(--text);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.bagasse-cat.wide {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .bagasse-cat.wide {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    align-items: center;
    gap: 1.35rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .bagasse-cat.float-h {
    animation: floatAlt 10s ease-in-out infinite alternate;
  }
  .delay-f1 { animation-delay: -2s; }
  .delay-f2 { animation-delay: -4s; }
}

.bc-media {
  aspect-ratio: 16 / 11;
  background: linear-gradient(145deg, #eef8f2, #e6f9ec);
}

.bagasse-cat.wide .bc-media {
  min-height: 200px;
}

.bc-art {
  width: 100%;
  height: 100%;
  position: relative;
}

.bc-art.plates::before,
.bc-art.plates::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.7);
}

.bc-art.plates::before {
  width: 62%;
  height: 26%;
  left: 10%;
  top: 30%;
  background: linear-gradient(180deg, #fff, #d8ede3);
}

.bc-art.plates::after {
  width: 45%;
  height: 18%;
  right: 12%;
  top: 18%;
  background: linear-gradient(180deg, #f2fff6, #c8efd4);
}

.bc-art.trays::before {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 32%;
  height: 32%;
  border-radius: 12px;
  border: 3px solid rgba(var(--rich-rgb), 0.12);
  background: repeating-linear-gradient(
    -60deg,
    rgba(244, 240, 255, 1),
    rgba(244, 240, 255, 1) 12px,
    rgba(231, 222, 255, 1) 12px,
    rgba(231, 222, 255, 1) 24px
  );
}

.bc-art.clams::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 54%;
  left: 20%;
  top: 20%;
  border-radius: 50% / 58%;
  border: 10px solid #fff;
  background: repeating-linear-gradient(90deg, #e8fde9, #e8fde9 8px, #d9f8dd 8px 16px);
  box-shadow:
    inset 0 -6px rgba(var(--royal-rgb), 0.08),
    0 14px 25px rgba(var(--royal-rgb), 0.12);
}

.bc-art.bowls::before {
  content: "";
  position: absolute;
  width: 46%;
  height: 30%;
  left: 27%;
  bottom: 25%;
  border-radius: 50% / 62%;
  background: radial-gradient(#fffaf2, #e8dfd2);
}

.bc-art.brown::before {
  content: "";
  position: absolute;
  width: 70%;
  height: 16%;
  left: 15%;
  top: 40%;
  border-radius: 8px;
  background: linear-gradient(90deg, #7a5842, #9c7456, #cbb09a);
  box-shadow: 0 8px 20px rgba(var(--royal-rgb), 0.12);
}

.bc-art.dona::before {
  content: "";
  position: absolute;
  width: 34%;
  height: 52%;
  left: 33%;
  top: 16%;
  border-radius: 50% / 62%;
  background: radial-gradient(at 60% 20%, rgba(255, 255, 255, 0.95), transparent 52%),
    linear-gradient(#fff4e8, #e8cfa4);
}

.bc-art.sipper::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 42%;
  right: 12%;
  top: 18%;
  border-radius: 12px;
  border: 3px solid rgba(255, 255, 255, 0.9);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(230, 240, 255, 0.85));
  box-shadow: 0 12px 24px rgba(var(--royal-rgb), 0.1);
}

.bc-title {
  margin: 0;
  padding: 1rem 1.25rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--royal);
}

.bc-desc {
  margin: 0;
  padding: 0 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.bc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 1rem 1.25rem 1.25rem;
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--rich);
  text-decoration: none;
}

.bc-link .fa-angle-right {
  transition: transform 0.3s var(--ease);
}

.bc-link:hover .fa-angle-right {
  transform: translateX(5px);
}

.bagasse-cat.wide .bc-text {
  padding: 1.25rem 1.5rem 1.5rem;
}

/* Sustainability */
.sustain-wrap {
  background: linear-gradient(
    170deg,
    var(--lav-bg) 0%,
    var(--warm) 45%,
    #e8f6ec 100%
  );
  position: relative;
  overflow: hidden;
}

.sustain-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sustain-particles .sp {
  position: absolute;
  opacity: 0.18;
  color: var(--green);
  font-size: 1.4rem;
}

.sustain-blobs::before,
.sustain-blobs::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.35;
  z-index: 0;
}

.sustain-blobs::before {
  background: rgba(var(--lav-rgb), 0.45);
  top: -10%;
  right: -5%;
}
.sustain-blobs::after {
  background: rgba(76, 140, 90, 0.25);
  bottom: -12%;
  left: -6%;
}

.sustain-grid {
  position: relative;
  z-index: 2;
  margin-top: 2.5rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .sustain-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.sustain-card {
  text-align: center;
  padding: 2rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(var(--lav-rgb), 0.25);
  box-shadow: var(--shadow);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    outline 0.4s;
  outline: 1px solid transparent;
}

.sustain-card h3 {
  margin: 0.75rem 0 0.45rem;
  font-size: 1.1rem;
  color: var(--royal);
}

.sustain-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.sus-ico {
  margin: 0 auto;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.55), transparent 62%),
    linear-gradient(
      156deg,
      rgba(var(--lav-rgb), 0.55),
      rgba(var(--rich-rgb), 0.35),
      rgba(76, 140, 90, 0.45)
    );
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: #fff;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.sustain-card:hover .sus-ico {
  transform: scale(1.1);
}

.sustain-card:hover {
  transform: translateY(-8px);
  box-shadow:
    var(--shadow-strong),
    0 0 0 3px rgba(76, 140, 90, 0.25);
}

/* Certificates */
.certs {
  background: var(--warm);
}

.cert-grid-full {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .cert-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.doc-card {
  padding: 2rem 1.75rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
}

.doc-card h3 {
  margin: 1rem 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--royal);
}

.doc-card p {
  flex: 1;
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

.shimmer-wrap {
  display: inline-flex;
}

.doc-ico i {
  color: var(--rich);
}

.bounce-on-hover {
  transition: transform 0.35s ease;
}

.btn-doc:hover .bounce-on-hover {
  transform: translateY(4px);
}

@keyframes docBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-4px);
  }
}

.doc-card:hover .doc-ico i {
  animation: docBounce 0.7s ease;
}

.doc-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.btn-doc {
  flex: 1;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s;
}

.btn-doc.view {
  border: 1px solid rgba(var(--rich-rgb), 0.2);
  background: rgba(255, 255, 255, 0.75);
  color: var(--royal);
}

.btn-doc.dl {
  background: linear-gradient(135deg, var(--royal), var(--rich));
  color: #fff;
  box-shadow: 0 10px 22px rgba(var(--rich-rgb), 0.25);
}

.btn-doc::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    transparent 40%,
    rgba(255, 255, 255, 0.45),
    transparent 60%
  );
  transform: translateX(-80%);
  transition: transform 0.7s var(--ease);
}

.btn-doc:hover::after {
  transform: translateX(80%);
}

.btn-doc:hover {
  transform: translateY(-2px);
}

/* Contact */
.contact.dark {
  background: linear-gradient(
    165deg,
    #152a1f 0%,
    var(--royal) 38%,
    #3d6b4f 100%
  );
  color: rgba(255, 255, 255, 0.9);
}

.contact-split {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 960px) {
  .contact-split {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    align-items: start;
  }
}

.contact-card.glass-dark {
  background: rgba(10, 36, 28, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin: 0 0 0.75rem;
  color: #fff;
}

.contact-lead {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.78);
}

.contact-address p {
  margin: 0 0 0.75rem;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  line-height: 1.5;
}

.contact-address a {
  color: var(--lav);
  text-decoration: none;
}

.contact-address a:hover {
  text-decoration: underline;
}

.whatsapp-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1.25rem;
  padding: 0.85rem 1.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #25d366, #128c43);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(18, 140, 67, 0.35);
}

.whatsapp-pulse {
  animation: whatsappPulse 2.5s ease-out infinite;
}

.map-placeholder {
  margin-top: 1.75rem;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.map-placeholder i {
  font-size: 1.75rem;
  color: var(--lav);
}

/* Form */
.glass-form {
  background: rgba(10, 36, 28, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.form-field-group {
  border: none;
  margin: 0;
  padding: 0;
}

.form-legend-visible {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.f-field {
  display: block;
  margin-bottom: 1.1rem;
}

.f-field > span {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.38rem;
  color: rgba(255, 255, 255, 0.78);
}

.f-field input,
.f-field select,
.f-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(
    160deg,
    rgba(var(--rich-rgb), 0.45),
    rgba(var(--royal-rgb), 0.35)
  );
  color: #fff;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
}

.f-field input::placeholder,
.f-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.f-field input:focus,
.f-field select:focus,
.f-field textarea:focus {
  outline: none;
  border-color: rgba(var(--lav-rgb), 0.75);
  box-shadow: 0 0 0 4px rgba(var(--lav-rgb), 0.25);
  transform: translateY(-1px);
}

.f-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16'%3E%3Cpath fill='%239dd4b8' d='M4 6h8l-4 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.btn-submit-msg {
  width: 100%;
  margin-top: 0.25rem;
  padding: 1rem 1.25rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  background: linear-gradient(135deg, var(--lav), #fff, var(--lav));
  background-size: 200% auto;
  color: var(--royal);
  box-shadow: 0 16px 40px rgba(var(--lav-rgb), 0.35);
  transition:
    transform 0.35s var(--ease),
    background-position 0.6s linear,
    box-shadow 0.35s;
}

.btn-submit-msg:hover {
  transform: translateY(-3px);
  background-position: 100% center;
  box-shadow: 0 22px 50px rgba(var(--lav-rgb), 0.45);
}

.form-status {
  margin: 0.85rem 0 0;
  min-height: 1.4em;
  font-size: 0.9rem;
}

.form-status.ok {
  color: #9ef0b4;
}

.form-status.err {
  color: #ffb4c4;
}

/* Footer */
@keyframes footerGlowDrift {
  0%,
  100% {
    opacity: 0.45;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 0.72;
    transform: translate3d(2%, -3%, 0) scale(1.04);
  }
}

@keyframes footerBtnShine {
  0% {
    transform: translateX(-130%) skewX(-14deg);
  }
  100% {
    transform: translateX(220%) skewX(-14deg);
  }
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3.25rem, 6vw, 4.25rem) 0 0;
  background:
    radial-gradient(120% 80% at 0% 100%, rgba(var(--gold-rgb), 0.14), transparent 55%),
    radial-gradient(90% 70% at 100% 0%, rgba(var(--lav-rgb), 0.12), transparent 50%),
    linear-gradient(168deg, #1e3d2b 0%, #152a1f 48%, #0f1f16 100%);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(var(--lav-rgb), 0.14) 1px, transparent 0),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size:
    24px 24px,
    56px 56px,
    56px 56px;
}

.site-footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--gold-rgb), 0.45) 20%,
    rgba(var(--lav-rgb), 0.55) 50%,
    rgba(var(--gold-rgb), 0.45) 80%,
    transparent
  );
  pointer-events: none;
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-columns {
  display: grid;
  gap: 2rem 1.25rem;
  align-items: start;
  grid-template-columns: 1fr 1fr;
}

.footer-columns .fc-brand,
.footer-columns .fc-inquiry-block {
  grid-column: 1 / -1;
}

.footer-columns .fc {
  min-width: 0;
}

@media (min-width: 960px) {
  .footer-columns {
    grid-template-columns: 1.35fr 1fr 1fr 1.15fr;
    gap: clamp(1.75rem, 3vw, 2.75rem);
  }

  .footer-columns .fc-brand,
  .footer-columns .fc-inquiry-block {
    grid-column: auto;
  }
}

.fc-brand {
  position: relative;
}

.fc-brand::before {
  content: "";
  position: absolute;
  top: -18%;
  left: -8%;
  width: min(280px, 80%);
  height: 140px;
  background: radial-gradient(circle, rgba(var(--rich-rgb), 0.18), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
  animation: footerGlowDrift 9s ease-in-out infinite;
}

.fc-brand img {
  position: relative;
  z-index: 1;
  display: block;
  max-height: 118px;
  width: auto;
  max-width: min(240px, 100%);
  padding: 0.8rem 1.15rem;
  object-fit: contain;
  object-position: left center;
  background: #fff;
  border-radius: 12px;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.fc-brand:hover img {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.12);
}

.fc-brand .ft-blurb {
  margin-top: 0.85rem;
}

.ft-tag {
  position: relative;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0.85rem 0 0.65rem;
  letter-spacing: 0.01em;
}

.footer-social-row {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.15rem;
}

.ft-soc {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
  transition:
    transform 0.38s var(--ease),
    background 0.38s ease,
    border-color 0.38s ease,
    box-shadow 0.38s ease,
    color 0.38s ease;
}

.ft-soc::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border: 1px solid rgba(var(--lav-rgb), 0.35);
  opacity: 0;
  transform: scale(0.88);
  transition:
    opacity 0.38s ease,
    transform 0.38s var(--ease);
}

.ft-soc:hover {
  transform: translateY(-5px) scale(1.06);
  background: linear-gradient(145deg, rgba(var(--rich-rgb), 0.55), rgba(var(--rich-rgb), 0.75));
  border-color: rgba(var(--lav-rgb), 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  color: #fff;
}

.ft-soc:hover::before {
  opacity: 1;
  transform: scale(1.08);
}

.fc-title {
  position: relative;
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin: 0 0 1.15rem;
  padding-bottom: 0.55rem;
  color: var(--lav);
  transition: color 0.35s ease;
}

.fc-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(var(--lav-rgb), 0.35));
  transition: width 0.45s var(--ease);
}

.fc:hover .fc-title {
  color: #fff;
}

.fc:hover .fc-title::after {
  width: 3.25rem;
}

.ft-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-links li {
  margin-bottom: 0.62rem;
  font-size: 0.95rem;
  line-height: 1.45;
}

.ft-links.muted li {
  color: rgba(255, 255, 255, 0.72);
}

.ft-contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.ft-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0 !important;
}

.ft-contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 0.82rem;
  color: var(--lav);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.ft-contact-item:hover .ft-contact-icon {
  transform: translateY(-2px) scale(1.05);
  color: #fff;
  background: linear-gradient(145deg, rgba(var(--rich-rgb), 0.45), rgba(var(--rich-rgb), 0.65));
  border-color: rgba(var(--lav-rgb), 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ft-contact-text {
  padding-top: 0.35rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.ft-contact-item a {
  padding-top: 0.35rem;
  align-self: center;
}

.ft-contact-item a::before {
  display: none;
}

.ft-links a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  position: relative;
  padding: 0.12rem 0;
  transition:
    color 0.32s var(--ease),
    transform 0.32s var(--ease);
}

.ft-links a::before {
  content: "";
  flex-shrink: 0;
  width: 0;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-soft), var(--lav));
  opacity: 0;
  transform: scale(0.4);
  transition:
    width 0.32s var(--ease),
    opacity 0.32s ease,
    transform 0.32s var(--ease);
}

.ft-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--lav), var(--green-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.38s var(--ease);
}

.ft-links a:hover {
  color: #fff;
  transform: translateX(6px);
}

.ft-links a:hover::before {
  width: 6px;
  opacity: 1;
  transform: scale(1);
}

.ft-links a:hover::after {
  transform: scaleX(1);
}

.footer-social-icons {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.icon-lift {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.45rem;
  transition:
    transform 0.35s var(--ease),
    color 0.35s;
  text-decoration: none;
}

.icon-lift:hover {
  transform: translateY(-6px);
  color: var(--lav);
}

.legals {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.88rem;
}

.legals a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
}

.legals a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: clamp(2rem, 4vw, 2.75rem);
  padding: 0 0 clamp(1.5rem, 3vw, 2rem);
  text-align: center;
  font-size: 0.88rem;
}

/* FAB controls */
.fab-backtop {
  position: fixed;
  right: 1.25rem;
  bottom: 6.75rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    155deg,
    rgba(var(--lav-rgb), 0.85),
    rgba(var(--rich-rgb), 0.85)
  );
  color: #fff;
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    visibility 0.35s;
  z-index: 3500;
  box-shadow: 0 12px 32px rgba(var(--royal-rgb), 0.35);
}

.fab-backtop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-backtop:hover {
  transform: translateY(-4px);
}

.fab-whatsapp-float {
  position: fixed;
  right: 1.25rem;
  bottom: 1.35rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.85rem;
  text-decoration: none;
  box-shadow:
    0 16px 40px rgba(18, 140, 67, 0.45),
    0 0 0 0 rgba(37, 211, 102, 0.45);
  z-index: 3500;
  animation: whatsappPulse 2.75s ease-out infinite;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}

.fab-whatsapp-float:hover {
  transform: scale(1.08);
}

/* Mobile call FAB — left side, mirrors WhatsApp float */
.fab-call-float {
  position: fixed;
  left: 1.25rem;
  bottom: 1.35rem;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: none;
  place-items: center;
  background: linear-gradient(145deg, var(--royal), var(--rich));
  color: #fff;
  font-size: 1.45rem;
  text-decoration: none;
  box-shadow:
    0 16px 40px rgba(var(--royal-rgb), 0.4),
    0 0 0 0 rgba(var(--rich-rgb), 0.4);
  z-index: 3500;
  animation: whatsappPulse 2.75s ease-out infinite;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s;
}

.fab-call-float:hover {
  transform: scale(1.08);
}

@media (max-width: 959px) {
  .fab-call-float {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fab-call-float {
    animation: none;
  }
}

/* Intersection Observer — scroll reveal helpers */
.io-reveal,
.io-slide-up,
.io-slide-left,
.io-slide-right,
.reveal-scale {
  opacity: 0;
  will-change: opacity, transform;
}

.io-reveal,
.io-slide-up {
  transform: translate3d(0, 40px, 0);
}

.io-slide-left {
  transform: translate3d(-56px, 0, 0);
}

.io-slide-right {
  transform: translate3d(56px, 0, 0);
}

.reveal-scale {
  transform: scale(0.94);
}

.io-reveal.show,
.io-slide-up.show,
.io-slide-left.show,
.io-slide-right.show,
.reveal-scale.show,
.reveal-scale.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity var(--reveal-duration) var(--ease),
    transform var(--reveal-duration) var(--ease);
}

.hero-showcase.show .reveal-child {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0);
  animation: fadeUp 0.95s var(--ease) forwards;
}

.io-reveal.io-delay-1,
.io-slide-up.io-delay-1,
.io-slide-left.io-delay-1,
.io-slide-right.io-delay-1,
.reveal-scale.io-delay-1 {
  transition-delay: var(--stagger);
}

.io-reveal.io-delay-2,
.io-slide-up.io-delay-2,
.io-slide-left.io-delay-2,
.io-slide-right.io-delay-2,
.reveal-scale.io-delay-2 {
  transition-delay: calc(var(--stagger) * 2);
}

.io-reveal.io-delay-3,
.io-slide-up.io-delay-3,
.io-slide-left.io-delay-3,
.io-slide-right.io-delay-3,
.reveal-scale.io-delay-3 {
  transition-delay: calc(var(--stagger) * 3);
}

.io-reveal.io-stagger,
.io-slide-up.io-stagger,
.io-slide-left.io-stagger,
.io-slide-right.io-stagger,
.reveal-scale.io-stagger {
  transition-delay: var(--stagger);
}

.io-reveal.io-stagger-2,
.io-slide-up.io-stagger-2,
.io-slide-left.io-stagger-2,
.io-slide-right.io-stagger-2,
.reveal-scale.io-stagger-2 {
  transition-delay: calc(var(--stagger) * 2);
}

.io-reveal.io-stagger-3,
.io-slide-up.io-stagger-3,
.io-slide-left.io-stagger-3,
.io-slide-right.io-stagger-3,
.reveal-scale.io-stagger-3 {
  transition-delay: calc(var(--stagger) * 3);
}

.io-reveal.io-stagger-4,
.io-slide-up.io-stagger-4,
.io-slide-left.io-stagger-4,
.io-slide-right.io-stagger-4,
.reveal-scale.io-stagger-4 {
  transition-delay: calc(var(--stagger) * 4);
}

.io-reveal.io-stagger-5,
.io-slide-up.io-stagger-5,
.io-slide-left.io-stagger-5,
.io-slide-right.io-stagger-5,
.reveal-scale.io-stagger-5 {
  transition-delay: calc(var(--stagger) * 5);
}

@media (prefers-reduced-motion: reduce) {
  .io-reveal,
  .io-slide-up,
  .io-slide-left,
  .io-slide-right,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

.reveal-child {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 0.9s var(--ease),
    transform 0.9s var(--ease);
}

.delay-1 {
  transition-delay: 0.12s;
}
.delay-2 {
  transition-delay: 0.24s;
}
.delay-3 {
  transition-delay: 0.36s;
}

.fade-field {
  opacity: 0;
  transform: translateY(16px);
}

.glass-form.show .fade-field {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease);
}

.glass-form.show label.f-field.fade-field:nth-of-type(1) { transition-delay: 0.05s; }
.glass-form.show label.f-field.fade-field:nth-of-type(2) { transition-delay: 0.12s; }
.glass-form.show label.f-field.fade-field:nth-of-type(3) { transition-delay: 0.19s; }
.glass-form.show label.f-field.fade-field:nth-of-type(4) { transition-delay: 0.26s; }
.glass-form.show label.f-field.fade-field:nth-of-type(5) { transition-delay: 0.33s; }

.glass-form .btn-submit-msg {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s var(--ease),
    transform 0.65s var(--ease),
    box-shadow 0.35s,
    background-position 0.6s linear;
}

.glass-form.show .btn-submit-msg {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

/* Repeating product line-art watermark (tiles â€” inspired by premium export sites; custom icons) */
.product-line-pattern-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--product-line-pattern);
  background-size: clamp(220px, 26vw, 300px) clamp(220px, 26vw, 300px);
  background-repeat: repeat;
  background-position: 0 0;
}

@media (prefers-reduced-motion: reduce) {
  .product-line-pattern-layer {
    opacity: 0.82;
  }
}

.product-line-pattern-layer--muted {
  opacity: 0.72;
}

.product-line-pattern-layer--bold {
  opacity: 1;
  background-size: clamp(260px, 30vw, 340px) clamp(260px, 30vw, 340px);
}

/* ===== Homepage mockup sections (below hero) ===== */
.value-strip-section {
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}

.value-strip-inner {
  width: min(100% - clamp(1rem, 4vw, 3rem), 1480px);
  margin-inline: auto;
  padding: 1.75rem clamp(14px, 3vw, 22px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 900px) {
  .value-strip-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.value-strip-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1rem;
  border-right: none;
  border-radius: 12px;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease);
}

.value-strip-item:hover {
  transform: translateY(-4px);
  background: rgba(238, 248, 242, 0.45);
}

@media (min-width: 900px) {
  .value-strip-item:not(:last-child) {
    border-right: 1px solid rgba(var(--rich-rgb), 0.1);
  }
}

@media (max-width: 899px) {
  .value-strip-item:not(:last-child) {
    border-bottom: 1px solid rgba(var(--rich-rgb), 0.08);
  }
}

.value-strip-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--border-soft);
  display: grid;
  place-items: center;
  color: var(--rich);
  font-size: 1.15rem;
  background: linear-gradient(
    155deg,
    #ffffff,
    rgba(238, 248, 242, 0.95)
  );
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    border-color 0.35s var(--ease),
    color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.value-strip-item:hover .value-strip-icon {
  transform: scale(1.08);
  color: #fff;
  border-color: transparent;
  background: linear-gradient(145deg, var(--rich), var(--accent-top-green));
  box-shadow: 0 8px 22px rgba(var(--rich-rgb), 0.25);
}

.value-strip-title {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--royal);
  transition:
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.value-strip-item:hover .value-strip-title {
  color: var(--rich);
  transform: translateX(3px);
}

.value-strip-desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
  transition:
    color 0.35s var(--ease),
    transform 0.35s var(--ease);
}

.value-strip-item:hover .value-strip-desc {
  color: rgba(26, 46, 34, 0.72);
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .value-strip-item:hover {
    transform: none;
  }

  .value-strip-item:hover .value-strip-icon,
  .value-strip-item:hover .value-strip-title,
  .value-strip-item:hover .value-strip-desc {
    transform: none;
  }
}

/* ===== Featured Products â€” premium catalogue ===== */
.featured-products {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 38%, #f2f7f4 100%);
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
}

.featured-products-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.featured-products-bg .product-line-pattern-layer {
  opacity: 0.45;
}

.fp-blob {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.35;
}

.fp-blob-a {
  width: min(420px, 55vw);
  height: 320px;
  background: rgba(var(--lav-rgb), 0.2);
  top: -120px;
  right: -80px;
}

.fp-blob-b {
  width: 300px;
  height: 300px;
  background: rgba(var(--rich-rgb), 0.1);
  bottom: 5%;
  left: -100px;
}

.products-container {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, 1480px);
  margin-inline: auto;
  padding-inline: clamp(12px, 3vw, 28px);
}

.featured-products-head {
  max-width: 720px;
  margin: 0 auto clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.fp-head-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.fp-head-rule__line {
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--rich-rgb), 0.22), transparent);
}

.fp-head-rule__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 0.9rem;
  color: var(--accent-top-green);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(var(--rich-rgb), 0.25);
  box-shadow: 0 8px 24px rgba(var(--deep-rgb), 0.06);
}

.featured-products .section-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rich);
}

.featured-products .section-title.fp-main-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 3.35rem);
  font-weight: 700;
  line-height: 1.08;
  color: #1e3d2b;
  letter-spacing: -0.02em;
}

.featured-products .section-subtitle {
  margin: 1rem auto 0;
  max-width: 640px;
  font-size: clamp(0.95rem, 1.55vw, 1.06rem);
  line-height: 1.7;
  color: #6b637a;
}

.featured-products .product-grid {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .featured-products .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1140px) {
  .featured-products .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Card shell */
.featured-products .product-card {
  --card-accent: #3d6b4f;
  --card-accent-rgb: var(--rich-rgb);
  --card-tint: #f0ebe3;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow:
    0 4px 6px rgba(var(--deep-rgb), 0.02),
    0 18px 48px rgba(var(--deep-rgb), 0.06);
  --x: 50%;
  --y: 40%;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.featured-products .product-card::after {
  display: none;
}

.featured-products .product-card::before {
  display: none;
}

.featured-products .product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(var(--card-accent-rgb), 0.22);
  box-shadow:
    0 8px 16px rgba(var(--deep-rgb), 0.04),
    0 28px 64px rgba(var(--deep-rgb), 0.12);
}

.featured-products .product-card--nicotine {
  --card-accent: #c97812;
  --card-accent-rgb: 201, 120, 18;
  --card-tint: #fff8ee;
}

.featured-products .product-card--bagasse {
  --card-accent: #8fa67a;
  --card-accent-rgb: 143, 166, 122;
  --card-tint: #f4f7ef;
}

.featured-products .product-card--diary {
  --card-accent: #c4a574;
  --card-accent-rgb: var(--gold-rgb);
  --card-tint: #faf5ec;
}

.featured-products .product-card--honey {
  --card-accent: #a86342;
  --card-accent-rgb: 168, 99, 66;
  --card-tint: #fff9ec;
}

.featured-products .card-glow {
  display: none;
}

/* Visual panel */
.featured-products .product-card__visual {
  position: relative;
  height: clamp(200px, 26vw, 240px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card-tint);
}

.featured-products .product-card__photo {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.featured-products .product-card:hover .product-card__photo {
  transform: scale(1.04);
}

.featured-products .product-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 42%, rgba(var(--deep-rgb), 0.06) 100%);
}

.featured-products .product-card__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 20% 15%, rgba(255, 255, 255, 0.85), transparent 55%),
    radial-gradient(ellipse 60% 50% at 85% 80%, rgba(var(--card-accent-rgb), 0.18), transparent 50%),
    linear-gradient(165deg, var(--card-tint) 0%, rgba(var(--card-accent-rgb), 0.12) 100%);
}

.featured-products .product-card__mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle at 2px 2px, rgba(var(--card-accent-rgb), 0.12) 1px, transparent 0);
  background-size: 18px 18px;
}

.featured-products .product-card__icon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(88px, 12vw, 108px);
  height: clamp(88px, 12vw, 108px);
  border-radius: 50%;
  font-size: clamp(2.2rem, 4vw, 2.75rem);
  color: var(--card-accent);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(var(--card-accent-rgb), 0.12);
  box-shadow:
    0 16px 40px rgba(var(--card-accent-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.featured-products .product-card:hover .product-card__icon {
  transform: scale(1.06) translateY(-4px);
  box-shadow:
    0 22px 48px rgba(var(--card-accent-rgb), 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.featured-products .product-card__index {
  position: absolute;
  right: 1rem;
  bottom: 0.85rem;
  z-index: 3;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--card-accent-rgb), 0.1);
  pointer-events: none;
  user-select: none;
}

.featured-products .product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 6;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--card-accent);
  background: #ffffff;
  border: 1px solid rgba(var(--card-accent-rgb), 0.15);
  box-shadow: 0 6px 18px rgba(var(--deep-rgb), 0.06);
  transition: transform 0.35s ease;
}

.featured-products .product-card:hover .product-badge {
  transform: translateY(-2px);
}

/* Content */
.featured-products .product-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 1.35rem 1.4rem 1.5rem;
  border-top: 1px solid rgba(var(--royal-rgb), 0.06);
  background: linear-gradient(180deg, #ffffff 0%, #fcfbfe 100%);
}

.featured-products .product-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1e3d2b;
}

.featured-products .product-description {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
  color: #6b637a;
}

.featured-products .product-chips {
  list-style: none;
  margin: 0.85rem 0 1.1rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.featured-products .product-chip {
  display: inline-block;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(var(--card-accent-rgb), 0.95);
  background: rgba(var(--card-accent-rgb), 0.08);
  border: 1px solid rgba(var(--card-accent-rgb), 0.12);
}

.featured-products .product-btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: auto;
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  border: 1.5px solid rgba(var(--card-accent-rgb), 0.35);
  font-weight: 700;
  font-size: 0.84rem;
  text-decoration: none;
  color: var(--card-accent) !important;
  background: transparent;
  box-shadow: none;
  transition:
    color 0.3s ease,
    background 0.35s ease,
    border-color 0.35s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.featured-products .product-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(var(--card-accent-rgb), 0.95),
    rgba(var(--card-accent-rgb), 0.75)
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 0;
}

.featured-products .product-btn > span,
.featured-products .product-btn .fa-arrow-right {
  position: relative;
  z-index: 1;
}

.featured-products .product-btn .fa-arrow-right {
  font-size: 0.78rem;
  transition: transform 0.35s ease;
}

.featured-products .product-btn:hover {
  color: #fff !important;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(var(--card-accent-rgb), 0.28);
}

.featured-products .product-btn:hover::before {
  opacity: 1;
}

.featured-products .product-btn:hover .fa-arrow-right {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .featured-products .product-card::before {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-products .product-card:hover {
    transform: none;
  }
  .featured-products .card-glow {
    animation: none !important;
  }
  .featured-products .product-card:hover .product-card__icon {
    transform: none;
  }
}
/* Bagasse mockup split */
.bagasse-mockup {
  background: transparent;
  padding-top: clamp(3.5rem, 8vw, 5rem);
  padding-bottom: clamp(3.5rem, 8vw, 5rem);
  position: relative;
}

.bagasse-mock-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(88% 54% at 8% 14%, rgba(var(--lav-rgb), 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 55%, #ffffff 100%);
}

.bagasse-mockup > .products-container.bagasse-mock-split {
  position: relative;
  z-index: 1;
}

.bagasse-mock-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

@media (min-width: 1024px) {
  .bagasse-mock-split {
    grid-template-columns: minmax(0, 0.44fr) minmax(0, 0.56fr);
    align-items: center;
    gap: clamp(2rem, 4vw, 3rem);
  }
}

.bagasse-mock-copy {
  text-align: start;
}

.sig-kicker {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.75rem;
}

.sig-title {
  font-family: var(--font-display);
  margin: 0 0 1rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #1e3d2b;
}

.sig-text {
  margin: 0 0 1.5rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

.sig-feature-row {
  list-style: none;
  padding: 0;
  padding-inline-start: 0;
  margin: 0 0 1.75rem;
  margin-inline: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem clamp(0.85rem, 3vw, 1.35rem);
  justify-items: stretch;
  align-items: start;
  width: 100%;
  max-width: 100%;
  overflow: visible;
}

@media (min-width: 520px) {
  .sig-feature-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: clamp(0.4rem, 1.1vw, 0.9rem);
  }

  .sig-feature-row li {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .sig-feature-row {
    gap: clamp(0.5rem, 0.85vw, 1rem);
    max-width: 100%;
  }
}

.sig-feature-row li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 0.5rem;
  width: 100%;
  min-width: 0;
  font-size: clamp(0.54rem, 0.38vw + 0.48rem, 0.67rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--rich);
  overflow: visible;
}

.sig-feature-row li > span:not(.sig-f-ico) {
  display: inline-block;
  width: auto;
  max-width: none;
  margin-inline: 0;
  line-height: 1.28;
  text-align: center;
  white-space: nowrap;
  hyphens: none;
  -webkit-hyphens: none;
}

.sig-f-ico {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border-soft);
  color: var(--rich);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.sig-feature-row li:hover .sig-f-ico {
  transform: translateY(-3px);
  border-color: rgba(76, 140, 90, 0.22);
  box-shadow: 0 10px 22px rgba(var(--rich-rgb), 0.12);
}

.sig-cta {
  display: flex;
  justify-content: flex-start;
  width: 100%;
  margin: 1rem 0 0;
  padding: 0;
}

.sig-cta .btn-pill-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0 1.65rem;
  border-radius: 999px;
  border: none;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  color: #fff !important;
  background: linear-gradient(135deg, var(--royal), var(--rich));
  box-shadow: 0 14px 36px rgba(var(--rich-rgb), 0.3);
  transition:
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
}

.sig-cta .btn-pill-primary > i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-size: 1.05rem;
}

.sig-cta .btn-pill-primary > span {
  line-height: 1.2;
}

.sig-cta .btn-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 46px rgba(var(--rich-rgb), 0.38);
  color: #fff !important;
}

.sig-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 700px) {
  .sig-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.sig-cell {
  position: relative;
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid var(--border-soft);
  box-shadow: 0 12px 34px rgba(var(--deep-rgb), 0.05);
  overflow: hidden;
  text-align: center;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.sig-cell::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rich), var(--green));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.35s ease;
  z-index: 3;
}

.sig-cell:hover {
  transform: translateY(-5px);
  border-color: rgba(76, 140, 90, 0.3);
  box-shadow: 0 18px 40px rgba(var(--deep-rgb), 0.09);
}

.sig-cell:hover::before {
  transform: scaleX(1);
}

.sig-cell-media {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #f2f7f4;
  overflow: hidden;
}

.sig-cell-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.sig-cell:hover .sig-cell-photo {
  transform: scale(1.02);
}

.sig-cell-lbl {
  display: block;
  padding: 0.75rem 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1e3d2b;
  background: #ffffff;
  transition: color 0.3s ease;
}

.sig-cell:hover .sig-cell-lbl {
  color: var(--rich);
}

@media (prefers-reduced-motion: reduce) {
  .sig-cell,
  .sig-cell-photo,
  .sig-f-ico {
    transition: none;
  }

  .sig-cell:hover {
    transform: none;
  }

  .sig-cell:hover .sig-cell-photo {
    transform: none;
  }

  .sig-cell::before {
    transform: scaleX(1);
  }

  .sig-feature-row li:hover .sig-f-ico {
    transform: none;
  }
}

/* Sustainability â€” premium commitment strip */
.sustain-mockup {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    165deg,
    #f8faf9 0%,
    #ffffff 42%,
    #f3f7f4 100%
  );
  padding-block: clamp(3.75rem, 8vw, 5.5rem);
}

.sustain-mock-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sustain-mock-bg .product-line-pattern-layer {
  opacity: 0.35;
}

.sustain-mock-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.sustain-mock-blob--lav {
  width: min(480px, 55vw);
  height: 360px;
  top: -120px;
  right: -80px;
  background: rgba(var(--lav-rgb), 0.28);
}

.sustain-mock-blob--green {
  width: min(380px, 45vw);
  height: 320px;
  bottom: -100px;
  left: -100px;
  background: rgba(var(--rich-rgb), 0.16);
}

.sustain-mockup .sustain-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.sustain-mockup .sustain-particles .sp {
  position: absolute;
  font-size: clamp(0.85rem, 1.2vw, 1.1rem);
  color: var(--accent-top-green);
  opacity: 0.14;
}

.sustain-mockup.is-live .sustain-particles .sp {
  animation: sustainLeafDrift 14s ease-in-out infinite;
}

@keyframes sustainLeafDrift {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-18px) rotate(12deg);
    opacity: 0.22;
  }
}

.sustain-mockup .container.sustain-mock-split {
  position: relative;
  z-index: 2;
  width: min(100% - clamp(1.25rem, 4vw, 3rem), 1480px);
  max-width: 100%;
  margin-inline: auto;
}

.sustain-mock-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 1024px) {
  .sustain-mock-split {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.65fr);
    gap: clamp(2rem, 3.5vw, 3.25rem);
  }

  .sustain-mock-aside {
    padding-right: clamp(1.5rem, 3vw, 2.25rem);
    border-right: 1px solid rgba(var(--royal-rgb), 0.08);
  }
}

.sustain-mock-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent-top-green);
}

.sustain-mock-title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #1e3d2b;
}

.sustain-mock-lead {
  margin: 0 0 1.25rem;
  max-width: 28em;
  font-size: clamp(0.94rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: #6b637a;
}

.sustain-mock-highlights {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.sustain-mock-highlights li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3d3550;
}

.sustain-mock-highlights i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.62rem;
  color: #fff;
  background: linear-gradient(145deg, var(--accent-top-green), #2d9a62);
  flex-shrink: 0;
}

.sustain-mock-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.sustain-mock-pillars {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .sustain-mock-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .sustain-mock-pillars {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Pillar cards */
.sustain-pillar-card {
  --pillar-accent: var(--lav-rgb);
  position: relative;
  text-align: center;
  padding: 1.65rem 1.25rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  box-shadow:
    0 4px 8px rgba(var(--deep-rgb), 0.03),
    0 18px 44px rgba(var(--deep-rgb), 0.06);
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease;
}

.sustain-pillar-card:nth-child(1) {
  --pillar-accent: var(--lav-rgb);
}
.sustain-pillar-card:nth-child(2) {
  --pillar-accent: var(--rich-rgb);
}
.sustain-pillar-card:nth-child(3) {
  --pillar-accent: var(--gold-rgb);
}
.sustain-pillar-card:nth-child(4) {
  --pillar-accent: 168, 99, 66;
}

.sustain-pillar-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(var(--pillar-accent), 0.85),
    transparent
  );
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.sustain-pillar-card.show .sustain-pillar-card__accent,
.sustain-pillar-card:hover .sustain-pillar-card__accent {
  transform: scaleX(1);
}

.sustain-pillar-card__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 38%,
    rgba(255, 255, 255, 0.65) 48%,
    transparent 58%
  );
  transform: translateX(-120%);
  pointer-events: none;
}

.sustain-pillar-card:hover .sustain-pillar-card__shine {
  animation: sustainCardShine 0.85s ease forwards;
}

@keyframes sustainCardShine {
  to {
    transform: translateX(120%);
  }
}

.sustain-pillar-card__num {
  position: absolute;
  top: 0.65rem;
  right: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(var(--pillar-accent), 0.12);
  pointer-events: none;
}

.sustain-pillar-card:hover {
  transform: translateY(-10px);
  border-color: rgba(var(--pillar-accent), 0.22);
  box-shadow:
    0 8px 16px rgba(var(--deep-rgb), 0.04),
    0 28px 56px rgba(var(--deep-rgb), 0.1);
}

.sustain-pillar-ring {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 1.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  color: rgb(var(--pillar-accent));
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.98),
    rgba(var(--pillar-accent), 0.08)
  );
  border: 1px solid rgba(var(--pillar-accent), 0.18);
  box-shadow:
    0 12px 32px rgba(var(--pillar-accent), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease;
}

.sustain-pillar-ring__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(var(--pillar-accent), 0.35);
  opacity: 0;
}

.sustain-mockup.is-live .sustain-pillar-card.show .sustain-pillar-ring__pulse {
  opacity: 1;
  animation: sustainRingSpin 12s linear infinite;
}

.sustain-mockup.is-live .sustain-pillar-card.show .sustain-pillar-ring {
  animation: sustainIconBob 5s ease-in-out infinite;
}

.sustain-pillar-card:nth-child(2).show .sustain-pillar-ring {
  animation-delay: 0.4s;
}
.sustain-pillar-card:nth-child(3).show .sustain-pillar-ring {
  animation-delay: 0.8s;
}
.sustain-pillar-card:nth-child(4).show .sustain-pillar-ring {
  animation-delay: 1.2s;
}

@keyframes sustainRingSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sustainIconBob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.sustain-pillar-card:hover .sustain-pillar-ring {
  transform: scale(1.08);
  box-shadow:
    0 18px 40px rgba(var(--pillar-accent), 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.sustain-pillar-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1e3d2b;
}

.sustain-pillar-card p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.58;
  color: #6b637a;
}

@media (prefers-reduced-motion: reduce) {
  .sustain-mockup.is-live .sustain-particles .sp,
  .sustain-mockup.is-live .sustain-pillar-card.show .sustain-pillar-ring,
  .sustain-mockup.is-live .sustain-pillar-card.show .sustain-pillar-ring__pulse {
    animation: none !important;
  }

  .sustain-pillar-card:hover {
    transform: none;
  }

  .sustain-pillar-card:hover .sustain-pillar-card__shine {
    animation: none;
  }
}
/* ===== Dark CTA band (after sustainability) ===== */
.dark-cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 7vw, 4.75rem) 0;
  background: #152a1f;
  color: rgba(255, 255, 255, 0.92);
}

.dark-cta-band__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    url("assets/BagasseTableware/cta.png") center / cover no-repeat,
    linear-gradient(155deg, #152a1f 0%, var(--royal) 42%, #1e3d2b 100%);
}

.dark-cta-band__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    rgba(6, 18, 14, 0.84) 0%,
    rgba(8, 24, 18, 0.72) 48%,
    rgba(5, 14, 11, 0.58) 100%
  );
}

.dark-cta-band__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: var(--product-line-pattern);
  background-size: 280px 280px;
}

.dark-cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(1.5rem, 3vw, 2rem);
  max-width: 820px;
  margin-inline: auto;
}

@media (min-width: 960px) {
  .dark-cta-band__inner {
    max-width: min(100% - 2rem, 1100px);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 2.5rem;
  }
}

.dark-cta-band__eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-top-green);
}

.dark-cta-band__copy {
  min-width: 0;
}

.dark-cta-band h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}

.dark-cta-band__lead {
  margin: 0;
  max-width: 36rem;
  font-size: clamp(0.94rem, 1.5vw, 1.05rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

@media (min-width: 960px) {
  .dark-cta-band__lead {
    margin-inline: 0;
  }
}

.dark-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 960px) {
  .dark-cta-band__actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
  }
}

.dark-cta-band__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 50px;
  padding: 0 1.5rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    background 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.dark-cta-band__btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent-top-green), #3d6b4f);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

.dark-cta-band__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(var(--rich-rgb), 0.35);
}

.dark-cta-band__btn--primary i {
  transition: transform 0.3s var(--ease);
}

.dark-cta-band__btn--primary:hover i {
  transform: translateX(4px);
}

.dark-cta-band__btn--ghost {
  color: #fff;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.dark-cta-band__btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
}

@media (prefers-reduced-motion: reduce) {
  .dark-cta-band__btn:hover {
    transform: none;
  }

  .dark-cta-band__btn--primary:hover i {
    transform: none;
  }
}

/* Certificates & Downloads â€” wide layout, no overlap download control */
.certs-mockup {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(78% 42% at 50% 0%, rgba(var(--lav-rgb), 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
  padding-top: clamp(3.25rem, 7vw, 4.75rem);
  padding-bottom: clamp(3.25rem, 7vw, 4.75rem);
}

.certs-mockup .container {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(1.25rem, 4vw, 3rem), 1480px);
  max-width: 100%;
  margin-inline: auto;
}

.certs-mock-head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 2.65rem);
  max-width: 40rem;
  margin-inline: auto;
}

.certs-mock-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 3.15vw, 2.45rem);
  color: #1e3d2b;
}

.certs-mock-sub {
  margin: 0;
  font-size: clamp(0.92rem, 1.4vw, 1.02rem);
  line-height: 1.6;
  color: #6b637a;
}

.certs-mock-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  grid-template-columns: 1fr;
}

@media (min-width: 700px) {
  .certs-mock-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .certs-mock-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.certs-row-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto minmax(0, 1fr);
  align-items: start;
  column-gap: 0.8rem;
  row-gap: 0.42rem;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  min-height: 0;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: 20px;
  box-shadow:
    0 3px 0 rgba(255, 255, 255, 0.85) inset,
    0 14px 36px rgba(var(--deep-rgb), 0.05);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.25s ease;
}

.certs-row-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 3px 0 rgba(255, 255, 255, 0.88) inset,
    0 20px 48px rgba(var(--deep-rgb), 0.08);
  border-color: rgba(var(--rich-rgb), 0.12);
}

.crc-ico {
  grid-column: 1;
  grid-row: 1 / 3;
  align-self: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--rich);
  font-size: 1.12rem;
  background: linear-gradient(160deg, #ffffff, #f6f5fa);
  border: 1px solid var(--border-soft);
}

.crc-head {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  min-width: 0;
}

.crc-head h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.28;
  color: #1e3d2b;
  flex: 1;
  min-width: 0;
}

.crc-desc {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.865rem;
  line-height: 1.58;
  color: var(--muted);
}

.crc-dl {
  position: relative;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 0.92rem;
  color: var(--rich);
  background: rgba(244, 240, 255, 0.85);
  border: 1px solid rgba(var(--rich-rgb), 0.14);
  text-decoration: none;
  transition:
    background 0.22s var(--ease),
    color 0.22s var(--ease),
    transform 0.22s var(--ease);
}

.crc-dl:hover {
  background: linear-gradient(135deg, var(--royal), var(--rich));
  color: #fff;
  transform: translateY(-1px);
}

/* ===== Client testimonials section ===== */
@keyframes testimonialPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes testimonialStarPop {
  from {
    opacity: 0;
    transform: scale(0.5) translateY(4px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes testimonialMeshDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-12px, 8px, 0);
  }
}

.testimonials-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(3.25rem, 8vw, 5.5rem);
  background:
    radial-gradient(62% 48% at 10% 18%, rgba(var(--lav-rgb), 0.1), transparent 52%),
    radial-gradient(48% 42% at 92% 72%, rgba(76, 140, 90, 0.08), transparent 55%),
    linear-gradient(180deg, var(--surface-soft) 0%, #ffffff 52%, var(--surface-soft) 100%);
}

.testimonials-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.testimonials-section .product-line-pattern-layer {
  opacity: 0.55;
}

.testimonials-bg__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 2px 2px, rgba(var(--rich-rgb), 0.14) 1.5px, transparent 0),
    linear-gradient(rgba(var(--rich-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--rich-rgb), 0.04) 1px, transparent 1px);
  background-size:
    28px 28px,
    48px 48px,
    48px 48px;
  animation: testimonialMeshDrift 18s ease-in-out infinite;
}

.testimonials-container {
  position: relative;
  z-index: 1;
  width: min(100% - clamp(1rem, 4vw, 3rem), 1480px);
  margin-inline: auto;
  padding-inline: clamp(14px, 3vw, 22px);
}

.testimonials-head {
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0.85rem;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.testimonials-eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(76, 140, 90, 0.22);
}

.testimonials-head h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  color: #1e3d2b;
}

.testimonials-sub {
  margin: 0;
  font-size: clamp(0.98rem, 1.5vw, 1.06rem);
  line-height: 1.72;
  color: var(--muted);
}

.testimonials-split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 1.75rem);
  align-items: stretch;
}

@media (min-width: 960px) {
  .testimonials-split {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(1.25rem, 2.5vw, 2rem);
  }
}

.testimonials-panel {
  min-width: 0;
  min-height: clamp(320px, 38vw, 380px);
}

.testimonials-panel__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: inherit;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border-radius: 22px;
  border: 1px solid rgba(var(--rich-rgb), 0.1);
  background: #ffffff;
  box-shadow: 0 20px 52px rgba(var(--deep-rgb), 0.07);
  transition:
    opacity 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.testimonials-panel__card.is-entering {
  opacity: 0;
  transform: translateY(16px);
}

.testimonials-panel__card.is-visible {
  opacity: 1;
  transform: translateY(0);
  animation: testimonialPanelIn 0.55s var(--ease) forwards;
}

.testimonials-panel__mark {
  display: block;
  margin-bottom: 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 0.85;
  color: rgba(76, 140, 90, 0.35);
}

.testimonials-panel__stars {
  display: inline-flex;
  gap: 0.2rem;
  margin-bottom: 0.85rem;
  color: #e8a317;
  font-size: 0.95rem;
}

.testimonials-panel__card.is-visible .testimonials-panel__stars i {
  animation: testimonialStarPop 0.4s var(--ease) backwards;
}

.testimonials-panel__card.is-visible .testimonials-panel__stars i:nth-child(1) {
  animation-delay: 0.06s;
}
.testimonials-panel__card.is-visible .testimonials-panel__stars i:nth-child(2) {
  animation-delay: 0.11s;
}
.testimonials-panel__card.is-visible .testimonials-panel__stars i:nth-child(3) {
  animation-delay: 0.16s;
}
.testimonials-panel__card.is-visible .testimonials-panel__stars i:nth-child(4) {
  animation-delay: 0.21s;
}
.testimonials-panel__card.is-visible .testimonials-panel__stars i:nth-child(5) {
  animation-delay: 0.26s;
}

.testimonials-panel__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.32rem 0.72rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--royal);
  background: rgba(238, 248, 242, 0.95);
  border: 1px solid rgba(var(--rich-rgb), 0.1);
}

.testimonials-panel__quote {
  flex: 1;
  margin: 0 0 1.5rem;
}

.testimonials-panel__quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.85vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.62;
  color: #2a3d34;
}

.testimonials-panel__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(var(--rich-rgb), 0.08);
}

.testimonials-panel__avatar {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, var(--royal), var(--rich));
  box-shadow: 0 8px 20px rgba(var(--rich-rgb), 0.24);
}

.testimonials-panel__meta {
  min-width: 0;
}

.testimonials-panel__name {
  display: block;
  font-family: var(--font-ui);
  font-style: normal;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--text);
}

.testimonials-panel__role {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.testimonials-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 0;
}

.testimonials-tab {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(var(--rich-rgb), 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.88);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.32s var(--ease),
    border-color 0.32s ease,
    background 0.32s ease,
    box-shadow 0.32s ease;
}

.testimonials-tab:hover,
.testimonials-tab.is-active,
.testimonials-tab:focus-visible {
  transform: translateX(4px);
  border-color: rgba(76, 140, 90, 0.45);
  background: rgba(238, 248, 242, 0.95);
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.06);
  outline: none;
}

.testimonials-tab__avatar {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-ui);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--royal);
  background: rgba(238, 248, 242, 0.95);
  border: 1px solid rgba(var(--rich-rgb), 0.12);
  transition:
    color 0.32s ease,
    background 0.32s ease,
    border-color 0.32s ease;
}

.testimonials-tab:hover .testimonials-tab__avatar,
.testimonials-tab.is-active .testimonials-tab__avatar {
  color: #fff;
  background: linear-gradient(135deg, var(--royal), var(--rich));
  border-color: transparent;
}

.testimonials-tab__info {
  min-width: 0;
}

.testimonials-tab__name {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.testimonials-tab__company {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
}

.ft-contact-text a {
  color: inherit;
  text-decoration: none;
  transition: color 0.32s ease;
}

.ft-contact-text a:hover {
  color: #fff;
}

.buyer-trust-section .testimonials-panel__quote p {
  font-style: normal;
  font-family: var(--font-ui);
  font-weight: 500;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  line-height: 1.72;
  color: var(--muted);
}

.buyer-trust-section .testimonials-panel__mark.buyer-trust-icon {
  font-family: var(--font-ui);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--green);
  opacity: 0.85;
}

.buyer-trust-section .testimonials-panel__avatar {
  font-size: 1rem;
}

.buyer-trust-section .testimonials-tab__avatar i {
  font-size: 0.82rem;
}

@media (max-width: 959px) {
  .testimonials-panel {
    min-height: 0;
  }

  .testimonials-tab:hover,
  .testimonials-tab.is-active {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-bg__mesh,
  .testimonials-panel__card.is-visible .testimonials-panel__stars i {
    animation: none !important;
  }

  .testimonials-tab:hover,
  .testimonials-tab.is-active {
    transform: none;
  }

  .testimonials-panel__card {
    transition: opacity 0.25s ease;
  }

  .testimonials-panel__card.is-entering,
  .testimonials-panel__card.is-visible {
    transform: none;
    animation: none;
  }
}

/* Footer mockup tweaks */
.ft-blurb {
  position: relative;
  font-size: 0.9rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  max-width: 300px;
}

.ft-inquiry-box {
  position: relative;
  margin-top: 1.35rem;
  padding: 1.15rem;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s var(--ease);
}

.ft-inquiry-box::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--lav-rgb), 0.22), transparent 68%);
  pointer-events: none;
}

.ft-inquiry-box:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--lav-rgb), 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 16px 36px rgba(0, 0, 0, 0.22);
}

.ft-inq-title {
  position: relative;
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.88);
}

.ft-quote-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.82rem 1rem;
  border: none;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  color: var(--royal);
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    color 0.35s ease,
    background 0.35s ease;
}

.ft-quote-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 42%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  transform: translateX(-130%) skewX(-14deg);
  pointer-events: none;
}

.ft-quote-btn i {
  transition: transform 0.35s var(--ease);
}

.ft-quote-btn:hover {
  transform: translateY(-2px);
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--rich));
  box-shadow: 0 16px 36px rgba(var(--rich-rgb), 0.38);
}

.ft-quote-btn:hover::after {
  animation: footerBtnShine 0.75s var(--ease) forwards;
}

.ft-quote-btn:hover i {
  transform: translateX(5px);
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
}

.footer-bottom-inner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.footer-legals-inline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
}

.footer-legals-inline a {
  position: relative;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legals-inline a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--lav);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.footer-legals-inline a:hover {
  color: #fff;
}

.footer-legals-inline a:hover::after {
  transform: scaleX(1);
}

.footer-legals-inline .sep {
  color: rgba(255, 255, 255, 0.35);
}

@media (prefers-reduced-motion: reduce) {
  .fc-brand::before,
  .ft-quote-btn:hover::after {
    animation: none !important;
  }

  .fc-brand:hover img,
  .ft-soc:hover,
  .ft-links a:hover,
  .ft-inquiry-box:hover,
  .ft-quote-btn:hover {
    transform: none;
  }
}

/* ===== Multi-page: interior headings & contact ===== */
.interior-banner {
  padding: clamp(2.75rem, 6vw, 4rem) 0 clamp(1.5rem, 3vw, 2.35rem);
  background:
    radial-gradient(90% 60% at 50% -10%, rgba(var(--lav-rgb), 0.16), transparent 55%),
    linear-gradient(168deg, #faf8f3 0%, #eef8f2 48%, #faf8f3 100%);
  border-bottom: 1px solid rgba(var(--rich-rgb), 0.08);
}

.interior-banner-inner {
  width: min(100% - 2rem, 860px);
  margin-inline: auto;
  text-align: center;
}

.interior-banner-kicker {
  margin: 0 0 0.45rem;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
}

.interior-banner-title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.08;
  color: #1e3d2b;
  letter-spacing: -0.02em;
}

.interior-banner-desc {
  margin: 0 auto;
  max-width: 40rem;
  font-size: clamp(0.94rem, 1.55vw, 1.06rem);
  line-height: 1.62;
  color: var(--muted);
}

.contact-page-shell {
  position: relative;
  padding-block: clamp(2.25rem, 5vw, 4rem);
  background:
    radial-gradient(80% 50% at 12% 0%, rgba(var(--lav-rgb), 0.14), transparent 48%),
    linear-gradient(180deg, #faf8f5 0%, #f0f8f4 100%);
}

.contact-page-grid {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
  align-items: start;
}

@media (min-width: 960px) {
  .contact-page-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 2rem 2.5rem;
  }
}

.contact-page-card,
.contact-page-form-card {
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: 22px;
}

.contact-page-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  font-weight: 700;
  color: #1e3d2b;
  line-height: 1.1;
}

.contact-page-lead {
  margin: 0 0 1.25rem;
  font-size: clamp(0.94rem, 1.35vw, 1.03rem);
  line-height: 1.62;
  color: var(--muted);
}

.contact-page-list {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.72rem;
  font-size: 0.95rem;
}

.contact-page-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.72rem;
  line-height: 1.5;
}

.contact-page-list a {
  color: var(--royal);
  font-weight: 600;
  text-decoration: none;
}

.contact-page-list a:hover {
  text-decoration: underline;
}

.contact-page-list .cpi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(var(--rich-rgb), 0.08);
  color: var(--royal);
  font-size: 0.9rem;
}

.contact-page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-page-actions .btn-pill-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.contact-form-heading {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: #1e3d2b;
}

.contact-form-hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.contact-page-form .quote-submit {
  margin-top: 0.35rem;
}

.contact-page-status {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  min-height: 1.4em;
  color: var(--muted);
}

.contact-page-status.err {
  color: #b42318;
}

.contact-page-status.ok {
  color: var(--green);
}

/* Blank secondary pages */
.placeholder-page-shell {
  padding: clamp(5rem, 14vw, 9rem) 0 clamp(4rem, 10vw, 8rem);
  background:
    radial-gradient(80% 45% at 50% -8%, rgba(var(--lav-rgb), 0.08), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, var(--warm) 100%);
  text-align: center;
}

.placeholder-page-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 4vw, 2.85rem);
  font-weight: 700;
  color: var(--royal);
  line-height: 1.1;
}

.placeholder-page-desc {
  margin: 0 auto 1.5rem;
  max-width: 36rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

.placeholder-page-cta .btn-pill-primary {
  display: inline-flex;
}

/* ===== About Us page (unique inner-page design) ===== */
.about-page {
  background: var(--page-bg);
}

.ap-main {
  overflow-x: clip;
}

/* Shared typography */
.ap-section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.ap-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rich);
}

.ap-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--accent-top-green);
  border-radius: 2px;
}

.ap-label--light {
  color: var(--accent-top-green);
}

.ap-label--light::before {
  background: rgba(var(--lav-rgb), 0.85);
}

.ap-head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 640px;
}

.ap-head--center {
  margin-inline: auto;
  text-align: center;
}

.ap-head--center .ap-label::before {
  display: none;
}

.ap-head--center .ap-label {
  justify-content: center;
}

.ap-head--light .ap-title {
  color: #fff;
}

.ap-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.95rem, 3.8vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--royal);
}

.ap-title--light {
  color: #fff;
}

.ap-lead {
  margin: 1rem 0 0;
  font-size: clamp(0.94rem, 1.5vw, 1.05rem);
  line-height: 1.72;
  color: var(--muted);
}

.ap-lead--narrow {
  max-width: 38rem;
}

.ap-head--center .ap-lead--narrow {
  margin-inline: auto;
}

/* Banner */
.ap-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #fff;
  padding: clamp(5rem, 13vw, 7rem) 0 clamp(3.25rem, 7vw, 4.5rem);
  text-align: center;
}

.ap-banner__bg {
  position: absolute;
  inset: 0;
  background:
    url("assets/images/about%20us.png") center / cover no-repeat,
    linear-gradient(135deg, #152a1f, #1e3d2b);
}

.ap-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 14, 0.88) 0%,
    rgba(8, 28, 20, 0.82) 50%,
    rgba(10, 36, 28, 0.9) 100%
  );
}

.ap-banner__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.ap-label--center {
  justify-content: center;
}

.ap-label--center::before {
  display: none;
}

.ap-banner__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.ap-banner__sub {
  margin: 0 auto 1.25rem;
  max-width: 38rem;
  font-size: clamp(0.96rem, 1.6vw, 1.1rem);
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.86);
}

.ap-breadcrumb ol {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.ap-breadcrumb li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: rgba(var(--lav-rgb), 0.7);
}

.ap-breadcrumb a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.ap-breadcrumb a:hover {
  color: var(--accent-top-green);
}

.ap-breadcrumb li[aria-current="page"] {
  color: var(--accent-top-green);
}

/* Intro */
.ap-intro {
  background: #fff;
  border-bottom: 1px solid rgba(var(--royal-rgb), 0.06);
}

.ap-intro__grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .ap-intro__grid {
    grid-template-columns: 0.95fr 1.05fr;
  }
}

.ap-intro__media {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(var(--deep-rgb), 0.1);
}

.ap-intro__media img {
  display: block;
  width: 100%;
  height: auto;
}

.ap-intro__tagline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0.85rem 1.15rem;
  background: linear-gradient(0deg, rgba(10, 36, 28, 0.88), transparent);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ap-checklist {
  list-style: none;
  margin: 1.35rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.ap-checklist li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.93rem;
  line-height: 1.58;
  color: #2a3d35;
}

.ap-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-top-green);
  box-shadow: 0 0 0 3px rgba(var(--rich-rgb), 0.2);
}

/* Story */
.ap-story {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
  background: var(--page-bg);
}

.ap-story__layout {
  max-width: 980px;
  margin-inline: auto;
}

.ap-story__head {
  margin-bottom: clamp(1.35rem, 3vw, 1.85rem);
  text-align: center;
}

.ap-story__head .ap-title {
  margin: 0;
  font-size: clamp(1.85rem, 3.4vw, 2.45rem);
}

.ap-story__head-line {
  display: block;
  width: 0;
  height: 2px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-top-green), transparent);
  transition: width 0.85s var(--ease) 0.15s;
}

.ap-story--visible .ap-story__head-line,
.ap-story__head.show .ap-story__head-line {
  width: min(88px, 22vw);
}

.ap-story__grid {
  display: grid;
  gap: clamp(1.35rem, 2.5vw, 2rem);
}

@media (min-width: 860px) {
  .ap-story__grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: clamp(2rem, 3.5vw, 2.75rem);
  }
}

.ap-story__narrative p {
  margin: 0 0 0.75rem;
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  line-height: 1.65;
  color: var(--muted);
}

.ap-story__narrative p:last-child {
  margin-bottom: 0;
}

.ap-story__aside {
  position: relative;
}

.ap-story__timeline {
  position: relative;
  padding-left: 1.5rem;
}

.ap-story__timeline-track,
.ap-story__timeline-fill {
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 2px;
  border-radius: 999px;
}

.ap-story__timeline-track {
  background: rgba(var(--rich-rgb), 0.16);
}

.ap-story__timeline-fill {
  height: 0;
  background: linear-gradient(180deg, var(--accent-top-green), var(--rich));
  transition: height 1s var(--ease);
}

.ap-story--visible .ap-story__timeline-fill {
  height: calc(100% - 0.7rem);
}

.ap-story__milestones {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-story__mile {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.65rem 0 0.65rem 0.15rem;
  border-bottom: 1px dashed rgba(var(--royal-rgb), 0.1);
  opacity: 0;
  transform: translate3d(12px, 0, 0);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease);
}

.ap-story__mile:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ap-story__mile:first-child {
  padding-top: 0;
}

.ap-story--visible .ap-story__mile:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.25s;
}

.ap-story--visible .ap-story__mile:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.4s;
}

.ap-story--visible .ap-story__mile:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.55s;
}

.ap-story__mile-num {
  flex-shrink: 0;
  min-width: 1.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--accent-top-green);
  line-height: 1.5;
}

.ap-story__mile-body strong {
  display: block;
  margin-bottom: 0.15rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1.25;
}

.ap-story__mile-body p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .ap-story__mile {
    opacity: 1;
    transform: none;
  }

  .ap-story__timeline-fill {
    height: calc(100% - 0.7rem);
  }

  .ap-story__head-line {
    width: min(88px, 22vw);
  }
}

/* Audience */
.ap-audience {
  background: #fff;
}

.ap-audience__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.ap-audience-item {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.1rem 1.25rem;
  border-radius: 14px;
  background: var(--warm);
  border: 1px solid rgba(var(--royal-rgb), 0.06);
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s var(--ease);
}

.ap-audience-item:hover {
  background: #fff;
  border-color: rgba(var(--rich-rgb), 0.16);
  transform: translateX(4px);
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.06);
}

.ap-audience-item__num {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(var(--rich-rgb), 0.45);
  min-width: 1.5rem;
}

.ap-audience-item__ico {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--rich);
  background: #fff;
  border: 1px solid rgba(var(--rich-rgb), 0.12);
}

.ap-audience-item h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.85vw, 1.32rem);
  font-weight: 700;
  color: var(--royal);
  line-height: 1.25;
}

.ap-audience-item p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (max-width: 560px) {
  .ap-audience-item {
    grid-template-columns: auto 1fr;
  }

  .ap-audience-item__num {
    display: none;
  }
}

/* Export rows */
.ap-export {
  background: linear-gradient(180deg, var(--page-bg) 0%, #fff 100%);
}

.ap-export__rows {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
}

.ap-export-row {
  display: grid;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: center;
  padding: clamp(1.15rem, 2.5vw, 1.5rem);
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.05);
}

@media (min-width: 768px) {
  .ap-export-row {
    grid-template-columns: 240px 1fr;
    padding: 1.35rem;
  }

  .ap-export-row--flip {
    grid-template-columns: 1fr 240px;
  }

  .ap-export-row--flip .ap-export-row__media {
    order: 2;
  }

  .ap-export-row--flip .ap-export-row__body {
    order: 1;
  }
}

@media (min-width: 960px) {
  .ap-export-row {
    grid-template-columns: 300px 1fr;
  }

  .ap-export-row--flip {
    grid-template-columns: 1fr 300px;
  }
}

.ap-export-row__media {
  border-radius: 14px;
  overflow: hidden;
  background: var(--warm);
}

.ap-export-row__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ap-export-row__index {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--accent-top-green);
}

.ap-export-row__body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  color: var(--royal);
}

.ap-export-row__body p {
  margin: 0 0 0.85rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
}

.ap-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ap-tags li {
  padding: 0.28rem 0.72rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.22);
  border: 1px solid rgba(var(--rich-rgb), 0.12);
}

.ap-export__cta {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  text-align: center;
}

.ap-export__cta .btn-pill-primary {
  display: inline-flex;
}

/* Strengths — split image + cards */
.ap-strengths {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  background: linear-gradient(155deg, #152a1f 0%, var(--royal) 55%, #1e3d2b 100%);
  color: #fff;
}

.ap-strengths::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: var(--product-line-pattern);
  background-size: 280px 280px;
  pointer-events: none;
}

.ap-strengths__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .ap-strengths__wrap {
    grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(2rem, 4vw, 3rem);
  }
}

/* Visual panel */
.ap-strengths__visual {
  position: relative;
  min-height: 280px;
}

.ap-strengths__figure {
  position: relative;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.28);
}

.ap-strengths__figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3.2;
  object-fit: cover;
}

.ap-strengths__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 14, 0.08) 0%,
    rgba(6, 18, 14, 0.55) 100%
  );
}

.ap-strengths__figure-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 1rem 1.15rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  z-index: 1;
}

.ap-strengths__thumb {
  position: absolute;
  width: clamp(88px, 22vw, 118px);
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
  animation: apStrengthThumbFloat 5s ease-in-out infinite alternate;
}

.ap-strengths__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.ap-strengths__thumb--a {
  top: 8%;
  right: -6%;
  animation-delay: 0s;
}

.ap-strengths__thumb--b {
  bottom: 14%;
  left: -5%;
  animation-delay: -2.5s;
}

@keyframes apStrengthThumbFloat {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -8px, 0);
  }
}

@media (max-width: 959px) {
  .ap-strengths__thumb--a {
    right: 4%;
  }

  .ap-strengths__thumb--b {
    left: 4%;
  }
}

/* Content */
.ap-strengths__head {
  margin-bottom: 1.15rem;
}

.ap-strengths__head .ap-title {
  margin: 0 0 0.65rem;
}

.ap-strengths__intro {
  margin: 0;
  max-width: 34rem;
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.78);
}

.ap-strengths__grid {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .ap-strengths__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ap-strength {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 0.95rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    background 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.ap-strengths--visible .ap-strength:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.15s;
}

.ap-strengths--visible .ap-strength:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.25s;
}

.ap-strengths--visible .ap-strength:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.35s;
}

.ap-strengths--visible .ap-strength:nth-child(4) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.45s;
}

.ap-strengths--visible .ap-strength:nth-child(5) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.55s;
}

.ap-strengths--visible .ap-strength:nth-child(6) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.65s;
}

.ap-strength:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(var(--lav-rgb), 0.35);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.ap-strength__ico {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  font-size: 0.95rem;
  color: var(--royal);
  background: var(--accent-top-green);
  transition: transform 0.35s var(--ease);
}

.ap-strength:hover .ap-strength__ico {
  transform: scale(1.06);
}

.ap-strength__body {
  min-width: 0;
}

.ap-strength h3 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}

.ap-strength p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.52;
  color: rgba(255, 255, 255, 0.74);
}

@media (prefers-reduced-motion: reduce) {
  .ap-strengths__thumb {
    animation: none;
  }

  .ap-strength {
    opacity: 1;
    transform: none;
  }

  .ap-strength:hover .ap-strength__ico {
    transform: none;
  }
}

/* Process — single-row timeline */
.ap-process {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(var(--lav-rgb), 0.07), transparent 60%),
    #fff;
}

.ap-process__head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.ap-process__head .ap-title {
  margin: 0 0 0.65rem;
}

.ap-process__head .ap-lead--narrow {
  margin-inline: auto;
  text-align: center;
}

.ap-process__head-line {
  display: block;
  width: 0;
  height: 2px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-top-green), transparent);
  transition: width 0.75s var(--ease);
}

.ap-process--visible .ap-process__head-line {
  width: min(72px, 18vw);
}

.ap-process__timeline {
  position: relative;
  max-width: 1140px;
  margin-inline: auto;
}

.ap-process__line {
  display: none;
  pointer-events: none;
}

.ap-process__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  position: relative;
  z-index: 1;
}

.ap-process__step {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 1.1rem;
  padding-left: 0.15rem;
}

.ap-process__marker {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--rich);
  box-shadow: 0 0 0 1px rgba(var(--rich-rgb), 0.08);
}

.ap-process__marker span {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1;
}

.ap-process__content {
  min-width: 0;
  padding-top: 0.15rem;
}

.ap-process__ico {
  display: block;
  margin: 0 0 0.4rem;
  font-size: 1rem;
  line-height: 1;
  color: var(--rich);
  opacity: 0.85;
}

.ap-process__content h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 700;
  color: var(--royal);
  line-height: 1.32;
}

.ap-process__content p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.58;
  color: var(--muted);
}

/* Mobile — vertical timeline */
@media (max-width: 959px) {
  .ap-process__line {
    display: block;
    position: absolute;
    top: 0.35rem;
    bottom: 0.35rem;
    left: 23px;
    width: 2px;
    z-index: 0;
  }

  .ap-process__line-track,
  .ap-process__line-fill {
    position: absolute;
    inset: 0;
    border-radius: 999px;
  }

  .ap-process__line-track {
    background: rgba(var(--rich-rgb), 0.14);
  }

  .ap-process__line-fill {
    height: 0;
    background: linear-gradient(180deg, var(--accent-top-green), var(--rich));
    transition: height 0.9s var(--ease);
  }

  .ap-process--visible .ap-process__line-fill {
    height: 100%;
  }

  .ap-process__step {
    opacity: 0;
    transform: translateY(14px);
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease);
  }

  .ap-process--visible .ap-process__step:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.12s; }
  .ap-process--visible .ap-process__step:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.22s; }
  .ap-process--visible .ap-process__step:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.32s; }
  .ap-process--visible .ap-process__step:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.42s; }
  .ap-process--visible .ap-process__step:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.52s; }
  .ap-process--visible .ap-process__step:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.62s; }
}

/* Desktop — all steps below the line */
@media (min-width: 960px) {
  .ap-process__line {
    display: block;
    position: absolute;
    top: 24px;
    left: calc(100% / 12);
    right: calc(100% / 12);
    height: 2px;
    z-index: 0;
  }

  .ap-process__line-track,
  .ap-process__line-fill {
    position: absolute;
    inset: 0;
    border-radius: 999px;
  }

  .ap-process__line-track {
    background: rgba(var(--rich-rgb), 0.14);
  }

  .ap-process__line-fill {
    width: 0;
    background: linear-gradient(90deg, var(--accent-top-green), var(--rich));
    transition: width 1s var(--ease);
  }

  .ap-process--visible .ap-process__line-fill {
    width: 100%;
  }

  .ap-process__track {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .ap-process__step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 0.25rem;
  }

  .ap-process__marker {
    margin-bottom: 0.95rem;
    opacity: 0;
    transform: scale(0.88);
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease);
  }

  .ap-process__content {
    padding-top: 0;
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease);
  }

  .ap-process__ico {
    margin: 0 auto 0.45rem;
  }

  .ap-process__content p {
    max-width: 13.5em;
    margin-inline: auto;
  }

  .ap-process--visible .ap-process__step:nth-child(1) .ap-process__marker { opacity: 1; transform: scale(1); transition-delay: 0.15s; }
  .ap-process--visible .ap-process__step:nth-child(1) .ap-process__content { opacity: 1; transform: none; transition-delay: 0.25s; }
  .ap-process--visible .ap-process__step:nth-child(2) .ap-process__marker { opacity: 1; transform: scale(1); transition-delay: 0.25s; }
  .ap-process--visible .ap-process__step:nth-child(2) .ap-process__content { opacity: 1; transform: none; transition-delay: 0.35s; }
  .ap-process--visible .ap-process__step:nth-child(3) .ap-process__marker { opacity: 1; transform: scale(1); transition-delay: 0.35s; }
  .ap-process--visible .ap-process__step:nth-child(3) .ap-process__content { opacity: 1; transform: none; transition-delay: 0.45s; }
  .ap-process--visible .ap-process__step:nth-child(4) .ap-process__marker { opacity: 1; transform: scale(1); transition-delay: 0.45s; }
  .ap-process--visible .ap-process__step:nth-child(4) .ap-process__content { opacity: 1; transform: none; transition-delay: 0.55s; }
  .ap-process--visible .ap-process__step:nth-child(5) .ap-process__marker { opacity: 1; transform: scale(1); transition-delay: 0.55s; }
  .ap-process--visible .ap-process__step:nth-child(5) .ap-process__content { opacity: 1; transform: none; transition-delay: 0.65s; }
  .ap-process--visible .ap-process__step:nth-child(6) .ap-process__marker { opacity: 1; transform: scale(1); transition-delay: 0.65s; }
  .ap-process--visible .ap-process__step:nth-child(6) .ap-process__content { opacity: 1; transform: none; transition-delay: 0.75s; }
}

@media (prefers-reduced-motion: reduce) {
  .ap-process__head-line {
    width: min(72px, 18vw);
  }

  .ap-process__step,
  .ap-process__marker,
  .ap-process__content {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .ap-process__line-fill {
    width: 100% !important;
    height: 100% !important;
    transition: none !important;
  }
}

/* Documentation */
.ap-docs {
  padding: clamp(2.75rem, 5.5vw, 4rem) 0;
  background:
    radial-gradient(90% 60% at 0% 50%, rgba(var(--lav-rgb), 0.1), transparent 55%),
    var(--warm);
}

.ap-docs__layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
}

@media (min-width: 960px) {
  .ap-docs__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2.25rem, 3.5vw, 3rem);
  }

  .ap-docs__grid {
    align-self: center;
    width: 100%;
  }

  .ap-docs__head {
    max-width: none;
  }

  .ap-docs__visual img {
    max-height: 280px;
  }
}

.ap-docs__intro {
  display: grid;
  gap: clamp(1.35rem, 2.5vw, 1.75rem);
}

.ap-docs__head {
  max-width: 34rem;
  opacity: 0;
  transform: translate3d(-14px, 0, 0);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.ap-docs__head .ap-title {
  margin: 0 0 0.75rem;
}

.ap-docs__head-line {
  display: block;
  width: 0;
  height: 2px;
  margin-top: 1.1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-top-green), transparent);
  transition: width 0.75s var(--ease);
}

.ap-docs--visible .ap-docs__head-line {
  width: min(64px, 16vw);
}

.ap-docs--visible .ap-docs__head {
  opacity: 1;
  transform: none;
}

.ap-docs__visual {
  position: relative;
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.08);
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.ap-docs__visual img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 320px;
  object-fit: cover;
  vertical-align: middle;
}

.ap-docs__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(6, 18, 14, 0.02) 0%,
    rgba(6, 18, 14, 0.45) 100%
  );
  pointer-events: none;
}

.ap-docs__visual-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 0.9rem 1rem;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.ap-docs--visible .ap-docs__visual {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.ap-docs__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
  align-items: stretch;
}

@media (min-width: 640px) {
  .ap-docs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

.ap-doc {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  border-left: 3px solid var(--accent-top-green);
  box-shadow: 0 8px 24px rgba(var(--deep-rgb), 0.04);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.ap-docs--visible .ap-doc:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.25s; }
.ap-docs--visible .ap-doc:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.35s; }
.ap-docs--visible .ap-doc:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.45s; }
.ap-docs--visible .ap-doc:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.55s; }

.ap-doc:hover {
  border-color: rgba(var(--rich-rgb), 0.14);
  border-left-color: var(--rich);
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.07);
}

.ap-doc__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: 2.375rem;
  margin-bottom: 0.65rem;
  flex-shrink: 0;
}

.ap-doc__ico {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.24);
  transition:
    background 0.35s ease,
    color 0.35s ease;
}

.ap-doc:hover .ap-doc__ico {
  background: var(--accent-top-green);
  color: #fff;
}

.ap-doc__badge {
  flex: 0 0 auto;
  align-self: flex-start;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  color: var(--rich);
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  background: rgba(var(--lav-rgb), 0.28);
}

.ap-doc__body {
  display: flex;
  flex-direction: column;
}

.ap-doc h3 {
  margin: 0 0 0.4rem;
  min-height: 2.5em;
  font-family: var(--font-display);
  font-size: clamp(0.96rem, 1.35vw, 1.04rem);
  font-weight: 700;
  color: var(--royal);
  line-height: 1.3;
}

.ap-doc p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .ap-docs__head,
  .ap-docs__visual,
  .ap-doc {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ap-docs__head-line {
    width: min(64px, 16vw);
  }

  .ap-doc:hover {
    box-shadow: 0 8px 24px rgba(var(--deep-rgb), 0.04);
  }

  .ap-doc:hover .ap-doc__ico {
    background: rgba(var(--lav-rgb), 0.24);
    color: var(--rich);
  }
}

/* MVV */
.ap-mvv {
  padding: clamp(2.75rem, 6vw, 4.25rem) 0;
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(var(--lav-rgb), 0.1), transparent 55%),
    var(--page-bg);
}

.ap-mvv__head {
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  text-align: center;
}

.ap-mvv__head .ap-title {
  margin: 0;
}

.ap-mvv__head-line {
  display: block;
  width: 0;
  height: 2px;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-top-green), transparent);
  transition: width 0.85s var(--ease) 0.15s;
}

.ap-mvv--visible .ap-mvv__head-line,
.ap-mvv__head.show .ap-mvv__head-line {
  width: min(88px, 22vw);
}

.ap-mvv__top {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

@media (min-width: 768px) {
  .ap-mvv__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.ap-mvv__card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.05);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease),
    border-color 0.35s ease;
}

.ap-mvv__card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--rich-rgb), 0.18);
  box-shadow: 0 20px 44px rgba(var(--deep-rgb), 0.09);
}

.ap-mvv__card-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-top-green), var(--rich));
}

.ap-mvv__card--vision .ap-mvv__card-accent {
  background: linear-gradient(90deg, var(--rich), var(--royal));
}

.ap-mvv__card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.85rem;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--rich);
  background: linear-gradient(145deg, rgba(var(--lav-rgb), 0.35), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(var(--rich-rgb), 0.12);
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    color 0.35s ease;
}

.ap-mvv__card:hover .ap-mvv__card-icon {
  transform: scale(1.06);
  background: var(--accent-top-green);
  color: #fff;
  border-color: transparent;
}

.ap-mvv__card-label {
  display: block;
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.1vw, 1.55rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--royal);
  line-height: 1.2;
}

.ap-mvv__card p {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  font-weight: 500;
  line-height: 1.62;
  color: var(--muted);
}

.ap-mvv__values-head {
  margin-bottom: 0.85rem;
  text-align: center;
}

.ap-mvv__values-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--royal);
  padding-bottom: 0.35rem;
  border-bottom: 2px solid rgba(var(--rich-rgb), 0.35);
}

.ap-mvv__values-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 540px) {
  .ap-mvv__values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 900px) {
  .ap-mvv__values-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.65rem;
  }
}

.ap-mvv__value {
  position: relative;
  padding: 1rem 0.9rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity 0.5s var(--ease),
    transform 0.5s var(--ease),
    border-color 0.3s ease,
    box-shadow 0.35s ease;
}

.ap-mvv--visible .ap-mvv__value:nth-child(1) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.2s;
}

.ap-mvv--visible .ap-mvv__value:nth-child(2) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
}

.ap-mvv--visible .ap-mvv__value:nth-child(3) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.4s;
}

.ap-mvv--visible .ap-mvv__value:nth-child(4) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.5s;
}

.ap-mvv--visible .ap-mvv__value:nth-child(5) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.6s;
}

.ap-mvv__value:hover {
  border-color: rgba(var(--rich-rgb), 0.2);
  box-shadow: 0 10px 28px rgba(var(--deep-rgb), 0.07);
}

.ap-mvv__value-ico {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 0.65rem;
  border-radius: 50%;
  font-size: 0.82rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.22);
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease,
    color 0.35s ease;
}

.ap-mvv__value:hover .ap-mvv__value-ico {
  transform: scale(1.08);
  background: var(--accent-top-green);
  color: #fff;
}

.ap-mvv__value h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.7vw, 1.22rem);
  font-weight: 700;
  color: var(--royal);
  line-height: 1.25;
}

.ap-mvv__value p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.48;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .ap-mvv__card:hover,
  .ap-mvv__value:hover {
    transform: none;
  }

  .ap-mvv__value {
    opacity: 1;
    transform: none;
  }

  .ap-mvv__head-line {
    width: min(88px, 22vw);
  }
}

/* CTA */
.ap-cta {
  padding-bottom: clamp(4rem, 9vw, 6rem);
  background: var(--page-bg);
}

.ap-cta__card {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(var(--rich-rgb), 0.14);
  box-shadow:
    0 4px 6px rgba(var(--deep-rgb), 0.02),
    0 24px 56px rgba(var(--deep-rgb), 0.08);
}

@media (min-width: 900px) {
  .ap-cta__card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.ap-cta__copy {
  min-width: 0;
  max-width: 560px;
}

.ap-cta__copy .ap-title {
  margin-top: 0.15rem;
}

.ap-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.ap-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.88rem;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.ap-cta__btn--primary {
  color: #fff;
  background: linear-gradient(90deg, var(--royal), var(--rich));
  box-shadow: 0 12px 28px rgba(var(--royal-rgb), 0.22);
}

.ap-cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(var(--royal-rgb), 0.28);
}

.ap-cta__btn--outline {
  color: var(--royal);
  background: transparent;
  border: 1.5px solid rgba(var(--rich-rgb), 0.28);
}

.ap-cta__btn--outline:hover {
  background: rgba(var(--lav-rgb), 0.15);
  border-color: rgba(var(--rich-rgb), 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .ap-audience-item:hover,
  .ap-cta__btn--primary:hover {
    transform: none;
  }
}

/* ============================================================
   Contact page (cp-*)
   ============================================================ */
.contact-page .cp-main {
  overflow-x: clip;
}

.cp-section {
  padding: clamp(2.75rem, 5.5vw, 4.25rem) 0;
}

.cp-head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 640px;
}

.cp-head--center {
  margin-inline: auto;
  text-align: center;
}

.cp-head--center .ap-lead--narrow {
  margin-inline: auto;
}

.cp-head-line {
  display: block;
  width: min(80px, 20vw);
  height: 2px;
  margin: 1rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-top-green), transparent);
  opacity: 0.7;
}

/* Intro */
.cp-intro {
  background:
    radial-gradient(75% 55% at 50% 0%, rgba(var(--lav-rgb), 0.07), transparent 58%),
    #fff;
}

.cp-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .cp-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.cp-highlight {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.55rem 1.25rem 1.4rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  box-shadow: 0 10px 32px rgba(var(--deep-rgb), 0.05);
  overflow: hidden;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.cp-highlight::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-top-green), var(--rich));
  opacity: 0.9;
}

.cp-highlight:hover {
  transform: translateY(-3px);
  border-color: rgba(var(--rich-rgb), 0.12);
  box-shadow: 0 16px 42px rgba(var(--deep-rgb), 0.09);
}

.cp-highlight__ico {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  font-size: 1.05rem;
  color: var(--rich);
  background: linear-gradient(145deg, rgba(var(--lav-rgb), 0.38), rgba(var(--lav-rgb), 0.14));
  box-shadow: 0 4px 14px rgba(var(--rich-rgb), 0.08);
  transition:
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.cp-highlight:hover .cp-highlight__ico {
  color: #fff;
  background: linear-gradient(145deg, var(--accent-top-green), var(--rich));
  box-shadow: 0 8px 20px rgba(var(--rich-rgb), 0.22);
}

.cp-highlight__title {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  font-weight: 700;
  color: var(--royal);
  line-height: 1.28;
}

.cp-highlight__text {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--muted);
}

/* Info cards */
.cp-info {
  background:
    radial-gradient(80% 50% at 50% 0%, rgba(var(--lav-rgb), 0.08), transparent 60%),
    var(--warm);
}

.cp-info__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cp-info__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cp-info__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cp-info-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.2rem 1.15rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  border-left: 3px solid var(--accent-top-green);
  box-shadow: 0 8px 24px rgba(var(--deep-rgb), 0.04);
  transition: box-shadow 0.35s ease, border-color 0.3s ease;
}

.cp-info-card:hover {
  border-color: rgba(var(--rich-rgb), 0.14);
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.07);
}

.cp-info-card__ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  font-size: 0.92rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.26);
}

.cp-info-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--royal);
}

.cp-info-card__main {
  margin: 0 0 0.45rem;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--royal);
  font-weight: 600;
}

.cp-info-card__main a {
  color: inherit;
  text-decoration: none;
}

.cp-info-card__main a:hover {
  color: var(--rich);
  text-decoration: underline;
}

.cp-info-card__hint {
  margin: auto 0 0;
  padding-top: 0.35rem;
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Form section */
.cp-form-section {
  background: #fff;
}

.cp-form-section__layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 960px) {
  .cp-form-section__layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    gap: clamp(2.5rem, 4vw, 3.5rem);
  }
}

.cp-form-trust {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.cp-form-trust li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--muted);
}

.cp-form-trust i {
  flex-shrink: 0;
  margin-top: 0.2rem;
  color: var(--rich);
  font-size: 0.75rem;
}

.cp-form-wrap {
  padding: clamp(1.35rem, 3vw, 1.75rem);
  border-radius: 20px;
  background: var(--warm);
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.06);
}

.cp-form__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 560px) {
  .cp-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.cp-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cp-field--full {
  grid-column: 1 / -1;
}

.cp-field span {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--royal);
}

.cp-field input,
.cp-field select,
.cp-field textarea {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(var(--royal-rgb), 0.12);
  border-radius: 10px;
  font: inherit;
  font-size: 0.88rem;
  color: var(--royal);
  background: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.cp-field input:focus,
.cp-field select:focus,
.cp-field textarea:focus {
  outline: none;
  border-color: var(--accent-top-green);
  box-shadow: 0 0 0 3px rgba(var(--lav-rgb), 0.35);
}

.cp-field textarea {
  resize: vertical;
  min-height: 100px;
}

.cp-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  margin-top: 1rem;
  padding: 0.82rem 1.5rem;
  border: none;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, var(--royal), var(--rich));
  box-shadow: 0 12px 28px rgba(var(--royal-rgb), 0.22);
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.cp-form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(var(--royal-rgb), 0.28);
}

.cp-form__note {
  margin: 0.85rem 0 0;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--muted);
}

.cp-form__status {
  margin: 0.65rem 0 0;
  font-size: 0.84rem;
  font-weight: 600;
}

.cp-form__status.ok {
  color: var(--rich);
}

.cp-form__status.err {
  color: #b42318;
}

/* Product cards */
.cp-products {
  background: var(--page-bg);
}

.cp-products__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cp-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .cp-products__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cp-product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 10px 28px rgba(var(--deep-rgb), 0.05);
  transition: box-shadow 0.35s ease, transform 0.35s var(--ease);
}

.cp-product-card:hover {
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.09);
  transform: translateY(-3px);
}

.cp-product-card img {
  display: block;
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.cp-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem 1.05rem 1.15rem;
}

.cp-product-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--royal);
}

.cp-product-card p {
  margin: 0 0 0.85rem;
  flex: 1;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

.cp-product-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rich);
  cursor: pointer;
  text-align: left;
  transition: gap 0.25s ease, color 0.25s ease;
}

.cp-product-card__link:hover {
  gap: 0.55rem;
  color: var(--royal);
}

/* Support */
.cp-support {
  background:
    radial-gradient(70% 50% at 100% 0%, rgba(var(--lav-rgb), 0.08), transparent 55%),
    var(--warm);
}

.cp-support__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .cp-support__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .cp-support__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.cp-support-card {
  position: relative;
  padding: 1.2rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  box-shadow: 0 8px 24px rgba(var(--deep-rgb), 0.04);
}

.cp-support-card__num {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: rgba(var(--rich-rgb), 0.35);
}

.cp-support-card__ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.26);
}

.cp-support-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1.3;
  padding-right: 1.5rem;
}

.cp-support-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Location */
.cp-location {
  background: #fff;
}

.cp-location__layout {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .cp-location__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

.cp-location__address {
  margin: 1.25rem 0;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--royal);
}

.cp-location__address strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cp-location__maps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--royal);
  text-decoration: none;
  border: 1.5px solid rgba(var(--rich-rgb), 0.25);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.cp-location__maps-btn:hover {
  background: rgba(var(--lav-rgb), 0.18);
  border-color: rgba(var(--rich-rgb), 0.4);
}

.cp-location__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.08);
  min-height: 320px;
}

.cp-location__map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* CTA strip */
.cp-cta-strip {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(155deg, #152a1f 0%, var(--royal) 55%, #1e3d2b 100%);
  color: #fff;
}

.cp-cta-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .cp-cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.cp-cta-strip__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-top-green);
}

.cp-cta-strip__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.cp-cta-strip__text {
  margin: 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.cp-cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cp-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.cp-cta-strip__btn--primary {
  color: var(--royal);
  background: var(--accent-top-green);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.cp-cta-strip__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.cp-cta-strip__btn--outline {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.cp-cta-strip__btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

/* FAQ */
.cp-faq {
  background: var(--page-bg);
  padding-bottom: clamp(3.5rem, 7vw, 5rem);
}

.cp-faq__list {
  max-width: 800px;
  margin-inline: auto;
  display: grid;
  gap: 0.75rem;
}

.cp-faq-item {
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 6px 18px rgba(var(--deep-rgb), 0.04);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.cp-faq-item.is-open {
  border-color: rgba(var(--rich-rgb), 0.16);
  box-shadow: 0 10px 28px rgba(var(--deep-rgb), 0.07);
}

.cp-faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.15rem 1.25rem;
  border: none;
  background: none;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.85vw, 1.2rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--royal);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

.cp-faq-item__trigger span {
  flex: 1;
  min-width: 0;
}

.cp-faq-item__trigger::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rich);
  transition: transform 0.35s var(--ease), color 0.25s ease;
}

.cp-faq-item.is-open .cp-faq-item__trigger {
  color: var(--rich);
}

.cp-faq-item.is-open .cp-faq-item__trigger::after {
  transform: rotate(45deg);
}

.cp-faq-item__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}

.cp-faq-item.is-open .cp-faq-item__panel {
  grid-template-rows: 1fr;
}

.cp-faq-item__inner {
  overflow: hidden;
}

.cp-faq-item__inner p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  font-size: clamp(0.9rem, 1.35vw, 0.96rem);
  line-height: 1.65;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.35s var(--ease) 0.05s,
    transform 0.35s var(--ease) 0.05s;
}

.cp-faq-item.is-open .cp-faq-item__inner p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .cp-product-card:hover,
  .cp-form__submit:hover,
  .cp-cta-strip__btn--primary:hover,
  .cp-highlight:hover {
    transform: none;
  }

  .cp-faq-item__panel,
  .cp-faq-item__inner p,
  .cp-faq-item__trigger::after {
    transition: none;
  }

  .cp-faq-item.is-open .cp-faq-item__inner p {
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   Products archive (pp-*)
   ============================================================ */
.products-page .pp-main {
  overflow-x: clip;
}

.pp-section {
  padding: clamp(2.75rem, 5.5vw, 4.25rem) 0;
}

.pp-head {
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
  max-width: 640px;
}

.pp-head--center {
  margin-inline: auto;
  text-align: center;
}

.pp-head--center .ap-lead--narrow {
  margin-inline: auto;
}

.pp-head-line {
  display: block;
  width: min(72px, 18vw);
  height: 2px;
  margin: 0.85rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-top-green), transparent);
  opacity: 0.55;
}

.pp-reveal {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease);
}

.pp-reveal.pp--visible {
  opacity: 1;
  transform: none;
}

/* Intro */
.pp-intro {
  background: #fff;
}

.pp-intro__grid {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .pp-intro__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.pp-checklist {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.pp-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.88rem;
  line-height: 1.58;
  color: var(--muted);
}

.pp-checklist i {
  flex-shrink: 0;
  margin-top: 0.22rem;
  color: var(--rich);
  font-size: 0.72rem;
}

.pp-intro__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.08);
}

.pp-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.pp-intro__media:hover img {
  transform: scale(1.03);
}

/* Intro — circular product mosaic (center + 4 satellites on ring) */
.pp-intro__mosaic {
  position: relative;
  display: block;
  width: 100%;
  max-width: min(100%, 400px);
  margin: 0 auto;
  aspect-ratio: 1;
  --pp-orbit-r: 33%;
  --pp-ring-r: 36%;
  --pp-main-size: 40%;
  --pp-corner-size: 21%;
}

.pp-intro__mosaic::before {
  content: "";
  position: absolute;
  left: calc(50% - var(--pp-ring-r));
  top: calc(50% - var(--pp-ring-r));
  width: calc(var(--pp-ring-r) * 2);
  height: calc(var(--pp-ring-r) * 2);
  border: 1px dashed rgba(var(--rich-rgb), 0.16);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.pp-intro__bubble {
  position: absolute;
  z-index: 2;
  margin: 0;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  cursor: zoom-in;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  border: 3px solid #fff;
  box-shadow:
    0 0 0 1px rgba(var(--royal-rgb), 0.08),
    0 8px 22px rgba(var(--deep-rgb), 0.1);
  transition:
    transform 0.45s var(--ease),
    box-shadow 0.45s ease,
    z-index 0s;
  transform: translate(-50%, -50%);
}

.pp-intro__bubble--main {
  width: var(--pp-main-size);
  left: 50%;
  top: 50%;
  z-index: 3;
  box-shadow:
    0 0 0 1px rgba(var(--royal-rgb), 0.1),
    0 14px 36px rgba(var(--deep-rgb), 0.12);
}

.pp-intro__bubble--s1,
.pp-intro__bubble--s2,
.pp-intro__bubble--s3,
.pp-intro__bubble--s4 {
  width: var(--pp-corner-size);
  z-index: 2;
}

/* 4 satellites — equal 90° spacing on orbit (diagonal corners) */
.pp-intro__bubble--s1 {
  left: calc(50% - var(--pp-orbit-r) * 0.707);
  top: calc(50% - var(--pp-orbit-r) * 0.707);
}

.pp-intro__bubble--s2 {
  left: calc(50% + var(--pp-orbit-r) * 0.707);
  top: calc(50% - var(--pp-orbit-r) * 0.707);
}

.pp-intro__bubble--s3 {
  left: calc(50% - var(--pp-orbit-r) * 0.707);
  top: calc(50% + var(--pp-orbit-r) * 0.707);
}

.pp-intro__bubble--s4 {
  left: calc(50% + var(--pp-orbit-r) * 0.707);
  top: calc(50% + var(--pp-orbit-r) * 0.707);
}

.pp-intro__bubble img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
  pointer-events: none;
}

.pp-intro__bubble-hint {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(var(--royal-rgb), 0.42);
  color: #fff;
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.pp-intro__bubble:focus-visible {
  outline: 2px solid var(--rich);
  outline-offset: 3px;
}

@media (hover: hover) {
  .pp-intro__bubble:hover .pp-intro__bubble-hint,
  .pp-intro__bubble:focus-visible .pp-intro__bubble-hint {
    opacity: 1;
  }
}

@media (min-width: 960px) {
  .pp-intro__mosaic {
    max-width: none;
    margin: 0;
    min-height: clamp(360px, 40vw, 460px);
    --pp-orbit-r: 37%;
    --pp-ring-r: 41%;
    --pp-main-size: 42%;
    --pp-corner-size: 23%;
  }
}

@media (hover: hover) {
  .pp-intro__bubble:hover {
    z-index: 6;
    box-shadow:
      0 0 0 1px rgba(var(--rich-rgb), 0.22),
      0 18px 44px rgba(var(--deep-rgb), 0.16);
  }

  .pp-intro__bubble:not(.pp-intro__bubble--main):hover {
    transform: translate(-50%, -50%) scale(1.12);
  }

  .pp-intro__bubble--main:hover {
    transform: translate(-50%, -50%) scale(1.08);
  }

  .pp-intro__bubble:hover img {
    transform: scale(1.14);
  }
}

/* Image zoom lightbox */
.img-lightbox {
  position: fixed;
  inset: 0;
  z-index: 5100;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition:
    visibility 0.35s,
    opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-lightbox.is-open {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}

.img-lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(12, 28, 20, 0.88);
  cursor: zoom-out;
}

.img-lightbox__stage {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  max-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  transform: scale(0.92);
  opacity: 0;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.img-lightbox.is-open .img-lightbox__stage {
  transform: scale(1);
  opacity: 1;
}

.img-lightbox__close {
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition:
    background 0.28s ease,
    transform 0.28s ease;
  z-index: 3;
}

.img-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: rotate(90deg);
}

.img-lightbox__figure {
  margin: 0;
  width: 100%;
  max-height: min(82vh, 780px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.img-lightbox__img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: min(78vh, 740px);
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  background: #fff;
}

.img-lightbox__caption {
  margin: 0;
  padding: 0 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
}

@media (min-width: 640px) {
  .img-lightbox__close {
    top: -0.5rem;
    right: -0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .img-lightbox,
  .img-lightbox__stage {
    transition: none;
  }

  .img-lightbox__stage {
    transform: none;
  }

  .img-lightbox.is-open .img-lightbox__stage {
    opacity: 1;
  }
}

/* Category grid */
.pp-grid-section {
  background: var(--page-bg);
}

.pp-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.pp-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 10px 28px rgba(var(--deep-rgb), 0.05);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.3s ease;
}

.pp-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--rich-rgb), 0.14);
  box-shadow: 0 18px 44px rgba(var(--deep-rgb), 0.1);
}

.pp-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pp-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

.pp-card:hover .pp-card__media img {
  transform: scale(1.06);
}

.pp-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.15rem 1.2rem;
}

.pp-card__label {
  display: inline-block;
  margin-bottom: 0.45rem;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rich);
}

.pp-card h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.12rem, 1.8vw, 1.28rem);
  font-weight: 700;
  line-height: 1.25;
}

.pp-card h3 a {
  color: var(--royal);
  text-decoration: none;
}

.pp-card h3 a:hover {
  color: var(--rich);
}

.pp-card p {
  margin: 0 0 0.75rem;
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--muted);
}

.pp-card__tags {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.pp-card__tags li {
  padding: 0.22rem 0.52rem;
  border-radius: 999px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.28);
}

.pp-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--rich);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
}

.pp-card__link:hover {
  gap: 0.55rem;
  color: var(--royal);
}

/* Featured bagasse */
.pp-featured {
  background:
    radial-gradient(80% 50% at 0% 50%, rgba(var(--lav-rgb), 0.1), transparent 55%),
    var(--warm);
}

.pp-featured__layout {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
  align-items: center;
}

@media (min-width: 960px) {
  .pp-featured__layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }
}

.pp-badges {
  list-style: none;
  margin: 1.15rem 0 1.35rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.pp-badges li {
  padding: 0.32rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--royal);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(var(--rich-rgb), 0.12);
}

.pp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.72rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(90deg, var(--royal), var(--rich));
  box-shadow: 0 12px 28px rgba(var(--royal-rgb), 0.22);
  transition: transform 0.3s var(--ease), box-shadow 0.3s ease, gap 0.25s ease;
}

.pp-btn:hover {
  transform: translateY(-2px);
  gap: 0.65rem;
  box-shadow: 0 16px 36px rgba(var(--royal-rgb), 0.28);
}

.pp-featured__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .pp-featured__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pp-mini {
  padding: 0;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  box-shadow: 0 8px 22px rgba(var(--deep-rgb), 0.04);
  text-align: center;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.pp-mini:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(var(--deep-rgb), 0.08);
}

.pp-mini img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.pp-mini h3 {
  margin: 0.65rem 0.75rem 0.3rem;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--royal);
}

.pp-mini p {
  margin: 0 0.75rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Support */
.pp-support {
  background: #fff;
}

.pp-support__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pp-support__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pp-support__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.pp-support-card {
  padding: 1.2rem 1.1rem;
  border-radius: 14px;
  background: var(--warm);
  border: 1px solid rgba(var(--royal-rgb), 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s var(--ease);
}

.pp-support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(var(--deep-rgb), 0.06);
}

.pp-support-card__ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.7rem;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.28);
}

.pp-support-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal);
}

.pp-support-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Why */
.pp-why {
  background: var(--page-bg);
}

.pp-why__grid {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pp-why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pp-why__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pp-why-card {
  padding: 1.2rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  box-shadow: 0 8px 22px rgba(var(--deep-rgb), 0.04);
  transition: box-shadow 0.35s ease;
}

.pp-why-card:hover {
  box-shadow: 0 12px 30px rgba(var(--deep-rgb), 0.07);
}

.pp-why-card__ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.65rem;
  border-radius: 50%;
  font-size: 0.88rem;
  color: #fff;
  background: linear-gradient(145deg, var(--rich), var(--royal));
}

.pp-why-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal);
}

.pp-why-card p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Docs on products page */
.pp-docs {
  background:
    radial-gradient(90% 60% at 100% 50%, rgba(var(--lav-rgb), 0.08), transparent 55%),
    var(--warm);
}

.pp-docs__layout {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .pp-docs__layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

.pp-docs__grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .pp-docs__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.pp-doc {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  border-left: 3px solid var(--accent-top-green);
  box-shadow: 0 8px 24px rgba(var(--deep-rgb), 0.04);
}

.pp-doc__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem;
  min-height: 2.375rem;
  margin-bottom: 0.65rem;
}

.pp-doc__ico {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 0.86rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.24);
}

.pp-doc__badge {
  flex: 0 0 auto;
  align-self: flex-start;
  font-size: 0.56rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: right;
  white-space: nowrap;
  color: var(--rich);
  padding: 0.32rem 0.5rem;
  border-radius: 999px;
  background: rgba(var(--lav-rgb), 0.28);
}

.pp-doc h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--royal);
}

.pp-doc p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--muted);
}

/* CTA strip */
.pp-cta-strip {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(155deg, #152a1f 0%, var(--royal) 55%, #1e3d2b 100%);
  color: #fff;
}

.pp-cta-strip__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .pp-cta-strip__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
}

.pp-cta-strip__label {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-top-green);
}

.pp-cta-strip__title {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
}

.pp-cta-strip__text {
  margin: 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.pp-cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  flex-shrink: 0;
}

.pp-cta-strip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.3s var(--ease), background 0.3s ease, box-shadow 0.3s ease;
}

.pp-cta-strip__btn--primary {
  color: var(--royal);
  background: var(--accent-top-green);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.pp-cta-strip__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
}

.pp-cta-strip__btn--outline {
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
}

.pp-cta-strip__btn--outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.65);
}

@media (prefers-reduced-motion: reduce) {
  .pp-reveal {
    opacity: 1;
    transform: none;
  }

  .pp-card:hover,
  .pp-mini:hover,
  .pp-btn:hover,
  .pp-cta-strip__btn--primary:hover,
  .pp-intro__media:hover img,
  .pp-intro__bubble:hover,
  .pp-intro__bubble:hover img {
    transform: none;
  }
}

/* ============================================================
   Product detail (pd-*)
   ============================================================ */
.product-detail-page .pd-main {
  overflow-x: clip;
}

.pd-offer-section {
  position: relative;
  overflow: hidden;
  background: #fff;
}

.pd-offer__layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 960px) {
  .pd-offer__layout {
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(2rem, 4vw, 3.5rem);
  }
}

.pd-offer__intro {
  max-width: 34rem;
}

.pd-offer__intro .ap-title {
  margin-top: 0.35rem;
}

.pd-offer__head-line {
  display: block;
  width: min(72px, 18vw);
  height: 3px;
  margin: 0.85rem 0 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-top-green), var(--rich));
}

.pd-offer__intro .ap-lead {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.68;
}

.pd-offer__timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}

.pd-offer__timeline::before {
  content: "";
  position: absolute;
  top: 1.35rem;
  bottom: 1.35rem;
  left: 1.32rem;
  width: 2px;
  background: linear-gradient(180deg, rgba(var(--lav-rgb), 0.15), rgba(var(--rich-rgb), 0.35), rgba(var(--lav-rgb), 0.15));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.8s var(--ease);
}

.pd-offer-section--visible .pd-offer__timeline::before {
  transform: scaleY(1);
}

.pd-offer-item {
  position: relative;
  display: grid;
  grid-template-columns: 2.65rem minmax(0, 1fr);
  gap: 1rem 1.15rem;
  align-items: start;
  padding: 1.15rem 0 1.15rem 0.15rem;
  border-bottom: 1px solid rgba(var(--royal-rgb), 0.08);
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  transition:
    opacity 0.55s var(--ease),
    transform 0.45s var(--ease),
    background 0.35s ease;
}

.pd-offer-item:first-child {
  padding-top: 0.35rem;
}

.pd-offer-item:last-child {
  border-bottom: none;
  padding-bottom: 0.35rem;
}

.pd-offer-section--visible .pd-offer-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pd-offer-section--visible .pd-offer-item:nth-child(1) { transition-delay: 0.1s; }
.pd-offer-section--visible .pd-offer-item:nth-child(2) { transition-delay: 0.2s; }
.pd-offer-section--visible .pd-offer-item:nth-child(3) { transition-delay: 0.3s; }
.pd-offer-section--visible .pd-offer-item:nth-child(4) { transition-delay: 0.4s; }

.pd-offer-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-top-green), var(--rich));
  transform: scaleY(0);
  transform-origin: center top;
  transition: transform 0.4s var(--ease);
}

.pd-offer-item:hover {
  background: linear-gradient(90deg, rgba(var(--lav-rgb), 0.08), transparent 72%);
}

.pd-offer-item:hover::after {
  transform: scaleY(1);
}

.pd-offer-item__node {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: #fff;
  border: 2px solid rgba(var(--rich-rgb), 0.18);
  color: var(--rich);
  font-size: 0.95rem;
  box-shadow: 0 0 0 6px #fff;
  transition:
    transform 0.4s var(--ease),
    border-color 0.35s ease,
    background 0.35s ease,
    color 0.35s ease,
    box-shadow 0.35s ease;
}

.pd-offer-item:hover .pd-offer-item__node {
  transform: scale(1.08);
  border-color: rgba(var(--rich-rgb), 0.42);
  background: linear-gradient(145deg, rgba(var(--lav-rgb), 0.34), #fff);
  color: var(--royal);
  box-shadow: 0 0 0 6px #fff, 0 8px 20px rgba(var(--deep-rgb), 0.1);
}

.pd-offer-item__copy {
  padding-top: 0.2rem;
}

.pd-offer-item__copy h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-ui);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--royal);
  transition: color 0.3s ease, transform 0.35s var(--ease);
}

.pd-offer-item:hover .pd-offer-item__copy h3 {
  color: var(--rich);
  transform: translateX(4px);
}

.pd-offer-item__copy p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
  transition: color 0.3s ease;
}

.pd-offer-item:hover .pd-offer-item__copy p {
  color: rgba(var(--royal-rgb), 0.72);
}

@media (max-width: 959px) {
  .pd-offer__intro {
    max-width: none;
    text-align: center;
  }

  .pd-offer__head-line {
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pd-offer__timeline::before {
    transform: scaleY(1);
    transition: none;
  }

  .pd-offer-item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pd-offer-item:hover,
  .pd-offer-item:hover .pd-offer-item__node,
  .pd-offer-item:hover .pd-offer-item__copy h3 {
    transform: none;
  }

  .pd-offer-item::after {
    display: none;
  }
}

.pd-overview__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.pd-btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.25rem;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--royal);
  text-decoration: none;
  background: #fff;
  border: 1.5px solid rgba(var(--royal-rgb), 0.16);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s var(--ease);
}

.pd-btn-outline:hover {
  border-color: rgba(var(--rich-rgb), 0.35);
  background: rgba(var(--lav-rgb), 0.12);
  transform: translateY(-1px);
}

.pd-benefits {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(90% 60% at 50% 0%, rgba(var(--lav-rgb), 0.12), transparent 58%),
    var(--page-bg);
}

.pd-benefits__glow {
  pointer-events: none;
  position: absolute;
  width: min(520px, 80vw);
  height: min(520px, 80vw);
  top: -18%;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--lav-rgb), 0.18) 0%, transparent 68%);
  opacity: 0;
  transition: opacity 1s var(--ease);
}

.pd-benefits--visible .pd-benefits__glow {
  opacity: 1;
}

.pd-benefits .pp-head .ap-title {
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.16;
}

.pd-benefits .pp-head-line {
  width: 0;
  opacity: 0.55;
  transition: width 0.8s var(--ease);
}

.pd-benefits--visible .pp-head-line {
  width: min(80px, 20vw);
}

.pd-benefits__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  counter-reset: pd-benefit;
}

@media (min-width: 640px) {
  .pd-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .pd-benefits__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.05rem;
  }
}

.pd-benefit {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.25rem 1.15rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 10px 28px rgba(var(--deep-rgb), 0.05);
  overflow: hidden;
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.pd-benefit:nth-child(odd) {
  transform: translate3d(-10px, 24px, 0) scale(0.98);
}

.pd-benefit:nth-child(even) {
  transform: translate3d(10px, 24px, 0) scale(0.98);
}

.pd-benefits--visible .pd-benefit {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.pd-benefits--visible .pd-benefit:nth-child(1) { transition-delay: 0.08s; }
.pd-benefits--visible .pd-benefit:nth-child(2) { transition-delay: 0.16s; }
.pd-benefits--visible .pd-benefit:nth-child(3) { transition-delay: 0.24s; }
.pd-benefits--visible .pd-benefit:nth-child(4) { transition-delay: 0.32s; }
.pd-benefits--visible .pd-benefit:nth-child(5) { transition-delay: 0.4s; }
.pd-benefits--visible .pd-benefit:nth-child(6) { transition-delay: 0.48s; }

.pd-benefit::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-top-green), var(--rich));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 0.45s var(--ease);
}

.pd-benefits--visible .pd-benefit::before {
  transform: scaleY(1);
}

.pd-benefit::after {
  content: counter(pd-benefit, decimal-leading-zero);
  counter-increment: pd-benefit;
  position: absolute;
  top: 0.7rem;
  right: 0.8rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  color: rgba(var(--royal-rgb), 0.07);
  pointer-events: none;
  transition: color 0.35s ease, transform 0.35s var(--ease);
}

.pd-benefit:hover {
  border-color: rgba(var(--rich-rgb), 0.16);
  box-shadow: 0 16px 36px rgba(var(--deep-rgb), 0.09);
  transform: translateY(-3px) scale(1);
}

.pd-benefit:hover::after {
  color: rgba(var(--rich-rgb), 0.14);
  transform: scale(1.05);
}

.pd-benefit__ico {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  font-size: 0.92rem;
  color: var(--rich);
  background: linear-gradient(145deg, rgba(var(--lav-rgb), 0.42), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(var(--rich-rgb), 0.12);
  box-shadow: 0 6px 16px rgba(var(--deep-rgb), 0.06);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.35s ease,
    background 0.35s ease;
}

.pd-benefit__ico::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 14px;
  border: 1px solid rgba(var(--rich-rgb), 0.2);
  opacity: 0;
  transform: scale(0.82);
  transition:
    opacity 0.35s ease,
    transform 0.4s var(--ease);
}

.pd-benefit:hover .pd-benefit__ico {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 10px 22px rgba(var(--deep-rgb), 0.1);
}

.pd-benefit:hover .pd-benefit__ico::after {
  opacity: 1;
  transform: scale(1);
}

.pd-benefit h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.4rem;
  padding-right: 1.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.6vw, 1.15rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--royal);
  transition: color 0.3s ease;
}

.pd-benefit:hover h3 {
  color: var(--rich);
}

.pd-benefit p {
  position: relative;
  z-index: 1;
  margin: 0;
  flex: 1;
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .pd-benefits__glow {
    opacity: 1;
    transition: none;
  }

  .pd-benefits .pp-head-line {
    width: min(80px, 20vw);
  }

  .pd-benefit,
  .pd-benefit:nth-child(odd),
  .pd-benefit:nth-child(even) {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }

  .pd-benefit::before {
    transform: scaleY(1);
  }

  .pd-benefit:hover,
  .pd-benefit:hover .pd-benefit__ico,
  .pd-benefit:hover::after {
    transform: none;
  }
}

.pd-range {
  background: #fff;
  padding-bottom: clamp(3rem, 5vw, 4rem);
}

.pd-range .pp-head .ap-title {
  font-size: clamp(1.65rem, 3vw, 2.2rem);
  line-height: 1.16;
}

.pd-range__head-line {
  display: block;
  width: 0;
  height: 2px;
  margin: 0.85rem auto 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--accent-top-green), transparent);
  opacity: 0.55;
  transition: width 0.8s var(--ease);
}

.pd-range--visible .pd-range__head-line {
  width: min(80px, 20vw);
}

/* Ribbon — no cards, connected horizontal timeline */
.pd-range__ribbon {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  padding-top: 0.5rem;
}

.pd-range__line {
  display: none;
  pointer-events: none;
}

.pd-range__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

.pd-range-step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.pd-range-step__node {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid #fff;
  background: var(--rich);
  box-shadow: 0 0 0 1px rgba(var(--rich-rgb), 0.1), 0 8px 20px rgba(var(--deep-rgb), 0.1);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s ease;
}

.pd-range-step__num {
  position: absolute;
  top: -0.35rem;
  right: -0.2rem;
  min-width: 1.35rem;
  padding: 0.12rem 0.32rem;
  border-radius: 999px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--royal);
  background: var(--accent-top-green);
  box-shadow: 0 2px 8px rgba(var(--deep-rgb), 0.12);
}

.pd-range-step__ico {
  font-size: 1rem;
  line-height: 1;
  color: #fff;
}

.pd-range-step__node--img {
  background: #fff;
  padding: 0;
  overflow: hidden;
}

.pd-range-step__node--img img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

.pd-range-step__copy h3 {
  transition: color 0.3s ease;
}

@media (hover: hover) {
  .pd-range-step:hover .pd-range-step__node {
    transform: scale(1.12);
    box-shadow:
      0 0 0 1px rgba(var(--rich-rgb), 0.2),
      0 14px 32px rgba(var(--deep-rgb), 0.16);
  }

  .pd-range-step:hover .pd-range-step__node--img img {
    transform: scale(1.15);
  }

  .pd-range-step:hover .pd-range-step__copy h3 {
    color: var(--rich);
  }
}

.pd-range-step__copy {
  min-width: 0;
  padding-top: 0.35rem;
}

.pd-range-step__copy h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.5vw, 1.12rem);
  font-weight: 700;
  line-height: 1.28;
  color: var(--royal);
}

.pd-range-step__copy p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.58;
  color: var(--muted);
}

/* Mobile — vertical ribbon with spine */
@media (max-width: 959px) {
  .pd-range__line {
    display: block;
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 25px;
    width: 2px;
    z-index: 0;
  }

  .pd-range__line-track,
  .pd-range__line-fill {
    position: absolute;
    inset: 0;
    border-radius: 999px;
  }

  .pd-range__line-track {
    background: rgba(var(--rich-rgb), 0.14);
  }

  .pd-range__line-fill {
    height: 0;
    background: linear-gradient(180deg, var(--accent-top-green), var(--rich));
    transition: height 1s var(--ease);
  }

  .pd-range--visible .pd-range__line-fill {
    height: 100%;
  }

  .pd-range-step {
    opacity: 0;
    transform: translateX(-8px);
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease);
  }

  .pd-range--visible .pd-range-step:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.12s; }
  .pd-range--visible .pd-range-step:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.22s; }
  .pd-range--visible .pd-range-step:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.32s; }
  .pd-range--visible .pd-range-step:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.42s; }
  .pd-range--visible .pd-range-step:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.52s; }
  .pd-range--visible .pd-range-step:nth-child(6) { opacity: 1; transform: none; transition-delay: 0.62s; }
}

/* Desktop — horizontal connected ribbon */
@media (min-width: 960px) {
  .pd-range__line {
    display: block;
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    height: 2px;
    z-index: 0;
  }

  .pd-range__ribbon--4 .pd-range__line {
    left: 12%;
    right: 12%;
  }

  .pd-range__line-track,
  .pd-range__line-fill {
    position: absolute;
    inset: 0;
    border-radius: 999px;
  }

  .pd-range__line-track {
    background: rgba(var(--rich-rgb), 0.14);
  }

  .pd-range__line-fill {
    width: 0;
    background: linear-gradient(90deg, var(--accent-top-green), var(--rich));
    transition: width 1.05s var(--ease);
  }

  .pd-range--visible .pd-range__line-fill {
    width: 100%;
  }

  .pd-range__track {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .pd-range__ribbon--6 .pd-range__track {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .pd-range__ribbon--6 .pd-range__line {
    left: calc(100% / 12);
    right: calc(100% / 12);
  }

  .pd-range-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
    padding: 0 0.2rem;
  }

  .pd-range-step__node {
    margin-bottom: 1rem;
    opacity: 0;
    transform: scale(0.88);
    transition:
      opacity 0.45s var(--ease),
      transform 0.45s var(--ease);
  }

  .pd-range-step__copy {
    padding-top: 0;
    opacity: 0;
    transform: translateY(10px);
    transition:
      opacity 0.5s var(--ease),
      transform 0.5s var(--ease);
  }

  .pd-range-step__copy p {
    max-width: 12.5em;
    margin-inline: auto;
  }

  .pd-range--visible .pd-range-step:nth-child(1) .pd-range-step__node { opacity: 1; transform: scale(1); transition-delay: 0.15s; }
  .pd-range--visible .pd-range-step:nth-child(1) .pd-range-step__copy { opacity: 1; transform: none; transition-delay: 0.28s; }
  .pd-range--visible .pd-range-step:nth-child(2) .pd-range-step__node { opacity: 1; transform: scale(1); transition-delay: 0.25s; }
  .pd-range--visible .pd-range-step:nth-child(2) .pd-range-step__copy { opacity: 1; transform: none; transition-delay: 0.38s; }
  .pd-range--visible .pd-range-step:nth-child(3) .pd-range-step__node { opacity: 1; transform: scale(1); transition-delay: 0.35s; }
  .pd-range--visible .pd-range-step:nth-child(3) .pd-range-step__copy { opacity: 1; transform: none; transition-delay: 0.48s; }
  .pd-range--visible .pd-range-step:nth-child(4) .pd-range-step__node { opacity: 1; transform: scale(1); transition-delay: 0.45s; }
  .pd-range--visible .pd-range-step:nth-child(4) .pd-range-step__copy { opacity: 1; transform: none; transition-delay: 0.58s; }
  .pd-range--visible .pd-range-step:nth-child(5) .pd-range-step__node { opacity: 1; transform: scale(1); transition-delay: 0.55s; }
  .pd-range--visible .pd-range-step:nth-child(5) .pd-range-step__copy { opacity: 1; transform: none; transition-delay: 0.68s; }
  .pd-range--visible .pd-range-step:nth-child(6) .pd-range-step__node { opacity: 1; transform: scale(1); transition-delay: 0.65s; }
  .pd-range--visible .pd-range-step:nth-child(6) .pd-range-step__copy { opacity: 1; transform: none; transition-delay: 0.78s; }
}

@media (prefers-reduced-motion: reduce) {
  .pd-range__head-line {
    width: min(80px, 20vw);
  }

  .pd-range__line-fill {
    width: 100% !important;
    height: 100% !important;
  }

  .pd-range-step,
  .pd-range-step__node,
  .pd-range-step__copy {
    opacity: 1 !important;
    transform: none !important;
    transition-delay: 0s !important;
  }

  .pd-range-step:hover .pd-range-step__node,
  .pd-range-step:hover .pd-range-step__node--img img {
    transform: none !important;
  }
}

.pd-specs {
  background:
    radial-gradient(80% 50% at 0% 50%, rgba(var(--lav-rgb), 0.08), transparent 55%),
    var(--warm);
}

.pd-specs__layout {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .pd-specs__layout {
    grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  }
}

.pd-specs .ap-head {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease);
}

.pd-specs--visible .ap-head {
  opacity: 1;
  transform: none;
}

.pd-specs .ap-head .ap-title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  line-height: 1.16;
}

.pd-specs__head-line {
  display: block;
  width: 0;
  height: 2px;
  margin: 0.75rem 0 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-top-green), rgba(var(--rich-rgb), 0.2));
  transition: width 0.75s var(--ease);
}

.pd-specs--visible .pd-specs__head-line {
  width: min(64px, 16vw);
}

.pd-specs__table-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  background: #fff;
  box-shadow: 0 12px 32px rgba(var(--deep-rgb), 0.06);
  opacity: 0;
  transform: translate3d(20px, 0, 0) scale(0.98);
  transition:
    opacity 0.6s var(--ease),
    transform 0.6s var(--ease),
    box-shadow 0.4s ease;
}

.pd-specs--visible .pd-specs__table-wrap {
  opacity: 1;
  transform: none;
  transition-delay: 0.15s;
}

.pd-specs__table {
  width: 100%;
  border-collapse: collapse;
}

.pd-specs__table tbody tr {
  opacity: 0;
  transform: translateX(10px);
  transition:
    opacity 0.45s var(--ease),
    transform 0.45s var(--ease),
    background 0.25s ease;
}

.pd-specs--visible .pd-specs__table tbody tr {
  opacity: 1;
  transform: none;
}

.pd-specs--visible .pd-specs__table tbody tr:nth-child(1) { transition-delay: 0.28s; }
.pd-specs--visible .pd-specs__table tbody tr:nth-child(2) { transition-delay: 0.36s; }
.pd-specs--visible .pd-specs__table tbody tr:nth-child(3) { transition-delay: 0.44s; }
.pd-specs--visible .pd-specs__table tbody tr:nth-child(4) { transition-delay: 0.52s; }
.pd-specs--visible .pd-specs__table tbody tr:nth-child(5) { transition-delay: 0.6s; }
.pd-specs--visible .pd-specs__table tbody tr:nth-child(6) { transition-delay: 0.68s; }

.pd-specs__table tbody tr:hover th {
  background: rgba(var(--lav-rgb), 0.22);
}

.pd-specs__table tbody tr:hover td {
  background: rgba(var(--lav-rgb), 0.06);
}

.pd-specs__table th,
.pd-specs__table td {
  padding: 0.85rem 1.1rem;
  font-size: 0.84rem;
  line-height: 1.55;
  text-align: left;
  border-bottom: 1px solid rgba(var(--royal-rgb), 0.06);
  transition: background 0.25s ease;
}

.pd-specs__table tr:last-child th,
.pd-specs__table tr:last-child td {
  border-bottom: none;
}

.pd-specs__table th {
  width: 38%;
  font-weight: 700;
  color: var(--royal);
  background: rgba(var(--lav-rgb), 0.12);
}

.pd-specs__table td {
  color: var(--muted);
}

@media (prefers-reduced-motion: reduce) {
  .pd-specs .ap-head,
  .pd-specs__table-wrap,
  .pd-specs__table tbody tr {
    opacity: 1;
    transform: none;
    transition-delay: 0s !important;
  }

  .pd-specs__head-line {
    width: min(64px, 16vw);
  }
}

.pd-related {
  background: #fff;
}

.pd-related__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .pd-related__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pd-related-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--warm);
  border: 1px solid rgba(var(--royal-rgb), 0.07);
  box-shadow: 0 8px 22px rgba(var(--deep-rgb), 0.04);
  transition: transform 0.35s var(--ease), box-shadow 0.35s ease;
}

.pd-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(var(--deep-rgb), 0.08);
}

.pd-related-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.pd-related-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s var(--ease);
}

.pd-related-card:hover .pd-related-card__media img {
  transform: scale(1.05);
}

.pd-related-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.05rem 1.1rem;
}

@media (prefers-reduced-motion: reduce) {
  .pd-related-card:hover,
  .pd-related-card:hover .pd-related-card__media img,
  .pd-btn-outline:hover {
    transform: none;
  }
}

/* ===== Export page ===== */
.export-page {
  background: var(--page-bg);
}

.export-page .ex-main {
  overflow-x: clip;
}

.export-page .ap-banner__bg {
  background:
    url("assets/about%20us%202.png") center / cover no-repeat,
    linear-gradient(135deg, #152a1f, #1e3d2b);
}

/* Banner — route dots + fade-up */
.ex-banner__dots {
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(var(--lav-rgb), 0.9) 1.5px, transparent 1.5px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
}

.ex-banner__inner {
  animation: ex-banner-rise 0.85s var(--ease) both;
}

@keyframes ex-banner-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Intro */
.ex-intro {
  background: #fff;
}

.ex-intro__grid {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .ex-intro__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

.ex-intro__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.08);
}

.ex-intro__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 240px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.ex-intro__media:hover img {
  transform: scale(1.03);
}

.ex-intro__highlights {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.ex-intro__highlights li {
  display: grid;
  gap: 0.15rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(var(--lav-rgb), 0.1);
  border: 1px solid rgba(var(--rich-rgb), 0.08);
}

.ex-intro__highlights strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--royal);
}

.ex-intro__highlights span {
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Export flow — phased bento board (not a timeline) */
.ex-flow {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(90% 55% at 12% 18%, rgba(var(--lav-rgb), 0.1), transparent 52%),
    radial-gradient(70% 50% at 88% 82%, rgba(var(--rich-rgb), 0.06), transparent 55%),
    var(--page-bg);
}

.ex-flow__shell {
  position: relative;
  z-index: 1;
}

.ex-flow__head {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.ex-flow__head .ap-lead--narrow {
  margin-inline: auto;
}

.ex-flow__layout {
  display: grid;
  gap: 1rem;
}

.ex-flow__aside {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(120% 80% at 0% 0%, rgba(var(--lav-rgb), 0.16), transparent 55%),
    linear-gradient(155deg, #0f1f16 0%, var(--royal) 52%, #152a1f 100%);
  box-shadow: 0 20px 48px rgba(var(--deep-rgb), 0.14);
}

.ex-flow__aside::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(var(--lav-rgb), 0.55) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 88%);
}

.ex-flow__aside-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.35rem, 3vw, 1.85rem);
}

.ex-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-top-green);
}

.ex-flow__eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(var(--lav-rgb), 0.75);
}

.ex-flow__aside-lead {
  margin: 0 0 1.25rem;
  font-size: 0.92rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
}

.ex-flow__legend {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.ex-flow__legend li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.ex-flow__legend-mark {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.ex-flow__legend-mark--1 { background: #a8c49a; }
.ex-flow__legend-mark--2 { background: #6fbf98; }
.ex-flow__legend-mark--3 { background: #3d9b72; }
.ex-flow__legend-mark--4 { background: #3d6b4f; }

.ex-flow__board {
  display: grid;
  gap: 1rem;
}

.ex-flow__phase {
  position: relative;
  overflow: hidden;
  padding: clamp(1.15rem, 2.5vw, 1.45rem);
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 14px 36px rgba(var(--deep-rgb), 0.06);
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.ex-flow--visible .ex-flow__phase {
  opacity: 1;
  transform: none;
}

.ex-flow--visible .ex-flow__phase--1 { transition-delay: 0.08s; }
.ex-flow--visible .ex-flow__phase--2 { transition-delay: 0.18s; }
.ex-flow--visible .ex-flow__phase--3 { transition-delay: 0.28s; }
.ex-flow--visible .ex-flow__phase--4 { transition-delay: 0.38s; }

.ex-flow__phase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-top-green), var(--rich));
  opacity: 0.85;
}

.ex-flow__phase--1::before { background: linear-gradient(90deg, #b8e6cf, #a8c49a); }
.ex-flow__phase--2::before { background: linear-gradient(90deg, #a8c49a, #6fbf98); }
.ex-flow__phase--3::before { background: linear-gradient(90deg, #6fbf98, #3d9b72); }
.ex-flow__phase--4::before { background: linear-gradient(90deg, #3d9b72, #3d6b4f); }

.ex-flow__watermark {
  pointer-events: none;
  position: absolute;
  right: 0.5rem;
  top: 0.15rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 4.75rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: rgba(var(--royal-rgb), 0.06);
}

.ex-flow__phase-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.ex-flow__phase-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  font-size: 1rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.18);
}

.ex-flow__phase-label {
  margin: 0 0 0.12rem;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rich);
}

.ex-flow__phase-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--royal);
}

.ex-flow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  position: relative;
  z-index: 1;
}

.ex-flow__steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.85rem 0;
}

.ex-flow__steps li + li {
  border-top: 1px solid rgba(var(--royal-rgb), 0.08);
}

.ex-flow__step-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  padding: 0.2rem 0.35rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--royal);
  background: rgba(var(--lav-rgb), 0.16);
}

.ex-flow__steps strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--royal);
}

.ex-flow__steps p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.58;
  color: var(--muted);
}

@media (hover: hover) {
  .ex-flow__phase:hover {
    border-color: rgba(var(--rich-rgb), 0.16);
    box-shadow: 0 18px 42px rgba(var(--deep-rgb), 0.1);
    transform: translateY(-2px);
  }

  .ex-flow--visible .ex-flow__phase:hover {
    transform: translateY(-2px);
  }
}

@media (min-width: 720px) {
  .ex-flow__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ex-flow__phase--2 {
    transform: translateY(18px);
  }

  .ex-flow__phase--4 {
    transform: translateY(18px);
  }

  .ex-flow--visible .ex-flow__phase--2,
  .ex-flow--visible .ex-flow__phase--4 {
    transform: none;
  }

  .ex-flow--visible .ex-flow__phase--2:hover,
  .ex-flow--visible .ex-flow__phase--4:hover {
    transform: translateY(-2px);
  }
}

@media (min-width: 1024px) {
  .ex-flow__layout {
    grid-template-columns: minmax(240px, 290px) minmax(0, 1fr);
    gap: 1.15rem;
    align-items: stretch;
  }

  .ex-flow__aside {
    position: sticky;
    top: calc(var(--header-offset, 88px) + 1.25rem);
    align-self: start;
  }

  .ex-flow__board {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
  }

  .ex-flow__phase--1 {
    min-height: 100%;
  }

  .ex-flow__phase--4 {
    min-height: 100%;
  }
}

/* Global buyer support */
.ex-buyers {
  background: #fff;
}

.ex-buyers__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 720px) {
  .ex-buyers__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.ex-buyer {
  padding: 1.15rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  background: var(--page-bg);
  transition:
    transform 0.35s var(--ease),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.ex-buyer__ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 0.65rem;
  border-radius: 10px;
  font-size: 0.95rem;
  color: var(--rich);
  background: rgba(var(--lav-rgb), 0.18);
}

.ex-buyer h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--royal);
}

.ex-buyer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.55;
  color: var(--muted);
}

@media (hover: hover) {
  .ex-buyer:hover {
    transform: translateY(-3px);
    border-color: rgba(var(--rich-rgb), 0.16);
    box-shadow: 0 12px 28px rgba(var(--deep-rgb), 0.07);
  }
}

/* Packaging section */
.ex-pack {
  background:
    radial-gradient(70% 50% at 0% 50%, rgba(var(--lav-rgb), 0.1), transparent 60%),
    var(--page-bg);
}

.ex-pack__layout {
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .ex-pack__layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

.ex-pack__media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.08);
}

.ex-pack__media img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 260px;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.ex-pack__media:hover img {
  transform: scale(1.03);
}

.ex-pack__grid {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

@media (min-width: 600px) {
  .ex-pack__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.ex-pack__card {
  padding: 1rem 1.05rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
}

.ex-pack__card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--royal);
}

.ex-pack__card p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Export map visual */
.ex-map {
  position: relative;
  overflow: visible;
  color: #fff;
  background-color: #020807;
  background-image:
    radial-gradient(ellipse 90% 85% at 78% 48%, rgba(var(--rich-rgb), 0.32), transparent 58%),
    radial-gradient(ellipse 70% 75% at 55% 50%, rgba(var(--royal-rgb), 0.2), transparent 55%),
    radial-gradient(ellipse 65% 80% at 15% 50%, rgba(var(--royal-rgb), 0.38), transparent 60%),
    linear-gradient(125deg, #010604 0%, #0a2218 38%, #0d2e1f 52%, #0f1f16 72%, #010604 100%);
}

.ex-map::before {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 50% 70% at 20% 45%, rgba(var(--lav-rgb), 0.08), transparent 65%),
    radial-gradient(ellipse 85% 90% at 88% 50%, rgba(74, 222, 128, 0.07), transparent 50%);
}

.ex-map::after {
  content: "";
  pointer-events: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 55% 65% at 72% 48%, rgba(var(--rich-rgb), 0.18), transparent 62%);
}

.ex-map__layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}

@media (min-width: 960px) {
  .ex-map__layout {
    grid-template-columns: minmax(0, 0.65fr) minmax(0, 1.35fr);
    gap: clamp(1.25rem, 2.5vw, 2.25rem);
    align-items: center;
  }
}

.ex-map__lead {
  margin: 1rem 0 1.35rem;
  max-width: 36rem;
  font-size: 0.94rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.82);
}

.ex-map__points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.ex-map__points li {
  display: grid;
  gap: 0.12rem;
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.ex-map__points strong {
  font-size: 0.86rem;
  font-weight: 700;
  color: #fff;
}

.ex-map__points span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.68);
}

.ex-map__visual {
  position: relative;
  margin: 0;
  width: 100%;
  background: transparent;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
  min-height: clamp(260px, 50vw, 400px);
}

/* Export map — image + route overlay (viewBox 0 0 1000 560) */
.export-map-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.85s var(--ease);
}

.export-map-wrap.is-visible,
.ex-map--visible .export-map-wrap {
  transform: scale(1.06);
}

.export-map-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.85s var(--ease);
  filter: saturate(1.06) brightness(1.02);
}

.export-map-wrap.is-visible .export-map-img,
.ex-map--visible .export-map-img {
  opacity: 1;
}

.export-route-svg {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
}

/* Debug calibration mode — enable pointer-events for click-to-log */
.export-route-svg.export-route-svg--debug {
  pointer-events: auto;
  cursor: crosshair;
}

.export-map-debug {
  pointer-events: none;
}

.export-map-debug__dot {
  fill: #ffd54f;
  stroke: #ff6b6b;
  stroke-width: 1.5;
  filter: url(#routeGlow);
}

.export-map-debug__label,
.export-map-debug__coords {
  fill: #fff7a8;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  paint-order: stroke;
  stroke: rgba(0, 0, 0, 0.75);
  stroke-width: 3px;
  stroke-linejoin: round;
}

.export-map-debug__coords {
  font-size: 10px;
  font-weight: 500;
  fill: #ffe082;
}

/* India origin — stronger than destinations */
.origin-point__core {
  fill: #6effa8;
  filter: url(#routeGlow);
  opacity: 0;
}

.origin-point__pulse {
  fill: none;
  stroke: rgba(110, 255, 168, 0.55);
  stroke-width: 1.5;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.origin-point__pulse--2 {
  animation-delay: 0.75s;
}

.export-map-wrap.is-visible .origin-point__core,
.ex-map--visible .origin-point__core {
  animation: origin-core-in 0.55s var(--ease) forwards;
}

.export-map-wrap.is-visible .origin-point__pulse,
.ex-map--visible .origin-point__pulse {
  animation: origin-pulse 2.6s ease-out infinite;
}

/* Route lines — emerald glow */
.route-path {
  fill: none;
  stroke: #5dff9d;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  filter: url(#routeGlow);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}

.export-map-wrap.is-visible .route-path,
.ex-map--visible .route-path {
  animation: route-draw var(--route-dur, 2.8s) ease-in-out forwards;
  animation-delay: var(--route-delay, 0s);
}

@keyframes route-draw {
  0% {
    stroke-dashoffset: 100;
    opacity: 0;
  }
  8% {
    opacity: 0.9;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
}

/* Destination markers */
.destination-point {
  opacity: 0;
}

.destination-point__core {
  fill: #8dffc0;
  filter: url(#routeGlow);
}

.destination-pulse {
  fill: none;
  stroke: rgba(141, 255, 192, 0.65);
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
}

.export-map-wrap.is-visible .destination-point,
.ex-map--visible .destination-point {
  animation: destination-in 0.5s var(--ease) forwards;
  animation-delay: calc(var(--route-delay, 0s) + var(--route-dur, 2.8s) - 0.3s);
}

.export-map-wrap.is-visible .destination-pulse,
.ex-map--visible .destination-pulse {
  animation: destination-pulse 2s ease-out infinite;
  animation-delay: calc(var(--route-delay, 0s) + var(--route-dur, 2.8s));
}

@keyframes destination-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes destination-pulse {
  0% {
    transform: scale(0.55);
    opacity: 0.65;
  }
  100% {
    transform: scale(1.65);
    opacity: 0;
  }
}

/* Moving export dot along each route */
.route-dot {
  fill: #8dffc0;
  filter: url(#routeGlow);
  opacity: 0;
}

.export-map-wrap.is-visible .route-dot,
.ex-map--visible .route-dot {
  opacity: 1;
}

@keyframes origin-pulse {
  0% {
    transform: scale(0.85);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

@keyframes origin-core-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 960px) {
  .ex-map__visual {
    min-height: clamp(320px, 34vw, 480px);
    padding: 0.75rem 0;
  }

  .export-map-wrap.is-visible,
  .ex-map--visible .export-map-wrap {
    transform: scale(1.08);
  }

  .route-path {
    stroke-width: 1.5;
  }
}

@media (max-width: 959px) {
  .ex-map__visual {
    min-height: clamp(220px, 58vw, 340px);
  }

  .export-map-wrap.is-visible,
  .ex-map--visible .export-map-wrap {
    transform: scale(1.05);
  }

  .route-path {
    stroke-width: 1.6;
  }
}

/* Export inquiry form */
.ex-form {
  background:
    radial-gradient(80% 50% at 100% 0%, rgba(var(--lav-rgb), 0.1), transparent 55%),
    #fff;
}

.ex-form__copy {
  max-width: 34rem;
}

.ex-form__media {
  margin: 1.35rem 0 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 16px 40px rgba(var(--deep-rgb), 0.08);
}

.ex-form__media img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(220px, 42vw, 320px);
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s var(--ease);
}

@media (min-width: 960px) {
  .ex-form .cp-form-section__layout {
    align-items: stretch;
  }

  .ex-form__copy {
    display: flex;
    flex-direction: column;
    max-width: none;
  }

  .ex-form__media {
    flex: 1;
    display: flex;
    min-height: 0;
    margin-top: 1.25rem;
  }

  .ex-form__media img {
    height: 100%;
    max-height: none;
    min-height: 0;
  }
}

@media (hover: hover) {
  .ex-form__media:hover img {
    transform: scale(1.03);
  }
}

.ex-form__wrap {
  box-shadow: 0 20px 48px rgba(var(--deep-rgb), 0.08);
}

/* CTA strip enhancement */
.ex-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.ex-cta__bg {
  pointer-events: none;
  position: absolute;
  inset: -40%;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(var(--lav-rgb), 0.18), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(var(--rich-rgb), 0.22), transparent 50%);
  animation: ex-cta-shift 12s ease-in-out infinite alternate;
}

.ex-cta .pp-cta-strip__inner {
  position: relative;
  z-index: 1;
}

@keyframes ex-cta-shift {
  from {
    transform: translate3d(-3%, -2%, 0) scale(1);
  }
  to {
    transform: translate3d(3%, 2%, 0) scale(1.06);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ex-banner__inner {
    animation: none;
  }

  .ex-flow__phase,
  .export-map-img,
  .export-map-wrap {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .export-map-wrap.is-visible,
  .ex-map--visible .export-map-wrap {
    transform: none;
  }

  .route-path {
    stroke-dashoffset: 0;
    opacity: 0.85;
    animation: none;
  }

  .destination-point,
  .origin-point__core {
    opacity: 1;
    animation: none;
  }

  .destination-pulse,
  .origin-point__pulse {
    animation: none;
    opacity: 0.4;
  }

  .route-dot {
    opacity: 0.85;
  }

  .ex-cta__bg {
    animation: none;
  }

  .ex-flow__phase:hover,
  .ex-buyer:hover,
  .ex-intro__media:hover img,
  .ex-pack__media:hover img {
    transform: none;
  }
}

/* ===== Admin dashboard ===== */
.admin-page {
  min-height: 100vh;
  background: var(--page-bg);
  font-family: var(--font-body, "Plus Jakarta Sans", sans-serif);
}

.admin-shell {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.admin-login__card {
  max-width: 420px;
  margin: 10vh auto 0;
  padding: clamp(1.5rem, 4vw, 2rem);
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 20px 48px rgba(var(--deep-rgb), 0.08);
}

.admin-login__card img {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 1rem;
}

.admin-login__card h1 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  color: var(--royal);
}

.admin-login__card > p {
  margin: 0 0 1.25rem;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--muted);
}

.admin-login__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.admin-login__field span {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--royal);
}

.admin-login__field input {
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(var(--royal-rgb), 0.12);
  border-radius: 10px;
  font: inherit;
}

.admin-login__btn,
.admin-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  border: none;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.admin-login__btn {
  width: 100%;
  color: #fff;
  background: linear-gradient(90deg, var(--royal), var(--rich));
}

.admin-login__error {
  margin: 0.75rem 0 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: #b42318;
}

.admin-topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-topbar__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rich);
}

.admin-topbar h1 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--royal);
}

.admin-topbar__actions {
  display: flex;
  gap: 0.55rem;
}

.admin-btn--ghost {
  color: var(--royal);
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.12);
}

.admin-btn--danger {
  color: #fff;
  background: #b42318;
}

.admin-stats {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 1.25rem;
}

.admin-stat {
  padding: 1rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
}

.admin-stat strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--royal);
}

.admin-stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.admin-stat--export strong {
  color: var(--rich);
}

.admin-stat--contact strong {
  color: #2563eb;
}

.admin-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.admin-filter {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(var(--royal-rgb), 0.12);
  background: #fff;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
}

.admin-filter.is-active {
  color: #fff;
  background: var(--royal);
  border-color: var(--royal);
}

.admin-toolbar__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--muted);
}

.admin-empty {
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 16px;
  background: #fff;
  border: 1px dashed rgba(var(--royal-rgb), 0.14);
  color: var(--muted);
}

.admin-list {
  display: grid;
  gap: 0.85rem;
}

.admin-card {
  padding: 1.1rem 1.15rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(var(--royal-rgb), 0.08);
  box-shadow: 0 10px 24px rgba(var(--deep-rgb), 0.05);
}

.admin-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}

.admin-card__head h2 {
  margin: 0.45rem 0 0.2rem;
  font-size: 1rem;
  color: var(--royal);
}

.admin-card__meta {
  margin: 0;
  font-size: 0.76rem;
  color: var(--muted);
}

.admin-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.admin-badge--export {
  color: #0f5132;
  background: rgba(var(--lav-rgb), 0.35);
}

.admin-badge--contact {
  color: #1e40af;
  background: rgba(147, 197, 253, 0.35);
}

.admin-badge--other {
  color: var(--royal);
  background: rgba(var(--royal-rgb), 0.08);
}

.admin-card__grid {
  display: grid;
  gap: 0.35rem 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-card__grid p,
.admin-card__message {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
}

.admin-card__message {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(var(--royal-rgb), 0.08);
}

@media (max-width: 720px) {
  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-card__grid {
    grid-template-columns: 1fr;
  }
}

/* ========== Performance: faster paint & scroll (animations preserved) ========== */
.site-header {
  contain: layout style;
}

.hero-bg-video {
  transform: translateZ(0);
  will-change: auto;
}

.pp-section,
.featured-products,
.sustain-mockup,
.ap-process,
.site-footer,
.pd-benefits,
.pd-offer-section,
.pd-range,
.pd-specs,
.pd-related,
.pp-cta-strip,
.ap-story,
.ex-form {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.pp-intro {
  content-visibility: visible;
}

@media (prefers-reduced-motion: reduce) {
  .pp-section,
  .featured-products,
  .sustain-mockup,
  .ap-process,
  .site-footer,
  .pd-benefits,
  .pd-offer-section,
  .pd-range,
  .pd-specs,
  .pd-related,
  .pp-cta-strip {
    content-visibility: visible;
    contain-intrinsic-size: none;
  }
}
