:root {
  --ink: #17202a;
  --muted: #5f6b76;
  --line: #dfe4e8;
  --panel: #f6f8f7;
  --white: #ffffff;
  --navy: #12324a;
  --green: #2f6f5e;
  --gold: #b49a55;
  --charcoal: #0f171c;
  --shadow: 0 18px 50px rgba(18, 50, 74, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.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;
}

.section-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 0 32px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(223, 228, 232, 0.8);
  backdrop-filter: blur(12px);
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 158px;
  max-height: 42px;
  height: auto;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  border-color: var(--gold);
}

.language-link {
  min-width: 42px;
  padding: 8px 12px !important;
  text-align: center;
  border: 1px solid var(--line) !important;
  border-radius: 8px;
}

.language-link:hover,
.language-link:focus-visible {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy) !important;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

@media (min-width: 861px) {
  .nav-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 640px;
  padding-top: 76px;
  display: flex;
  align-items: center;
  color: var(--navy);
  background:
    linear-gradient(90deg, #eef3f5 0%, #f8fafb 56%, #eef3f5 100%);
  overflow: hidden;
}

.hero picture,
.hero > picture img {
  position: absolute;
}

.hero picture {
  top: 76px;
  right: 0;
  bottom: 0;
  left: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(52vw, 720px);
  padding: 48px 34px 42px 0;
}

.hero > picture img {
  position: relative;
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1160px;
  padding: 106px 0 82px;
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 16px;
  max-width: 520px;
  color: var(--navy);
  font-size: 3.05rem;
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 500px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions,
.cert-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
}

.button-primary {
  color: var(--charcoal);
  background: var(--gold);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
}

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

.trust-strip {
  background: var(--charcoal);
  color: var(--white);
}

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

.trust-grid div {
  min-height: 112px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.045);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 1rem;
}

.trust-grid span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.section {
  padding: 92px 0;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading h2,
.split-copy h2,
.quality-layout h2,
.markets-copy h2,
.contact-layout h2 {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: 2.5rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.quality-layout p,
.markets-copy p,
.contact-layout p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(18, 50, 74, 0.08);
}

.solution-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: var(--panel);
}

.solution-body {
  padding: 22px;
}

.solution-kicker {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.solution-body h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.22rem;
  line-height: 1.18;
}

.solution-body p {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution-body ul {
  margin: 0;
  padding-left: 18px;
  color: var(--ink);
  font-size: 0.92rem;
}

.solution-body li + li {
  margin-top: 7px;
}

.product-detail,
.quality-section,
.about-section {
  background: var(--panel);
}

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

.split-layout,
.quality-layout,
.markets-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 58px;
}

.split-layout.reverse .split-media {
  order: 2;
}

.split-media img,
.quality-panel img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-list,
.address-list,
.quality-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.feature-list div,
.address-list div,
.quality-list div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.feature-list strong,
.feature-list span,
.address-list strong,
.address-list span,
.quality-list strong,
.quality-list span {
  display: block;
}

.feature-list strong,
.address-list strong,
.quality-list strong {
  margin-bottom: 4px;
  color: var(--navy);
}

.feature-list span,
.address-list span,
.quality-list span {
  color: var(--muted);
}

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

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.why-grid article {
  min-height: 214px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.why-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.why-grid h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.24rem;
}

.why-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.proof-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 50, 74, 0.08);
}

.proof-grid img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
}

.proof-grid div {
  padding: 22px;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.08rem;
}

.proof-grid span {
  color: var(--muted);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid article {
  min-height: 208px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 50, 74, 0.06);
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.process-grid h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.16rem;
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.quality-layout {
  align-items: start;
}

.cert-row {
  margin: 28px 0 18px;
}

.cert-row span,
.market-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
}

.note {
  max-width: 680px;
  color: var(--muted);
  font-size: 0.95rem !important;
}

.quality-panel {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quality-panel img {
  box-shadow: none;
}

.markets-section {
  background: var(--charcoal);
  color: var(--white);
}

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

.markets-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.market-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-content: center;
}

.market-side {
  display: grid;
  gap: 22px;
}

.market-list span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.market-visuals {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.market-visuals img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.about-section .split-media img {
  aspect-ratio: 1.25 / 1;
}

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

.contact-layout {
  align-items: start;
}

.compact-inquiry-form {
  padding: 22px;
}

.compact-inquiry-form .form-grid {
  gap: 12px;
  margin-bottom: 18px;
}

.compact-inquiry-form textarea {
  min-height: 118px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-link {
  display: block;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-link:hover,
.contact-link:focus-visible {
  border-color: var(--gold);
  box-shadow: 0 12px 30px rgba(18, 50, 74, 0.09);
}

.contact-link span,
.contact-link strong {
  display: block;
}

.contact-link span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-link strong {
  color: var(--navy);
  font-size: 1.2rem;
}

.site-footer {
  padding: 46px 0;
  color: rgba(255, 255, 255, 0.76);
  background: var(--charcoal);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(170px, 0.45fr) minmax(260px, 0.7fr);
  gap: 44px;
  align-items: start;
}

.footer-brand img {
  width: 150px;
  max-height: 44px;
  object-fit: contain;
}

.footer-brand p,
.footer-column p {
  margin: 0;
}

.footer-brand p {
  margin-top: 18px;
  color: var(--white);
  font-weight: 800;
}

.footer-brand span,
.footer-column p {
  display: block;
  max-width: 410px;
  margin-top: 8px;
  font-size: 0.94rem;
}

.footer-address {
  display: grid;
  gap: 8px;
  max-width: 470px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-address strong {
  display: block;
  color: var(--white);
  font-size: 0.83rem;
}

.footer-column {
  display: grid;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--white);
  font-size: 0.86rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-cta {
  color: var(--gold);
}

.footer-cta {
  margin-top: 8px;
  font-weight: 800 !important;
}

.page-hero {
  padding: 154px 0 78px;
  color: var(--navy);
  background:
    linear-gradient(90deg, #eef3f5 0%, #f9fbfc 58%, #eef3f5 100%);
}

.page-hero-inner {
  max-width: 900px;
}

.page-hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 3.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.page-note {
  margin-top: 22px !important;
  padding: 14px 16px;
  color: var(--navy) !important;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  color: var(--green);
  font-weight: 800;
}

.text-link::after {
  content: ">";
  margin-left: 8px;
  color: var(--gold);
}

.button-inline {
  margin-top: 28px;
  color: var(--white);
  background: var(--navy);
}

.detail-stack {
  display: grid;
  gap: 28px;
}

.detail-block {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 34px;
  align-items: center;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 50, 74, 0.08);
}

.detail-block h2,
.overview-grid h3,
.form-side h2 {
  color: var(--navy);
}

.detail-block h2 {
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.15;
}

.detail-block p {
  color: var(--muted);
}

.detail-block img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.check-list {
  margin: 22px 0 0;
  padding-left: 18px;
}

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

.overview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

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

.market-card-grid {
  align-items: stretch;
}

.overview-grid article {
  min-height: 178px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.overview-grid h3 {
  margin-bottom: 10px;
  font-size: 1.18rem;
  line-height: 1.2;
}

.overview-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.market-card {
  overflow: hidden;
  padding: 0 !important;
}

.market-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  background: var(--panel);
}

.market-card div {
  padding: 24px;
}

.inquiry-form,
.form-side {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(18, 50, 74, 0.08);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 22px;
}

.form-grid label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-weight: 800;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(180, 154, 85, 0.36);
  border-color: var(--gold);
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.anti-spam {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 0;
  background: var(--panel);
}

.form-result-panel {
  max-width: 680px;
  padding: 38px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.form-result-panel img {
  width: 150px;
  margin-bottom: 24px;
}

.form-result-panel h1 {
  color: var(--navy);
  font-size: 2.25rem;
  line-height: 1.15;
}

@media (max-width: 1060px) {
  .solution-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid,
  .proof-grid,
  .process-grid,
  .overview-grid,
  .overview-grid.metrics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .nav-toggle {
    position: fixed;
    top: 16px;
    right: 20px;
    z-index: 25;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 8px 18px rgba(18, 50, 74, 0.12);
  }

  .nav-toggle span:not(.sr-only) {
    display: none;
  }

  .nav-toggle::before {
    content: "";
    display: block;
    width: 22px;
    height: 16px;
    background:
      linear-gradient(var(--white), var(--white)) 0 0 / 22px 2px no-repeat,
      linear-gradient(var(--white), var(--white)) 0 7px / 22px 2px no-repeat,
      linear-gradient(var(--white), var(--white)) 0 14px / 22px 2px no-repeat;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    height: calc(100vh - 76px);
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    background: var(--white);
    border-top: 1px solid var(--line);
  }

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

  .site-nav a {
    font-size: 1.08rem;
  }

  .hero {
    min-height: auto;
  }

  .hero picture {
    width: min(62vw, 560px);
    opacity: 0.42;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-copy {
    font-size: 1.08rem;
  }

  .trust-grid,
  .split-layout,
  .quality-layout,
  .markets-layout,
  .contact-layout,
  .footer-grid,
  .detail-block {
    grid-template-columns: 1fr;
  }

  .split-layout.reverse .split-media {
    order: 0;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .split-copy h2,
  .quality-layout h2,
  .markets-copy h2,
  .contact-layout h2,
  .page-hero h1 {
    font-size: 2.05rem;
  }

  .page-hero {
    padding: 132px 0 64px;
  }

  .detail-block {
    padding: 24px;
  }
}

@media (max-width: 620px) {
  .section-inner {
    width: min(calc(100% - 28px), 1160px);
  }

  .site-header {
    min-height: 70px;
    padding: 0 14px;
  }

  .brand img {
    width: 136px;
    max-height: 38px;
  }

  .site-nav {
    top: 70px;
    height: calc(100vh - 70px);
  }

  .nav-toggle {
    top: 13px;
    right: 14px;
  }

  .hero {
    min-height: auto;
    padding-top: 70px;
  }

  .hero picture {
    display: none;
  }

  .hero-content {
    padding: 64px 0 52px;
  }

  .hero h1 {
    max-width: 380px;
    font-size: 2rem;
  }

  .hero-copy {
    max-width: 380px;
    font-size: 1rem;
    overflow-wrap: break-word;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .trust-grid {
    gap: 0;
  }

  .trust-grid div {
    min-height: auto;
    padding: 22px 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .solution-grid,
  .why-grid,
  .proof-grid,
  .process-grid,
  .overview-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .solution-body,
  .why-grid article,
  .overview-grid article {
    padding: 22px;
  }

  .page-hero {
    padding: 116px 0 56px;
  }

  .page-hero h1 {
    font-size: 1.95rem;
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .detail-block {
    padding: 20px;
  }

  .detail-block h2 {
    font-size: 1.55rem;
  }

  .inquiry-form,
  .form-side {
    padding: 20px;
  }

  .contact-link strong {
    font-size: 1.08rem;
    overflow-wrap: anywhere;
  }

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