@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Sora:wght@600;700;800&display=swap");

:root {
  --bg: #f3f0e9;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-alt: rgba(240, 236, 228, 0.9);
  --text: #173047;
  --muted: #5d6e7d;
  --line: rgba(23, 48, 71, 0.12);
  --brand: #124f76;
  --brand-dark: #0c3550;
  --accent: #cf6a2a;
  --max: 1360px;
  --radius: 22px;
  --shadow: 0 24px 60px rgba(12, 53, 80, 0.09);
  --shadow-strong: 0 32px 80px rgba(12, 53, 80, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(18, 79, 118, 0.1), transparent 32%),
    radial-gradient(circle at 100% 14%, rgba(207, 106, 42, 0.1), transparent 24%),
    linear-gradient(180deg, #fcfbf7, #f3f0e9);
  line-height: 1.65;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(18, 79, 118, 0.08), transparent 24%),
    radial-gradient(circle at 82% 24%, rgba(207, 106, 42, 0.08), transparent 18%);
}

body::after {
  background-image:
    linear-gradient(rgba(23, 48, 71, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 48, 71, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 82%);
}

img {
  max-width: 100%;
}

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

.button a,
.button-primary a,
.button-secondary a {
  color: inherit !important;
  text-decoration: none !important;
}

.card a,
.stat a,
.helper a,
.section-link a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.card a:hover,
.stat a:hover,
.helper a:hover,
.section-link a:hover {
  color: var(--brand);
}

p {
  margin: 0 0 1rem;
}

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

.container {
  width: min(var(--max), calc(100% - clamp(1.5rem, 3.8vw, 4.5rem)));
  margin: 0 auto;
}

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

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  font-family: "Sora", "Segoe UI", sans-serif;
  letter-spacing: -0.022em;
  text-wrap: balance;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(252, 251, 247, 0.88);
  border-bottom: 1px solid rgba(23, 48, 71, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 35px rgba(12, 53, 80, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 0.95rem 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  flex-shrink: 0;
  margin-right: auto;
}

.logo-mark {
  width: 88px;
  height: 88px;
  object-fit: contain;
  display: block;
  padding: 0;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 28px rgba(12, 53, 80, 0.18));
  transition: transform 0.24s ease, filter 0.24s ease;
}

.logo-text {
  display: inline-flex;
  align-items: center;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.logo:hover .logo-mark,
.logo:focus-visible .logo-mark {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 20px 36px rgba(12, 53, 80, 0.24));
}

.nav-toggle {
  display: none;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.95);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(12, 53, 80, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-dark);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-left: auto;
}

.nav > a:not(.button):not(.lang-switch):not(.lang-toggle) {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
  white-space: nowrap;
  padding: 0.72rem 0.88rem;
  border-radius: 999px;
}

.nav > a:not(.button):not(.lang-switch):not(.lang-toggle):hover,
.nav > a.active:not(.button):not(.lang-switch):not(.lang-toggle) {
  color: var(--brand-dark);
  background: rgba(18, 79, 118, 0.09);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: 0.55rem;
}

.nav-cta {
  white-space: nowrap;
}

.lang-dropdown {
  position: relative;
}

.lang-toggle,
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 132px;
  padding: 0.72rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.lang-toggle:hover,
.lang-switch:hover {
  border-color: rgba(18, 79, 118, 0.28);
  background: #f2f6f8;
  transform: translateY(-1px);
}

.lang-flag {
  font-size: 1rem;
  line-height: 1;
}

.lang-label {
  white-space: nowrap;
}

.lang-caret {
  font-size: 0.8rem;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.55rem);
  right: 0;
  min-width: 180px;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  display: none;
}

.lang-dropdown.is-open .lang-menu {
  display: grid;
}

.lang-menu a {
  display: block;
  padding: 0.8rem 0.9rem;
  border-radius: 12px;
  color: var(--brand-dark);
  font-weight: 700;
}

.lang-menu a:hover {
  background: rgba(18, 79, 118, 0.08);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.92rem 1.28rem;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--brand), #1d658f);
  color: #fff !important;
  box-shadow: 0 16px 34px rgba(18, 79, 118, 0.2);
}

.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  color: #fff !important;
}

.button-primary:visited,
.button-primary:active,
.button-primary:focus {
  color: #fff !important;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(12, 53, 80, 0.14);
  color: var(--brand-dark);
}

.button-secondary:hover,
.button-secondary:focus,
.button-secondary:active,
.button-secondary:visited {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(18, 79, 118, 0.3);
  color: var(--brand-dark);
}

.button:focus-visible,
.nav-toggle:focus-visible,
.lang-toggle:focus-visible,
.nav a:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(18, 79, 118, 0.14);
}

.hero {
  --hero-home-image: url("../img/hero-home-premium.jpg");
  position: relative;
  overflow: hidden;
  padding: 5.2rem 0 3.4rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 38, 0.86) 0%, rgba(10, 34, 55, 0.76) 36%, rgba(10, 34, 55, 0.56) 64%, rgba(10, 34, 55, 0.72) 100%),
    linear-gradient(180deg, rgba(5, 16, 29, 0.16), rgba(5, 16, 29, 0.46)),
    var(--hero-home-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0));
  pointer-events: none;
}

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

.hero-grid,
.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: clamp(1rem, 1.5vw, 1.7rem);
  align-items: stretch;
}

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

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

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

.hero-copy-block,
.hero-stage,
.page-intro {
  animation: rise-in 0.7s ease both;
}

.hero-stage {
  animation-delay: 0.08s;
}

.hero-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(9.4rem, 1fr));
  gap: clamp(0.45rem, 0.9vw, 0.7rem);
  max-width: min(100%, 35rem);
  align-items: start;
  margin-bottom: 1rem;
  justify-content: center;
}

.hero-badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-width: 0;
  padding: clamp(0.38rem, 0.7vw, 0.46rem) clamp(0.72rem, 1vw, 0.92rem);
  border-radius: 999px;
  background: rgba(18, 79, 118, 0.08);
  border: 1px solid rgba(18, 79, 118, 0.08);
  color: var(--brand-dark);
  font-size: clamp(0.74rem, 0.7rem + 0.2vw, 0.83rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero .hero-badges span {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.94);
}

.hero-badges .hero-badge-wide {
  grid-column: 1 / -1;
  max-width: 15.5rem;
  justify-self: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1rem;
  max-width: 100%;
  padding: clamp(0.38rem, 0.7vw, 0.46rem) clamp(0.72rem, 1vw, 0.92rem);
  border-radius: 999px;
  background: rgba(18, 79, 118, 0.08);
  border: 1px solid rgba(18, 79, 118, 0.08);
  color: var(--brand-dark);
  font-size: clamp(0.74rem, 0.7rem + 0.2vw, 0.83rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.8rem, 4.7vw, 4.9rem);
  margin-bottom: 1rem;
  max-width: 12ch;
  letter-spacing: -0.024em;
  line-height: 1.08;
  text-wrap: balance;
}

.hero .hero-copy-block {
  color: #fff;
}

.hero h1 {
  color: #fff;
}

.page-intro h1 {
  font-size: clamp(2.05rem, 2.35vw + 1rem, 3.55rem);
  margin-bottom: 1rem;
  max-width: 22ch;
  letter-spacing: -0.022em;
  line-height: 1.09;
  text-wrap: balance;
}

.hero-copy {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero .hero-copy {
  color: rgba(244, 247, 251, 0.84);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.trust-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.7rem;
}

.trust-ribbon article {
  padding: 1rem 1rem 1.05rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 48, 71, 0.08);
  box-shadow: 0 18px 40px rgba(12, 53, 80, 0.05);
}

.hero .trust-ribbon article {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 40px rgba(4, 19, 31, 0.16);
}

.trust-ribbon strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.trust-ribbon span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.hero .trust-ribbon strong {
  color: #fff;
}

.hero .trust-ribbon span {
  color: rgba(244, 247, 251, 0.74);
}

.hero .button.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.hero .button.button-secondary:hover,
.hero .button.button-secondary:focus,
.hero .button.button-secondary:active,
.hero .button.button-secondary:visited {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.26);
  color: #fff;
}

.cert-marquee-section {
  padding-top: 0.5rem;
}

.cert-marquee-title {
  margin-bottom: 1rem;
}

.cert-marquee {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1rem;
  margin-top: 1.4rem;
}

.cert-marquee-track {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: max-content;
  animation: cert-marquee-scroll 30s linear infinite;
}

.cert-marquee:hover .cert-marquee-track {
  animation-play-state: paused;
}

.cert-marquee-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  min-height: 124px;
  padding: 1.1rem 1.5rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 48, 71, 0.08);
  box-shadow: 0 18px 32px rgba(12, 53, 80, 0.06);
}

.cert-marquee-item img {
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.cert-spotlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  padding: 1.5rem;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(10, 34, 55, 0.96), rgba(18, 79, 118, 0.92));
  color: #fff;
  box-shadow: var(--shadow-strong);
}

.cert-spotlight h2 {
  margin-bottom: 0.55rem;
  max-width: 14ch;
  color: #fff;
}

.cert-spotlight .eyebrow {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.cert-spotlight .helper {
  max-width: 60ch;
  color: rgba(244, 247, 251, 0.8);
}

.cert-spotlight-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.cert-spotlight .button.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

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

.cert-logo-card,
.cert-download-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 239, 0.92));
}

.cert-logo-card {
  padding: 1.35rem;
  border-radius: 24px;
  border: 1px solid rgba(23, 48, 71, 0.08);
  box-shadow: var(--shadow);
}

.cert-logo-card img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: 108px;
  margin-bottom: 0.9rem;
  object-fit: contain;
}

.cert-logo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.cert-download-card .button {
  margin-top: 0.7rem;
}

@keyframes cert-marquee-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

.hero-stage {
  position: relative;
  min-height: 100%;
  padding: 1.15rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(12, 53, 80, 0.08), rgba(255, 255, 255, 0.8));
  border: 1px solid rgba(12, 53, 80, 0.12);
  box-shadow: var(--shadow-strong);
}

.hero-stage .hero-visual {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 22px;
  object-fit: cover;
  border: 0;
  box-shadow: none;
}

.hero-stage-card {
  position: absolute;
  z-index: 1;
  padding: 1rem 1rem 1.1rem;
  border-radius: 20px;
  background: rgba(12, 53, 80, 0.9);
  color: #fff;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 42px rgba(12, 53, 80, 0.3);
}

.hero-stage-card.top {
  top: 2rem;
  left: 2rem;
  max-width: 240px;
}

.hero-stage-card.bottom {
  left: 1.4rem;
  right: 1.4rem;
  bottom: 1.4rem;
  width: auto;
  background: rgba(12, 53, 80, 0.94);
}

.hero-stage-card .label {
  display: block;
  margin-bottom: 0.4rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stage-card strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  line-height: 1.35;
}

.hero-stage-card a {
  color: #fff;
}

.hero-signal-grid {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 0.7rem;
  margin-top: 1rem;
}

.signal-card {
  min-width: 0;
  padding: 0.8rem 0.85rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.signal-card span {
  display: block;
  margin-bottom: 0.18rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-card strong,
.signal-card a {
  display: block;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (min-width: 1280px) {
  .hero-grid {
    grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    align-items: stretch;
    gap: 1.6rem;
  }

  .hero-stage .hero-visual {
    min-height: 620px;
  }
}

@media (min-width: 1680px) {
  :root {
    --max: 1480px;
  }

  .hero-stage .hero-visual {
    min-height: 680px;
  }
}

.card,
.stat,
.cta-band,
.quote-panel,
.table-wrap,
.page-intro {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.page-hero {
  --page-hero-image: linear-gradient(135deg, rgba(18, 79, 118, 0.35), rgba(12, 53, 80, 0.82));
  position: relative;
  padding: 3.2rem 0 1.55rem;
  overflow: clip;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 23, 38, 0.82) 0%, rgba(10, 34, 55, 0.74) 34%, rgba(10, 34, 55, 0.5) 63%, rgba(10, 34, 55, 0.68) 100%),
    linear-gradient(180deg, rgba(5, 16, 29, 0.12), rgba(5, 16, 29, 0.4)),
    var(--page-hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.18), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0));
  pointer-events: none;
}

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

.page-intro {
  padding: 1.7rem;
  background:
    radial-gradient(circle at top right, rgba(18, 79, 118, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 242, 236, 0.88));
}

.page-hero .page-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.9fr);
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: clamp(480px, 56vw, 620px);
  padding: clamp(1.6rem, 2.8vw, 3rem) 0;
  background: none;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.page-hero .page-intro > .eyebrow,
.page-hero .page-intro > h1,
.page-hero .page-intro > .hero-copy {
  grid-column: 1 / -1;
  justify-self: start;
}

.page-hero .page-intro > .eyebrow {
  width: auto;
  max-width: max-content;
}

.page-hero .page-intro > h1 {
  max-width: 11.5ch;
}

.page-hero .page-intro > .hero-copy {
  max-width: 60ch;
}

.page-hero-copy-wrap {
  max-width: 39rem;
  color: #fff;
}

.page-hero .eyebrow {
  margin-bottom: 1.15rem;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.page-hero .page-intro h1 {
  max-width: 10.5ch;
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: clamp(2.55rem, 4.25vw, 5.15rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.page-hero .hero-copy {
  max-width: 58ch;
  color: rgba(244, 247, 251, 0.84);
  font-size: clamp(1rem, 0.45vw + 0.96rem, 1.16rem);
  line-height: 1.72;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.page-hero-actions .button {
  min-width: 11.5rem;
}

.page-hero-actions .button.button-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.page-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.page-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  padding: 0.62rem 0.86rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.page-hero-tag::before {
  content: "";
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(247, 127, 0, 0.14);
}

.page-hero-form-card {
  width: min(100%, 31rem);
  margin-left: auto;
  padding: 1.6rem;
  border-radius: 28px;
  background: rgba(252, 250, 246, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.48);
  box-shadow: 0 28px 72px rgba(6, 24, 39, 0.3);
}

.page-hero-form-kicker {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--brand);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-form-card h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.34rem, 0.55vw + 1.2rem, 1.65rem);
  line-height: 1.12;
}

.page-hero-form-card p {
  margin-bottom: 1rem;
  color: var(--muted);
  font-size: 0.96rem;
}

.page-hero-form {
  display: grid;
  gap: 0.78rem;
}

.page-hero-form label {
  display: block;
  margin-bottom: 0.32rem;
  color: var(--brand-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-hero-form input,
.page-hero-form select {
  background: rgba(255, 255, 255, 0.96);
}

.page-hero-form button {
  width: 100%;
  margin-top: 0.15rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  margin-top: 0.9rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.55;
  border: 1px solid rgba(12, 53, 80, 0.12);
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
}

.form-status.is-loading {
  background: rgba(18, 79, 118, 0.08);
  color: var(--brand-dark);
}

.form-status.is-success {
  background: rgba(47, 125, 82, 0.12);
  border-color: rgba(47, 125, 82, 0.28);
  color: #205538;
}

.form-status.is-error {
  background: rgba(185, 67, 48, 0.1);
  border-color: rgba(185, 67, 48, 0.24);
  color: #7d2e22;
}

.page-hero-form-note {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.55;
}

.page-hero-form-note a {
  color: var(--brand-dark);
  font-weight: 700;
}

.hero-panel,
.quote-panel {
  padding: 1.55rem;
}

.hero-panel {
  background: linear-gradient(180deg, #0f2d45, #174d73);
  color: #fff;
  border-radius: 24px;
  box-shadow: 0 28px 65px rgba(8, 61, 115, 0.3);
}

.hero-panel ul {
  padding-left: 1rem;
}

.hero-panel li + li {
  margin-top: 0.7rem;
}

.hero-visual,
.media-card img,
.spec-visual img {
  width: 100%;
  border-radius: 20px;
  border: 1px solid rgba(23, 48, 71, 0.08);
  box-shadow: var(--shadow);
  display: block;
}

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

.media-card img {
  aspect-ratio: 16 / 11;
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at top right, rgba(18, 79, 118, 0.06), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 234, 0.94));
  padding: 0.9rem;
  margin-bottom: 1rem;
}

.spec-visual {
  margin-top: 1.25rem;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.35rem 0.72rem;
  border-radius: 999px;
  background: rgba(18, 79, 118, 0.08);
  border: 1px solid rgba(18, 79, 118, 0.1);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-products .product-catalog-grid {
  margin-top: 0.35rem;
}

.page-products .media-card {
  min-height: 100%;
  padding: 1rem;
}

.page-products .media-card img {
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  margin-bottom: 1.15rem;
}

.page-products .media-card p {
  max-width: 30ch;
}

.selection-feature {
  display: grid;
  gap: clamp(1.15rem, 2vw, 1.8rem);
}

.selection-feature-title {
  width: 100%;
  max-width: none;
  margin-bottom: 0.15rem;
}

.selection-feature-title .section-kicker {
  margin-bottom: 0.3rem;
}

.selection-feature-grid {
  display: block;
}

.editorial-content {
  display: grid;
  gap: 1rem;
}

.selection-data-panel {
  align-self: stretch;
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.page-products .table-wrap {
  width: 100%;
  padding: 0.35rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 235, 0.92));
}

.page-products table {
  overflow: hidden;
  border-radius: 22px;
}

.page-products th,
.page-products td {
  padding: 1.12rem 1.1rem;
}

.page-products th {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.spec-visual-inline {
  width: 100%;
  margin-top: 0;
}

.spec-visual-inline img {
  max-width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 241, 234, 0.94));
}

.home-value-flow {
  display: grid;
  gap: clamp(1.25rem, 2vw, 2rem);
}

.home-feature-grid {
  gap: clamp(1rem, 1.6vw, 1.35rem);
}

.home-feature-card {
  min-height: 100%;
}

.home-feature-icon {
  width: 30px;
  height: 30px;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
  opacity: 0.92;
}

.home-feature-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(1rem, 1.6vw, 1.35rem);
}

.home-bento-card {
  min-height: 220px;
}

.home-bento-card-image {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  padding: 0;
}

.home-bento-card-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 30%, rgba(255, 255, 255, 0) 52%);
  pointer-events: none;
}

.home-bento-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
}

.home-bento-overlay {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: min(36%, 390px);
  padding: clamp(1.65rem, 1.7vw, 2.3rem);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.92) 44%, rgba(255, 255, 255, 0.12) 76%, rgba(255, 255, 255, 0) 100%);
}

.home-bento-overlay h3 {
  color: #1A365D;
  font-size: clamp(1.9rem, 1.2vw + 1.3rem, 2.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 9ch;
}

.home-bento-overlay p {
  color: rgba(31, 41, 55, 0.92);
  line-height: 1.7;
  max-width: 24ch;
}

.home-bento-overlay .helper a {
  color: #2563eb;
  font-weight: 600;
}

.home-bento-overlay .helper a:hover {
  text-decoration: underline;
}

.home-bento-card-large {
  grid-row: span 2;
  min-height: 100%;
  padding-bottom: 2rem;
}

.home-bento-card-large h3 {
  max-width: 10ch;
}

.home-bento-card p {
  max-width: 30ch;
}

.home-cta-band {
  width: 100%;
  margin-top: 0;
  background: #1A365D;
  border-color: rgba(255, 255, 255, 0.08);
}

.home-cta-band .button.button-primary {
  background: #fff;
  color: #1A365D !important;
  border-color: rgba(255, 255, 255, 0.25);
}

.home-cta-band .button.button-primary:hover {
  background: rgba(255, 255, 255, 0.92);
  color: #1A365D !important;
}

.home-application-grid {
  gap: clamp(1rem, 1.6vw, 1.35rem);
}

.home-application-card {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.home-application-icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(219, 232, 239, 0.95), rgba(233, 239, 244, 0.88));
  border: 1px solid rgba(18, 79, 118, 0.08);
}

.home-application-card strong {
  display: block;
  margin-bottom: 0.45rem;
}

.home-application-card span {
  display: block;
  color: var(--muted);
  line-height: 1.6;
}

.insight-grid .card,
.product-proof-grid .card {
  min-height: 100%;
}

.insight-grid .card {
  padding-top: 1.55rem;
}

.product-proof-grid .card:nth-child(2) {
  background: linear-gradient(180deg, rgba(12, 53, 80, 0.98), rgba(18, 79, 118, 0.94));
  border-color: rgba(18, 79, 118, 0.22);
  color: #fff;
}

.product-proof-grid .card:nth-child(2) p {
  color: rgba(244, 247, 251, 0.82);
}

.product-proof-grid .card:nth-child(2):hover {
  border-color: rgba(242, 145, 61, 0.34);
}

.page-products .cert-spotlight {
  padding: clamp(1.4rem, 1.2vw + 1rem, 2rem);
  border-radius: 30px;
}

.page-products .cta-band {
  margin-top: 0;
}

.applications-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.82fr);
  gap: clamp(1.3rem, 2.2vw, 2.8rem);
  align-items: center;
}

.applications-feature-copy {
  display: grid;
  gap: 1.35rem;
}

.applications-feature-title {
  margin-bottom: 0;
}

.applications-feature-list {
  display: grid;
  gap: 1rem;
}

.applications-feature-item {
  padding: 0 0 0 1.35rem;
  position: relative;
}

.applications-feature-item::before {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffb067);
  box-shadow: 0 0 0 6px rgba(242, 145, 61, 0.12);
}

.applications-feature-item strong {
  display: block;
  margin-bottom: 0.42rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(1.02rem, 0.45vw + 0.92rem, 1.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.applications-feature-item p {
  margin: 0;
  max-width: 34ch;
  color: var(--muted);
  line-height: 1.7;
}

.applications-feature-media img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  border: 1px solid rgba(23, 48, 71, 0.08);
  box-shadow: 0 24px 56px rgba(12, 53, 80, 0.1);
  display: block;
}

.section {
  padding: 3rem 0;
  position: relative;
}

.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  width: 100%;
  max-width: min(1160px, 100%);
  margin-inline: auto;
  margin-bottom: 2.35rem;
  padding: 0 1rem;
  text-align: center;
}

.section-title::before {
  display: none;
}

.section-title h2 {
  margin-bottom: 0;
  font-size: clamp(2.15rem, 1.35vw + 1.35rem, 3.55rem);
  max-width: min(100%, 18ch);
  margin-inline: auto;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}

.section-title p {
  color: var(--muted);
  max-width: min(100%, 78ch);
  margin-inline: auto;
  font-size: clamp(0.98rem, 0.2vw + 0.96rem, 1.06rem);
  line-height: 1.68;
}

.card,
.stat {
  padding: clamp(1.35rem, 0.85vw + 1.05rem, 1.95rem);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 245, 240, 0.92));
  border-color: rgba(17, 44, 67, 0.08);
  box-shadow: 0 18px 40px rgba(12, 53, 80, 0.07);
}

.card:hover,
.stat:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(12, 53, 80, 0.1);
  border-color: rgba(18, 79, 118, 0.14);
}

.card h2,
.card h3,
.stat strong {
  margin-bottom: 0.78rem;
  display: block;
}

.card h2,
.card h3,
.contact-card h2,
.contact-card h3 {
  font-size: clamp(1.24rem, 0.72rem + 0.82vw, 1.78rem);
  max-width: 15ch;
  line-height: 1.08;
  letter-spacing: -0.028em;
  text-wrap: balance;
}

.stat strong {
  font-size: clamp(1.12rem, 0.95rem + 0.5vw, 1.45rem);
  max-width: 14ch;
  line-height: 1.14;
  letter-spacing: -0.018em;
  text-wrap: balance;
}

.card p,
.card li,
.card ol,
.card ul {
  color: var(--muted);
}

.stat {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 240, 233, 0.92));
}

.stat span {
  display: block;
  color: var(--muted);
}

.proof-grid {
  margin-top: 1.25rem;
}

.proof-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 244, 239, 0.9));
}

.trust-section {
  display: grid;
  gap: 1.6rem;
}

.trust-section-title {
  margin-bottom: 0.35rem;
}

.trust-grid-top,
.trust-grid-bottom {
  gap: clamp(1rem, 1.45vw, 1.35rem);
}

.trust-feature-card,
.trust-detail-card {
  min-height: 100%;
  padding: clamp(1.35rem, 0.8vw + 1.1rem, 1.8rem);
}

.trust-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 0.75rem;
  color: var(--brand-dark);
  opacity: 0.94;
}

.trust-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.trust-feature-card h3,
.trust-detail-card h3 {
  max-width: 12ch;
  margin-bottom: 0.75rem;
}

.trust-feature-card p {
  max-width: 31ch;
}

.trust-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.trust-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--brand-dark);
  line-height: 1.55;
}

.trust-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.38rem;
  width: 1rem;
  height: 1rem;
  border-radius: 999px;
  border: 1.7px solid rgba(12, 53, 80, 0.8);
}

.trust-list li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.7rem;
  width: 0.4rem;
  height: 0.08rem;
  background: rgba(12, 53, 80, 0.8);
}

.trust-list-check li::before {
  border-radius: 0;
  border: 0;
  width: 0.8rem;
  height: 0.4rem;
  top: 0.5rem;
  left: 0.1rem;
  border-left: 2px solid rgba(12, 53, 80, 0.9);
  border-bottom: 2px solid rgba(12, 53, 80, 0.9);
  transform: rotate(-45deg);
}

.trust-list-check li::after {
  display: none;
}

.list-check {
  list-style: none;
  padding: 0;
}

.list-check li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
}

.list-check li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.cta-band {
  padding: 1.55rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  background:
    linear-gradient(135deg, rgba(12, 53, 80, 0.95), rgba(18, 79, 118, 0.92)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  color: #fff;
  border-color: rgba(18, 79, 118, 0.22);
}

.cta-band strong {
  display: block;
  margin-bottom: 0.35rem;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1.05rem;
}

.cta-band .helper,
.cta-band a {
  color: rgba(255, 255, 255, 0.86);
}

.table-wrap {
  overflow-x: auto;
  background: rgba(255, 255, 255, 0.76);
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1rem;
  border-bottom: 1px solid rgba(23, 48, 71, 0.08);
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(219, 232, 239, 0.55);
  color: var(--brand-dark);
}

form {
  display: grid;
  gap: 0.95rem;
}

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

.quote-panel {
  background:
    radial-gradient(circle at top right, rgba(18, 79, 118, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 244, 239, 0.92));
}

.quote-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.quote-actions .button {
  flex-shrink: 0;
}

.contact-sidebar {
  display: grid;
  gap: 1rem;
  align-self: start;
  position: sticky;
  top: 6.6rem;
}

.contact-card {
  padding: 1.4rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(23, 48, 71, 0.08);
  box-shadow: var(--shadow);
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 0.75rem;
}

.contact-card p:last-child,
.contact-card ul:last-child,
.contact-card ol:last-child {
  margin-bottom: 0;
}

.contact-card .button {
  margin-top: 0.35rem;
}

label {
  font-weight: 800;
  font-size: 0.94rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.92rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(23, 48, 71, 0.12);
  font: inherit;
  color: var(--text);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #7c8a98;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(18, 79, 118, 0.55);
  box-shadow: 0 0 0 4px rgba(18, 79, 118, 0.12);
  background: #fff;
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item h2 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.helper {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.section-link {
  margin-top: 1rem;
}

.site-footer {
  padding: 2.2rem 0 3rem;
  color: var(--muted);
}

.xpress-chatbot {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 30;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.xpress-chatbot-toggle {
  position: relative;
  width: 86px;
  height: 86px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.22s ease;
}

.xpress-chatbot-toggle:hover {
  transform: translateY(-2px) scale(1.03);
}

.xpress-chatbot-toggle[aria-expanded="true"] {
  transform: scale(0.97);
}

.xpress-chatbot-toggle::before {
  display: none;
}

.xpress-chatbot-toggle::after {
  display: none;
}

.xpress-chatbot-badge {
  display: none;
}

.xpress-chatbot-avatar {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 0;
  filter: drop-shadow(0 16px 28px rgba(3, 10, 26, 0.34));
  animation: chatbot-float 3.2s ease-in-out infinite;
}

.xpress-chatbot-panel {
  width: min(360px, calc(100vw - 1.5rem));
  border-radius: 28px;
  border: 1px solid rgba(23, 48, 71, 0.12);
  background:
    radial-gradient(circle at top right, rgba(18, 79, 118, 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 241, 234, 0.96));
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  transform-origin: bottom right;
  animation: chatbot-rise 0.25s ease;
}

.xpress-chatbot-panel[hidden] {
  display: none;
}

.xpress-chatbot-header {
  padding: 1rem 1rem 0.9rem;
  background: linear-gradient(135deg, rgba(12, 53, 80, 0.96), rgba(18, 79, 118, 0.9));
  color: #fff;
}

.xpress-chatbot-brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.xpress-chatbot-brand img {
  width: 64px;
  height: 64px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 10px 18px rgba(6, 20, 47, 0.26));
}

.xpress-chatbot-brand strong {
  display: block;
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 1rem;
}

.xpress-chatbot-brand span {
  display: block;
  margin-top: 0.2rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.86rem;
  line-height: 1.45;
}

.xpress-chatbot-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.8rem;
  padding: 0.36rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.xpress-chatbot-status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #7bf2bf;
  box-shadow: 0 0 0 0 rgba(123, 242, 191, 0.42);
  animation: chatbot-status 1.8s ease-in-out infinite;
}

.xpress-chatbot-body {
  padding: 0.95rem;
}

.xpress-chatbot-messages {
  display: grid;
  gap: 0.7rem;
  max-height: 280px;
  overflow-y: auto;
  padding-right: 0.2rem;
}

.xpress-chatbot-message {
  max-width: 92%;
  padding: 0.8rem 0.95rem;
  border-radius: 18px;
  font-size: 0.93rem;
  line-height: 1.55;
}

.xpress-chatbot-message.user {
  justify-self: end;
  background: rgba(18, 79, 118, 0.1);
  color: var(--brand-dark);
}

.xpress-chatbot-message.bot {
  justify-self: start;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 48, 71, 0.08);
  color: var(--text);
}

.xpress-chatbot-message.bot a {
  color: var(--brand-dark);
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.xpress-chatbot-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.95rem;
}

.xpress-chatbot-chip {
  padding: 0.62rem 0.82rem;
  border: 1px solid rgba(18, 79, 118, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.xpress-chatbot-chip:hover {
  background: rgba(18, 79, 118, 0.08);
  transform: translateY(-1px);
}

.xpress-chatbot-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  margin-top: 0.95rem;
}

.xpress-chatbot-input {
  min-width: 0;
  margin: 0;
}

.xpress-chatbot-send {
  padding-inline: 1rem;
}

.xpress-chatbot-typing {
  display: inline-flex;
  gap: 0.28rem;
  align-items: center;
}

.xpress-chatbot-typing span {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(18, 79, 118, 0.46);
  animation: chatbot-dot 1.2s ease-in-out infinite;
}

.xpress-chatbot-typing span:nth-child(2) {
  animation-delay: 0.16s;
}

.xpress-chatbot-typing span:nth-child(3) {
  animation-delay: 0.32s;
}

@keyframes chatbot-rise {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes chatbot-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-4px) rotate(-2deg);
  }
}

@keyframes chatbot-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.65;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.15;
  }
}

@keyframes chatbot-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }

  40% {
    transform: translateY(-2px);
    opacity: 1;
  }
}

@keyframes chatbot-status {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(123, 242, 191, 0.42);
    opacity: 1;
  }

  50% {
    box-shadow: 0 0 0 8px rgba(123, 242, 191, 0);
    opacity: 0.82;
  }
}

.footer-box {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(23, 48, 71, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-box > div:last-child {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.site-footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.5rem;
  font-weight: 700;
}

.site-footer-contact span {
  color: rgba(23, 48, 71, 0.34);
}

.footer-box a:hover {
  color: var(--brand-dark);
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    gap: 0.18rem;
  }

  .nav > a:not(.button):not(.lang-switch):not(.lang-toggle) {
    padding-inline: 0.75rem;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 4.6vw, 4.2rem);
    max-width: 12.5ch;
    line-height: 1.09;
  }

  .page-intro h1 {
    font-size: clamp(1.95rem, 2.7vw + 0.7rem, 3.15rem);
    max-width: 20ch;
  }

  .page-hero .page-intro {
    grid-template-columns: minmax(0, 0.94fr) minmax(360px, 0.84fr);
    min-height: clamp(440px, 62vw, 580px);
  }

  .page-hero .page-intro h1 {
    max-width: 11.5ch;
    font-size: clamp(2.3rem, 4vw, 4.45rem);
  }

  .section-title h2 {
    max-width: 17ch;
  }

  .selection-feature-grid {
    grid-template-columns: minmax(240px, 0.88fr) minmax(0, 1.12fr);
  }

  .applications-feature {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  }

  .home-bento-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  }

  .home-bento-overlay {
    width: min(46%, 440px);
  }

  .hero-badges {
    grid-template-columns: repeat(3, minmax(8.3rem, 1fr));
    max-width: min(100%, 31rem);
  }

  .hero-badges .hero-badge-wide {
    grid-column: 1 / -1;
    max-width: 14.5rem;
  }
}

@media (max-width: 980px) {
  .header-inner {
    align-items: center;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 5.4vw, 3.9rem);
    max-width: 12.8ch;
  }

  .page-intro h1 {
    font-size: clamp(1.85rem, 3.9vw, 2.85rem);
    max-width: 18.5ch;
    line-height: 1.1;
  }

  .page-hero {
    padding: 2.35rem 0 1.35rem;
  }

  .page-hero .page-intro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 2rem 0 0;
  }

  .page-hero .page-intro h1 {
    max-width: 13ch;
    font-size: clamp(2.18rem, 6vw, 3.7rem);
  }

  .cert-marquee-item {
    min-width: 210px;
  }

  .page-hero-copy-wrap {
    max-width: 100%;
  }

  .page-hero-form-card {
    width: min(100%, 28rem);
    margin-left: 0;
  }

  .section-title h2 {
    font-size: clamp(1.72rem, 3vw, 2.55rem);
    max-width: 16.5ch;
  }

  .trust-feature-card h3,
  .trust-detail-card h3 {
    max-width: 100%;
  }

  .selection-feature-grid {
    grid-template-columns: 1fr;
  }

  .applications-feature {
    grid-template-columns: 1fr;
  }

  .home-bento-grid {
    grid-template-columns: 1fr;
  }

  .home-bento-card-large {
    grid-row: auto;
  }

  .home-bento-card-image {
    min-height: 420px;
  }

  .home-bento-overlay {
    width: min(48%, 400px);
  }

  .card h2,
  .card h3,
  .contact-card h2,
  .contact-card h3 {
    max-width: 100%;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

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

  .nav > a:not(.button):not(.lang-switch):not(.lang-toggle),
  .nav-actions,
  .nav .button,
  .lang-toggle,
  .lang-switch {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }

  .nav-actions {
    flex-direction: column;
    gap: 0.55rem;
    margin-left: 0;
  }

  .lang-dropdown,
  .lang-menu,
  .nav-cta {
    width: 100%;
  }

  .lang-menu {
    position: static;
    margin-top: 0.45rem;
    box-shadow: none;
  }

  .contact-sidebar {
    position: static;
  }
}

@media (max-width: 860px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-grid,
  .trust-ribbon {
    grid-template-columns: 1fr;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .cert-spotlight {
    flex-direction: column;
    align-items: flex-start;
  }

  .cert-spotlight-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .page-products .media-card,
  .insight-grid .card,
  .product-proof-grid .card {
    padding: 1.15rem;
  }

  .home-application-card {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 0.85rem;
  }

  .home-feature-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 0.65rem;
  }

  .home-bento-card-image {
    min-height: 360px;
  }

  .home-bento-overlay {
    width: min(62%, 360px);
    padding: 1.2rem;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0.65rem;
  }

  .applications-feature-copy {
    gap: 1rem;
  }

  .hero-stage .hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 640px) {
  .logo-mark {
    width: 72px;
    height: 72px;
  }

  .hero {
    padding-top: 4.3rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 8.8vw, 3.15rem);
    max-width: 100%;
    line-height: 1.1;
    text-wrap: pretty;
  }

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

  .hero-badges span,
  .eyebrow {
    white-space: normal;
  }

  .hero-badges span {
    width: 100%;
    min-width: 0;
  }

  .hero-badges .hero-badge-wide {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .page-intro h1 {
    font-size: clamp(1.82rem, 7vw, 2.7rem);
    max-width: 100%;
    line-height: 1.12;
    text-wrap: pretty;
  }

  .page-hero {
    padding: 1.8rem 0 1rem;
  }

  .page-hero .page-intro {
    gap: 1.25rem;
    padding-top: 1.65rem;
  }

  .page-hero .page-intro h1 {
    max-width: 100%;
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1.04;
    text-wrap: pretty;
  }

  .page-hero .hero-copy {
    font-size: 0.98rem;
    line-height: 1.66;
  }

  .cert-logo-grid {
    grid-template-columns: 1fr;
  }

  .cert-marquee {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .cert-marquee-item,
  .cert-spotlight .button,
  .cert-download-card .button {
    width: 100%;
  }

  .page-hero-actions .button,
  .page-hero-form-card {
    width: 100%;
  }

  .page-hero-form-card {
    padding: 1.2rem;
    border-radius: 22px;
  }

  .page-hero-tag {
    width: 100%;
    justify-content: flex-start;
  }

  .section-title h2,
  .card h2,
  .card h3,
  .contact-card h2,
  .contact-card h3,
  .stat strong {
    max-width: 100%;
    text-wrap: pretty;
  }

  .section-kicker {
    white-space: normal;
  }

  .trust-list li {
    padding-left: 1.75rem;
  }

  .applications-feature-media img {
    aspect-ratio: 4 / 3.2;
  }

  .mobile-stack-table,
  .mobile-stack-table thead,
  .mobile-stack-table tbody,
  .mobile-stack-table tr,
  .mobile-stack-table th,
  .mobile-stack-table td {
    display: block;
    width: 100%;
  }

  .mobile-stack-table {
    border-collapse: separate;
    background: transparent;
  }

  .mobile-stack-table thead {
    display: none;
  }

  .mobile-stack-table tbody {
    display: grid;
    gap: 0.85rem;
  }

  .mobile-stack-table tr {
    padding: 0.1rem;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 242, 236, 0.94));
    border: 1px solid rgba(23, 48, 71, 0.08);
    box-shadow: 0 10px 26px rgba(12, 53, 80, 0.06);
    overflow: hidden;
  }

  .mobile-stack-table td {
    padding: 0.7rem 0.9rem 0.8rem;
    border-bottom: 1px solid rgba(23, 48, 71, 0.08);
    text-align: left;
    font-size: 0.94rem;
    line-height: 1.58;
  }

  .mobile-stack-table td:last-child {
    border-bottom: 0;
  }

  .mobile-stack-table td::before {
    content: attr(data-label);
    display: block;
    margin-bottom: 0.28rem;
    color: var(--brand-dark);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .hero-stage {
    padding: 0.9rem;
  }

  .hero-stage-card {
    position: static;
    width: 100%;
    margin-top: 0.9rem;
  }

  .hero-stage-card.bottom,
  .hero-stage-card.top {
    max-width: 100%;
  }

  .hero-stage .hero-visual {
    min-height: 300px;
  }

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

  .button,
  .hero-actions .button {
    width: 100%;
  }

  .quote-actions {
    align-items: stretch;
  }

  .quote-actions .button {
    width: 100%;
  }

  .xpress-chatbot {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .xpress-chatbot-toggle {
    width: 76px;
    height: 76px;
  }

  .xpress-chatbot-brand img {
    width: 50px;
    height: 50px;
  }
}

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

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