:root {
  --font-sans: "Manrope", "Noto Sans SC", "Noto Sans KR", "Noto Sans Arabic", "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans SC", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-cjk: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", "HarmonyOS Sans SC", sans-serif;
  --font-korean: "Noto Sans KR", "Apple SD Gothic Neo", sans-serif;
  --font-arabic: "Noto Sans Arabic", Tahoma, Arial, sans-serif;
  --font-body: var(--font-sans);
  --font-heading: var(--font-display);
  --color-primary: #08111c;
  --color-primary-soft: #111b28;
  --color-background: #f7f2e9;
  --color-surface: #fffaf1;
  --color-surface-muted: #eee5d6;
  --color-accent: #b48745;
  --color-accent-soft: #d8bf8c;
  --color-cta: #17633e;
  --color-cta-hover: #0f4f32;
  --color-text-main: #101820;
  --color-text-muted: #6f665c;
  --color-border: #d9cbb7;
  --shadow-soft: 0 18px 48px rgba(8, 17, 28, 0.11);
  --shadow-card: 0 12px 34px rgba(8, 17, 28, 0.08);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --radius: 8px;
  --radius-lg: 12px;
  --safe-bottom: max(14px, env(safe-area-inset-bottom));
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(180, 135, 69, 0.1), transparent 30rem),
    var(--color-background);
  color: var(--color-text-main);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
  font-feature-settings: "liga" 1, "kern" 1;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html[lang="ar"] {
  direction: rtl;
}

html[lang="ar"] body {
  font-family: var(--font-arabic);
}

html[lang="ko"] body,
html[lang="ko-KR"] body {
  font-family: var(--font-korean);
}

html[lang="zh"] body,
html[lang="zh-CN"] body,
html[lang="zh-TW"] body {
  font-family: var(--font-cjk);
}

html[lang="zh"] h1,
html[lang="zh-CN"] h1,
html[lang="zh-TW"] h1,
html[lang="ko"] h1,
html[lang="ko-KR"] h1,
html[lang="ar"] h1,
html[lang="zh"] h2,
html[lang="zh-CN"] h2,
html[lang="zh-TW"] h2,
html[lang="ko"] h2,
html[lang="ko-KR"] h2,
html[lang="ar"] h2,
html[lang="zh"] .hero-market,
html[lang="zh-CN"] .hero-market,
html[lang="zh-TW"] .hero-market,
html[lang="ko"] .hero-market,
html[lang="ko-KR"] .hero-market,
html[lang="ar"] .hero-market {
  font-family: var(--font-body);
  letter-spacing: -0.02em;
}

html.lang-zh,
html.lang-ko {
  word-break: keep-all;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  border: 0;
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 18px;
  background: rgba(8, 17, 28, 0.94);
  color: var(--color-surface);
  border-bottom: 1px solid rgba(216, 191, 140, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-accent);
  color: var(--color-accent-soft);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 4px;
  color: var(--color-accent-soft);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.desktop-nav {
  display: none;
}

.header-actions {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 250, 241, 0.76);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.language-switcher select {
  min-height: 38px;
  border: 1px solid rgba(216, 191, 140, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.06);
  color: var(--color-surface);
  cursor: pointer;
  font: inherit;
  line-height: 1;
  padding: 0 30px 0 12px;
}

.language-switcher select:focus-visible {
  outline: 2px solid rgba(216, 191, 140, 0.55);
  outline-offset: 2px;
}

.language-switcher option {
  color: var(--color-primary);
}

.language-switcher-desktop {
  display: none;
}

.language-switcher-mobile {
  display: grid;
  grid-template-columns: 1fr auto;
  min-height: 54px;
  align-items: center;
  border-bottom: 1px solid rgba(216, 191, 140, 0.14);
}

.icon-link,
.menu-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(216, 191, 140, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.06);
  color: var(--color-surface);
}

.icon-link {
  background: rgba(23, 99, 62, 0.96);
  color: #fff;
  font-size: 21px;
}

.menu-button {
  cursor: pointer;
  font-size: 22px;
}

.mobile-menu {
  position: fixed;
  inset: var(--header-height) 0 auto 0;
  z-index: 80;
  display: grid;
  gap: 0;
  padding: 8px 18px 18px;
  background: rgba(8, 17, 28, 0.98);
  color: var(--color-surface);
  border-bottom: 1px solid rgba(216, 191, 140, 0.18);
  transform: translateY(-120%);
  transition: transform 240ms ease;
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu a {
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(216, 191, 140, 0.14);
  color: rgba(255, 250, 241, 0.86);
  font-size: 14px;
  font-weight: 600;
}

.hero {
  position: relative;
  display: grid;
  gap: 0;
  min-height: calc(100svh - var(--header-height));
  background: var(--color-surface);
  isolation: isolate;
  overflow: hidden;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 30px 22px 20px;
  background:
    linear-gradient(90deg, rgba(255, 250, 241, 1) 0%, rgba(255, 250, 241, 0.9) 65%, rgba(255, 250, 241, 0) 100%),
    var(--color-surface);
}

.hero-copy > * {
  position: relative;
  z-index: 2;
}

.badge,
.eyebrow {
  margin: 0;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid rgba(180, 135, 69, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.86);
  color: #7d5a2d;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 9.2ch;
  margin-top: 18px;
  color: var(--color-primary);
  font-size: clamp(42px, 11vw, 52px);
  line-height: 1.04;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-market {
  max-width: 18ch;
  margin: 13px 0 0;
  color: #8c642f;
  font-family: var(--font-heading);
  font-size: clamp(26px, 7vw, 34px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.lead {
  max-width: 34ch;
  margin: 16px 0 0;
  color: var(--color-text-main);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.68;
}

.hero-actions {
  display: grid;
  gap: 12px;
  margin-top: 25px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  transition:
    transform 220ms var(--ease-out),
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button i {
  flex: 0 0 auto;
  transition: transform 220ms var(--ease-out);
}

.button span {
  min-width: 0;
}

.button:hover i,
.button:focus-visible i {
  transform: translateX(2px);
}

.button-primary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--color-cta);
  color: #fff;
  box-shadow: 0 15px 34px rgba(15, 79, 50, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-cta-hover);
  box-shadow: 0 18px 44px rgba(15, 79, 50, 0.32);
}

.button-secondary {
  border: 1px solid rgba(180, 135, 69, 0.54);
  background: rgba(255, 250, 241, 0.8);
  color: var(--color-primary);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0 20px;
  border-top: 1px solid rgba(216, 191, 140, 0.22);
  border-bottom: 1px solid rgba(216, 191, 140, 0.22);
  background: var(--color-primary);
}

.trust-row span {
  display: grid;
  gap: 5px;
  min-height: 66px;
  align-content: center;
  justify-items: center;
  padding: 9px 5px;
  border-right: 1px solid rgba(216, 191, 140, 0.18);
  color: rgba(255, 250, 241, 0.88);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-align: center;
}

.trust-row b,
.document-row b {
  font: inherit;
}

.trust-row span:last-child {
  border-right: 0;
}

.trust-row i {
  color: var(--color-accent-soft);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 410px;
  overflow: hidden;
  background: var(--color-primary);
}

.hero-visual img {
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.035);
}

.stock-note {
  position: absolute;
  right: 18px;
  bottom: 18px;
  max-width: 190px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 250, 241, 0.25);
  border-radius: var(--radius);
  background: rgba(8, 17, 28, 0.8);
  color: var(--color-surface);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms var(--ease-out),
    background 220ms ease;
}

.hero-visual:hover .stock-note {
  background: rgba(8, 17, 28, 0.88);
  transform: translateY(-3px);
}

.stock-note span {
  display: block;
  color: var(--color-accent-soft);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.stock-note strong {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42;
}

.section,
.section-tight {
  padding: 58px 20px;
}

.section-tight {
  padding-top: 34px;
  padding-bottom: 34px;
}

.section-heading {
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2,
.cta-section h2 {
  color: var(--color-primary);
  font-size: clamp(32px, 8.4vw, 44px);
  line-height: 1.12;
}

.section-heading p:not(.eyebrow),
.cta-section p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  border-top: 1px solid rgba(217, 203, 183, 0.76);
  border-bottom: 1px solid rgba(217, 203, 183, 0.76);
  background: rgba(255, 250, 241, 0.64);
}

.metrics article {
  min-height: 148px;
  padding: 18px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(247, 242, 233, 0.84));
  box-shadow: 0 8px 24px rgba(8, 17, 28, 0.05);
}

.metrics i {
  color: var(--color-accent);
  font-size: 26px;
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  margin-top: 18px;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.metrics span {
  margin-top: 9px;
  color: var(--color-text-main);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.38;
}

.category-grid {
  display: grid;
  gap: 14px;
}

.category-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 14px;
  min-height: 152px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.88);
  box-shadow: var(--shadow-card);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: rgba(180, 135, 69, 0.78);
  box-shadow: 0 16px 40px rgba(8, 17, 28, 0.13);
  transform: translateY(-2px);
}

.category-card img {
  height: 128px;
  border-radius: var(--radius);
  object-fit: cover;
}

.category-card div {
  min-width: 0;
  padding-right: 20px;
}

.category-card span,
.proof-card span {
  display: block;
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.category-card strong {
  display: block;
  margin-top: 7px;
  color: var(--color-primary);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.32;
}

.category-card p {
  margin: 7px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.category-card em {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(180, 135, 69, 0.12);
  color: #76562a;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
}

.category-card > i {
  position: absolute;
  right: 13px;
  top: 13px;
  color: var(--color-accent);
  font-size: 19px;
}

.pain-section,
.compare-section {
  background: var(--color-primary);
  color: var(--color-surface);
}

.pain-section .section-heading h2,
.compare-section .section-heading h2,
.pain-section .section-heading p:not(.eyebrow),
.compare-section .section-heading p:not(.eyebrow) {
  color: var(--color-surface);
}

.pain-section .eyebrow,
.compare-section .eyebrow {
  color: var(--color-accent-soft);
}

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

.solution-grid article {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 12px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid rgba(216, 191, 140, 0.18);
}

.solution-grid i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(216, 191, 140, 0.28);
  border-radius: var(--radius);
  color: var(--color-accent-soft);
  font-size: 20px;
}

.solution-grid strong {
  color: #fffaf1;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.solution-grid p {
  margin: 6px 0 0;
  color: rgba(255, 250, 241, 0.72);
  font-size: 14.5px;
  line-height: 1.6;
}

.timeline {
  display: grid;
  gap: 0;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding: 0 0 24px;
}

.timeline article:not(:last-child)::before {
  position: absolute;
  top: 42px;
  bottom: 0;
  left: 20px;
  width: 1px;
  background: rgba(180, 135, 69, 0.34);
  content: "";
}

.timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(180, 135, 69, 0.56);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-accent);
  font-size: 12px;
  font-weight: 700;
}

.timeline strong {
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.timeline p {
  margin: 6px 0 0;
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.6;
}

.proof-section {
  background: rgba(238, 229, 214, 0.56);
}

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

.proof-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.proof-card img {
  height: 140px;
  object-fit: cover;
}

.proof-card div {
  padding: 13px;
}

.proof-card strong {
  display: block;
  margin-top: 6px;
  color: var(--color-primary);
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.42;
}

.document-row {
  display: grid;
  gap: 0;
  margin-top: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.76);
}

.document-row span {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.35;
}

.document-row span:last-child {
  border-bottom: 0;
}

.document-row i {
  color: var(--color-accent);
  font-size: 18px;
}

.split-heading {
  align-items: end;
}

.split-heading a {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 6px;
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.stock-grid {
  display: grid;
  gap: 14px;
}

.stock-grid article {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}

.stock-grid img {
  height: 210px;
  object-fit: cover;
}

.stock-grid article > div {
  padding: 14px;
}

.stock-grid strong {
  color: var(--color-primary);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.35;
}

.stock-grid p {
  margin: 7px 0 0;
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.5;
}

.stock-grid footer {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 13px;
  padding-top: 12px;
  border-top: 1px solid rgba(217, 203, 183, 0.72);
  color: var(--color-primary);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.35;
}

.comparison {
  display: grid;
  gap: 14px;
}

.compare-card {
  padding: 18px;
  border: 1px solid rgba(216, 191, 140, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.06);
}

.compare-card.preferred {
  border-color: rgba(23, 99, 62, 0.52);
  background: rgba(23, 99, 62, 0.16);
}

.compare-card h3 {
  margin: 0;
  color: var(--color-surface);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
}

.compare-card ul {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.compare-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255, 250, 241, 0.78);
  font-size: 14.5px;
  line-height: 1.52;
}

.compare-card li::before {
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.34);
  content: "";
}

.compare-card.preferred li::before {
  background: var(--color-cta);
}

.cta-section {
  display: grid;
  gap: 20px;
  padding: 58px 20px;
  background:
    linear-gradient(135deg, rgba(8, 17, 28, 0.98), rgba(17, 27, 40, 0.96)),
    var(--color-primary);
  color: var(--color-surface);
}

.cta-section .eyebrow,
.cta-section h2 {
  color: var(--color-surface);
}

.cta-section p {
  max-width: 58ch;
  margin-top: 14px;
  color: rgba(255, 250, 241, 0.76);
}

.cta-section .button {
  width: 100%;
  margin-top: 22px;
}

.cta-section small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 250, 241, 0.62);
  font-size: 13px;
  line-height: 1.5;
}

.faq-section {
  padding-bottom: 126px;
}

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

details {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.84);
  box-shadow: 0 8px 24px rgba(8, 17, 28, 0.05);
}

summary {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  color: var(--color-primary);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  flex: 0 0 auto;
  color: var(--color-accent);
  font-family: "remixicon";
  font-size: 18px;
  content: "\ea13";
}

details[open] summary::after {
  content: "\f1af";
}

details p {
  margin: 0;
  padding: 0 16px 17px;
  color: var(--color-text-muted);
  font-size: 14.5px;
  line-height: 1.62;
}

.faq-whatsapp {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  margin-top: 18px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: var(--color-surface);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
}

.site-footer {
  display: grid;
  gap: 22px;
  padding: 38px 22px calc(112px + var(--safe-bottom));
  border-top: 1px solid rgba(216, 191, 140, 0.22);
  background:
    linear-gradient(135deg, rgba(8, 17, 28, 0.98), rgba(17, 27, 40, 0.96)),
    var(--color-primary);
  color: rgba(255, 250, 241, 0.78);
}

.legal-footer {
  padding-bottom: 38px;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.footer-brand strong {
  display: block;
  color: var(--color-surface);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.15;
}

.footer-brand p,
.footer-note,
.footer-meta {
  max-width: 64ch;
  margin: 0;
  color: rgba(255, 250, 241, 0.66);
  font-size: 13px;
  line-height: 1.65;
}

.footer-brand p {
  margin-top: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: var(--color-accent-soft);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--color-surface);
}

.footer-meta {
  color: rgba(255, 250, 241, 0.5);
}

.legal-page {
  background: var(--color-background);
}

.legal-main {
  padding: 42px 22px 88px;
}

.legal-shell {
  width: min(100%, 920px);
  margin: 0 auto;
}

.legal-hero {
  padding: 22px 0 28px;
  border-bottom: 1px solid var(--color-border);
}

.legal-hero h1 {
  max-width: 12ch;
  margin: 10px 0 0;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: clamp(38px, 8vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.legal-hero p {
  max-width: 64ch;
  margin: 14px 0 0;
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid rgba(217, 203, 183, 0.72);
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-size: clamp(22px, 4vw, 32px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

.legal-section h3 {
  margin: 22px 0 8px;
  color: var(--color-primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.legal-section p,
.legal-section li {
  color: var(--color-text-muted);
  font-size: 15px;
  line-height: 1.72;
}

.legal-section a {
  color: var(--color-cta);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-links a:hover,
.legal-links a:focus-visible,
.legal-section a:hover,
.legal-section a:focus-visible {
  color: var(--color-primary);
}

.legal-section p {
  margin: 0 0 12px;
}

.legal-list {
  margin: 10px 0 0;
  padding-left: 1.2rem;
}

.legal-list li + li {
  margin-top: 8px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 28px;
}

.legal-links a {
  color: var(--color-cta);
  font-size: 14px;
  font-weight: 800;
}

.legal-card {
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.72);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.sticky-cta {
  position: fixed;
  right: 14px;
  bottom: var(--safe-bottom);
  left: 14px;
  z-index: 100;
  display: grid;
  grid-template-columns: 28px 1fr auto;
  min-height: 64px;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: var(--color-cta);
  color: #fff;
  box-shadow: 0 18px 44px rgba(15, 79, 50, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sticky-cta i {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  font-size: 23px;
}

.sticky-cta span {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.sticky-cta small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

[data-reveal],
.reveal {
  transition:
    opacity 780ms var(--ease-out),
    transform 780ms var(--ease-out);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

.reveal-delay-4 {
  transition-delay: 320ms;
}

.reveal-delay-5 {
  transition-delay: 400ms;
}

@media (prefers-reduced-motion: no-preference) {
  .site-header {
    animation: header-enter 720ms var(--ease-out) both;
  }

  .hero .reveal {
    animation: hero-copy-enter 780ms var(--ease-out) both;
  }

  .hero-visual img {
    animation: hero-image-settle 1300ms var(--ease-out) 180ms both;
  }

  .stock-note {
    animation: note-enter 680ms var(--ease-out) 260ms both;
  }
}

@keyframes header-enter {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-copy-enter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-image-settle {
  from {
    filter: saturate(0.92) contrast(0.96);
    transform: scale(1.085);
  }
  to {
    filter: saturate(1) contrast(1);
    transform: scale(1.035);
  }
}

@keyframes note-enter {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 680px) {
  .section,
  .section-tight,
  .cta-section,
  .legal-main,
  .site-footer {
    padding-right: 32px;
    padding-left: 32px;
  }

  .metrics,
  .proof-grid,
  .stock-grid,
  .comparison {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-card {
    grid-template-columns: 1fr;
  }

  .category-card img {
    height: 210px;
  }

  .document-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .document-row span {
    border-right: 1px solid var(--color-border);
    border-bottom: 0;
  }

  .document-row span:last-child {
    border-right: 0;
  }

  .sticky-cta {
    right: 26px;
    left: auto;
    width: 390px;
  }
}

@media (max-width: 979px) {
  .hero-actions {
    margin-top: 18px;
  }
}

@media (min-width: 980px) {
  :root {
    --header-height: 76px;
  }

  .site-header {
    padding: 14px 42px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    color: rgba(255, 250, 241, 0.74);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .language-switcher-desktop {
    display: inline-flex;
  }

  .language-switcher-mobile {
    display: none;
  }

  .desktop-nav a:hover,
  .desktop-nav a:focus-visible {
    color: var(--color-surface);
  }

  .menu-button {
    display: none;
  }

  .hero {
    grid-template-columns: minmax(390px, 0.72fr) minmax(0, 1.28fr);
    min-height: calc(100svh - var(--header-height));
  }

  .hero-copy {
    display: flex;
    min-height: calc(100svh - var(--header-height));
    flex-direction: column;
    justify-content: center;
    min-width: 0;
    padding: 48px clamp(28px, 3vw, 54px) 48px clamp(42px, 7vw, 180px);
  }

  .hero-copy::before,
  .hero-copy::after {
    content: "";
    position: absolute;
    pointer-events: none;
  }

  .hero-copy::before {
    top: 9%;
    right: -1px;
    bottom: 9%;
    width: 1px;
    background: linear-gradient(
      180deg,
      rgba(180, 135, 69, 0),
      rgba(180, 135, 69, 0.42) 32%,
      rgba(255, 250, 241, 0.5) 50%,
      rgba(180, 135, 69, 0.28) 68%,
      rgba(180, 135, 69, 0)
    );
    opacity: 0.7;
    z-index: 3;
  }

  .hero-copy::after {
    top: 0;
    right: -125px;
    bottom: 0;
    width: 190px;
    background: linear-gradient(
      90deg,
      rgba(255, 250, 241, 0.9) 0%,
      rgba(255, 250, 241, 0.6) 34%,
      rgba(255, 250, 241, 0.18) 68%,
      rgba(255, 250, 241, 0) 100%
    );
    z-index: 1;
  }

  html[dir="rtl"] .hero-copy::before {
    right: auto;
    left: -1px;
  }

  html[dir="rtl"] .hero-copy::after {
    right: auto;
    left: -125px;
    background: linear-gradient(
      270deg,
      rgba(255, 250, 241, 0.9) 0%,
      rgba(255, 250, 241, 0.6) 34%,
      rgba(255, 250, 241, 0.18) 68%,
      rgba(255, 250, 241, 0) 100%
    );
  }

  .hero-copy > * {
    width: min(100%, 500px);
    max-width: 500px;
  }

  h1 {
    max-width: 8.2ch;
    font-size: clamp(56px, 4.6vw, 82px);
  }

  .hero-market {
    max-width: 14ch;
    margin-top: 14px;
    font-size: clamp(32px, 2.7vw, 42px);
  }

  .lead {
    max-width: 38ch;
    font-size: 18px;
  }

  .section-heading h2,
  .cta-section h2 {
    font-size: clamp(38px, 4vw, 56px);
  }

  .hero-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 470px);
  }

  .button {
    padding-inline: 22px;
  }

  html.lang-de .hero-actions .button,
  html.lang-fr .hero-actions .button,
  html.lang-es .hero-actions .button,
  html.lang-it .hero-actions .button,
  html.lang-pt .hero-actions .button {
    padding-inline: 16px;
    font-size: 14px;
  }

  .hero-visual {
    min-height: calc(100svh - var(--header-height));
  }

  .hero-visual img {
    min-height: calc(100svh - var(--header-height));
  }

  .trust-row {
    padding-right: max(42px, calc((100vw - 1200px) / 2));
    padding-left: max(42px, calc((100vw - 1200px) / 2));
  }

  .section,
  .section-tight,
  .cta-section,
  .legal-main,
  .site-footer {
    padding-right: max(42px, calc((100vw - 1200px) / 2));
    padding-left: max(42px, calc((100vw - 1200px) / 2));
  }

  .site-footer {
    grid-template-columns: minmax(260px, 1fr) auto;
    align-items: start;
    padding-top: 46px;
    padding-bottom: calc(126px + var(--safe-bottom));
  }

  .legal-footer {
    padding-bottom: 46px;
  }

  .footer-note,
  .footer-meta {
    grid-column: 1 / -1;
  }

  .section {
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .section-tight {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .category-card {
    min-height: auto;
  }

  .category-card img {
    height: 180px;
  }

  .category-card div {
    padding-right: 0;
  }

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

  .solution-grid article {
    grid-template-columns: 1fr;
    border-top: 1px solid rgba(216, 191, 140, 0.22);
  }

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

  .timeline article {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .timeline article:not(:last-child)::before {
    top: 21px;
    right: -18px;
    bottom: auto;
    left: 42px;
    width: calc(100% - 24px);
    height: 1px;
  }

  .proof-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .proof-card img {
    height: 180px;
  }

  .split-heading {
    grid-template-columns: 1fr auto;
    max-width: none;
  }

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

  .stock-grid img {
    height: 240px;
  }

  .cta-section {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: end;
    padding-top: 86px;
    padding-bottom: 86px;
  }

  .cta-section .button {
    width: fit-content;
  }

  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .faq-whatsapp {
    width: fit-content;
    padding-inline: 28px;
  }
}

@media (max-width: 370px) {
  .brand strong {
    font-size: 15px;
  }

  .brand small {
    font-size: 9px;
  }

  .category-card {
    grid-template-columns: 102px 1fr;
  }

  .category-card img {
    height: 120px;
  }

  .sticky-cta small {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js [data-reveal],
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
