@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-600-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-700-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../fonts/roboto-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
}

:root {
  --background: #f7f5f0;
  --surface: #ffffff;
  --text: #18221f;
  --muted: #5b6862;
  --primary: #1e5b4f;
  --primary-hover: #17463c;
  --primary-soft: #e8f0ed;
  --accent: #c7864a;
  --accent-soft: #f4e5d5;
  --border: #dde4df;
  --success: #2e7d5b;
  --warning: #a96817;
  --danger: #b42318;
  --footer: #132a25;
  --shadow: 0 12px 32px rgba(24, 34, 31, 0.08);
  --radius: 12px;
  --content: 1200px;
  --header-height: 80px;
  --font-display: "Poppins", Arial, Helvetica, sans-serif;
  --font-body: "Roboto", Arial, Helvetica, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--background);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--primary);
  text-underline-offset: 0.18em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--primary-hover);
}

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

button,
summary {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3 {
  color: var(--text);
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 600;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
}

ul,
ol {
  padding-left: 1.2rem;
}

::selection {
  background: var(--accent-soft);
  color: var(--text);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 16px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--text);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  color: #fff;
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 48px), var(--content));
  margin-inline: auto;
}

.narrow {
  max-width: 760px;
}

.section {
  padding-block: 96px;
}

.section-compact {
  padding-block: 64px;
}

.surface-section {
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 2px;
  background: var(--accent);
  content: "";
}

.lead {
  max-width: 68ch;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.65;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(260px, 4fr);
  gap: 48px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading h2 {
  max-width: 17ch;
  margin-bottom: 0;
}

.section-heading p {
  max-width: 52ch;
  margin-bottom: 4px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

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

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

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

.btn-secondary {
  border-color: var(--primary);
  background: transparent;
  color: var(--primary);
}

.btn-secondary:hover {
  background: var(--primary-soft);
  color: var(--primary-hover);
}

.btn-light {
  background: #fff;
  color: var(--primary);
}

.btn-light:hover {
  background: var(--background);
  color: var(--primary-hover);
}

.btn[disabled] {
  opacity: 0.45;
  pointer-events: none;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.text-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  border-bottom: 1px solid var(--border);
  background: rgba(247, 245, 240, 0.94);
  backdrop-filter: blur(16px);
}

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

.brand {
  display: inline-flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 9px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
}

.brand-mark::after {
  position: absolute;
  right: -4px;
  bottom: -4px;
  width: 11px;
  height: 11px;
  border: 3px solid var(--background);
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.brand-text {
  display: grid;
  font-family: var(--font-display);
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 22px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link,
.nav-products > summary {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.91rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.nav-products > summary::-webkit-details-marker {
  display: none;
}

.nav-products > summary::after {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-products[open] > summary::after {
  transform: translateY(2px) rotate(225deg);
}

.nav-link:hover,
.nav-products > summary:hover,
.nav-link[aria-current="page"],
.nav-products.is-active > summary {
  background: var(--primary-soft);
  color: var(--primary);
}

.nav-products {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: -18px;
  width: 270px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.nav-dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
  background: var(--primary-soft);
  color: var(--primary);
}

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

.language-link {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
}

.language-link:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  color: var(--primary);
}

.header-cta {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.88rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.menu-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: 72px 88px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: -160px;
  right: -120px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(30, 91, 79, 0.12);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: 11%;
  bottom: 20px;
  width: 160px;
  height: 160px;
  background-image:
    linear-gradient(rgba(30, 91, 79, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 91, 79, 0.12) 1px, transparent 1px);
  background-size: 20px 20px;
  content: "";
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.hero-copy {
  grid-column: 1 / span 6;
}

.hero-copy .lead {
  max-width: 56ch;
}

.hero-note {
  display: flex;
  max-width: 540px;
  gap: 14px;
  align-items: flex-start;
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-note::before {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.hero-visual {
  position: relative;
  grid-column: 8 / -1;
  padding: 20px 0 20px 20px;
}

.hero-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: 160px 12px 12px 12px;
  background: var(--primary-soft);
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -20px;
  width: calc(100% - 16px);
  height: calc(100% - 10px);
  border: 1px solid var(--accent);
  border-radius: 170px 12px 12px 12px;
  content: "";
}

.hero-metric {
  position: absolute;
  right: -4px;
  bottom: 48px;
  width: min(260px, 72%);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius) 0 0 var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-metric strong {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.hero-metric span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.trust-strip {
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.65);
}

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

.trust-item {
  display: grid;
  min-height: 112px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 24px;
  border-right: 1px solid var(--border);
}

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

.trust-number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
}

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

.brand-signature-section {
  padding-block: clamp(40px, 6vw, 84px) 0;
}

.brand-signature {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(30, 91, 79, 0.16);
  border-radius: 24px;
  background: #f5f1e9;
  box-shadow: 0 24px 70px rgba(25, 45, 42, 0.14);
}

.brand-signature::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  content: "";
  pointer-events: none;
}

.brand-signature picture,
.brand-signature img {
  display: block;
  width: 100%;
}

.brand-signature img {
  height: auto;
  aspect-ratio: 40 / 21;
  object-fit: contain;
}

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

.direction-card {
  position: relative;
  display: flex;
  min-height: 340px;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.direction-card:nth-child(1) {
  grid-column: span 5;
}

.direction-card:nth-child(2) {
  grid-column: span 4;
  margin-top: 56px;
}

.direction-card:nth-child(3) {
  grid-column: span 3;
}

.direction-card::after {
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid var(--border);
  border-radius: 50%;
  content: "";
}

.direction-index {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.direction-card p {
  color: var(--muted);
}

.direction-card .text-link {
  align-self: flex-start;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 64px;
  align-items: center;
}

.image-frame {
  position: relative;
}

.image-frame img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-frame::before {
  position: absolute;
  z-index: -1;
  right: -16px;
  bottom: -16px;
  width: 42%;
  height: 52%;
  border-radius: var(--radius);
  background: var(--accent-soft);
  content: "";
}

.open-list {
  display: grid;
  gap: 0;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.open-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 16px;
  padding-block: 18px;
  border-top: 1px solid var(--border);
}

.open-list li::before {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--primary-soft);
  color: var(--primary);
  content: "✓";
  font-size: 0.8rem;
  font-weight: 700;
}

.open-list strong {
  display: block;
  margin-bottom: 3px;
  font-family: var(--font-display);
  font-size: 0.96rem;
}

.open-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

.precision-band {
  position: relative;
  overflow: hidden;
  background: var(--primary);
  color: #fff;
}

.precision-band::after {
  position: absolute;
  top: -90px;
  right: 6%;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  content: "";
}

.precision-band h2,
.precision-band h3 {
  color: #fff;
}

.precision-band .eyebrow {
  color: #dce9e5;
}

.precision-band .eyebrow::before {
  background: var(--accent);
}

.precision-band .lead {
  color: #dce9e5;
}

.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 72px;
  align-items: center;
}

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

.request-data-item {
  min-height: 104px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.request-data-item strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.92rem;
}

.request-data-item span {
  color: #cbdcd7;
  font-size: 0.85rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process li {
  position: relative;
  padding: 0 24px 0 0;
  counter-increment: process;
}

.process li:not(:last-child)::after {
  position: absolute;
  top: 17px;
  right: 16px;
  left: 46px;
  height: 1px;
  background: var(--border);
  content: "";
}

.process li::before {
  position: relative;
  z-index: 1;
  display: grid;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: var(--background);
  color: var(--primary);
  content: counter(process, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
}

.process strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-size: 0.96rem;
}

.process span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: 72px;
}

.company-copy p {
  max-width: 68ch;
}

.facts-panel {
  align-self: start;
  padding: 32px;
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
}

.facts-list {
  margin: 0;
}

.facts-list div {
  padding-block: 16px;
  border-bottom: 1px solid var(--border);
}

.facts-list div:last-child {
  border-bottom: 0;
}

.facts-list dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.facts-list dd {
  margin: 0;
  font-weight: 500;
}

.cta-band {
  padding-block: 64px;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 7fr) auto;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(110deg, rgba(232, 240, 237, 0.9), rgba(255, 255, 255, 0.96)),
    var(--surface);
}

.cta-panel h2 {
  max-width: 18ch;
  margin-bottom: 14px;
}

.cta-panel p {
  max-width: 62ch;
  margin-bottom: 0;
  color: var(--muted);
}

.inner-hero {
  padding-block: 64px 72px;
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: center;
}

.inner-hero-copy {
  grid-column: 1 / span 7;
  padding-right: 24px;
}

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

.inner-hero-copy .lead {
  max-width: 59ch;
}

.inner-hero-image {
  position: relative;
  grid-column: 9 / -1;
}

.inner-hero-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  border-radius: 120px 12px 12px 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.inner-hero-image::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 58%;
  height: 46%;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  border-radius: 0 0 16px 0;
  content: "";
}

.context-bar {
  padding-block: 18px;
  border-block: 1px solid var(--border);
  background: var(--surface);
}

.context-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.context-bar strong {
  color: var(--text);
}

.content-split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 80px;
  align-items: start;
}

.sticky-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.sticky-intro h2 {
  max-width: 15ch;
}

.content-stack {
  display: grid;
  gap: 16px;
}

.spec-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-block: 24px;
  border-top: 1px solid var(--border);
}

.spec-row:last-child {
  border-bottom: 1px solid var(--border);
}

.spec-number {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.spec-row h3 {
  margin-bottom: 6px;
}

.spec-row p {
  margin: 0;
  color: var(--muted);
}

.note-panel {
  padding: 28px 30px;
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--surface);
}

.note-panel strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-display);
}

.note-panel p:last-child {
  margin-bottom: 0;
}

.stage-list {
  display: grid;
  max-width: 880px;
  gap: 0;
  margin: 40px auto 0;
  padding: 0;
  list-style: none;
  counter-reset: stage;
}

.stage-list li {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  counter-increment: stage;
}

.stage-list li:last-child {
  border-bottom: 1px solid var(--border);
}

.stage-list li::before {
  color: var(--accent);
  content: "0" counter(stage);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.stage-list h3 {
  margin-bottom: 6px;
}

.stage-list p {
  max-width: 66ch;
  margin: 0;
  color: var(--muted);
}

.two-column-list {
  columns: 2;
  column-gap: 56px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.two-column-list li {
  break-inside: avoid;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.two-column-list li::before {
  position: absolute;
  top: 22px;
  left: 4px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  content: "";
}

.rfq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 7fr);
  gap: 64px;
  align-items: start;
}

.rfq-aside {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.rfq-aside h2 {
  max-width: 13ch;
}

.rfq-aside-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.rfq-aside-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.rfq-aside-list li::before {
  color: var(--success);
  content: "✓";
  font-weight: 700;
}

.form-card {
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-intro {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.form-intro h2 {
  margin-bottom: 12px;
  font-size: 1.7rem;
}

.form-intro p {
  margin: 0;
  color: var(--muted);
}

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

.form-field {
  min-width: 0;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field[hidden] {
  display: none;
}

.form-field label,
.form-legend {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
}

.required-label {
  color: var(--danger);
}

.optional-label {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
  color: var(--text);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 136px;
  resize: vertical;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #aab8b1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(30, 91, 79, 0.12);
  outline: 0;
}

.form-field [aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 2px rgba(180, 35, 24, 0.1);
}

.field-hint,
.field-error {
  display: block;
  margin-top: 6px;
  font-size: 0.8rem;
  line-height: 1.4;
}

.field-hint {
  color: var(--muted);
}

.field-error {
  color: var(--danger);
}

.consent-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  margin-top: 24px;
}

.consent-row input {
  width: 20px;
  height: 20px;
  margin: 3px 0 0;
  accent-color: var(--primary);
}

.consent-row label {
  font-size: 0.88rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
}

.form-actions .btn {
  min-width: 190px;
}

.form-actions small {
  max-width: 38ch;
  color: var(--muted);
}

.draft-result {
  margin-top: 28px;
  padding: 24px;
  border: 1px solid #b8d1c7;
  border-radius: var(--radius);
  background: #edf6f2;
}

.draft-result[hidden] {
  display: none;
}

.draft-result h3 {
  color: var(--primary);
}

.draft-result p {
  color: var(--muted);
}

.draft-preview {
  max-height: 260px;
  overflow: auto;
  margin: 16px 0;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
  white-space: pre-wrap;
}

.faq-list {
  max-width: 900px;
  margin: 40px auto 0;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  display: flex;
  width: 100%;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 4px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  display: grid;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--primary);
  content: "+";
  font-family: var(--font-body);
  font-size: 1.2rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-answer {
  max-width: 72ch;
  padding: 0 56px 22px 4px;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: 72px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 32px;
}

.contact-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  padding-block: 20px;
  border-top: 1px solid var(--border);
}

.contact-row:last-child {
  border-bottom: 1px solid var(--border);
}

.contact-row dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-row dd {
  margin: 0;
  font-weight: 500;
}

.contact-note {
  padding: 32px;
  border-radius: var(--radius);
  background: var(--primary);
  color: #e5f0ed;
}

.contact-note h2 {
  color: #fff;
  font-size: 1.65rem;
}

.contact-note a {
  color: #fff;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 760px);
  gap: 72px;
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
}

.legal-nav a {
  display: block;
  min-height: 40px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  text-decoration: none;
}

.legal-nav a:last-child {
  border-bottom: 0;
}

.legal-nav a:hover {
  color: var(--primary);
}

.legal-copy h2 {
  margin-top: 56px;
  font-size: 1.7rem;
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy h3 {
  margin-top: 32px;
  font-size: 1.1rem;
}

.legal-copy p,
.legal-copy li {
  color: #40504a;
}

.legal-intro {
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
}

.error-page {
  display: grid;
  min-height: calc(100vh - var(--header-height));
  place-items: center;
  padding-block: 64px;
}

.error-panel {
  display: grid;
  max-width: 940px;
  grid-template-columns: 0.8fr 1.2fr;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.error-code {
  display: grid;
  min-height: 430px;
  place-items: center;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(5rem, 12vw, 9rem);
  font-weight: 700;
}

.error-copy {
  align-self: center;
  padding: 48px;
}

.error-language {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.error-language + .error-language {
  padding-top: 28px;
  padding-bottom: 0;
  border-bottom: 0;
}

.error-language h1,
.error-language h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
}

.error-language p {
  color: var(--muted);
}

.site-footer {
  margin-top: 32px;
  padding-block: 64px 24px;
  background: var(--footer);
  color: #c7d5d0;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) repeat(2, 1fr) minmax(260px, 1.2fr);
  gap: 48px;
}

.footer-brand .brand {
  color: #fff;
}

.footer-brand .brand-mark::after {
  border-color: var(--footer);
}

.footer-brand .brand-text small {
  color: #a9bdb6;
}

.footer-brand > p {
  max-width: 40ch;
  margin-top: 24px;
  color: #a9bdb6;
  font-size: 0.9rem;
}

.footer-column h2 {
  margin-bottom: 16px;
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.footer-links a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  color: #c7d5d0;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-contact {
  font-style: normal;
}

.footer-contact p {
  margin-bottom: 12px;
  color: #a9bdb6;
  font-size: 0.88rem;
}

.footer-contact a {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #9aafa8;
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.disclaimer {
  max-width: 70ch;
  text-align: right;
}

@media (max-width: 1120px) {
  :root {
    --header-height: 72px;
  }

  .container {
    width: min(calc(100% - 40px), var(--content));
  }

  .menu-toggle {
    display: block;
  }

  .nav-shell {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: none;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    align-items: stretch;
    padding: 24px max(20px, calc((100% - var(--content)) / 2));
    border-bottom: 1px solid var(--border);
    background: var(--background);
    box-shadow: var(--shadow);
  }

  .nav-shell.is-open {
    display: block;
  }

  .main-nav {
    display: grid;
    align-items: stretch;
  }

  .nav-link,
  .nav-products > summary {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding-inline: 12px;
  }

  .nav-products {
    width: 100%;
  }

  .nav-dropdown {
    position: static;
    width: 100%;
    margin: 4px 0 12px;
    border: 0;
    border-left: 2px solid var(--accent);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .header-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin-top: 18px;
  }

  .header-cta {
    width: 100%;
  }

  .hero-copy {
    grid-column: 1 / span 7;
  }

  .hero-visual {
    grid-column: 9 / -1;
  }

  .hero-metric {
    right: -8px;
    width: 92%;
  }

  .direction-card:nth-child(1),
  .direction-card:nth-child(2),
  .direction-card:nth-child(3) {
    grid-column: span 4;
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .section {
    padding-block: 72px;
  }

  .section-heading,
  .product-showcase,
  .band-grid,
  .company-grid,
  .content-split,
  .rfq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-heading {
    align-items: start;
    margin-bottom: 40px;
  }

  .hero {
    padding-block: 56px 72px;
  }

  .hero-copy {
    grid-column: 1 / span 7;
  }

  .hero-visual {
    grid-column: 8 / -1;
  }

  .hero-image {
    border-radius: 100px 12px 12px 12px;
  }

  .hero-visual::before {
    border-radius: 110px 12px 12px 12px;
  }

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

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .direction-card:nth-child(1),
  .direction-card:nth-child(2) {
    grid-column: span 6;
  }

  .direction-card:nth-child(3) {
    grid-column: span 12;
    min-height: 280px;
  }

  .product-showcase .image-frame {
    max-width: 680px;
  }

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

  .process li {
    display: grid;
    grid-template-columns: 50px 1fr;
    gap: 18px;
    padding: 16px 0;
  }

  .process li::before {
    margin-bottom: 0;
  }

  .process li:not(:last-child)::after {
    top: 52px;
    right: auto;
    bottom: -6px;
    left: 17px;
    width: 1px;
    height: auto;
  }

  .process li > * {
    grid-column: 2;
  }

  .process li strong {
    margin-top: -36px;
  }

  .inner-hero-copy {
    grid-column: 1 / span 8;
  }

  .inner-hero-image {
    grid-column: 9 / -1;
  }

  .sticky-intro,
  .rfq-aside {
    position: static;
  }

  .rfq-aside h2 {
    max-width: 18ch;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .legal-nav {
    position: static;
  }

  .legal-nav a {
    display: inline-flex;
    margin-right: 18px;
    border-bottom: 0;
  }

  .cta-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: auto;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  h2 {
    font-size: 1.85rem;
  }

  .section {
    padding-block: 64px;
  }

  .brand-text small {
    display: none;
  }

  .hero-grid,
  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy,
  .hero-visual,
  .inner-hero-copy,
  .inner-hero-image {
    grid-column: 1;
    padding-right: 0;
  }

  .hero-visual {
    width: min(88%, 440px);
    margin-left: auto;
  }

  .hero-image {
    aspect-ratio: 4 / 4.7;
  }

  .hero-metric {
    right: -18px;
    bottom: 28px;
  }

  .inner-hero-image {
    width: min(82%, 400px);
    margin-left: auto;
  }

  .inner-hero-image img {
    aspect-ratio: 4 / 3.8;
    border-radius: 90px 12px 12px 12px;
  }

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

  .direction-card:nth-child(1),
  .direction-card:nth-child(2),
  .direction-card:nth-child(3) {
    grid-column: 1;
    min-height: 290px;
  }

  .request-data-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field.full {
    grid-column: 1;
  }

  .form-card {
    padding: 28px 20px;
    border-radius: var(--radius);
  }

  .two-column-list {
    columns: 1;
  }

  .context-bar-inner {
    display: block;
  }

  .context-bar .text-link {
    margin-top: 8px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .cta-panel {
    padding: 32px 24px;
    border-radius: var(--radius);
  }

  .error-panel {
    grid-template-columns: 1fr;
  }

  .error-code {
    min-height: 190px;
  }

  .error-copy {
    padding: 32px 24px;
  }

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

  .footer-brand,
  .footer-contact {
    grid-column: 1;
  }

  .footer-bottom {
    display: block;
  }

  .disclaimer {
    margin-top: 12px;
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
