:root {
  --green-dark: #0f4c30;
  --green-fresh: #1e7e45;
  --gold: #c8a24b;
  --gray-bg: #f4f6f5;
  --white: #ffffff;
  --text: #2d3748;
  --text-soft: #4a5568;
  --shadow: 0 18px 40px rgba(15, 76, 48, 0.08);
  --radius: 18px;
  --header-h: 92px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(30, 126, 69, 0.08), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(200, 162, 75, 0.1), transparent 45%),
    var(--white);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  color: var(--green-dark);
  border-bottom: 1px solid rgba(15, 76, 48, 0.1);
  box-shadow: 0 8px 24px rgba(15, 76, 48, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 1rem;
}

.brand-logo {
  height: 72px;
  width: auto;
  object-fit: contain;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.25s var(--ease);
}

.site-nav a:hover {
  color: var(--green-fresh);
}

.nav-cta {
  background: var(--green-fresh);
  color: var(--white) !important;
  padding: 0.55rem 1rem;
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--green-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: var(--white);
  background: #0a3522;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, #062015 0%, #0f4c30 46%, #1a5a38 100%);
}

.hero-mesh {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, #000 20%, transparent 75%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-a {
  width: 380px;
  height: 380px;
  right: -60px;
  top: -80px;
  background: radial-gradient(circle, rgba(200, 162, 75, 0.35), transparent 68%);
}

.hero-orb-b {
  width: 280px;
  height: 280px;
  left: -80px;
  bottom: 10%;
  background: radial-gradient(circle, rgba(30, 126, 69, 0.45), transparent 70%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
  padding: clamp(1.75rem, 4vh, 2.75rem) 0 1.25rem;
  width: min(1120px, calc(100% - 2.5rem));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.35);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(200, 162, 75, 0.2);
}

.hero-brand {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.35rem, 5.5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-headline {
  margin: 0.7rem 0 0;
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

.hero-headline::after {
  content: "";
  display: block;
  width: 64px;
  height: 3px;
  margin-top: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-lead {
  margin: 0.75rem 0 0;
  max-width: 40ch;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1.35rem;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 0.7rem 0.8rem;
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

.hero-stat span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 360px;
  isolation: isolate;
}

.hero-stage {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1 / 0.92;
  border-radius: 28px;
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.1), transparent 45%),
    linear-gradient(165deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.28));
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow:
    0 24px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-ring {
  position: absolute;
  width: 68%;
  height: 68%;
  left: 16%;
  top: 14%;
  border-radius: 50%;
  border: 1px solid rgba(200, 162, 75, 0.35);
  box-shadow: inset 0 0 40px rgba(200, 162, 75, 0.08);
}

.hero-glow {
  position: absolute;
  inset: 10% 8% auto;
  height: 50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 75, 0.42), transparent 68%);
  animation: pulse-glow 5.5s ease-in-out infinite;
}

.hero-device {
  position: absolute;
  left: 10%;
  top: 8%;
  z-index: 2;
  width: 40%;
  filter: drop-shadow(0 24px 34px rgba(0, 0, 0, 0.45));
  animation: float-y 7s ease-in-out infinite;
}

.hero-kit {
  position: absolute;
  right: 2%;
  bottom: 4%;
  z-index: 1;
  width: 64%;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.35));
  animation: float-y 8.5s ease-in-out infinite reverse;
}

.hero-float {
  position: absolute;
  z-index: 4;
  background: rgba(255, 255, 255, 0.96);
  color: var(--green-dark);
  border-radius: 14px;
  padding: 0.65rem 0.8rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  max-width: 170px;
}

.hero-float strong {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-float span {
  display: block;
  margin-top: 0.12rem;
  font-size: 0.75rem;
  color: var(--text-soft);
  font-weight: 500;
}

.hero-float-a {
  left: 0;
  bottom: 8%;
  animation: float-y 6.5s ease-in-out infinite;
}

.hero-float-b {
  right: 0;
  top: 6%;
  animation: float-y 7.5s ease-in-out infinite reverse;
}

.hero-highlights {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding: 0 0 1.25rem;
}

.hero-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 0.85rem;
  backdrop-filter: blur(10px);
}

.hero-hl {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  padding: 0.55rem 0.45rem;
}

.hero-hl-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: rgba(200, 162, 75, 0.18);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-hl strong {
  display: block;
  font-size: 0.9rem;
  color: #fff;
}

.hero-hl p {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.price-note {
  margin: -0.55rem 0 0.85rem;
  color: var(--text-soft);
  font-size: 0.86rem;
}

.product-info .price-note {
  margin-top: -0.35rem;
  color: rgba(15, 76, 48, 0.7);
}

.source-note {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.source-note a {
  color: var(--green-fresh);
  font-weight: 600;
}

.source-note a:hover {
  color: var(--gold);
}


.kit-section {
  background: var(--white);
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.kit-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 22px 50px rgba(15, 76, 48, 0.08);
  background: var(--white);
}

.kit-visual {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 50% 35%, rgba(200, 162, 75, 0.28), transparent 55%),
    linear-gradient(165deg, #101010 0%, #1c1c1c 100%);
  display: grid;
  place-items: center;
}

.kit-visual img {
  width: min(88%, 360px);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.45));
}

.kit-visual-badge {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.kit-visual-badge strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.95rem;
}

.kit-visual-badge span {
  display: block;
  margin-top: 0.15rem;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.kit-content {
  padding: clamp(1.4rem, 3vw, 2.1rem);
  background: linear-gradient(180deg, #f7faf8 0%, #ffffff 40%);
}

.kit-content h2 {
  margin: 0;
  max-width: 14ch;
}

.kit-lead {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 46ch;
}

.kit-lead strong {
  color: var(--green-dark);
}

.kit-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1.35rem;
}

.kit-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 0.85rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 16px;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.kit-row:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
}

.kit-row img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  background: #0b0b0b;
  border-radius: 12px;
  padding: 0.35rem;
}

.kit-row strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.98rem;
}

.kit-row span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.4;
}

.kit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.home-featured {
  background:
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(200, 162, 75, 0.12), transparent 50%),
    linear-gradient(180deg, #eef5f0 0%, #f7faf8 55%, #ffffff 100%);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-head.home-featured-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  max-width: none;
  width: 100%;
  margin-bottom: 1.75rem;
}

.home-featured-head > div {
  max-width: 640px;
  flex: 1 1 auto;
  min-width: 0;
}

.home-featured-head .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.featured-bento {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.1rem;
  align-items: stretch;
}

.featured-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 20px 48px rgba(15, 76, 48, 0.08);
  min-height: 100%;
}

.featured-hero-media {
  position: relative;
  background:
    radial-gradient(circle at 50% 40%, rgba(200, 162, 75, 0.25), transparent 55%),
    #0b0b0b;
  display: grid;
  place-items: center;
  min-height: 320px;
}

.featured-hero-media img {
  width: 82%;
  max-width: 280px;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.4));
  transition: transform 0.45s var(--ease);
}

.featured-hero:hover .featured-hero-media img {
  transform: scale(1.05);
}

.featured-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.featured-hero-body {
  padding: clamp(1.25rem, 3vw, 1.8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-hero-body h3 {
  margin: 0.3rem 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--green-dark);
}

.featured-hero-body h3 a:hover {
  color: var(--green-fresh);
}

.featured-hero-body > p:not(.product-brand):not(.product-price):not(.price-note) {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.featured-hero-body .product-price {
  margin: 1rem 0 0.25rem;
}

.featured-hero-body .btn {
  margin-top: 1rem;
  width: fit-content;
}

.featured-stack {
  display: grid;
  gap: 1.1rem;
}

.featured-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 14px 34px rgba(15, 76, 48, 0.06);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.12);
}

.featured-card-media {
  background: #0b0b0b;
  display: grid;
  place-items: center;
  min-height: 150px;
}

.featured-card-media img {
  width: 78%;
  max-height: 120px;
  object-fit: contain;
}

.featured-card-body {
  padding: 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-card-body h3 {
  margin: 0.2rem 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--green-dark);
  line-height: 1.25;
}

.featured-card-body .product-price {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.kit-item {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  border-top: 3px solid var(--green-fresh);
}

.kit-item strong {
  display: block;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.kit-item span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.apps-section {
  background: var(--white);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.section-head.apps-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
  max-width: none;
  width: 100%;
}

.apps-head > div {
  max-width: 640px;
  flex: 1 1 auto;
  min-width: 0;
}

.apps-head .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 0.5rem;
}

.app-card {
  position: relative;
  background: linear-gradient(180deg, #f7faf8 0%, #eef5f0 100%);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 22px;
  padding: 1.4rem 1.25rem 1.35rem;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.app-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--green-fresh), var(--gold));
}

.app-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.1);
}

.app-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.6rem;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1rem;
}

.app-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.35rem;
}

.app-card > p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.app-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.app-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 600;
}

.app-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.audience-section {
  background: #eef5f0;
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.audience-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 1.1rem;
  align-items: stretch;
}

.audience-intro {
  background:
    linear-gradient(165deg, #0f4c30 0%, #166b42 55%, #1e7e45 100%);
  color: var(--white);
  border-radius: 28px;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  box-shadow: 0 20px 44px rgba(15, 76, 48, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.audience-intro h2 {
  margin: 0;
  color: #fff;
  max-width: 12ch;
}

.audience-intro > p {
  margin: 0.9rem 0 1.35rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.audience-card {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 18px;
  padding: 1.15rem 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 76, 48, 0.05);
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  align-items: start;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.audience-card:hover {
  transform: translateX(4px);
  box-shadow: 0 16px 34px rgba(15, 76, 48, 0.1);
}

.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(200, 162, 75, 0.25), rgba(30, 126, 69, 0.15));
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  border: 1px solid rgba(200, 162, 75, 0.35);
}

.audience-card h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.15rem;
}

.audience-card p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.cert-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.cert-chip {
  background: rgba(15, 76, 48, 0.06);
  color: var(--green-dark);
  border: 1px solid rgba(15, 76, 48, 0.12);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.home-faq {
  background:
    radial-gradient(ellipse 40% 50% at 0% 50%, rgba(30, 126, 69, 0.08), transparent 55%),
    linear-gradient(180deg, #f7faf8 0%, #ffffff 60%);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 1.5rem;
  align-items: start;
}

.faq-intro h2 {
  margin: 0;
  max-width: 12ch;
}

.faq-intro > p {
  margin: 0.9rem 0 1.35rem;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 36ch;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s, transform 0.25s;
}

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

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

.btn-primary:hover {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline {
  border-color: rgba(15, 76, 48, 0.25);
  color: var(--green-dark);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
}

.btn-gold:hover {
  background: #d4b45e;
  color: var(--green-dark);
}

.cta-banner .btn-primary {
  background: var(--gold);
  color: var(--green-dark);
}

.cta-banner .btn-primary:hover {
  background: #fff;
  color: var(--green-dark);
}

.contact-form select {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  outline: none;
}

.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-label {
  margin: 0 0 0.55rem;
  color: var(--green-fresh);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-label.on-dark {
  color: var(--gold);
}

.section-head {
  max-width: 640px;
  margin-bottom: 2.25rem;
}

.section-head h2,
.about-copy h2,
.contact-copy h2,
.benefit h3,
.product-body h3 {
  font-family: var(--font-display);
  color: var(--green-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.section-head h2,
.about-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}

.section-desc {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
}

.about {
  position: relative;
  overflow: hidden;
  background: #eef5f0;
  padding-top: clamp(3.25rem, 6vw, 5rem);
  padding-bottom: clamp(3.25rem, 6vw, 5rem);
}

.about-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 45% 55% at 95% 10%, rgba(200, 162, 75, 0.22), transparent 55%),
    radial-gradient(ellipse 40% 45% at 5% 90%, rgba(30, 126, 69, 0.14), transparent 50%);
}

.about-bg::after {
  content: "MIRARI";
  position: absolute;
  right: -2%;
  bottom: -8%;
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 11rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: rgba(15, 76, 48, 0.05);
  line-height: 0.8;
  user-select: none;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.about-main {
  background: var(--white);
  border-radius: 28px;
  padding: clamp(1.5rem, 3.5vw, 2.35rem);
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 20px 48px rgba(15, 76, 48, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-main-top {
  flex: 1 1 auto;
}

.about-main h2 {
  margin: 0;
  max-width: 16ch;
  font-size: clamp(1.85rem, 3.6vw, 2.65rem);
}

.about-lead {
  margin: 1rem 0 0;
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 52ch;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.about-pillar {
  background: linear-gradient(180deg, #f7faf8 0%, #eef5f0 100%);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 18px;
  padding: 1.15rem 1.05rem;
  height: 100%;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.about-pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 76, 48, 0.1);
}

.about-pillar-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 0.85rem;
  background:
    linear-gradient(145deg, rgba(200, 162, 75, 0.35), rgba(30, 126, 69, 0.25)),
    var(--white);
  border: 1px solid rgba(200, 162, 75, 0.35);
  position: relative;
}

.about-pillar-icon::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-fresh), var(--gold));
}

.about-pillar:nth-child(2) .about-pillar-icon::before {
  border-radius: 4px;
  transform: rotate(45deg);
  inset: 13px;
}

.about-pillar:nth-child(3) .about-pillar-icon::before {
  border-radius: 3px;
  clip-path: polygon(50% 8%, 92% 86%, 8% 86%);
  background: linear-gradient(180deg, var(--gold), var(--green-dark));
}

.about-pillar h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.2rem;
}

.about-pillar p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-main-bottom {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(15, 76, 48, 0.1);
  display: grid;
  gap: 1rem;
}

.about-main-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.about-main-stats div {
  background: #f4f8f5;
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 14px;
  padding: 0.8rem 0.85rem;
}

.about-main-stats strong {
  display: block;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
}

.about-main-stats span {
  display: block;
  margin-top: 0.2rem;
  color: var(--text-soft);
  font-size: 0.8rem;
}

.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-start;
}

.about-side {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background:
    linear-gradient(165deg, #0f4c30 0%, #166b42 55%, #1e7e45 100%);
  color: var(--white);
  box-shadow: 0 22px 48px rgba(15, 76, 48, 0.22);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
}

.about-side-mark {
  position: absolute;
  right: -0.2rem;
  top: -0.6rem;
  font-family: var(--font-display);
  font-size: 8rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.07);
  font-weight: 700;
  pointer-events: none;
}

.about-side-label {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-quote {
  margin: 0.75rem 0 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.about-quote p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.4;
  color: #fff;
}

.about-side-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.about-side-list li {
  display: grid;
  gap: 0.2rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.about-side-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.about-side-list strong {
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.about-side-list span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.95rem;
}

.about-side-cta {
  margin-top: 0.25rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(200, 162, 75, 0.16);
  border: 1px solid rgba(200, 162, 75, 0.35);
}

.about-side-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.about-side-cta a {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

.about-side-cta a:hover {
  color: #fff;
}

.about-side-certs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0;
}

.about-side-certs span {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(200, 162, 75, 0.35);
  color: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
}

/* legacy helpers still used on other pages */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: stretch;
}

.about-points {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.about-points li {
  position: relative;
  padding-left: 1.4rem;
  font-weight: 500;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-fresh), var(--gold));
}

.about-panel {
  background: var(--green-dark);
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.6rem;
  display: grid;
  gap: 1.1rem;
  box-shadow: var(--shadow);
}

.stat {
  padding: 0.9rem 0.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.stat:last-child {
  border-bottom: 0;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  color: var(--gold);
}

.stat-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.product-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.filter {
  border: 1px solid rgba(15, 76, 48, 0.18);
  background: var(--white);
  color: var(--green-dark);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.filter:hover,
.filter.is-active {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: var(--white);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.product {
  background: var(--gray-bg);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product.is-hidden {
  display: none;
}

.product-media {
  position: relative;
  background: #0b0b0b;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.product-media img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  transition: transform 0.5s var(--ease);
}

.product:hover .product-media img {
  transform: scale(1.05);
}

.badge-oos {
  position: absolute;
  inset: auto 0 0 0;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.55rem;
}

.product-body {
  padding: 1.15rem 1.2rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-brand {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

.product-body h3 {
  margin: 0.35rem 0 0.55rem;
  font-size: 1.15rem;
}

.product-desc {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  flex: 1;
}

.product-price {
  margin: 1rem 0 0.85rem;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.15rem;
}

.product-price span {
  font-size: 0.85rem;
  color: var(--gold);
  margin-left: 0.15rem;
}

.product-link {
  color: var(--green-fresh);
  font-weight: 700;
  width: fit-content;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

.product-link:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.product.is-oos .product-price {
  opacity: 0.65;
}

/* —— Catalog page —— */
.catalog-hero {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.catalog-hero-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: end;
}

.catalog-hero-copy .hero-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.catalog-hero-copy h1 {
  max-width: 14ch;
}

.catalog-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.catalog-hero-stats {
  display: grid;
  gap: 0.75rem;
}

.catalog-stat {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.28);
  border-radius: 16px;
  padding: 0.95rem 1.1rem;
  backdrop-filter: blur(8px);
}

.catalog-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--gold);
  line-height: 1.2;
}

.catalog-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.catalog-spotlight {
  background: linear-gradient(180deg, #eef5f0 0%, #ffffff 70%);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.spotlight-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 22px 50px rgba(15, 76, 48, 0.08);
}

.spotlight-media {
  position: relative;
  background:
    radial-gradient(circle at 50% 40%, rgba(200, 162, 75, 0.2), transparent 55%),
    linear-gradient(165deg, #0a3522, #0f4c30 60%, #1a5c38);
  display: grid;
  place-items: center;
  min-height: 360px;
  padding: 1.5rem;
}

.spotlight-media img {
  width: min(88%, 360px);
  object-fit: contain;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.4));
}

.spotlight-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
}

.spotlight-body {
  padding: clamp(1.35rem, 3vw, 2rem);
}

.spotlight-body h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.2;
  max-width: 18ch;
}

.spotlight-lead {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 48ch;
}

.spotlight-meta {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.spotlight-meta li {
  background: #f4f8f5;
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(15, 76, 48, 0.06);
}

.spotlight-meta span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.25rem;
}

.spotlight-meta strong {
  color: var(--green-dark);
  font-size: 0.95rem;
}

.spotlight-includes {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.spotlight-includes article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.7rem;
  align-items: center;
  background: #f7faf8;
  border-radius: 14px;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(15, 76, 48, 0.06);
}

.spotlight-includes img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: #111;
  border-radius: 10px;
  padding: 0.25rem;
}

.spotlight-includes strong {
  display: block;
  color: var(--green-dark);
  font-size: 0.9rem;
}

.spotlight-includes span {
  color: var(--text-soft);
  font-size: 0.8rem;
}

.spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.catalog-products {
  background: var(--white);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.section-head.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.25rem;
  max-width: none;
  width: 100%;
  margin-bottom: 1.75rem;
}

.catalog-toolbar > div:first-child {
  max-width: 560px;
  flex: 1 1 auto;
}

.catalog-toolbar .product-filters {
  margin-bottom: 0;
  flex: 0 0 auto;
}

.catalog-grid .product {
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 76, 48, 0.04);
}

.catalog-grid .product.is-featured {
  border-color: rgba(200, 162, 75, 0.45);
  box-shadow: 0 16px 36px rgba(15, 76, 48, 0.1);
}

.product-chip {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  z-index: 1;
}

.benefits {
  background:
    linear-gradient(180deg, transparent, rgba(244, 246, 245, 0.9)),
    radial-gradient(circle at 90% 10%, rgba(200, 162, 75, 0.12), transparent 35%);
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit {
  padding: 1.5rem 1.3rem;
  border-top: 2px solid var(--gold);
}

.benefit-index {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.benefit h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.benefit p {
  margin: 0;
  color: var(--text-soft);
}

.contact {
  padding-bottom: clamp(4rem, 9vw, 6rem);
}

.contact-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background: var(--green-dark);
  color: var(--white);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.contact-shell::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  right: -80px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 75, 0.28), transparent 70%);
  pointer-events: none;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-copy h2 {
  color: var(--white);
}

.contact-copy > p {
  color: rgba(255, 255, 255, 0.82);
}

.contact-meta {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
  color: rgba(255, 255, 255, 0.86);
}

.contact-meta strong {
  color: var(--gold);
  font-weight: 600;
}

.contact-form {
  display: grid;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
}

.contact-form span {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 75, 0.25);
}

.form-note {
  margin: 0.2rem 0 0;
  color: var(--gold);
  font-size: 0.9rem;
}

.site-footer {
  background: #0a3522;
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-footer .brand-logo {
  height: 88px;
}

.footer-brand p {
  margin: 0.85rem 0 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
}

.footer-col h3 {
  margin: 0 0 0.9rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
}

.footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

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

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom p {
  margin: 0;
}

.site-nav a.is-active {
  color: #c8a24b;
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, #0a3522 0%, #0f4c30 55%, #164a32 100%);
  color: var(--white);
  padding: clamp(2.8rem, 7vw, 4.2rem) 0;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -40px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 162, 75, 0.28), transparent 70%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin: 0 0 1rem;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  max-width: 18ch;
}

.page-hero p {
  margin: 0.85rem 0 0;
  max-width: 52ch;
  color: rgba(255, 255, 255, 0.84);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: -2rem;
  position: relative;
  z-index: 2;
}

.feature-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.1rem;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
}

.feature-item strong {
  display: block;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.feature-item span {
  color: var(--text-soft);
  font-size: 0.92rem;
}


.process-section {
  background: var(--white);
  padding-top: clamp(3rem, 6vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 4.5rem);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  position: relative;
}

.process-track::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--green-fresh), var(--gold), var(--green-fresh));
  opacity: 0.35;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8f5 100%);
  border: 1px solid rgba(15, 76, 48, 0.1);
  border-radius: 22px;
  padding: 1.3rem 1.15rem 1.4rem;
  box-shadow: 0 14px 32px rgba(15, 76, 48, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.1);
}

.process-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.9rem;
  box-shadow: 0 0 0 6px rgba(15, 76, 48, 0.08);
}

.process-step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.15rem;
}

.process-step p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.cta-banner {
  background:
    linear-gradient(135deg, rgba(15, 76, 48, 0.95), rgba(30, 126, 69, 0.9)),
    radial-gradient(circle at 85% 20%, rgba(200, 162, 75, 0.35), transparent 40%);
  color: var(--white);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.25rem;
}

.cta-banner h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  max-width: 18ch;
}

.cta-banner p {
  margin: 0.55rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 42ch;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.product-gallery {
  background: #0b0b0b;
  border-radius: calc(var(--radius) + 4px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.product-gallery img {
  width: 82%;
  height: 82%;
  object-fit: contain;
}

.product-info .product-brand {
  margin-bottom: 0.35rem;
}

.product-info h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.2;
}

.product-info .product-price {
  font-size: 1.45rem;
  margin: 1rem 0;
}

.product-info .lead {
  color: var(--text-soft);
  font-size: 1.05rem;
}

.spec-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.spec-list li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(15, 76, 48, 0.1);
}

.spec-list strong {
  color: var(--green-dark);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* —— Product detail (new) —— */
.pd-top {
  background: #0f4c30;
  padding: 1rem 0 0.25rem;
}

.pd-breadcrumb {
  margin-bottom: 0;
}

.pd-hero-section {
  background: linear-gradient(180deg, #eef5f0 0%, #ffffff 70%);
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.pd-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 1.25rem;
  align-items: stretch;
}

.pd-gallery {
  position: relative;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 162, 75, 0.22), transparent 55%),
    linear-gradient(165deg, #0a3522, #0f4c30 60%, #1a5c38);
  border-radius: 28px;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(15, 76, 48, 0.16);
}

.pd-gallery img {
  width: min(86%, 380px);
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.45));
}

.pd-badge {
  position: absolute;
  top: 1.1rem;
  left: 1.1rem;
  background: var(--gold);
  color: var(--green-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  z-index: 1;
}

.pd-badge.is-oos {
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
}

.pd-buy {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  box-shadow: 0 16px 36px rgba(15, 76, 48, 0.06);
}

.pd-type {
  margin: 0 0 0.45rem;
  color: var(--green-fresh);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pd-buy h1 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  line-height: 1.2;
}

.pd-hero-note {
  margin: 0.7rem 0 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.pd-price {
  margin: 1.1rem 0 0.25rem !important;
  font-size: 1.55rem !important;
}

.pd-facts {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.pd-fact {
  background: #f4f8f5;
  border: 1px solid rgba(15, 76, 48, 0.06);
  border-radius: 14px;
  padding: 0.75rem 0.85rem;
}

.pd-fact span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.2rem;
}

.pd-fact strong {
  color: var(--green-dark);
  font-size: 0.95rem;
}

.pd-buy .source-note {
  margin-top: 1.1rem;
}

.source-note {
  margin: 1rem 0 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.source-note a {
  color: var(--green-fresh);
  font-weight: 700;
}

.pd-body-section {
  background: var(--white);
  padding-top: clamp(1.5rem, 3vw, 2.5rem);
}

.pd-body-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.25rem;
  align-items: start;
}

.pd-section-head {
  margin-bottom: 0.9rem;
}

.pd-section-head h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
}

.pd-lead {
  margin: 0 0 0.85rem;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.65;
}

.pd-content > p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.65;
}

.pd-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.pd-highlights article {
  background: linear-gradient(180deg, #f7faf8, #eef5f0);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 18px;
  padding: 1.1rem 1rem;
}

.pd-highlights span {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.7rem;
}

.pd-highlights h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.05rem;
}

.pd-highlights p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.9rem;
  line-height: 1.45;
}

.pd-box {
  margin-top: 2rem;
  background: #f4f8f5;
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 22px;
  padding: 1.35rem 1.25rem;
}

.pd-box-list {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 1rem;
}

.pd-box-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.94rem;
}

.pd-box-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.pd-specs {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.pd-specs-card {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.1);
  border-radius: 24px;
  padding: 1.35rem 1.25rem;
  box-shadow: 0 16px 36px rgba(15, 76, 48, 0.06);
}

.pd-specs-card h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.35rem;
}

.pd-specs-card .spec-list {
  margin-top: 0.75rem;
}

.pd-specs-card .spec-list li {
  grid-template-columns: 1fr;
  gap: 0.2rem;
  padding: 0.7rem 0;
}

.pd-related-section {
  background: #f7faf8;
}

.content-prose {
  max-width: 760px;
}

.content-prose h2 {
  margin: 2rem 0 0.75rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.55rem;
}

.content-prose p {
  color: var(--text-soft);
}

.content-prose ul {
  color: var(--text-soft);
  padding-left: 1.2rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.info-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 1.4rem 1.3rem;
}

.info-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  color: var(--green-dark);
}

.info-card p,
.info-card li {
  color: var(--text-soft);
}

.info-card ul {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: none;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(15, 76, 48, 0.04);
}

.faq-item[open] {
  border-color: rgba(200, 162, 75, 0.45);
  box-shadow: 0 14px 30px rgba(15, 76, 48, 0.08);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-weight: 700;
  color: var(--green-dark);
  position: relative;
  padding-right: 2.75rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(200, 162, 75, 0.15);
  color: var(--gold);
  font-size: 1.15rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--green-dark);
  color: var(--gold);
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.2rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.faq-item a {
  color: var(--green-fresh);
  font-weight: 700;
}

.faq-item a:hover {
  color: var(--gold);
}

/* —— FAQ page —— */
.faq-page-hero {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.faq-page-hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: end;
}

.faq-page-hero-copy .hero-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-page-hero-copy h1 {
  max-width: 16ch;
}

.faq-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.faq-page-topics {
  display: grid;
  gap: 0.65rem;
}

.faq-page-topics a {
  display: block;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.3);
  border-radius: 14px;
  padding: 0.9rem 1.05rem;
  color: #fff;
  font-weight: 700;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.faq-page-topics a:hover {
  background: rgba(200, 162, 75, 0.18);
  border-color: var(--gold);
  color: var(--gold);
}

.faq-page {
  background: linear-gradient(180deg, #eef5f0 0%, #ffffff 40%);
}

.faq-page-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr;
  gap: 1.35rem;
  align-items: start;
}

.faq-page-main {
  display: grid;
  gap: 1.5rem;
}

.faq-group {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 24px;
  padding: clamp(1.2rem, 2.5vw, 1.6rem);
  box-shadow: 0 14px 32px rgba(15, 76, 48, 0.05);
}

.faq-group-head {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 0.9rem;
  align-items: start;
  margin-bottom: 1rem;
}

.faq-group-head span {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}

.faq-group-head h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.35rem;
}

.faq-group-head p {
  margin: 0.3rem 0 0;
  color: var(--text-soft);
  font-size: 0.92rem;
}

.faq-page-side {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  display: grid;
  gap: 0.9rem;
}

.faq-side-card {
  background: linear-gradient(165deg, #0f4c30, #1e7e45);
  color: #fff;
  border-radius: 24px;
  padding: 1.45rem 1.3rem;
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.2);
}

.faq-side-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  max-width: 12ch;
  line-height: 1.25;
}

.faq-side-card > p {
  margin: 0.75rem 0 1.2rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.faq-side-contacts {
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.faq-side-contacts li {
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.28);
}

.faq-side-contacts span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 0.25rem;
}

.faq-side-contacts a {
  color: var(--gold);
  font-weight: 700;
}

.faq-side-links {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 18px;
  padding: 0.85rem;
  display: grid;
  gap: 0.35rem;
  box-shadow: 0 10px 24px rgba(15, 76, 48, 0.04);
}

.faq-side-links a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  color: var(--green-dark);
  font-weight: 700;
  transition: background 0.2s, color 0.2s;
}

.faq-side-links a:hover {
  background: #f4f8f5;
  color: var(--gold);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 1.25rem 1.2rem;
}

.contact-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.1rem;
}

.contact-card p {
  margin: 0;
  color: var(--text-soft);
}

.contact-card a {
  color: var(--green-fresh);
  font-weight: 600;
}

.contact-card a:hover {
  color: var(--gold);
}

/* —— Contact page —— */
.contact-page-hero {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-page-hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: end;
}

.contact-page-hero-copy .hero-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-page-hero-copy h1 {
  max-width: 16ch;
}

.contact-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.contact-page-hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.contact-page-hero-facts article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.3);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.contact-page-hero-facts strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.contact-page-hero-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.contact-page {
  background: linear-gradient(180deg, #eef5f0 0%, #ffffff 55%);
  padding-top: clamp(2.5rem, 5vw, 3.5rem);
}

.contact-panel {
  display: grid;
  grid-template-columns: 0.95fr 1.15fr;
  gap: 1.15rem;
  align-items: stretch;
}

.contact-panel-info {
  background: linear-gradient(165deg, #0a3522 0%, #0f4c30 55%, #1e7e45 100%);
  color: #fff;
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 22px 48px rgba(15, 76, 48, 0.2);
}

.contact-panel-info h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  max-width: 14ch;
  line-height: 1.2;
}

.contact-panel-lead {
  margin: 0.85rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.contact-info-list {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.7rem;
}

.contact-info-item {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.28);
  color: #fff;
  transition: background 0.2s, border-color 0.2s;
}

.contact-info-item:hover {
  background: rgba(200, 162, 75, 0.16);
  border-color: var(--gold);
}

.contact-info-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.contact-info-item strong {
  color: var(--gold);
  font-size: 1.05rem;
}

.contact-info-item span:last-child {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
}

.contact-quick-needs {
  margin-top: 1.35rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-quick-needs > p {
  margin: 0 0 0.65rem;
  font-weight: 700;
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-quick-needs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.contact-quick-needs li {
  position: relative;
  padding-left: 1rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  font-weight: 600;
}

.contact-quick-needs li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.contact-panel-form {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2rem);
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.06);
}

.contact-panel-form > h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  max-width: 16ch;
  line-height: 1.2;
}

.contact-form-lead {
  margin: 0.7rem 0 1.25rem;
  color: var(--text-soft);
  line-height: 1.55;
  max-width: 48ch;
}

.contact-page-form {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.contact-page-form span {
  color: var(--green-dark);
}

.contact-page-form input,
.contact-page-form textarea,
.contact-page-form select {
  border: 1px solid rgba(15, 76, 48, 0.16);
  background: #f7faf8;
  color: var(--text);
}

.contact-page-form input:focus,
.contact-page-form textarea:focus,
.contact-page-form select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 162, 75, 0.22);
  outline: none;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.contact-page-form .form-note {
  color: var(--green-fresh);
  background: #eef5f0;
  border-radius: 12px;
  padding: 0.75rem 0.9rem;
}

.contact-page-extra {
  background: var(--white);
  padding-top: clamp(2rem, 4vw, 3rem);
}

.contact-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-extra-grid article {
  background: linear-gradient(180deg, #f7faf8, #eef5f0);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 22px;
  padding: 1.3rem 1.2rem;
}

.contact-extra-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.contact-extra-grid h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.2rem;
}

.contact-extra-grid p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tech-card {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--shadow);
}

.tech-card h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  color: var(--green-dark);
}

.tech-card p {
  margin: 0;
  color: var(--text-soft);
}

/* —— Technology page —— */
.tech-hero {
  padding-bottom: clamp(2.5rem, 5vw, 3.6rem);
}

.tech-hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: end;
}

.tech-hero-copy .hero-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.tech-hero-copy h1 {
  max-width: 16ch;
}

.tech-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.tech-pill-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.tech-pill-grid article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.3);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.tech-pill-grid strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.tech-pill-grid span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.tech-hero-note {
  margin: 0.85rem 0 0;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
}

.tech-intro {
  background: linear-gradient(180deg, #eef5f0 0%, #ffffff 80%);
}

.tech-intro-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.25rem;
  align-items: stretch;
}

.tech-intro-grid h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  max-width: 14ch;
}

.tech-intro-grid > div > p {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 54ch;
}

.tech-origin {
  background: linear-gradient(165deg, #0f4c30, #1e7e45);
  color: #fff;
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.18);
}

.tech-origin h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
}

.tech-origin > p {
  margin: 0.7rem 0 1rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.tech-origin ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.tech-origin li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.tech-origin li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.tech-modes {
  background: var(--white);
}

.mode-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}

.mode-card {
  border-radius: 24px;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: linear-gradient(180deg, #f7faf8, #eef5f0);
  border: 1px solid rgba(15, 76, 48, 0.08);
}

.mode-card-dark {
  background: linear-gradient(165deg, #0a3522, #0f4c30 70%, #166b42);
  border-color: transparent;
  color: #fff;
}

.mode-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--green-dark);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  font-size: 0.82rem;
  margin-bottom: 0.9rem;
}

.mode-card-dark .mode-tag {
  background: rgba(200, 162, 75, 0.2);
  color: var(--gold);
  border: 1px solid rgba(200, 162, 75, 0.45);
}

.mode-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--green-dark);
}

.mode-card-dark h3 {
  color: #fff;
}

.mode-lead {
  margin: 0.55rem 0 1rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.mode-card-dark .mode-lead {
  color: rgba(255, 255, 255, 0.82);
}

.mode-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.mode-card li {
  position: relative;
  padding-left: 1rem;
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--green-dark);
}

.mode-card-dark li {
  color: rgba(255, 255, 255, 0.92);
}

.mode-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.tech-specs {
  background: #f4f8f5;
}

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

.spec-card {
  background: var(--white);
  border-radius: 22px;
  padding: 1.35rem 1.25rem;
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 12px 28px rgba(15, 76, 48, 0.04);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(15, 76, 48, 0.1);
}

.spec-card span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.spec-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.2rem;
}

.spec-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.tech-flow {
  background: linear-gradient(180deg, #ffffff 0%, #eef5f0 45%, #ffffff 100%);
}

.eco-showcase {
  display: grid;
  grid-template-columns: 0.92fr 1.2fr;
  gap: 1.15rem;
  align-items: stretch;
}

.eco-visual {
  position: relative;
  background:
    radial-gradient(circle at 50% 42%, rgba(200, 162, 75, 0.22), transparent 55%),
    linear-gradient(165deg, #0a3522 0%, #0f4c30 58%, #1a5c38 100%);
  border-radius: 28px;
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 1.75rem;
  overflow: hidden;
  box-shadow: 0 22px 48px rgba(15, 76, 48, 0.18);
}

.eco-visual img {
  width: min(86%, 340px);
  object-fit: contain;
  filter: drop-shadow(0 22px 36px rgba(0, 0, 0, 0.45));
}

.eco-visual-meta {
  position: absolute;
  left: 1.15rem;
  bottom: 1.15rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(200, 162, 75, 0.35);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
}

.eco-visual-meta strong {
  display: block;
  color: var(--gold);
  font-size: 0.95rem;
}

.eco-visual-meta span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
}

.eco-content {
  background: var(--white);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 28px;
  padding: clamp(1.35rem, 3vw, 1.9rem);
  box-shadow: 0 16px 36px rgba(15, 76, 48, 0.06);
}

.eco-content h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 14ch;
}

.eco-lead {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 46ch;
}

.eco-chain {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.7rem;
  position: relative;
}

.eco-step {
  display: grid;
  grid-template-columns: 42px 64px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f7faf8, #eef5f0);
  border: 1px solid rgba(15, 76, 48, 0.07);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.eco-step:hover {
  transform: translateX(4px);
  box-shadow: 0 12px 28px rgba(15, 76, 48, 0.08);
}

.eco-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 0 0 5px rgba(15, 76, 48, 0.08);
}

.eco-thumb {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: #0d0d0d;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.eco-thumb img {
  width: 86%;
  height: 86%;
  object-fit: contain;
}

.eco-text strong {
  display: block;
  color: var(--green-dark);
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.eco-text span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.45;
}

.eco-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.tech-apps {
  background: #f7faf8;
}

.tech-apps-grid .app-card ul {
  display: none;
}

.tech-recommend {
  background: var(--white);
}

.tech-recommend-wrap {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: stretch;
}

.tech-recommend-wrap h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 14ch;
}

.tech-recommend-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.tech-kpi {
  background: var(--green-dark);
  color: #fff;
  border-radius: 24px;
  padding: 1.4rem 1.3rem;
  display: grid;
  gap: 0.35rem;
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.2);
}

.tech-kpi .stat:last-child {
  border-bottom: 0;
}

.badge-oos.static {
  position: static;
  display: inline-block;
  margin: 0.75rem 0 0;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  width: fit-content;
}

/* —— About page —— */
.about-page-hero {
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.about-page-hero-inner {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.5rem;
  align-items: end;
}

.about-page-hero-copy .hero-kicker {
  margin: 0 0 0.65rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-page-hero-copy h1 {
  max-width: 16ch;
}

.about-page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.about-page-hero-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.about-page-hero-facts article {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.3);
  border-radius: 16px;
  padding: 0.95rem 1rem;
}

.about-page-hero-facts strong {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.about-page-hero-facts span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
}

.about-page-intro {
  background: linear-gradient(180deg, #eef5f0 0%, #ffffff 75%);
}

.about-page-story {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.2rem;
  align-items: stretch;
}

.about-page-story-main h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  max-width: 18ch;
  line-height: 1.2;
}

.about-page-story-main > p {
  margin: 0.9rem 0 0;
  color: var(--text-soft);
  line-height: 1.65;
  max-width: 56ch;
}

.about-page-story-main a {
  color: var(--green-fresh);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-page-quote {
  margin-top: 1.35rem;
  padding: 1.1rem 1.2rem;
  border-left: 3px solid var(--gold);
  background: #f4f8f5;
  border-radius: 0 16px 16px 0;
}

.about-page-quote p {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.15rem;
  line-height: 1.45;
}

.about-page-mission {
  background: linear-gradient(165deg, #0f4c30, #1e7e45);
  color: #fff;
  border-radius: 24px;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.18);
}

.about-page-mission h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
  line-height: 1.25;
}

.about-page-mission > p {
  margin: 0.75rem 0 1rem;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.about-page-mission ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.about-page-mission li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
}

.about-page-mission li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.about-page-values {
  background: var(--white);
}

.about-page-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-page-pillars article {
  background: linear-gradient(180deg, #f7faf8, #eef5f0);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 22px;
  padding: 1.4rem 1.25rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.about-page-pillars article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(15, 76, 48, 0.1);
}

.about-page-pillars span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.about-page-pillars h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.25rem;
}

.about-page-pillars p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.about-page-services {
  background: #f4f8f5;
}

.about-page-services-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.25fr;
  gap: 1.25rem;
  align-items: start;
}

.about-page-services-wrap h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 12ch;
}

.about-page-lead {
  margin: 0.75rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 34ch;
}

.about-page-service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.about-page-service-grid article {
  background: var(--white);
  border-radius: 18px;
  padding: 1.15rem 1.1rem;
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 10px 24px rgba(15, 76, 48, 0.04);
}

.about-page-service-grid strong {
  display: block;
  color: var(--green-dark);
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.about-page-service-grid span {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-page-audience {
  background: var(--white);
}

.about-page-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-page-audience-grid article {
  background: linear-gradient(180deg, #ffffff, #f4f8f5);
  border: 1px solid rgba(15, 76, 48, 0.08);
  border-radius: 22px;
  padding: 1.3rem 1.2rem;
  box-shadow: 0 12px 28px rgba(15, 76, 48, 0.04);
}

.about-page-icon {
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 0.9rem;
  background: linear-gradient(145deg, rgba(200, 162, 75, 0.25), rgba(30, 126, 69, 0.15));
  color: var(--green-dark);
  font-weight: 800;
  font-size: 0.85rem;
  border: 1px solid rgba(200, 162, 75, 0.35);
}

.about-page-audience-grid h3 {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.2rem;
}

.about-page-audience-grid p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
}

.about-page-partner {
  background: #eef5f0;
}

.about-page-partner-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 1.15rem;
  background: var(--white);
  border-radius: 28px;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 18px 40px rgba(15, 76, 48, 0.06);
}

.about-page-partner-panel h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.5rem, 3vw, 2.05rem);
  max-width: 18ch;
  line-height: 1.2;
}

.about-page-partner-panel > div > p {
  margin: 0.85rem 0 0;
  color: var(--text-soft);
  line-height: 1.6;
  max-width: 52ch;
}

.about-page-partner-list {
  list-style: none;
  margin: 1.15rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about-page-partner-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 0.75rem;
  padding: 0.75rem 0.85rem;
  background: #f4f8f5;
  border-radius: 14px;
}

.about-page-partner-list strong {
  color: var(--green-dark);
}

.about-page-partner-list span {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.about-page-partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.about-page-partner-side {
  background: linear-gradient(165deg, #0a3522, #0f4c30 65%, #1a5c38);
  color: #fff;
  border-radius: 22px;
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  align-content: center;
}

.about-page-partner-side div {
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(200, 162, 75, 0.28);
}

.about-page-partner-side strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  margin-bottom: 0.2rem;
}

.about-page-partner-side span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
}

.about-page-process {
  background: var(--white);
}

.about-page-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-page-steps article {
  background: linear-gradient(180deg, #ffffff, #f4f8f5);
  border: 1px solid rgba(15, 76, 48, 0.1);
  border-radius: 22px;
  padding: 1.25rem 1.1rem 1.35rem;
  box-shadow: 0 12px 28px rgba(15, 76, 48, 0.04);
}

.about-page-steps span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.85rem;
}

.about-page-steps h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: 1.1rem;
}

.about-page-steps p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.about-page-contact {
  background: #f7faf8;
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.about-page-contact-bar {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 1.25rem;
  align-items: center;
  background: var(--white);
  border-radius: 24px;
  padding: clamp(1.3rem, 3vw, 1.8rem);
  border: 1px solid rgba(15, 76, 48, 0.08);
  box-shadow: 0 14px 32px rgba(15, 76, 48, 0.05);
}

.about-page-contact-bar h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--green-dark);
  font-size: clamp(1.4rem, 2.8vw, 1.9rem);
}

.about-page-contact-bar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.about-page-contact-bar li {
  background: #f4f8f5;
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
}

.about-page-contact-bar li span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.3rem;
}

.about-page-contact-bar a {
  color: var(--green-dark);
  font-weight: 700;
}

.about-page-contact-bar a:hover {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(12px, -18px) rotate(8deg);
  }
}

@media (max-width: 960px) {
  .about-layout,
  .kit-showcase,
  .spotlight-panel,
  .catalog-hero-inner,
  .tech-hero-inner,
  .tech-intro-grid,
  .mode-grid,
  .spec-bento,
  .tech-flow-steps,
  .tech-recommend-wrap,
  .eco-showcase,
  .about-page-hero-inner,
  .about-page-story,
  .about-page-pillars,
  .about-page-services-wrap,
  .about-page-audience-grid,
  .about-page-partner-panel,
  .about-page-steps,
  .about-page-contact-bar,
  .faq-page-hero-inner,
  .faq-page-layout,
  .contact-page-hero-inner,
  .contact-panel,
  .contact-extra-grid,
  .featured-bento,
  .featured-hero,
  .featured-card,
  .product-grid,
  .benefit-list,
  .apps-grid,
  .audience-wrap,
  .faq-layout,
  .contact-shell,
  .footer-grid,
  .feature-strip,
  .process-steps,
  .process-track,
  .product-detail,
  .pd-layout,
  .pd-body-grid,
  .pd-highlights,
  .related-grid,
  .split-panel,
  .contact-page-grid,
  .tech-grid,
  .kit-grid,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .apps-head,
  .catalog-toolbar {
    flex-direction: column;
    align-items: start;
  }

  .spotlight-meta,
  .spotlight-includes {
    grid-template-columns: 1fr;
  }

  .spotlight-media,
  .eco-visual {
    min-height: 280px;
  }

  .faq-page-side,
  .pd-specs {
    position: static;
  }

  .pd-gallery {
    min-height: 300px;
  }

  .pd-facts,
  .pd-box-list {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    display: none;
  }

  .product-grid,
  .related-grid,
  .feature-strip,
  .process-steps,
  .process-track,
  .apps-grid,
  .tech-grid,
  .tech-flow-steps,
  .spec-bento,
  .tech-pill-grid,
  .about-page-hero-facts,
  .contact-page-hero-facts,
  .contact-form-row,
  .about-page-service-grid,
  .about-page-pillars,
  .about-page-audience-grid,
  .about-page-steps,
  .kit-grid,
  .about-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page-contact-bar ul,
  .about-page-partner-list li {
    grid-template-columns: 1fr;
  }

  .about-side {
    min-height: 280px;
  }

  .kit-visual {
    min-height: 300px;
  }

  .home-featured-head {
    flex-direction: column;
    align-items: start;
  }

  .featured-card {
    grid-template-columns: 120px 1fr;
  }

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

  .hero-product {
    width: min(360px, 58vw);
    opacity: 0.55;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-visual { min-height: 300px; order: -1; }
  .hero-stage { width: min(340px, 100%); }
  .hero-highlights-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    padding: 0.5rem 1.25rem 1.25rem;
    border-bottom: 1px solid rgba(15, 76, 48, 0.1);
    box-shadow: 0 12px 28px rgba(15, 76, 48, 0.08);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(15, 76, 48, 0.08);
    color: var(--green-dark);
  }

  .nav-cta {
    margin-top: 0.5rem;
    text-align: center;
  }

  .product-grid,
  .related-grid,
  .feature-strip,
  .process-steps,
  .process-track,
  .apps-grid,
  .tech-grid,
  .tech-flow-steps,
  .spec-bento,
  .tech-pill-grid,
  .about-page-hero-facts,
  .contact-page-hero-facts,
  .contact-form-row,
  .contact-extra-grid,
  .pd-highlights,
  .pd-facts,
  .pd-box-list,
  .about-page-service-grid,
  .about-page-pillars,
  .about-page-audience-grid,
  .about-page-steps,
  .about-page-contact-bar ul,
  .footer-grid,
  .kit-grid,
  .about-pillars {
    grid-template-columns: 1fr;
  }

  .about-main-stats {
    grid-template-columns: 1fr;
  }

  .spec-list li {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .hero { min-height: auto; }
  .hero-visual { min-height: 260px; }
  .hero-stage { width: min(290px, 100%); }
  .hero-stats { grid-template-columns: 1fr; }
  .hero-highlights-grid { grid-template-columns: 1fr; }
  .hero-float-b { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-device,
  .hero-kit,
  .hero-glow,
  .hero-float,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1;
    transform: none;
  }
}
