:root {
  --ink: #16211e;
  --muted: #64716c;
  --paper: #f4f1e8;
  --white: #ffffff;
  --line: #d9ded6;
  --green: #0b5a49;
  --green-dark: #07342d;
  --gold: #d6a23f;
  --amber: #9a642c;
  --blue: #315d75;
  --soft-blue: #e7eef2;
  --shadow: 0 22px 60px rgba(15, 33, 28, 0.15);
  --radius: 8px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 172px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

html[dir="rtl"] body {
  direction: rtl;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .trace-head,
html[dir="rtl"] .privacy-banner > div:last-child {
  flex-direction: row-reverse;
}

html[dir="rtl"] .dropdown {
  left: auto;
  right: 0;
}

html[dir="rtl"] .dock {
  left: auto;
  right: 18px;
}

html[dir="rtl"] th,
html[dir="rtl"] td {
  text-align: right;
}

body.menu-open,
body.overlay-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

p,
h1,
h2,
h3 {
  margin-top: 0;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 16px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 6px;
}

.skip-link:focus {
  top: 16px;
}

.inner {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

[data-site-header] {
  position: sticky;
  top: 0;
  z-index: 80;
}

.site-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 76px;
  padding: 0 34px;
  border-bottom: 1px solid rgba(18, 33, 30, 0.1);
  background: rgba(244, 241, 232, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 0 0 rgba(15, 33, 28, 0);
  transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease, border-color 220ms ease;
  will-change: transform;
}

body.header-auto-hidden:not(.menu-open):not(.overlay-open) .site-header {
  transform: translateY(calc(-100% - 2px));
}

body.header-scroll-resting:not(.menu-open):not(.overlay-open) .site-header,
.site-header:focus-within {
  box-shadow: 0 16px 34px rgba(15, 33, 28, 0.13);
  transform: translateY(0);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 234px;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.78rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
  flex: 1;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border-radius: 6px;
  color: #344540;
  padding: 10px 12px;
}

.nav-item > a.active,
.nav-item:hover > a {
  background: rgba(11, 90, 73, 0.1);
  color: var(--green);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 230px;
  display: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 8px;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: grid;
}

.dropdown a {
  border-radius: 6px;
  color: var(--ink);
  padding: 10px 12px;
}

.dropdown a:hover {
  background: rgba(11, 90, 73, 0.08);
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  padding: 9px;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--green-dark);
}

.solid,
.outline,
.text-link,
.card-actions button,
.card-actions a,
.news-card button,
.mini-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}

.solid {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #1e170d;
}

.solid:disabled,
.outline:disabled,
.card-actions button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.outline {
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: transparent;
  color: var(--white);
}

.outline.dark {
  border-color: var(--line);
  color: var(--green);
}

.language-select {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-width: 108px;
  min-height: 38px;
  overflow: hidden;
  border: 1px solid rgba(11, 90, 73, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--green-dark);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.language-select::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  pointer-events: none;
  transform: translateY(-68%) rotate(45deg);
}

.language-select select {
  width: 100%;
  min-width: 0;
  min-height: 38px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--green-dark);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  line-height: 1;
  padding: 0 34px 0 14px;
  appearance: none;
  -webkit-appearance: none;
}

.language-select select::-ms-expand {
  display: none;
}

.language-select:hover {
  border-color: rgba(11, 90, 73, 0.32);
  background: var(--white);
  box-shadow: 0 8px 18px rgba(15, 33, 28, 0.06);
}

.language-select:focus-within {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(11, 90, 73, 0.12);
}

html[dir="rtl"] .language-select::after {
  right: auto;
  left: 13px;
}

html[dir="rtl"] .language-select select {
  padding: 0 14px 0 34px;
}

.lang {
  min-height: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--green-dark);
  padding: 8px 11px;
}

.lang.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.small {
  min-height: 38px;
  padding: 8px 12px;
}

.home-hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
}

.home-hero {
  width: calc(100% - 28px);
  min-height: clamp(680px, 78vh, 820px);
  margin: 10px auto 16px;
  border: 1px solid rgba(242, 237, 224, 0.48);
  border-radius: 12px;
  background: var(--paper);
  box-shadow:
    0 20px 46px -22px rgba(62, 48, 32, 0.16),
    0 0 0 5px rgba(255, 255, 255, 0.2);
}

.page-hero {
  min-height: 460px;
}

.home-hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 31, 27, 0.91) 0%, rgba(4, 31, 27, 0.7) 48%, rgba(4, 31, 27, 0.24) 100%),
    linear-gradient(0deg, rgba(4, 31, 27, 0.84) 0%, rgba(4, 31, 27, 0) 45%);
}

.home-hero .hero-shade {
  background:
    linear-gradient(180deg, rgba(242, 237, 224, 0.2) 0%, rgba(242, 237, 224, 0.06) 16%, rgba(242, 237, 224, 0) 30%),
    radial-gradient(circle at 73% 22%, rgba(242, 237, 224, 0.34) 0%, rgba(242, 237, 224, 0.18) 28%, rgba(242, 237, 224, 0) 48%),
    linear-gradient(90deg, rgba(41, 36, 30, 0.64) 0%, rgba(80, 69, 54, 0.32) 39%, rgba(242, 237, 224, 0.06) 100%),
    linear-gradient(0deg, rgba(43, 36, 29, 0.42) 0%, rgba(109, 91, 62, 0.08) 52%, rgba(242, 237, 224, 0.22) 100%);
}

.home-grid,
.hero-content {
  position: relative;
  z-index: 1;
}

.home-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.46fr);
  gap: 52px;
  min-height: clamp(680px, 78vh, 820px);
  align-items: stretch;
  padding: 110px 0 48px;
}

.home-copy {
  align-self: end;
}

.home-copy h1 {
  max-width: 760px;
  overflow-wrap: anywhere;
  text-shadow: 0 16px 34px rgba(28, 24, 19, 0.38);
}

.home-copy p {
  text-shadow: 0 10px 24px rgba(28, 24, 19, 0.32);
}

.home-hero-side {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  gap: 24px;
  min-height: calc(clamp(680px, 78vh, 820px) - 158px);
}

.hero-content {
  max-width: 840px;
  padding: 112px 0 74px;
}

.eyebrow,
.kicker {
  color: var(--gold);
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 12px;
}

h1 {
  font-size: 4.35rem;
  line-height: 1.04;
  margin-bottom: 22px;
  max-width: 960px;
}

h2 {
  font-size: 2.42rem;
  line-height: 1.14;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.12rem;
  line-height: 1.3;
  margin-bottom: 10px;
}

.home-hero p,
.page-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.cert-orbit-widget {
  position: relative;
  width: 100%;
  min-height: 318px;
  perspective: 1120px;
}

.cert-orbit-widget:hover .cert-ring {
  animation-play-state: paused;
}

.cert-orbit-title {
  position: absolute;
  top: -2px;
  right: 0;
  z-index: 4;
  display: grid;
  gap: 5px;
  text-align: right;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.cert-orbit-title b {
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.9rem;
  font-weight: 900;
}

.cert-orbit-title span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
}

.cert-stage {
  position: absolute;
  inset: 36px 0 0;
  transform-style: preserve-3d;
}

.cert-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
  animation: certSpin 24s linear infinite;
}

.cert-card {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 136px;
  min-height: 196px;
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(4, 31, 27, 0.3);
  transform:
    translate(-50%, -50%)
    rotateY(var(--angle))
    translateZ(168px);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  backdrop-filter: blur(10px);
  color: inherit;
  cursor: pointer;
}

.home-hero .cert-card {
  border-color: rgba(242, 237, 224, 0.44);
  background: rgba(242, 237, 224, 0.12);
  box-shadow: 0 28px 74px rgba(36, 30, 24, 0.24);
}

.cert-card:hover {
  border-color: rgba(214, 162, 63, 0.56);
  background: rgba(255, 255, 255, 0.18);
}

.cert-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.cert-card::before {
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.05));
  content: "";
  transform: translateZ(-7px);
}

.cert-card img {
  width: 100%;
  aspect-ratio: 0.706 / 1;
  border-radius: 4px;
  background: var(--white);
  object-fit: cover;
}

.cert-caption {
  display: grid;
  gap: 2px;
  padding: 9px 2px 2px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  line-height: 1.35;
  text-align: center;
}

.cert-caption strong {
  color: var(--white);
  font-size: 0.84rem;
}

.cert-glow {
  position: absolute;
  left: 50%;
  top: 57%;
  width: 320px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 162, 63, 0.28), rgba(214, 162, 63, 0));
  filter: blur(18px);
  transform: translate(-50%, -50%) rotateX(72deg);
}

.home-hero .cert-glow {
  background: radial-gradient(circle, rgba(242, 237, 224, 0.32), rgba(214, 162, 63, 0.11) 48%, rgba(214, 162, 63, 0));
}

.cert-shadow {
  position: absolute;
  left: 50%;
  bottom: 32px;
  width: 270px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.28);
  filter: blur(20px);
  transform: translateX(-50%);
}

.metric-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
}

.home-hero .metric-panel {
  border-color: rgba(242, 237, 224, 0.3);
  background: rgba(242, 237, 224, 0.1);
  box-shadow: 0 28px 78px rgba(36, 30, 24, 0.22);
}

.metric-panel article {
  min-height: 128px;
  background: rgba(5, 31, 27, 0.48);
  padding: 20px;
}

.home-hero .metric-panel article {
  background: linear-gradient(135deg, rgba(45, 38, 30, 0.5), rgba(147, 124, 82, 0.22));
}

.metric-panel strong {
  display: block;
  font-size: 1.72rem;
  margin-bottom: 8px;
}

.metric-panel span {
  color: rgba(255, 255, 255, 0.75);
}

.section {
  padding: 88px 0;
}

.section.muted {
  background: var(--white);
}

.section.dark {
  background: var(--green-dark);
  color: var(--white);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.78);
}

.section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-head.compact {
  max-width: 900px;
  margin-bottom: 24px;
}

.section-head-action {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  max-width: none;
}

.section-head-action > div {
  max-width: 820px;
}

.section-head-action > .solid {
  flex: 0 0 auto;
  margin-bottom: 4px;
}

.section-foot {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.gateway-grid,
.product-grid,
.solution-grid,
.process-grid,
.quality-grid,
.news-grid,
.resource-grid,
.gallery-grid {
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.gateway-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gateway,
.product-card,
.solution-card,
.process-card,
.news-card,
.resource-card,
.flow article,
.quality-grid article,
.mini-list article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

[data-product-link] {
  cursor: pointer;
}

[data-product-link] a,
[data-product-link] button {
  cursor: pointer;
}

[data-product-grid],
.advisor-result-panel {
  scroll-margin-top: 112px;
}

.gateway {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.gateway img,
.product-card img,
.solution-card img,
.process-card img,
.news-card img,
.resource-card img {
  width: 100%;
  object-fit: cover;
}

.gateway img {
  aspect-ratio: 16 / 10;
}

.gateway div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px;
}

.gateway p {
  margin-bottom: 18px;
}

.gateway-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 42px;
  margin-top: auto;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--gold);
  color: #1e170d;
  font-weight: 900;
  padding: 10px 14px;
  box-shadow: 0 8px 18px rgba(173, 128, 50, 0.18);
}

.gateway:hover .gateway-cta {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.product-grid,
.process-grid,
.news-grid,
.resource-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.resource-card {
  overflow: hidden;
}

.resource-card img {
  aspect-ratio: 16 / 9;
}

.resource-card > div {
  padding: 18px;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-grid figcaption {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.gallery-grid strong {
  color: var(--ink);
}

.gallery-grid span {
  color: var(--muted-text);
  font-size: 0.88rem;
  line-height: 1.45;
}

.product-card,
.news-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.product-card.is-coming-soon img,
.detail-hero.is-coming-soon img,
.compare-product-card.is-coming-soon img {
  filter: saturate(0.82);
}

.product-card img {
  aspect-ratio: 16 / 10;
}

.product-card img.image-contain {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #f3ede2;
}

.product-card h3 {
  min-height: 3.1em;
}

.product-card > div > p {
  min-height: 5.4em;
}

.product-card > div,
.news-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.news-card > div {
  flex: 1 0 auto;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.product-meta .kicker {
  margin: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(154, 100, 44, 0.24);
  border-radius: 999px;
  background: rgba(154, 100, 44, 0.1);
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  padding: 7px 10px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.news-meta span {
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.1);
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 6px 9px;
}

.news-card .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.home-news-section {
  padding-bottom: 120px;
}

.home-news-section .news-grid {
  align-items: stretch;
}

.home-news-section .news-card > div {
  min-height: 264px;
}

.home-news-section .news-card .text-link {
  margin-top: auto;
  padding: 10px 14px;
}

.home-gateway-section .section-head,
.home-featured-section .section-head {
  max-width: none;
}

.home-gateway-section .gateway-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.home-featured-section {
  border-top: 1px solid var(--line);
  padding-top: 104px;
}

.tags,
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 18px;
}

.tags + .tags-extra {
  margin-top: -10px;
}

.tags span,
.chips span {
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.82rem;
  padding: 6px 9px;
}

.card-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: auto;
}

.card-actions button,
.card-actions a,
.news-card button,
.mini-list button {
  min-height: 38px;
  border: 1px solid rgba(11, 90, 73, 0.22);
  background: rgba(11, 90, 73, 0.1);
  color: var(--green);
  padding: 8px;
}

.card-actions a,
.news-card .text-link,
.advisor-result .text-link,
.solution-card .text-link,
.resource-card .text-link {
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #1e170d;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(173, 128, 50, 0.18);
}

.card-actions a:hover,
.news-card .text-link:hover,
.advisor-result .text-link:hover,
.solution-card .text-link:hover,
.resource-card .text-link:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.card-actions button.active {
  background: var(--green);
  color: var(--white);
}

.card-actions .coming-soon-action {
  grid-column: span 2;
  border-color: rgba(154, 100, 44, 0.22);
  background: rgba(154, 100, 44, 0.1);
  color: var(--amber);
}

.hero-actions .coming-soon-action,
.compare-hero-actions .coming-soon-action,
.advisor-summary .coming-soon-action {
  border-color: rgba(154, 100, 44, 0.26);
  background: rgba(154, 100, 44, 0.14);
  color: var(--amber);
  box-shadow: none;
}

.detail-hero {
  background: var(--white);
  padding: 76px 0;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 0.86fr);
  gap: 42px;
  align-items: center;
}

.detail-grid img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.detail-grid img.image-contain {
  aspect-ratio: 3 / 4;
  object-fit: contain;
  background: #f3ede2;
}

.detail-grid h1 {
  color: var(--ink);
}

.detail-grid p {
  font-size: 1.04rem;
}

.detail-content {
  display: grid;
  gap: 30px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.32fr);
  gap: 42px;
  align-items: start;
}

.article-body {
  max-width: 860px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.9;
}

.article-body p {
  margin: 0 0 22px;
}

.article-aside {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.article-aside h3 {
  margin: 0 0 10px;
}

.source-list {
  display: grid;
  gap: 12px;
  margin: 16px 0;
}

.source-list p {
  display: grid;
  gap: 4px;
  margin: 0;
}

.source-list b,
.proof-box b {
  color: var(--ink);
}

.source-list span {
  color: var(--muted);
  line-height: 1.55;
}

.proof-box {
  border-top: 1px solid var(--line);
  margin-top: 16px;
  padding-top: 16px;
}

.proof-box ul {
  display: grid;
  gap: 10px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.article-aside .solid {
  margin-top: 12px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(420px, 0.85fr);
  gap: 42px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--green);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.flow.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 100%;
}

.split-band {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.split-band img,
.split-band video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-flow-section .split-band {
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1fr);
  align-items: stretch;
}

.process-flow-section .split-band > div:first-child {
  align-self: center;
}

.factory-process-section {
  padding-bottom: 72px;
}

.factory-process-section .split-band {
  gap: 48px;
}

.factory-process-copy {
  display: grid;
  gap: 16px;
  max-width: 500px;
}

.factory-process-copy h2,
.factory-process-copy p {
  margin: 0;
}

.factory-process-copy .solid {
  width: fit-content;
  margin-top: 8px;
}

.process-flow-visual {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(330px, 1fr) auto auto;
  gap: 16px;
  min-height: 520px;
  border: 1px solid rgba(11, 90, 73, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 245, 0.98)),
    linear-gradient(90deg, rgba(214, 162, 63, 0.1), rgba(49, 93, 117, 0.08));
  box-shadow: var(--shadow);
  padding: 24px;
}

.process-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(11, 90, 73, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(232, 241, 237, 0.68)),
    repeating-linear-gradient(90deg, rgba(11, 90, 73, 0.05) 0 1px, transparent 1px 46px),
    repeating-linear-gradient(0deg, rgba(11, 90, 73, 0.04) 0 1px, transparent 1px 46px);
}

.process-stage-grid {
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(11, 90, 73, 0.1);
  border-radius: var(--radius);
}

.process-stage-grid::before,
.process-stage-grid::after {
  content: "";
  position: absolute;
  background: rgba(11, 90, 73, 0.12);
}

.process-stage-grid::before {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
}

.process-stage-grid::after {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
}

.process-scene {
  position: absolute;
  left: 34px;
  top: 34px;
  bottom: 34px;
  width: calc(52% - 44px);
  pointer-events: none;
}

.process-scene b,
.process-scene span,
.process-scene .seed-label,
.process-scene .pack-code {
  font-weight: 900;
}

.process-scene-photo {
  inset: 0;
  width: auto;
  margin: 0;
  opacity: 1;
}

.process-scene-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.96) contrast(1.02);
}

.process-photo-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 34, 29, 0.12), rgba(255, 255, 255, 0.08) 42%, rgba(255, 255, 255, 0.76)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 56, 47, 0.18));
}

.process-scene-photo figcaption {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.process-scene-photo figcaption span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--green-dark);
  font-size: 0.82rem;
  line-height: 1.2;
  padding: 7px 10px;
  box-shadow: 0 8px 18px rgba(17, 36, 31, 0.12);
}

.process-stage-grid {
  display: none;
}

.scene-flow {
  position: absolute;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.12);
}

.scene-flow-horizontal {
  left: 18px;
  right: 18px;
  top: 52%;
  height: 12px;
}

.scene-flow-arc {
  left: 34px;
  right: 34px;
  top: 45%;
  height: 62px;
  border: 2px solid rgba(11, 90, 73, 0.14);
  border-bottom: 0;
  background: transparent;
}

.scene-flow i {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: 0 0 18px rgba(214, 162, 63, 0.32);
}

.scene-flow-horizontal i {
  top: 3px;
  left: -58px;
  width: 58px;
  height: 6px;
  animation: sceneFlowX 3.2s linear infinite;
}

.scene-flow-horizontal i:nth-child(2) {
  animation-delay: -1.55s;
}

.scene-flow-arc i {
  top: -4px;
  width: 10px;
  height: 10px;
  animation: seedArc 3.6s ease-in-out infinite;
}

.scene-flow-arc i:nth-child(2) {
  animation-delay: -1.2s;
}

.scene-flow-arc i:nth-child(3) {
  animation-delay: -2.4s;
}

.raw-silo,
.raw-filter,
.raw-desalt,
.seed-dish,
.seed-tanks i,
.ferment-tank,
.ferment-panel,
.dry-centrifuge,
.dry-tower,
.pack-head,
.trace-card,
.trace-qr,
.trace-racks i {
  border: 1px solid rgba(11, 90, 73, 0.18);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 12px 24px rgba(17, 36, 31, 0.08);
}

.raw-silo {
  position: absolute;
  left: 0;
  bottom: 26px;
  width: 86px;
  height: 180px;
  border-radius: 18px 18px 28px 28px;
}

.raw-silo::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 16px;
  height: 54%;
  border-radius: 12px 12px 20px 20px;
  background: linear-gradient(180deg, rgba(154, 100, 44, 0.46), rgba(214, 162, 63, 0.26));
  animation: vesselLevel 3.8s ease-in-out infinite alternate;
}

.raw-silo span {
  position: absolute;
  left: 50%;
  bottom: -30px;
  color: var(--amber);
  font-size: 0.82rem;
  transform: translateX(-50%);
}

.raw-filter {
  position: absolute;
  left: 96px;
  top: 52px;
  width: 98px;
  height: 118px;
  display: grid;
  gap: 7px;
  align-content: center;
  border-radius: var(--radius);
  padding: 14px;
}

.raw-filter i {
  height: 5px;
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.18);
}

.raw-filter b,
.raw-desalt b {
  color: var(--green-dark);
  font-size: 0.82rem;
  text-align: center;
}

.raw-desalt {
  position: absolute;
  right: 4px;
  bottom: 48px;
  width: 108px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 18px;
}

.raw-desalt span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 35%, rgba(255, 255, 255, 0.95), transparent 20%),
    linear-gradient(180deg, rgba(49, 93, 117, 0.34), rgba(11, 90, 73, 0.16));
}

.seed-dish {
  position: absolute;
  left: 8px;
  top: 38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
}

.seed-dish span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.72;
  animation: seedPulse 2.8s ease-in-out infinite;
}

.seed-dish span:nth-child(1) {
  left: 30px;
  top: 36px;
}

.seed-dish span:nth-child(2) {
  left: 62px;
  top: 52px;
  animation-delay: -0.9s;
}

.seed-dish span:nth-child(3) {
  left: 44px;
  top: 74px;
  animation-delay: -1.8s;
}

.seed-dish b {
  position: absolute;
  left: 50%;
  bottom: -28px;
  color: var(--green-dark);
  font-size: 0.82rem;
  transform: translateX(-50%);
}

.seed-tanks {
  position: absolute;
  right: 0;
  bottom: 22px;
  display: flex;
  gap: 10px;
  align-items: end;
}

.seed-tanks i {
  display: block;
  width: 54px;
  height: 142px;
  border-radius: 14px 14px 22px 22px;
}

.seed-tanks i:nth-child(2) {
  height: 190px;
}

.seed-tanks i::before {
  content: "";
  display: block;
  width: calc(100% - 18px);
  height: 42%;
  margin: 74% auto 0;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(180deg, rgba(11, 90, 73, 0.22), rgba(214, 162, 63, 0.26));
  animation: vesselLevel 3.4s ease-in-out infinite alternate;
}

.seed-label {
  position: absolute;
  right: 28px;
  bottom: 0;
  color: var(--green-dark);
  font-size: 0.82rem;
}

.ferment-tank {
  position: absolute;
  left: 48px;
  top: 28px;
  width: 178px;
  height: 250px;
  border-radius: 22px 22px 34px 34px;
}

.ferment-tank::before {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  height: 54%;
  border-radius: 16px 16px 26px 26px;
  background: linear-gradient(180deg, rgba(214, 162, 63, 0.36), rgba(11, 90, 73, 0.3));
}

.ferment-tank i {
  position: absolute;
  left: 50%;
  top: 28px;
  width: 2px;
  height: 172px;
  background: rgba(11, 90, 73, 0.28);
  transform-origin: bottom;
  animation: mixerSpin 3.5s linear infinite;
}

.ferment-tank i:nth-child(2) {
  transform: rotate(120deg);
}

.ferment-tank i:nth-child(3) {
  transform: rotate(240deg);
}

.ferment-tank > span {
  position: absolute;
  left: 50%;
  top: 100px;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  transform: translateX(-50%);
}

.ferment-panel {
  position: absolute;
  right: 0;
  top: 58px;
  display: grid;
  gap: 8px;
  width: 92px;
  border-radius: var(--radius);
  padding: 12px;
}

.ferment-panel b {
  border-radius: 6px;
  background: rgba(49, 93, 117, 0.1);
  color: var(--blue);
  font-size: 0.78rem;
  padding: 7px 8px;
}

.ferment-bubbles span {
  position: absolute;
  bottom: 52px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  animation: bubbleRise 3.2s ease-in infinite;
}

.ferment-bubbles span:nth-child(1) {
  left: 84px;
}

.ferment-bubbles span:nth-child(2) {
  left: 122px;
  animation-delay: -0.8s;
}

.ferment-bubbles span:nth-child(3) {
  left: 154px;
  animation-delay: -1.6s;
}

.ferment-bubbles span:nth-child(4) {
  left: 102px;
  animation-delay: -2.4s;
}

.dry-centrifuge {
  position: absolute;
  left: 4px;
  top: 78px;
  width: 126px;
  height: 126px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.dry-centrifuge span {
  width: 72px;
  height: 72px;
  border: 10px solid rgba(11, 90, 73, 0.18);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: centrifugeSpin 1.8s linear infinite;
}

.dry-centrifuge b {
  position: absolute;
  bottom: -30px;
  color: var(--green-dark);
  font-size: 0.82rem;
}

.dry-tower {
  position: absolute;
  right: 4px;
  top: 28px;
  width: 112px;
  height: 230px;
  border-radius: 18px 18px 8px 8px;
}

.dry-tower i:first-child {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 24px;
  height: 72px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  background: rgba(214, 162, 63, 0.28);
}

.dry-tower i:nth-child(2) {
  position: absolute;
  left: 36px;
  right: 36px;
  bottom: 34px;
  height: 90px;
  background: linear-gradient(180deg, rgba(11, 90, 73, 0.2), rgba(214, 162, 63, 0.24));
}

.dry-tower b {
  position: absolute;
  left: 50%;
  bottom: 8px;
  color: var(--amber);
  font-size: 0.82rem;
  transform: translateX(-50%);
}

.dry-powder span {
  position: absolute;
  right: 42px;
  top: 116px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: powderFall 2.2s ease-in infinite;
}

.dry-powder span:nth-child(2) {
  right: 62px;
  animation-delay: -0.55s;
}

.dry-powder span:nth-child(3) {
  right: 82px;
  animation-delay: -1.1s;
}

.dry-powder span:nth-child(4) {
  right: 52px;
  animation-delay: -1.65s;
}

.pack-conveyor {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 70px;
  height: 52px;
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.12);
  overflow: hidden;
}

.pack-conveyor span {
  position: absolute;
  top: 10px;
  left: -70px;
  width: 58px;
  height: 32px;
  border: 1px solid rgba(154, 100, 44, 0.22);
  border-radius: 7px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(214, 162, 63, 0.28));
  animation: packMove 5s linear infinite;
}

.pack-conveyor span:nth-child(2) {
  animation-delay: -1.25s;
}

.pack-conveyor span:nth-child(3) {
  animation-delay: -2.5s;
}

.pack-conveyor span:nth-child(4) {
  animation-delay: -3.75s;
}

.pack-head {
  position: absolute;
  left: 50%;
  top: 42px;
  width: 112px;
  height: 120px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  transform: translateX(-50%);
}

.pack-head i {
  width: 38px;
  height: 60px;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(11, 90, 73, 0.34), rgba(214, 162, 63, 0.34));
  animation: sealPress 2.6s ease-in-out infinite;
}

.pack-head b,
.pack-code {
  color: var(--green-dark);
  font-size: 0.82rem;
}

.pack-code {
  position: absolute;
  right: 24px;
  bottom: 28px;
  border: 1px solid rgba(11, 90, 73, 0.14);
  border-radius: 6px;
  background: var(--white);
  padding: 8px 10px;
}

.trace-racks {
  position: absolute;
  left: 0;
  top: 36px;
  width: 160px;
  display: grid;
  gap: 10px;
}

.trace-racks i {
  display: block;
  height: 56px;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(11, 90, 73, 0.18) 0 18%, transparent 18% 24%, rgba(214, 162, 63, 0.28) 24% 44%, transparent 44% 50%, rgba(11, 90, 73, 0.14) 50% 70%, transparent 70% 76%, rgba(214, 162, 63, 0.2) 76% 100%),
    var(--white);
}

.trace-card {
  position: absolute;
  right: 4px;
  top: 44px;
  width: 132px;
  display: grid;
  gap: 8px;
  border-radius: var(--radius);
  padding: 14px;
}

.trace-card b {
  color: var(--green-dark);
}

.trace-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.trace-card small {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  animation: scanPulse 2.4s ease-in-out infinite;
}

.trace-qr {
  position: absolute;
  right: 28px;
  bottom: 34px;
  width: 92px;
  height: 92px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: var(--radius);
  padding: 9px;
}

.trace-qr i {
  border-radius: 3px;
  background: var(--green);
  opacity: 0.86;
}

.process-track {
  position: absolute;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.13);
}

.process-track-main {
  left: 38px;
  right: 38px;
  top: 48%;
  height: 14px;
}

.process-track-cross {
  top: 36px;
  bottom: 36px;
  left: 50%;
  width: 14px;
  transform: translateX(-50%);
}

.process-track span {
  position: absolute;
  display: block;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--green));
  box-shadow: 0 0 18px rgba(214, 162, 63, 0.34);
}

.process-track-main span {
  left: -86px;
  top: 3px;
  width: 72px;
  height: 8px;
  animation: processPulseX 4.6s linear infinite;
}

.process-track-main span:nth-child(2) {
  animation-delay: -1.55s;
}

.process-track-main span:nth-child(3) {
  animation-delay: -3.1s;
}

.process-track-cross span {
  top: -78px;
  left: 3px;
  width: 8px;
  height: 64px;
  animation: processPulseY 5.2s linear infinite;
}

.process-track-cross span:nth-child(2) {
  animation-delay: -2.6s;
}

.process-vessels {
  position: absolute;
  inset: 58px 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: end;
  pointer-events: none;
}

.process-vessels i {
  position: relative;
  display: block;
  height: 46%;
  border: 1px solid rgba(11, 90, 73, 0.18);
  border-radius: 12px 12px 18px 18px;
  background:
    linear-gradient(180deg, rgba(11, 90, 73, 0.08), rgba(11, 90, 73, 0.02)),
    var(--white);
  box-shadow: 0 12px 24px rgba(17, 36, 31, 0.08);
}

.process-vessels i:nth-child(2) {
  height: 68%;
}

.process-vessels i:nth-child(3) {
  height: 54%;
}

.process-vessels i::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  height: 38%;
  border-radius: 9px 9px 14px 14px;
  background: linear-gradient(180deg, rgba(214, 162, 63, 0.42), rgba(11, 90, 73, 0.28));
  animation: vesselLevel 3.8s ease-in-out infinite alternate;
}

.process-core {
  position: absolute;
  right: 24px;
  top: 50%;
  width: min(342px, 43%);
  min-height: 210px;
  display: grid;
  gap: 10px;
  place-items: center;
  border: 1px solid rgba(11, 90, 73, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 44px rgba(17, 36, 31, 0.16);
  padding: 24px;
  text-align: center;
  transform: translateY(-50%);
}

.process-core > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 900;
}

.process-core strong {
  color: var(--ink);
  font-size: 1.42rem;
  line-height: 1.25;
}

.process-core p {
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.process-readouts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.process-readouts small {
  border-radius: 999px;
  background: rgba(49, 93, 117, 0.1);
  color: var(--blue);
  font-weight: 900;
  line-height: 1.2;
  padding: 7px 9px;
}

.process-step-controls {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.process-step-controls button {
  display: grid;
  grid-template-rows: 34px auto auto;
  gap: 5px;
  min-height: 92px;
  border: 1px solid rgba(11, 90, 73, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  color: var(--green-dark);
  cursor: pointer;
  font-weight: 900;
  padding: 10px 8px;
}

.process-step-controls button i {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 34px;
  border-radius: 6px;
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
}

.process-step-controls button b {
  color: var(--gold);
  font-size: 0.82rem;
}

.process-step-controls button span {
  font-size: 0.86rem;
  line-height: 1.25;
}

.process-step-controls button.active {
  border-color: rgba(11, 90, 73, 0.42);
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(11, 90, 73, 0.18);
}

.process-step-controls button.active b {
  color: var(--gold);
}

.process-step-controls button.active i {
  opacity: 1;
}

.process-progress {
  overflow: hidden;
  height: 6px;
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.12);
}

.process-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--green));
  transition: width 360ms ease;
}

@keyframes processPulseX {
  from {
    left: -86px;
  }
  to {
    left: 100%;
  }
}

@keyframes processPulseY {
  from {
    top: -78px;
  }
  to {
    top: 100%;
  }
}

@keyframes vesselLevel {
  from {
    opacity: 0.56;
    transform: scaleY(0.82);
    transform-origin: bottom;
  }
  to {
    opacity: 0.92;
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

@keyframes sceneFlowX {
  from {
    left: -58px;
  }
  to {
    left: 100%;
  }
}

@keyframes seedArc {
  0% {
    left: 4%;
    transform: translateY(34px);
  }
  50% {
    transform: translateY(-7px);
  }
  100% {
    left: 92%;
    transform: translateY(34px);
  }
}

@keyframes seedPulse {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.82);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.18);
  }
}

@keyframes mixerSpin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes bubbleRise {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.72);
  }
  35% {
    opacity: 0.9;
  }
  to {
    opacity: 0;
    transform: translateY(-138px) scale(1.2);
  }
}

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

@keyframes powderFall {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  35% {
    opacity: 0.9;
  }
  to {
    opacity: 0;
    transform: translateY(92px);
  }
}

@keyframes packMove {
  from {
    left: -70px;
  }
  to {
    left: 100%;
  }
}

@keyframes sealPress {
  0%,
  100% {
    transform: translateY(-8px);
  }
  45%,
  60% {
    transform: translateY(12px);
  }
}

@keyframes scanPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scaleX(0.34);
    transform-origin: left;
  }
  50% {
    opacity: 1;
    transform: scaleX(1);
    transform-origin: left;
  }
}

@keyframes certSpin {
  from {
    transform: rotateY(-18deg) rotateX(-4deg);
  }

  to {
    transform: rotateY(342deg) rotateX(-4deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cert-ring,
  .process-track span,
  .process-vessels i::before,
  .scene-flow i,
  .raw-silo::before,
  .seed-dish span,
  .seed-tanks i::before,
  .ferment-tank i,
  .ferment-bubbles span,
  .dry-centrifuge span,
  .dry-powder span,
  .pack-conveyor span,
  .pack-head i,
  .trace-card small {
    animation: none;
  }

  .cert-ring {
    transform: rotateY(-18deg) rotateX(-4deg);
  }
}

.brand-film-section {
  background: var(--white);
}

.brand-film {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: center;
}

.brand-film-copy {
  display: grid;
  gap: 16px;
}

.brand-film-copy h2 {
  margin-bottom: 0;
}

.brand-film-copy p {
  margin-bottom: 0;
}

.brand-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--ink);
}

.about-intro-section {
  padding-bottom: 72px;
}

.about-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: 40px;
  align-items: start;
}

.about-overview-copy .lead {
  max-width: 820px;
  color: #43524d;
  font-size: 1.08rem;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-points article {
  border: 1px solid rgba(11, 90, 73, 0.14);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  padding: 18px;
}

.about-points b {
  display: block;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.about-points p {
  margin: 0;
}

.about-proof {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(11, 90, 73, 0.15);
  border-radius: var(--radius);
  background: rgba(11, 90, 73, 0.15);
  box-shadow: var(--shadow);
}

.about-proof article {
  min-height: 126px;
  background: linear-gradient(135deg, var(--white), rgba(244, 241, 232, 0.78));
  padding: 22px;
}

.about-proof strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.85rem;
  line-height: 1.1;
  margin-bottom: 8px;
}

.about-proof span {
  color: var(--muted);
  font-weight: 800;
}

.about-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.about-capability-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.about-capability-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.about-capability-card h3,
.about-capability-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.about-capability-card h3 {
  margin-top: 18px;
}

.about-capability-card p {
  margin-bottom: 20px;
}

.about-stack {
  display: grid;
  gap: 34px;
}

.about-story-stack {
  gap: 42px;
}

.about-row {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.about-story-row {
  border: 1px solid rgba(11, 90, 73, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  padding: 24px;
}

.about-story-row.reverse {
  grid-template-columns: minmax(360px, 0.7fr) minmax(0, 0.92fr);
}

.about-story-row.reverse > div {
  order: 2;
}

.about-row img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-story-points {
  display: grid;
  gap: 8px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.about-story-points li {
  position: relative;
  border: 1px solid rgba(11, 90, 73, 0.12);
  border-radius: 6px;
  background: rgba(11, 90, 73, 0.05);
  color: var(--green-dark);
  font-weight: 850;
  padding: 10px 12px 10px 28px;
}

.about-story-points li::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.about-system {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: start;
}

.about-system .eyebrow {
  color: var(--gold);
}

.about-system-grid {
  display: grid;
  gap: 14px;
}

.about-system-grid article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.about-system-grid h3 {
  color: var(--white);
}

.about-system-grid p {
  margin: 0;
}

.about-timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  min-height: 178px;
}

.about-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(7, 52, 45, 0.96), rgba(11, 90, 73, 0.88)),
    var(--green-dark);
  color: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.about-cta .eyebrow {
  color: var(--gold);
}

.about-cta h2 {
  color: var(--white);
}

.about-cta p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.timeline,
.flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.timeline article,
.flow article,
.quality-grid article {
  padding: 18px;
}

.timeline strong,
.flow b,
.quality-grid strong {
  display: inline-flex;
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.catalog-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
}

.catalog-bar label span {
  display: block;
  color: var(--muted);
  font-weight: 900;
  margin-bottom: 8px;
}

.catalog-bar input,
.search-box input,
.advisor-controls select,
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: var(--white);
}

.search-box {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.search-box span {
  color: var(--muted);
  font-weight: 900;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.filters button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-weight: 800;
  padding: 10px 14px;
}

.filters button.active {
  border-color: var(--green);
  background: var(--green);
  color: var(--white);
}

.advisor-board {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(0, 0.86fr);
  gap: 24px;
  align-items: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 247, 0.98) 52%, rgba(240, 246, 246, 0.98) 100%);
  box-shadow: var(--shadow);
  padding: 28px;
}

.advisor-board::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--gold), var(--green));
}

.advisor-panel,
.advisor-result-panel {
  position: relative;
}

.advisor-panel h2 {
  max-width: 760px;
  font-size: 3rem;
  line-height: 1.08;
  margin-bottom: 16px;
}

.advisor-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 4px;
}

.advisor-path span {
  border: 1px solid rgba(11, 90, 73, 0.18);
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.08);
  color: var(--green-dark);
  font-size: 0.9rem;
  font-weight: 900;
  padding: 7px 10px;
}

.advisor-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 22px 0 16px;
}

.advisor-controls label {
  display: grid;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(11, 90, 73, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
  box-shadow: 0 12px 24px rgba(17, 36, 31, 0.05);
}

.advisor-controls small {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
}

.advisor-controls span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 900;
}

.advisor-controls select {
  min-height: 50px;
  appearance: none;
  border-color: rgba(11, 90, 73, 0.2);
  border-radius: 6px;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-dark) 50%),
    linear-gradient(135deg, var(--green-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  color: var(--ink);
  font-weight: 850;
  padding-right: 38px;
}

.advisor-controls select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(214, 162, 63, 0.18);
}

.advisor-summary {
  display: grid;
  gap: 12px;
  align-items: start;
  border: 0;
  border-radius: var(--radius);
  background: var(--green-dark);
  color: var(--white);
  padding: 18px;
}

.advisor-summary b {
  display: block;
  color: var(--white);
}

.advisor-summary p {
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.advisor-summary .solid {
  justify-self: start;
}

.advisor-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.advisor-result-panel {
  display: grid;
  gap: 14px;
}

.advisor-result-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(11, 90, 73, 0.12);
  padding-bottom: 12px;
}

.advisor-result-head .eyebrow {
  margin: 0;
}

.advisor-result-head strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.advisor-result article {
  display: flex;
  flex-direction: column;
  min-height: 210px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  padding: 18px;
  box-shadow: 0 12px 26px rgba(17, 36, 31, 0.06);
}

.advisor-result h3 {
  min-height: 2.5em;
  margin-bottom: 8px;
}

.advisor-result p {
  margin-bottom: 16px;
}

.advisor-result .text-link {
  align-self: flex-start;
  margin-top: auto;
}

.checklist-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.64fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.checklist-summary {
  border: 1px solid rgba(11, 90, 73, 0.22);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
  margin: 18px 0;
}

.checklist-summary b {
  display: block;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.checklist-summary p {
  margin: 0;
}

.checklist-list {
  display: grid;
  gap: 12px;
}

.checklist-list label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 88px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
}

.checklist-list input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.checklist-list b,
.checklist-list small {
  display: block;
}

.checklist-list b {
  margin-bottom: 6px;
}

.checklist-list small {
  color: var(--muted);
  line-height: 1.6;
}

.material-note {
  border: 1px solid rgba(11, 90, 73, 0.22);
  border-radius: var(--radius);
  background: rgba(11, 90, 73, 0.07);
  padding: 16px;
}

.material-note b {
  display: block;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.material-note p {
  margin-bottom: 14px;
}

.solution-grid {
  display: grid;
  gap: 24px;
}

.solution-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  overflow: hidden;
}

.solution-card img,
.process-card img {
  height: 100%;
  min-height: 260px;
}

.news-card img {
  flex: 0 0 auto;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

.news-media-placeholder {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--white);
}

.detail-media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 10;
}

.solution-card div,
.process-card div {
  padding: 24px;
}

.quality-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trace-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.factory-quality-section {
  background:
    linear-gradient(180deg, rgba(249, 250, 246, 0.92), rgba(242, 246, 241, 0.98)),
    var(--paper);
}

.factory-quality-suite {
  display: grid;
  gap: 26px;
}

.factory-quality-board {
  display: grid;
  gap: 28px;
  border: 1px solid rgba(11, 90, 73, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 70px rgba(22, 43, 37, 0.08);
  padding: 32px;
}

.quality-board-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
  gap: 28px;
  align-items: end;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(11, 90, 73, 0.12);
}

.quality-board-copy h3 {
  max-width: 820px;
  margin: 0 0 12px;
  font-size: clamp(1.7rem, 2.35vw, 2.35rem);
  line-height: 1.18;
}

.quality-board-copy p:last-child {
  max-width: 780px;
  margin: 0;
}

.quality-board-note {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 18px;
}

.quality-board-note span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.3;
}

.quality-board-note b {
  display: block;
  margin: 8px 0 8px;
  color: var(--green-dark);
  font-size: 1.5rem;
  line-height: 1.2;
}

.quality-board-note p {
  margin: 0;
  font-size: 0.92rem;
}

.quality-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(11, 90, 73, 0.12);
  border-radius: var(--radius);
  background: rgba(250, 252, 248, 0.88);
}

.quality-principles article {
  min-height: 116px;
  padding: 18px 20px;
  border-left: 1px solid rgba(11, 90, 73, 0.12);
}

.quality-principles article:first-child {
  border-left: 0;
}

.quality-principles b {
  display: block;
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 1.02rem;
  line-height: 1.35;
}

.quality-principles p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.quality-topic-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quality-topic-strip span {
  border: 1px solid rgba(11, 90, 73, 0.14);
  border-radius: 6px;
  background: rgba(11, 90, 73, 0.055);
  color: var(--green-dark);
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  padding: 9px 10px;
}

.trace-panel-clean {
  display: grid;
  gap: 18px;
}

.trace-panel-head {
  display: grid;
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1fr);
  gap: 24px;
  align-items: end;
}

.trace-panel-head h3,
.trace-panel-head p {
  margin: 0;
}

.trace-panel-head h3 {
  font-size: clamp(1.35rem, 1.8vw, 1.8rem);
  line-height: 1.22;
}

.trace-spine {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(11, 90, 73, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.trace-spine article {
  display: grid;
  gap: 14px;
  min-height: 210px;
  padding: 18px 16px 20px;
  border-left: 1px solid rgba(11, 90, 73, 0.1);
}

.trace-spine article:first-child {
  border-left: 0;
}

.trace-spine span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(214, 162, 63, 0.32);
  border-radius: 50%;
  background: rgba(214, 162, 63, 0.12);
  color: #9a642c;
  font-size: 0.86rem;
  font-weight: 900;
}

.trace-spine h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.32;
}

.trace-spine p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
}

.quality-file-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 90, 73, 0.12);
}

.quality-file-grid article {
  padding: 0 18px;
  border-left: 1px solid rgba(11, 90, 73, 0.1);
}

.quality-file-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.quality-file-grid b {
  display: block;
  margin-bottom: 6px;
  color: var(--green-dark);
  font-size: 0.98rem;
}

.quality-file-grid p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.62;
}

.factory-platform-card {
  border: 1px solid rgba(11, 90, 73, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 58px rgba(23, 42, 38, 0.08);
}

.factory-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.factory-platform-grid.merged {
  grid-template-columns: minmax(0, 1fr);
}

.factory-platform-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  min-height: 340px;
}

.factory-platform-card.merged {
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
}

.factory-platform-card img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
}

.factory-platform-card img.lab-photo {
  object-position: 62% center;
  filter: brightness(1.04) contrast(1.04) saturate(1.05);
}

.factory-platform-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 30px;
}

.factory-platform-copy h3,
.factory-platform-copy p {
  margin: 0;
}

.trace-form {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.trace-form span {
  color: var(--muted);
  font-weight: 900;
}

.trace-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  padding: 12px;
}

.trace-result {
  display: grid;
  gap: 12px;
}

.trace-head,
.trace-result article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 16px;
}

.trace-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  color: var(--green-dark);
}

.trace-head span {
  color: var(--muted);
  font-weight: 900;
}

.trace-result article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
}

.trace-result strong {
  color: var(--gold);
  font-size: 1.35rem;
}

.trace-result p {
  margin: 0;
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(244, 241, 232, 0.96)),
    var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(520px, 1.1fr);
  gap: 34px;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 20px;
}

.contact-card,
.contact-flow-panel,
.lead-form {
  border: 1px solid rgba(11, 90, 73, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 52, 45, 0.98), rgba(11, 90, 73, 0.9)),
    var(--green-dark);
  color: var(--white);
  padding: 28px;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), rgba(255, 255, 255, 0.68), rgba(214, 162, 63, 0));
}

.contact-card .eyebrow,
.contact-card h2,
.contact-card p {
  position: relative;
}

.contact-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.contact-email {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  max-width: 100%;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: var(--gold);
  color: #1e170d;
  font-weight: 900;
  margin-bottom: 20px;
  padding: 11px 16px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  word-break: break-word;
}

.contact-email:hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.contact-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.contact-tags span {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 800;
  padding: 7px 10px;
}

.contact-flow-panel {
  background: rgba(255, 255, 255, 0.84);
  padding: 24px;
}

.contact-flow-panel h2 {
  font-size: clamp(2rem, 3vw, 3.25rem);
  line-height: 1.12;
  margin-bottom: 18px;
}

.contact-flow {
  grid-template-columns: 1fr;
  gap: 12px;
  width: 100%;
  margin: 0;
}

.contact-flow article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(11, 90, 73, 0.12);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 232, 0.66));
  padding: 16px;
}

.contact-flow b {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(214, 162, 63, 0.15);
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0;
}

.contact-flow h3 {
  margin-bottom: 4px;
}

.contact-flow p {
  margin: 0;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  background: linear-gradient(180deg, var(--white), rgba(255, 255, 255, 0.92));
  padding: 26px;
}

.contact-form {
  position: relative;
}

.form-heading {
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
  padding-bottom: 16px;
}

.form-heading h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  margin-bottom: 8px;
}

.form-heading p:last-child {
  max-width: 620px;
  margin-bottom: 0;
}

.solution-brief {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(11, 90, 73, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 90, 73, 0.08), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at 98% 0%, rgba(214, 162, 63, 0.2), transparent 34%);
  padding: 18px;
}

.solution-brief h3 {
  font-size: 1.28rem;
  margin-bottom: 6px;
}

.solution-brief p {
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 6px;
}

.solution-brief small {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.solution-brief-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.solution-brief-list span {
  border: 1px solid rgba(49, 93, 117, 0.12);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 8px 10px;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: var(--muted);
  font-weight: 900;
}

.lead-form .field-label {
  align-items: center;
  display: flex;
  gap: 8px;
}

.required-mark {
  color: #bc3a2b;
  font-size: 1rem;
  font-style: normal;
  line-height: 1;
}

.optional-contact-field {
  gap: 7px;
  border: 1px solid rgba(11, 90, 73, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11, 90, 73, 0.055), rgba(255, 255, 255, 0.92));
  padding: 14px;
}

.optional-contact-field .optional-mark {
  border-radius: 999px;
  background: rgba(11, 90, 73, 0.1);
  color: var(--green);
  font-size: 0.74rem;
  font-style: normal;
  line-height: 1;
  padding: 5px 7px;
}

.optional-contact-field small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 48px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form select {
  min-height: 52px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-color: rgba(11, 90, 73, 0.18);
  background-color: rgba(255, 255, 255, 0.98);
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green-dark) 50%),
    linear-gradient(135deg, var(--green-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-repeat: no-repeat;
  background-size: 6px 6px, 6px 6px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1.35;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  padding-right: 44px;
}

.lead-form select:hover {
  border-color: rgba(11, 90, 73, 0.34);
  background-color: #fcfdfb;
}

.lead-form textarea {
  min-height: 138px;
  resize: vertical;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: rgba(11, 90, 73, 0.55);
  box-shadow: 0 0 0 4px rgba(11, 90, 73, 0.1);
  outline: 0;
}

.support-picker {
  display: grid;
  gap: 16px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(244, 241, 232, 0.34);
  padding: 18px;
}

.support-picker-heading {
  border-bottom: 1px solid rgba(11, 90, 73, 0.12);
  padding-bottom: 10px;
}

.support-picker-heading b {
  display: block;
  color: var(--green-dark);
  font-size: 1.08rem;
  line-height: 1.35;
}

.support-picker-group {
  display: grid;
  gap: 10px;
}

.support-picker-group > b {
  color: var(--green-dark);
  font-size: 0.95rem;
}

.support-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support-options label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 46px;
  border: 1px solid rgba(49, 93, 117, 0.09);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  padding: 9px 14px;
}

.support-options label span {
  line-height: 1.2;
}

.support-options input {
  width: auto;
  min-height: 0;
  flex: 0 0 auto;
}

.planner-summary {
  border: 1px solid rgba(11, 90, 73, 0.22);
  border-radius: 8px;
  background: rgba(11, 90, 73, 0.07);
  padding: 16px;
}

.planner-summary b {
  display: block;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.planner-summary p {
  margin: 0;
}

.planner-summary-lines {
  display: grid;
  gap: 8px;
}

.planner-summary-row {
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  width: 100%;
}

.planner-summary-row strong {
  color: var(--green-dark);
}

.planner-summary-row span {
  color: var(--muted);
  line-height: 1.55;
}

html[lang="en"] .planner-summary-row {
  grid-template-columns: 148px minmax(0, 1fr);
}

html[lang="fr"] .planner-summary-row,
html[lang="es"] .planner-summary-row {
  grid-template-columns: 170px minmax(0, 1fr);
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .brand,
html[dir="rtl"] .main-nav,
html[dir="rtl"] .header-actions,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .footer-links,
html[dir="rtl"] .planner-summary-row,
html[dir="rtl"] .flow article,
html[dir="rtl"] .contact-flow article,
html[dir="rtl"] .source-list p {
  direction: rtl;
}

html[dir="rtl"] .planner-summary-row {
  grid-template-columns: 1fr 132px;
}

.lead-form button.full {
  min-height: 52px;
  margin-top: 2px;
}

.lead-form .full,
.lead-form button.full,
.form-status {
  grid-column: span 2;
}

.form-status {
  color: var(--green);
  font-weight: 900;
}

.footer {
  background: #edf3ef;
  color: var(--ink);
  border-top: 1px solid rgba(11, 90, 73, 0.14);
  padding: 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 1fr);
  gap: 8px 20px;
  align-items: end;
}

.footer img {
  width: 56px;
  margin-bottom: 8px;
}

.footer p {
  color: rgba(22, 33, 30, 0.68);
  line-height: 1.55;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  align-self: end;
  text-align: right;
}

.footer-links a,
.footer-links button {
  color: rgba(22, 33, 30, 0.78);
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font: inherit;
  font-weight: inherit;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-bottom a:hover {
  color: var(--green);
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px 16px;
  border-top: 1px solid rgba(11, 90, 73, 0.14);
  color: rgba(22, 33, 30, 0.58);
  font-size: 0.92rem;
  line-height: 1.5;
  padding-top: 14px;
}

.footer-bottom a {
  color: rgba(22, 33, 30, 0.68);
  text-decoration: none;
}

.dock {
  position: fixed;
  top: 92px;
  left: 18px;
  bottom: auto;
  z-index: 70;
  display: grid;
  grid-template-columns: repeat(4, minmax(76px, 1fr)) 30px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(244, 241, 232, 0.94);
  box-shadow: var(--shadow);
  padding: 8px;
  backdrop-filter: blur(14px);
  cursor: grab;
  touch-action: none;
  user-select: none;
  will-change: left, top;
}

.dock.is-collapsed {
  grid-template-columns: 30px;
}

.dock.is-collapsed .dock-action {
  display: none;
}

.dock[data-dock-side="right"] {
  grid-template-columns: 30px repeat(4, minmax(76px, 1fr));
}

.dock[data-dock-side="right"] .dock-toggle {
  order: -1;
}

.dock[data-dock-side="right"].is-collapsed {
  grid-template-columns: 30px;
}

.dock.is-pressed,
.dock.is-dragging {
  cursor: grabbing;
}

.dock.is-dragging button {
  cursor: grabbing;
}

.dock.is-snapping {
  transition: left 180ms ease, top 180ms ease;
}

body[data-page="contact"] .dock {
  display: none;
}

.dock button {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--green-dark);
  cursor: pointer;
  min-width: 76px;
  padding: 8px;
}

.dock .dock-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  width: 30px;
  padding: 8px 0;
  color: var(--green);
  font-size: 1.35rem;
  line-height: 1;
}

.dock .dock-toggle span {
  transform: translateY(-1px);
}

.dock b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #1c160d;
  margin-right: 4px;
}

.ai-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 160;
  font-family: inherit;
  user-select: none;
  will-change: left, right, top;
}

.ai-widget-launch {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-left: auto;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 23px;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.46), transparent 27%),
    linear-gradient(145deg, #7292ff 0%, #4264e8 50%, #233da4 100%);
  box-shadow:
    0 15px 38px rgba(35, 61, 164, 0.32),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  cursor: grab;
  touch-action: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.ai-widget-launch:hover {
  transform: translateY(-3px);
  box-shadow:
    0 19px 44px rgba(35, 61, 164, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.ai-widget.is-pressed .ai-widget-launch,
.ai-widget.is-dragging .ai-widget-launch {
  cursor: grabbing;
  transform: scale(0.96);
}

.ai-widget.is-snapping {
  transition: left 180ms ease, top 180ms ease;
}

.ai-widget.is-dragging .ai-widget-panel {
  pointer-events: none;
}

.ai-widget-launch:focus-visible,
.ai-widget button:focus-visible,
.ai-widget textarea:focus-visible,
.ai-widget input:focus-visible {
  outline: 3px solid rgba(221, 157, 43, 0.7);
  outline-offset: 3px;
}

.ai-robot {
  position: relative;
  display: block;
  width: 47px;
  height: 38px;
  border: 2px solid #dce5ff;
  border-radius: 16px 16px 18px 18px;
  background: linear-gradient(160deg, #f5f8ff 0%, #bdcaf5 100%);
  box-shadow:
    -5px 6px 0 -2px rgba(218, 226, 255, 0.78),
    5px 6px 0 -2px rgba(218, 226, 255, 0.78),
    0 7px 14px rgba(16, 32, 104, 0.25);
}

.ai-robot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -11px;
  width: 3px;
  height: 10px;
  border-radius: 3px;
  background: #f6ca64;
  transform: translateX(-50%);
}

.ai-robot::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -16px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffd875;
  box-shadow: 0 0 0 4px rgba(255, 216, 117, 0.18);
  transform: translateX(-50%);
}

.ai-robot i {
  position: absolute;
  inset: 6px 6px 7px;
  z-index: 0;
  border: 1px solid rgba(133, 167, 255, 0.35);
  border-radius: 11px 11px 13px 13px;
  background:
    radial-gradient(circle at 50% 125%, rgba(84, 122, 255, 0.32), transparent 48%),
    #112764;
  box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.28);
}

.ai-robot b {
  position: absolute;
  top: 14px;
  z-index: 1;
  width: 8px;
  height: 6px;
  min-width: 0;
  margin: 0;
  border-radius: 0 0 8px 8px;
  background: #8ff5e7;
  box-shadow: 0 0 7px rgba(143, 245, 231, 0.7);
}

.ai-robot b:nth-of-type(1) {
  left: 11px;
}

.ai-robot b:nth-of-type(2) {
  right: 11px;
}

.ai-robot em {
  position: absolute;
  left: 50%;
  bottom: 8px;
  z-index: 1;
  width: 15px;
  height: 5px;
  border-bottom: 2px solid #f4c45b;
  border-radius: 0 0 12px 12px;
  transform: translateX(-50%);
}

.ai-widget-pulse {
  position: absolute;
  right: -1px;
  top: -1px;
  width: 16px;
  height: 16px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #4ed69b;
  box-shadow: 0 0 0 5px rgba(78, 214, 155, 0.12);
}

.ai-widget-panel {
  position: fixed;
  z-index: 2;
  right: 24px;
  bottom: 104px;
  display: grid;
  grid-template-rows: auto auto auto minmax(150px, 1fr) auto auto auto auto;
  width: min(400px, calc(100vw - 32px));
  height: min(600px, calc(100vh - 128px));
  min-height: min(460px, calc(100vh - 128px));
  overflow: hidden;
  border: 1px solid rgba(8, 71, 60, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 28px 80px rgba(4, 44, 37, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.97);
  transform-origin: bottom right;
  transition: opacity 180ms ease, transform 180ms ease;
}

.ai-widget.is-left .ai-widget-panel {
  right: auto;
  left: 24px;
  transform-origin: bottom left;
}

.ai-widget.is-right .ai-widget-panel {
  right: 24px;
  left: auto;
  transform-origin: bottom right;
}

.ai-widget.is-open .ai-widget-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.ai-widget-drop-overlay {
  position: absolute;
  inset: 9px;
  z-index: 9;
  display: grid;
  gap: 10px;
  place-content: center;
  justify-items: center;
  border: 2px dashed rgba(8, 113, 79, 0.58);
  border-radius: 18px;
  background: rgba(237, 248, 243, 0.96);
  color: var(--green-dark);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.98);
  transition: opacity 140ms ease, transform 140ms ease, visibility 140ms ease;
  backdrop-filter: blur(5px);
}

.ai-widget-drop-overlay span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(8, 98, 82, 0.2);
}

.ai-widget-drop-overlay strong {
  max-width: 240px;
  font-size: 1rem;
  line-height: 1.45;
  text-align: center;
}

.ai-widget-panel.is-dragging-image:not(.is-minimized) .ai-widget-drop-overlay {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.ai-widget .ai-widget-panel.has-custom-size {
  min-height: 0;
  transform: translateY(14px) scale(0.97);
  transform-origin: center;
}

.ai-widget.is-open .ai-widget-panel.has-custom-size {
  transform: translateY(0) scale(1);
}

.ai-widget .ai-widget-panel.is-fullscreen {
  inset: 12px !important;
  width: auto !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: 20px;
  transform: translateY(14px) scale(0.985);
  transform-origin: center;
}

.ai-widget.is-open .ai-widget-panel.is-fullscreen {
  transform: translateY(0) scale(1);
}

.ai-widget-panel.is-minimized {
  grid-template-rows: auto !important;
  width: min(330px, calc(100vw - 24px)) !important;
  height: auto !important;
  min-height: 0 !important;
  border-radius: 18px;
}

.ai-widget-panel.is-minimized > :not(.ai-widget-header):not(.ai-widget-resize-handle) {
  display: none !important;
}

.ai-widget-panel.is-minimized .ai-widget-resize-handle,
.ai-widget-panel.is-fullscreen .ai-widget-resize-handle {
  display: none;
}

.ai-widget.is-resizing .ai-widget-panel {
  user-select: none;
  transition: none;
}

.ai-widget-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.ai-widget-avatar {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 4px solid #dcebe6;
  border-radius: 50%;
  overflow: hidden;
  background: #fff;
  padding: 5px;
}

.ai-widget-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ai-widget-header strong,
.ai-widget-header small {
  display: block;
}

.ai-widget-header strong {
  color: var(--green-dark);
  font-size: 1.05rem;
}

.ai-widget-header small {
  margin-top: 2px;
  color: var(--muted);
}

.ai-widget-header button {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.ai-widget-window-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.ai-widget-window-actions button {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  font-size: 1.08rem;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.ai-widget-window-actions button:hover {
  border-color: rgba(8, 98, 82, 0.35);
  background: #eef6f2;
  color: var(--green);
}

.ai-widget-window-actions [data-ai-close] {
  font-size: 1.35rem;
}

.ai-widget-resize-handle {
  position: absolute;
  z-index: 8;
  display: block;
  touch-action: none;
}

.ai-widget-resize-handle.is-n,
.ai-widget-resize-handle.is-s {
  right: 16px;
  left: 16px;
  height: 10px;
  cursor: ns-resize;
}

.ai-widget-resize-handle.is-n {
  top: 0;
}

.ai-widget-resize-handle.is-s {
  bottom: 0;
}

.ai-widget-resize-handle.is-e,
.ai-widget-resize-handle.is-w {
  top: 16px;
  bottom: 16px;
  width: 10px;
  cursor: ew-resize;
}

.ai-widget-resize-handle.is-e {
  right: 0;
}

.ai-widget-resize-handle.is-w {
  left: 0;
}

.ai-widget-resize-handle.is-ne,
.ai-widget-resize-handle.is-se,
.ai-widget-resize-handle.is-sw,
.ai-widget-resize-handle.is-nw {
  width: 20px;
  height: 20px;
}

.ai-widget-resize-handle.is-ne {
  top: 0;
  right: 0;
  cursor: nesw-resize;
}

.ai-widget-resize-handle.is-se {
  right: 0;
  bottom: 0;
  cursor: nwse-resize;
}

.ai-widget-resize-handle.is-sw {
  bottom: 0;
  left: 0;
  cursor: nesw-resize;
}

.ai-widget-resize-handle.is-nw {
  top: 0;
  left: 0;
  cursor: nwse-resize;
}

.ai-widget-resize-handle.is-se::after {
  content: "";
  position: absolute;
  right: 5px;
  bottom: 5px;
  width: 7px;
  height: 7px;
  border-right: 2px solid rgba(8, 98, 82, 0.42);
  border-bottom: 2px solid rgba(8, 98, 82, 0.42);
  border-radius: 0 0 2px;
}

.ai-widget-usage {
  padding: 8px 16px;
  border-bottom: 1px solid rgba(8, 71, 60, 0.08);
  background: #f4f8f6;
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.ai-widget-usage.is-empty {
  background: #fff6e6;
  color: #8b5a09;
}

.ai-widget.is-unlimited .ai-widget-usage {
  background: #e8f7ef;
  color: #08714f;
}

.ai-widget-quick {
  padding: 10px 14px 11px;
  border-bottom: 1px solid rgba(8, 71, 60, 0.09);
  background: #fff;
}

.ai-widget-quick > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ai-widget-quick > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.ai-widget-quick button {
  width: 100%;
  max-width: none;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(8, 98, 82, 0.16);
  border-radius: 999px;
  background: #f1f7f4;
  color: var(--green-dark);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 720;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  cursor: pointer;
}

.ai-widget-quick button:hover {
  border-color: rgba(8, 98, 82, 0.38);
  background: #e5f2ed;
}

.ai-widget-quick button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.ai-widget-log {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 0;
  overflow: auto;
  padding: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(221, 157, 43, 0.08), transparent 30%),
    #fbfcfb;
  scroll-behavior: smooth;
}

.ai-widget-message {
  align-self: flex-start;
  width: fit-content;
  max-width: 88%;
  padding: 11px 13px;
  border-radius: 5px 16px 16px 16px;
  background: #edf3f0;
  color: #233832;
}

.ai-widget-message.is-user {
  align-self: flex-end;
  border-radius: 16px 5px 16px 16px;
  background: var(--green-dark);
  color: #fff;
}

.ai-widget-message b {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ai-widget-message.is-user b {
  color: rgba(255, 255, 255, 0.72);
  text-align: right;
}

.ai-widget-message-image {
  display: block;
  width: min(220px, 100%);
  max-height: 220px;
  margin: 7px 0 9px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.12);
}

.ai-widget-message-body {
  color: inherit;
  font-size: 0.92rem;
  line-height: 1.58;
}

.ai-widget-message-body p,
.ai-widget-message-body h3,
.ai-widget-message-body h4,
.ai-widget-message-body ul,
.ai-widget-message-body ol {
  margin: 0 0 8px;
  color: inherit;
}

.ai-widget-message-body > :last-child {
  margin-bottom: 0;
}

.ai-widget-message-body h3,
.ai-widget-message-body h4 {
  font-size: 0.98rem;
  line-height: 1.4;
}

.ai-widget-message-body ul,
.ai-widget-message-body ol {
  padding-left: 1.25em;
}

.ai-widget-message-body li + li {
  margin-top: 4px;
}

.ai-widget-message-body strong {
  font-weight: 800;
}

.ai-widget-message-body code {
  border-radius: 5px;
  background: rgba(8, 71, 60, 0.08);
  padding: 1px 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.84em;
}

.ai-widget-message-body a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
}

.ai-widget-message.is-thinking {
  color: var(--muted);
  font-size: 0.86rem;
}

.ai-widget-message.is-thinking::after {
  content: "•••";
  display: inline-block;
  margin-left: 5px;
  color: var(--gold);
  letter-spacing: 0.16em;
  animation: ai-widget-thinking 1.1s ease-in-out infinite;
}

@keyframes ai-widget-thinking {
  50% { opacity: 0.35; transform: translateY(-1px); }
}

.ai-widget-sources {
  display: grid;
  gap: 4px;
  margin-top: 9px;
  padding-top: 8px;
  border-top: 1px solid rgba(8, 71, 60, 0.13);
  font-size: 0.76rem;
}

.ai-widget-sources span {
  color: var(--muted);
  font-weight: 700;
}

.ai-widget-sources a {
  overflow: hidden;
  color: var(--green);
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-widget-access-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 7px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.ai-widget-access-row label span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.ai-widget-access-row input {
  width: 100%;
  height: 36px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fbfcfb;
  font: inherit;
  font-size: 0.85rem;
}

.ai-widget-access-row button {
  align-self: end;
  min-height: 36px;
  padding: 7px 12px;
  border: 0;
  border-radius: 10px;
  background: #e8f0ed;
  color: var(--green-dark);
  font-weight: 800;
  cursor: pointer;
}

.ai-widget-access-row small {
  grid-column: 1 / -1;
  color: var(--green);
  line-height: 1.35;
}

.ai-widget-access-row .ai-widget-image-gate {
  color: #8b5a09;
  font-size: 0.72rem;
}

.ai-widget-attachment {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  padding: 8px 14px;
  border-top: 1px solid var(--line);
  background: #f8fbfa;
}

.ai-widget-attachment[hidden],
.ai-widget-image-preview[hidden] {
  display: none;
}

.ai-widget-attachment-button {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  min-height: 38px;
  padding: 7px 10px;
  border: 1px solid rgba(8, 98, 82, 0.22);
  border-radius: 10px;
  background: #edf6f2;
  color: var(--green-dark);
  cursor: pointer;
}

.ai-widget-attachment-button:hover {
  border-color: rgba(8, 98, 82, 0.42);
  background: #e4f1ec;
}

.ai-widget-attachment-button input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.ai-widget-attachment-button span {
  font-size: 1.15rem;
  line-height: 1;
}

.ai-widget-attachment-button b {
  font-size: 0.76rem;
}

.ai-widget-image-preview {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 7px;
  align-items: center;
  min-width: 0;
}

.ai-widget-image-preview img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(8, 98, 82, 0.15);
  border-radius: 8px;
  object-fit: cover;
  background: #fff;
}

.ai-widget-image-preview span {
  overflow: hidden;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ai-widget-image-preview button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--muted);
  font-size: 1.05rem;
  cursor: pointer;
}

.ai-widget-attachment > small {
  grid-column: 1 / -1;
  color: #8b5a09;
  font-size: 0.7rem;
  line-height: 1.35;
}

.ai-widget-compose {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 10px 14px;
  border-top: 1px solid var(--line);
  background: #fff;
}

.ai-widget-compose textarea {
  min-height: 48px;
  max-height: 110px;
  resize: vertical;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 0.9rem;
}

.ai-widget-compose button {
  align-self: stretch;
  min-width: 68px;
  padding: 9px 12px;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.ai-widget-compose button:disabled,
.ai-widget-compose textarea:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.ai-widget-panel footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 0 14px 12px;
  background: #fff;
}

.ai-widget-panel footer small {
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.ai-widget-panel footer a {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  text-decoration: underline;
}

html[dir="rtl"] .ai-widget-message.is-user b {
  text-align: left;
}

html[dir="rtl"] .ai-widget-quick button {
  text-align: center;
}

html[dir="rtl"] .ai-widget-message-body ul,
html[dir="rtl"] .ai-widget-message-body ol {
  padding-right: 1.25em;
  padding-left: 0;
}

.privacy-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 18px;
  z-index: 130;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  padding: 16px;
}

.privacy-banner b {
  display: block;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.privacy-banner p {
  margin: 0;
}

.privacy-banner > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
}

.drawer.open {
  display: block;
}

.drawer-bg {
  position: absolute;
  inset: 0;
  background: rgba(4, 22, 19, 0.68);
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  width: min(520px, 100%);
  height: 100%;
  overflow: auto;
  background: var(--white);
  padding: 32px 24px 96px;
}

.drawer-panel.wide {
  width: min(960px, 100%);
}

.drawer-panel h2 {
  max-width: calc(100% - 56px);
  font-size: clamp(1.85rem, 3vw, 2.8rem);
  line-height: 1.08;
  margin-bottom: 18px;
}

.compare-drawer {
  width: min(1120px, 100%);
  background: #fbfcfa;
}

.close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
  font-size: 1.35rem;
}

.drawer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.compare-suite {
  display: grid;
  gap: 16px;
}

.compare-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: end;
  border: 1px solid rgba(11, 90, 73, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 245, 0.96)),
    radial-gradient(circle at 12% 0%, rgba(184, 132, 41, 0.16), transparent 38%);
  box-shadow: 0 16px 34px rgba(17, 36, 31, 0.08);
  padding: 20px;
}

.compare-hero h3 {
  font-size: 1.56rem;
  margin-bottom: 8px;
}

.compare-hero p {
  max-width: 720px;
  margin: 0;
}

.compare-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.compare-products,
.compare-matrix {
  overflow-x: auto;
  padding-bottom: 4px;
}

.compare-products {
  display: grid;
  grid-template-columns: repeat(var(--compare-count), minmax(220px, 1fr));
  gap: 12px;
}

.compare-product-card {
  min-width: 220px;
  overflow: hidden;
  border: 1px solid rgba(11, 90, 73, 0.13);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 26px rgba(17, 36, 31, 0.06);
}

.compare-product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.compare-product-card img.image-contain {
  object-fit: contain;
  background: #f3ede2;
}

.compare-product-card > div {
  padding: 14px;
}

.compare-product-card h3 {
  font-size: 1.05rem;
  line-height: 1.35;
  margin-bottom: 8px;
}

.compare-product-card p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 4.8em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.compare-product-card button {
  min-height: 38px;
  margin: 0 14px 14px;
  border: 1px solid rgba(11, 90, 73, 0.18);
  border-radius: 6px;
  background: rgba(11, 90, 73, 0.08);
  color: var(--green);
  cursor: pointer;
  font-weight: 900;
  padding: 8px 12px;
}

.compare-matrix {
  display: grid;
  gap: 10px;
}

.compare-row {
  display: grid;
  grid-template-columns: 170px repeat(var(--compare-count), minmax(220px, 1fr));
  min-width: var(--compare-min-width);
  overflow: hidden;
  border: 1px solid rgba(11, 90, 73, 0.13);
  border-radius: var(--radius);
  background: var(--white);
}

.compare-dimension {
  display: grid;
  align-content: start;
  gap: 6px;
  border-right: 1px solid rgba(11, 90, 73, 0.11);
  background: #f2f6f3;
  padding: 16px;
}

.compare-dimension b {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0;
}

.compare-dimension strong {
  color: var(--ink);
  font-size: 1.08rem;
}

.compare-dimension small {
  color: var(--muted);
  line-height: 1.45;
}

.compare-cell {
  min-width: 220px;
  border-left: 1px solid rgba(11, 90, 73, 0.08);
  padding: 16px;
}

.compare-dimension + .compare-cell {
  border-left: 0;
}

.compare-cell > strong {
  display: inline-flex;
  border-radius: 999px;
  background: rgba(184, 132, 41, 0.14);
  color: #7a5515;
  line-height: 1.25;
  padding: 7px 10px;
}

.compare-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.compare-chip-list span {
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  font-size: 0.84rem;
  font-weight: 900;
  line-height: 1.2;
  padding: 7px 10px;
}

.compare-spec-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.compare-spec-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.45;
}

.compare-spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.66em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.consent-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.privacy-note {
  border: 1px solid rgba(49, 93, 117, 0.24);
  border-radius: var(--radius);
  background: var(--soft-blue);
  color: var(--blue);
  padding: 12px;
}

.consent-list label {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 14px;
}

.consent-list input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.consent-list b,
.consent-list small {
  display: block;
}

.consent-list small {
  color: var(--muted);
  line-height: 1.6;
  margin-top: 5px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 20px;
}

.legal-card h2 {
  font-size: 1.32rem;
}

.mini-list {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.mini-list article {
  padding: 14px;
}

.empty {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  padding: 18px;
  text-align: center;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
}

th,
td {
  border: 1px solid var(--line);
  padding: 12px;
  text-align: left;
  vertical-align: top;
}

th {
  background: #f5f7f4;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.note-grid div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fbfaf6;
  padding: 12px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), calc(100% - 42px));
  margin: 0 auto;
}

.application-grid article {
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}

.application-grid b {
  display: inline-flex;
  color: var(--gold);
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.application-grid h3 {
  margin-bottom: 10px;
}

.not-found {
  min-height: 100vh;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  width: min(760px, calc(100% - 42px));
  margin: 0 auto;
  padding: 64px 0;
}

.not-found img {
  width: 82px;
  margin-bottom: 8px;
}

.not-found h1 {
  margin: 0;
  color: var(--ink);
}

@media (max-width: 1080px) {
  .site-header {
    padding: 0 18px;
  }

  .menu-button {
    display: block;
    margin-left: auto;
  }

  .main-nav {
    position: fixed;
    left: 18px;
    right: 18px;
    top: 86px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 108px);
    max-height: calc(100dvh - 108px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }

  body.menu-open .main-nav {
    display: flex;
  }

  .nav-item > a {
    width: 100%;
  }

  .dropdown {
    position: static;
    display: grid;
    box-shadow: none;
    margin: 0 0 8px 12px;
  }

  .home-grid,
  .about-overview,
  .about-row,
  .about-system,
  .about-cta,
  .solution-card,
  .detail-grid,
  .article-layout,
  .faq-layout,
  .split-band,
  .brand-film,
  .contact-grid,
  .advisor-board,
  .checklist-board,
  .trace-board {
    grid-template-columns: 1fr;
  }

  .quality-board-top,
  .trace-panel-head,
  .factory-platform-grid {
    grid-template-columns: 1fr;
  }

  .trace-spine {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trace-spine article:nth-child(3n + 1) {
    border-left: 0;
  }

  .trace-spine article:nth-child(n + 4) {
    border-top: 1px solid rgba(11, 90, 73, 0.1);
  }

  .quality-file-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 20px;
  }

  .quality-file-grid article:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .factory-platform-card {
    grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  }

  .process-flow-section .split-band {
    grid-template-columns: 1fr;
  }

  .home-hero-side {
    min-height: auto;
  }

  .cert-orbit-widget {
    align-self: center;
    width: min(100%, 540px);
    min-height: 360px;
  }

  .cert-card {
    transform:
      translate(-50%, -50%)
      rotateY(var(--angle))
      translateZ(182px);
  }

  .process-flow-visual {
    min-height: auto;
  }

  .process-stage {
    min-height: 390px;
  }

  .process-step-controls {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gateway-grid,
  .about-capability-grid,
  .product-grid,
  .process-grid,
  .news-grid,
  .resource-grid,
  .gallery-grid,
  .quality-grid,
  .legal-grid,
  .timeline,
  .flow,
  .application-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    font-size: 3.35rem;
  }

  .about-story-row.reverse {
    grid-template-columns: 1fr;
  }

  .about-story-row.reverse > div {
    order: 0;
  }

}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 0 12px;
    gap: 8px;
  }

  .main-nav {
    left: 10px;
    right: 10px;
    top: 76px;
    max-height: calc(100vh - 88px);
    max-height: calc(100dvh - 88px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand small,
  .header-actions > .small {
    display: none;
  }

  .language-select {
    min-width: 96px;
    min-height: 38px;
  }

  .language-select select {
    min-height: 38px;
    padding: 0 30px 0 12px;
    font-size: 0.84rem;
  }

  html[dir="rtl"] .language-select select {
    padding: 0 12px 0 30px;
  }

  .inner,
  .gateway-grid,
  .about-points,
  .about-capability-grid,
  .product-grid,
  .solution-grid,
  .detail-grid,
  .article-layout,
  .faq-layout,
  .detail-content,
  .process-grid,
  .quality-grid,
  .news-grid,
  .resource-grid,
  .gallery-grid,
  .application-grid,
  .legal-grid,
  .timeline,
  .flow,
  .split-band,
  .brand-film {
    width: min(100% - 28px, var(--max));
  }

  .factory-process-section .split-band,
  .factory-quality-suite,
  .factory-platform-grid {
    width: min(100% - 28px, var(--max));
  }

  .factory-process-section {
    padding-bottom: 56px;
  }

  .factory-process-section .split-band {
    gap: 26px;
  }

  .factory-quality-board {
    gap: 22px;
    padding: 20px;
  }

  .quality-board-top {
    gap: 20px;
    padding-bottom: 22px;
  }

  .quality-board-copy h3 {
    font-size: 1.48rem;
  }

  .quality-board-note {
    padding-left: 14px;
  }

  .quality-principles {
    grid-template-columns: 1fr;
  }

  .quality-principles article {
    min-height: 0;
    border-left: 0;
    border-top: 1px solid rgba(11, 90, 73, 0.12);
  }

  .quality-principles article:first-child {
    border-top: 0;
  }

  .trace-spine {
    grid-template-columns: 1fr;
  }

  .trace-spine article,
  .trace-spine article:nth-child(3n + 1),
  .trace-spine article:nth-child(n + 4) {
    grid-template-columns: 42px minmax(0, 1fr);
    min-height: 0;
    align-items: start;
    border-left: 0;
    border-top: 1px solid rgba(11, 90, 73, 0.1);
  }

  .trace-spine article:first-child {
    border-top: 0;
  }

  .quality-file-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 10px;
  }

  .quality-file-grid article,
  .quality-file-grid article:nth-child(odd) {
    padding: 14px 0;
    border-left: 0;
    border-top: 1px solid rgba(11, 90, 73, 0.1);
  }

  .quality-file-grid article:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .factory-platform-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .factory-platform-card.merged {
    grid-template-columns: 1fr;
  }

  .factory-platform-card img {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }

  .factory-platform-copy {
    padding: 22px 20px;
  }

  h1 {
    font-size: 2.05rem;
    line-height: 1.1;
  }

  h2 {
    font-size: 1.82rem;
  }

  .section-head-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-head-action > .solid {
    margin-bottom: 0;
  }

  .home-news-section {
    padding-bottom: 84px;
  }

  .home-featured-section {
    padding-top: 84px;
  }

  .advisor-board {
    padding: 22px 18px;
  }

  .advisor-panel h2 {
    font-size: 2.08rem;
  }

  .advisor-result-head {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .compare-hero-actions {
    justify-content: stretch;
  }

  .compare-hero-actions .solid,
  .compare-hero-actions .outline {
    flex: 1;
  }

  .compare-products {
    grid-template-columns: repeat(var(--compare-count), minmax(220px, 78vw));
  }

  .compare-row {
    grid-template-columns: 142px repeat(var(--compare-count), minmax(220px, 78vw));
    min-width: var(--compare-min-width);
  }

  .home-hero,
  .home-grid {
    min-height: 730px;
  }

  .home-hero {
    width: calc(100% - 14px);
    margin-top: 7px;
    border-radius: 9px;
    box-shadow:
      0 12px 34px rgba(62, 48, 32, 0.12),
      0 0 0 3px rgba(255, 255, 255, 0.16);
  }

  .home-grid,
  .hero-content {
    padding-top: 80px;
  }

  .home-hero-side {
    gap: 20px;
  }

  .cert-orbit-widget {
    min-height: 330px;
    margin-top: 6px;
  }

  .cert-orbit-title {
    right: 50%;
    width: 100%;
    transform: translateX(50%);
    text-align: center;
  }

  .cert-stage {
    inset: 44px 0 0;
  }

  .cert-card {
    width: 124px;
    min-height: 180px;
    transform:
      translate(-50%, -50%)
      rotateY(var(--angle))
      translateZ(144px);
  }

  .cert-glow {
    width: 280px;
  }

  .cert-shadow {
    width: 230px;
  }

  .gateway-grid,
  .about-points,
  .about-capability-grid,
  .footer-grid,
  .product-grid,
  .process-grid,
  .news-grid,
  .resource-grid,
  .gallery-grid,
  .quality-grid,
  .legal-grid,
  .timeline,
  .flow,
  .metric-panel,
  .catalog-bar,
  .advisor-controls,
  .advisor-result,
  .card-actions,
  .flow.two,
  .application-grid,
  .lead-form,
  .note-grid,
  .drawer-actions {
    grid-template-columns: 1fr;
  }

  .process-flow-visual {
    min-height: auto;
    padding: 18px;
  }

  .process-stage {
    min-height: 430px;
  }

  .process-scene {
    left: 20px;
    right: 20px;
    top: 20px;
    bottom: 20px;
    width: auto;
  }

  .process-scene-photo {
    inset: 0;
    opacity: 1;
  }

  .process-photo-shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.86)),
      linear-gradient(90deg, rgba(6, 34, 29, 0.14), rgba(6, 34, 29, 0.08));
  }

  .process-scene-photo figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .process-core {
    left: 50%;
    right: auto;
    width: calc(100% - 36px);
    min-height: 230px;
    padding: 18px;
    transform: translate(-50%, -50%);
  }

  .process-core strong {
    font-size: 1.18rem;
  }

  .process-step-controls {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .card-actions .coming-soon-action {
    grid-column: auto;
  }

  .home-gateway-section .gateway-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
    text-align: left;
  }

  .product-card h3,
  .product-card > div > p {
    min-height: 0;
  }

  .article-aside {
    position: static;
  }

  .lead-form .full,
  .lead-form button.full,
  .form-status {
    grid-column: auto;
  }

  .contact-grid {
    gap: 24px;
  }

  .contact-card,
  .contact-flow-panel,
  .lead-form {
    padding: 20px;
  }

  .contact-flow article {
    grid-template-columns: 48px minmax(0, 1fr);
    padding: 14px;
  }

  .contact-flow b {
    width: 40px;
    height: 40px;
  }

  .about-intro-section {
    padding-bottom: 56px;
  }

  .about-points article,
  .about-proof article,
  .about-story-row,
  .about-system-grid article,
  .about-cta {
    padding: 18px;
  }

  .about-capability-card h3,
  .about-capability-card p {
    margin-right: 16px;
    margin-left: 16px;
  }

  .about-story-points li {
    padding-right: 10px;
  }

  .about-cta {
    align-items: start;
  }

  .dock {
    top: auto;
    left: 10px;
    right: auto;
    bottom: 10px;
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
    box-sizing: border-box;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 30px;
    gap: 6px;
    padding: 6px;
    border-radius: 12px;
  }

  .dock[data-dock-side="right"] {
    grid-template-columns: 30px repeat(4, minmax(0, 1fr));
  }

  .dock.is-collapsed {
    grid-template-columns: 44px;
    width: 58px;
    max-width: 58px;
    right: auto;
  }

  .dock[data-dock-side="right"].is-collapsed {
    grid-template-columns: 44px;
  }

  .dock button {
    min-width: 0;
    min-height: 42px;
    padding: 7px 4px;
    font-size: 0.84rem;
  }

  .dock .dock-toggle {
    min-width: 30px;
    width: 30px;
    padding: 7px 0;
  }

  .dock.is-collapsed .dock-toggle {
    min-width: 44px;
    width: 44px;
    min-height: 48px;
  }

  .dock b {
    min-width: 20px;
    height: 20px;
    margin-right: 2px;
  }

  .ai-widget {
    right: 12px;
    bottom: 91px;
  }

  html[dir="rtl"] .ai-widget {
    right: auto;
    left: 12px;
  }

  .ai-widget-launch {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .ai-robot {
    transform: scale(0.8);
  }

  .ai-widget-panel {
    position: fixed;
    top: max(8px, env(safe-area-inset-top));
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
    left: 8px;
    grid-template-rows: auto auto auto minmax(90px, 1fr) auto auto auto auto;
    width: auto;
    height: auto;
    min-height: 0;
    max-height: none;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: 18px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    transform: translateY(14px) scale(0.97);
    transform-origin: center;
  }

  .ai-widget.is-left .ai-widget-panel,
  .ai-widget.is-right .ai-widget-panel,
  html[dir="rtl"] .ai-widget-panel {
    right: 8px;
    left: 8px;
    transform-origin: center;
  }

  .ai-widget.is-open .ai-widget-panel {
    transform: translateY(0) scale(1);
  }

  .ai-widget-header {
    position: sticky;
    top: 0;
    z-index: 4;
    padding: 11px 13px;
  }

  .ai-widget-window-actions {
    gap: 4px;
  }

  .ai-widget-window-actions button {
    width: 28px;
    height: 28px;
    font-size: 0.98rem;
  }

  .ai-widget-window-actions [data-ai-close] {
    font-size: 1.25rem;
  }

  .ai-widget .ai-widget-panel.is-fullscreen {
    top: max(6px, env(safe-area-inset-top)) !important;
    right: 6px !important;
    bottom: max(6px, env(safe-area-inset-bottom)) !important;
    left: 6px !important;
    border-radius: 16px;
  }

  .ai-widget-resize-handle {
    display: none;
  }

  .ai-widget-avatar {
    width: 36px;
    height: 36px;
    border-width: 3px;
    font-size: 1.08rem;
  }

  .ai-widget-header strong {
    font-size: 0.96rem;
  }

  .ai-widget-header small {
    font-size: 0.76rem;
  }

  .ai-widget-usage {
    padding: 6px 12px;
    font-size: 0.74rem;
  }

  .ai-widget-quick {
    padding: 8px 10px 9px;
  }

  .ai-widget-quick > span {
    margin-bottom: 5px;
  }

  .ai-widget-quick button {
    min-height: 34px;
    padding: 6px 7px;
    font-size: 0.68rem;
  }

  .ai-widget-log {
    padding: 11px;
  }

  .ai-widget-access-row,
  .ai-widget-attachment,
  .ai-widget-compose {
    padding: 8px 10px;
  }

  .ai-widget-access-row input,
  .ai-widget-compose textarea {
    font-size: 16px;
  }

  .ai-widget-compose textarea {
    resize: none;
  }

  .ai-widget-panel footer {
    padding: 0 10px 9px;
  }

  .ai-widget-message {
    max-width: 92%;
  }

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

  .privacy-banner {
    left: 0;
    right: 0;
    bottom: 0;
    grid-template-columns: 1fr;
    max-height: 70dvh;
    overflow: auto;
    border-radius: 18px 18px 0 0;
    padding: 12px 12px max(12px, env(safe-area-inset-bottom));
    overscroll-behavior: contain;
  }

  body:not([data-page="contact"]) .footer {
    padding-bottom: 104px;
  }

  .privacy-banner > div:last-child {
    justify-content: stretch;
  }

  .privacy-banner p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .privacy-banner button {
    width: 100%;
    min-height: 38px;
    padding: 8px;
  }
}
