:root {
  --ink: #111b34;
  --ink-soft: #5a667d;
  --paper: #f7f8fb;
  --paper-2: #edf1f6;
  --white: #ffffff;
  --brand-950: #07132f;
  --brand-900: #0e1f50;
  --brand-800: #152b63;
  --brand-700: #203b78;
  --brand-600: #31558f;
  --brand-100: #dbe3f1;
  --brand-50: #f0f3f8;
  --accent: #d2dae6;
  --logo-panel: #0e1f50;
  --accent-strong: #b6c2d4;
  --warning: #aab4c4;
  --border: rgba(17, 27, 52, 0.14);
  --border-dark: rgba(255, 255, 255, 0.16);
  --shadow-sm: 0 8px 22px rgba(14, 31, 80, 0.08);
  --shadow-md: 0 18px 50px rgba(14, 31, 80, 0.14);
  --shadow-lg: 0 35px 90px rgba(7, 19, 47, 0.24);
  --radius-sm: 11px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: 1180px;
  --header-h: 88px;
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  background: var(--paper);
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

a:hover {
  text-decoration-thickness: 0.12em;
}

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

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

button {
  cursor: pointer;
}

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

::selection {
  color: var(--brand-950);
  background: var(--accent);
}

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

.section {
  position: relative;
  padding: clamp(76px, 9vw, 126px) 0;
}

.section-tight {
  padding: clamp(52px, 6vw, 82px) 0;
}

.section-dark {
  color: var(--white);
  background:
    radial-gradient(circle at 92% 8%, rgba(210, 218, 230, 0.14), transparent 24rem),
    linear-gradient(140deg, var(--brand-950), #050d22 72%);
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  color: var(--brand-950);
  background: var(--accent);
  font-weight: 800;
  transition: transform 180ms ease;
}

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

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

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-h);
  border-bottom: 1px solid transparent;
  background: rgba(247, 248, 244, 0.88);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--border);
  background: rgba(247, 248, 244, 0.96);
  box-shadow: 0 8px 26px rgba(14, 31, 80, 0.07);
}

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

.brand {
  position: relative;
  z-index: 1002;
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  flex: 0 0 auto;
  border-radius: 16px;
  background: var(--logo-panel);
  box-shadow: 0 14px 34px rgba(3, 18, 49, 0.18);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.brand:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 36px rgba(3, 18, 49, 0.22);
}

.brand img {
  width: 188px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 30px);
}

.primary-nav > a:not(.button) {
  position: relative;
  color: var(--ink);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brand-700);
  content: "";
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  position: relative;
  z-index: 1002;
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.language-switch:hover {
  border-color: var(--brand-700);
  background: var(--brand-50);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  border-radius: 2px;
  background: var(--ink);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.nav-toggle-lines::before {
  position: absolute;
  top: -6px;
  left: 0;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 6px;
  left: 0;
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  z-index: 998;
  inset: 0;
  display: none;
  background: rgba(7, 19, 47, 0.52);
  backdrop-filter: blur(3px);
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 12px 22px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.button-primary {
  color: var(--brand-950);
  background: var(--accent);
  box-shadow: 0 12px 30px rgba(210, 218, 230, 0.2);
}

.button-primary:hover {
  background: var(--accent-strong);
  box-shadow: 0 15px 34px rgba(210, 218, 230, 0.28);
}

.button-dark {
  color: var(--white);
  background: var(--brand-950);
  box-shadow: 0 12px 30px rgba(14, 31, 80, 0.18);
}

.button-dark:hover {
  background: var(--brand-800);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.72);
}

.button-ghost:hover {
  border-color: rgba(32, 59, 120, 0.5);
  background: var(--white);
}

.button-light {
  color: var(--brand-950);
  background: var(--white);
}

.button svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

/* Typography */
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  gap: 10px;
  color: var(--brand-700);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 6px rgba(182, 194, 212, 0.16);
  content: "";
}

.section-dark .eyebrow {
  color: var(--accent);
}

.section-title {
  max-width: 840px;
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.35rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.section-title.small {
  font-size: clamp(1.85rem, 3.5vw, 3.25rem);
}

.section-lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
}

.section-dark .section-lead {
  color: rgba(255, 255, 255, 0.74);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(38px, 5vw, 62px);
  gap: 40px;
}

.section-head-copy {
  max-width: 820px;
}

.section-kicker {
  max-width: 360px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
}

.section-dark .section-kicker {
  color: rgba(255, 255, 255, 0.68);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(54px, 7vw, 96px) 0 clamp(74px, 9vw, 124px);
  background:
    radial-gradient(circle at 80% 18%, rgba(210, 218, 230, 0.25), transparent 22rem),
    radial-gradient(circle at 20% 12%, rgba(49, 85, 143, 0.09), transparent 24rem),
    var(--paper);
}

.hero::after {
  position: absolute;
  right: -18vw;
  bottom: -36vw;
  width: 70vw;
  height: 70vw;
  border: 1px solid rgba(32, 59, 120, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(32, 59, 120, 0.025), 0 0 0 160px rgba(32, 59, 120, 0.018);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  align-items: center;
  gap: clamp(42px, 6vw, 90px);
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3rem, 6.4vw, 6.4rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.93;
}

.hero h1 em {
  color: var(--brand-700);
  font-style: normal;
}

.hero-lead {
  max-width: 710px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
  line-height: 1.6;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 32px 0 0;
  gap: 12px;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  color: var(--brand-700);
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-visual-main {
  position: absolute;
  inset: 10px 0 26px 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 44px;
  background: var(--brand-950);
  box-shadow: var(--shadow-lg);
}

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

.cat3-badge {
  position: absolute;
  z-index: 2;
  top: -22px;
  right: -18px;
  display: grid;
  width: 138px;
  height: 138px;
  place-items: center;
  border: 10px solid var(--paper);
  border-radius: 50%;
  color: var(--brand-950);
  background: var(--accent);
  box-shadow: var(--shadow-md);
  transform: rotate(7deg);
}

.cat3-badge strong {
  display: block;
  font-size: 3.5rem;
  font-weight: 950;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.cat3-badge span {
  display: block;
  margin-top: 8px;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.hero-info-card {
  position: absolute;
  z-index: 3;
  right: -20px;
  bottom: 0;
  width: min(360px, 84%);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.hero-info-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  gap: 12px;
}

.hero-info-card-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-950);
  background: var(--accent);
}

.hero-info-card-icon svg {
  width: 21px;
  height: 21px;
}

.hero-info-card strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.35;
}

.hero-info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Entity answer */
.entity-answer {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.entity-answer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: clamp(24px, 3vw, 34px);
  gap: 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--brand-900);
  box-shadow: var(--shadow-md);
}

.entity-answer-mark {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  border-radius: 22px;
  color: var(--brand-950);
  background: var(--accent);
  font-size: 2.3rem;
  font-weight: 950;
}

.entity-answer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.entity-answer strong {
  color: var(--white);
}

/* Cards */
.cards-3,
.cards-4,
.cards-5 {
  display: grid;
  gap: 20px;
}

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

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

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

.feature-card,
.material-card,
.audience-card,
.equipment-card {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.material-card:hover,
.audience-card:hover,
.equipment-card:hover {
  transform: translateY(-5px);
  border-color: rgba(32, 59, 120, 0.32);
  box-shadow: var(--shadow-md);
}

.feature-card {
  padding: 30px;
}

.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 26px;
  border-radius: 14px;
  color: var(--brand-950);
  background: var(--accent);
  font-size: 0.9rem;
  font-weight: 950;
}

.feature-card h3,
.material-card h3,
.audience-card h3,
.equipment-card h3 {
  margin: 0;
  font-size: 1.23rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.feature-card p,
.material-card p,
.audience-card p,
.equipment-card p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.audience-card {
  padding: 24px;
}

.audience-card-icon,
.material-card-icon,
.equipment-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-700);
  background: var(--brand-50);
}

.audience-card-icon svg,
.material-card-icon svg,
.equipment-card-icon svg {
  width: 27px;
  height: 27px;
}

.material-card {
  padding: 30px;
}

.material-card::after {
  position: absolute;
  right: -34px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(210, 218, 230, 0.16);
  content: "";
}

.card-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.card-list li {
  position: relative;
  padding-left: 23px;
  margin-top: 9px;
  color: var(--ink-soft);
  font-size: 0.93rem;
}

.card-list li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-600);
  content: "";
}

.note-box {
  display: flex;
  align-items: flex-start;
  padding: 22px 24px;
  margin-top: 26px;
  gap: 14px;
  border: 1px solid rgba(255, 204, 102, 0.5);
  border-radius: var(--radius-md);
  background: rgba(255, 244, 219, 0.78);
  color: #5d4217;
}

.note-box svg {
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  margin-top: 2px;
}

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

/* Equipment */
.equipment-card {
  padding: 22px;
}

.equipment-card h3 {
  font-size: 1.02rem;
}

.equipment-card p {
  font-size: 0.88rem;
}

/* Split sections */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
}

.split.reverse {
  grid-template-columns: minmax(0, 1.07fr) minmax(0, 0.93fr);
}

.split-visual {
  position: relative;
  min-height: 520px;
  border-radius: var(--radius-lg);
  background: var(--brand-900);
  box-shadow: var(--shadow-lg);
}

.split-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: inherit;
  object-fit: cover;
}

.split-copy .section-title {
  font-size: clamp(2.1rem, 4vw, 4rem);
}

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

.check-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  margin-top: 18px;
  gap: 14px;
}

.check-list-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-950);
  background: var(--accent);
}

.check-list-icon svg {
  width: 17px;
  height: 17px;
}

.check-list strong {
  display: block;
  margin-bottom: 3px;
  font-size: 1rem;
}

.check-list span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

/* Process */
.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.process-grid::before {
  position: absolute;
  top: 29px;
  right: 8%;
  left: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand-100), var(--brand-600), var(--accent-strong));
  content: "";
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 10px;
}

.process-step-number {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  place-items: center;
  border: 8px solid var(--paper-2);
  border-radius: 50%;
  color: var(--brand-950);
  background: var(--accent);
  font-size: 0.83rem;
  font-weight: 950;
  box-shadow: 0 0 0 1px rgba(32, 59, 120, 0.18);
}

.process-step h3 {
  margin: 0;
  font-size: 1.06rem;
  font-weight: 900;
  line-height: 1.3;
}

.process-step p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* Compliance */
.compliance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(42px, 7vw, 92px);
}

.compliance-highlight {
  position: sticky;
  top: calc(var(--header-h) + 28px);
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.compliance-highlight-number {
  display: block;
  color: var(--accent);
  font-size: clamp(4.8rem, 11vw, 9.4rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.82;
}

.compliance-highlight h3 {
  margin: 28px 0 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.12;
}

.compliance-highlight p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.compliance-list {
  display: grid;
  gap: 16px;
}

.compliance-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  padding: 24px;
  gap: 18px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
}

.compliance-item-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border-radius: 16px;
  color: var(--brand-950);
  background: var(--accent);
}

.compliance-item-icon svg {
  width: 25px;
  height: 25px;
}

.compliance-item h3 {
  margin: 0;
  font-size: 1.13rem;
}

.compliance-item p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.94rem;
}

.source-links {
  display: flex;
  flex-wrap: wrap;
  margin-top: 26px;
  gap: 12px;
}

.source-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  gap: 8px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-pill);
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.84rem;
  font-weight: 750;
  text-decoration: none;
}

.source-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.source-link svg {
  width: 15px;
  height: 15px;
}

/* Quote requirements */
.requirements-box {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.requirements-intro {
  padding: clamp(34px, 5vw, 58px);
  color: var(--white);
  background: var(--brand-900);
}

.requirements-intro .eyebrow {
  color: var(--accent);
}

.requirements-intro h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.requirements-intro p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.requirements-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(32px, 5vw, 58px);
  gap: 14px;
}

.requirement {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--paper);
}

.requirement svg {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--brand-700);
}

.requirement span {
  font-size: 0.91rem;
  font-weight: 700;
  line-height: 1.4;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  align-items: start;
  gap: clamp(44px, 7vw, 94px);
}

.faq-intro {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.faq-list {
  border-top: 1px solid var(--border);
}

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

.faq-item summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  font-size: clamp(1.02rem, 1.5vw, 1.16rem);
  font-weight: 850;
  line-height: 1.35;
  list-style: none;
}

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

.faq-item summary::before,
.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 20px;
  height: 2px;
  background: var(--brand-700);
  content: "";
  transition: transform 180ms ease;
}

.faq-item summary::after {
  transform: rotate(90deg);
}

.faq-item[open] summary::after {
  transform: rotate(0deg);
}

.faq-answer {
  padding: 0 50px 24px 0;
  color: var(--ink-soft);
}

.faq-answer p {
  margin: 0;
}

/* Quote/contact */
.quote-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 12%, rgba(210, 218, 230, 0.14), transparent 24rem),
    linear-gradient(145deg, var(--brand-900), var(--brand-950));
}

.quote-section::after {
  position: absolute;
  right: -180px;
  bottom: -220px;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(210, 218, 230, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(210, 218, 230, 0.03), 0 0 0 140px rgba(210, 218, 230, 0.02);
  content: "";
}

.quote-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(46px, 7vw, 94px);
}

.quote-copy {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}

.quote-copy .section-title {
  font-size: clamp(2.35rem, 4.7vw, 4.65rem);
}

.contact-links {
  display: grid;
  margin-top: 32px;
  gap: 12px;
}

.contact-link {
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
  padding: 16px;
  gap: 14px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  text-decoration: none;
}

.contact-link:hover {
  border-color: rgba(210, 218, 230, 0.6);
  background: rgba(255, 255, 255, 0.085);
}

.contact-link-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 15px;
  color: var(--brand-950);
  background: var(--accent);
}

.contact-link-icon svg {
  width: 23px;
  height: 23px;
}

.contact-link small {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-link strong {
  display: block;
  margin-top: 2px;
  font-size: 1.02rem;
}

.quote-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-heading {
  margin-bottom: 28px;
}

.form-heading h3 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  letter-spacing: -0.035em;
}

.form-heading p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

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

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

.form-field label,
.form-label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 850;
}

.required-mark {
  color: #a3312c;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(17, 27, 52, 0.2);
  border-radius: 12px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

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

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7b879d;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-600);
  outline: none;
  box-shadow: 0 0 0 4px rgba(49, 85, 143, 0.12);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: start;
  grid-column: 1 / -1;
  gap: 11px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand-700);
}

.checkbox-field label {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.55;
}

.checkbox-field a {
  color: var(--brand-700);
  font-weight: 750;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 1 / -1;
  margin-top: 4px;
  gap: 18px;
}

.form-hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 14px 16px;
  margin: 0;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: #0b4f2a;
  background: #e7f8ee;
}

.form-status.is-error {
  color: #7d241f;
  background: #fff0ee;
}

.form-status a {
  font-weight: 900;
}

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

/* Footer */
.site-footer {
  padding: 70px 0 28px;
  color: rgba(255, 255, 255, 0.72);
  background: linear-gradient(180deg, #0b183d 0%, #091432 100%);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: clamp(34px, 6vw, 84px);
}

.footer-brand > a {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: var(--logo-panel);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.footer-brand img {
  width: 188px;
  height: auto;
}

.footer-brand p {
  max-width: 440px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-title {
  margin: 0 0 18px;
  color: var(--white);
  font-size: 0.81rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.91rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--accent);
}

.company-data {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.82rem;
  line-height: 1.75;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  margin-top: 46px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.8rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* Mobile CTA */
.mobile-cta {
  position: fixed;
  z-index: 900;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  padding: 6px;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(14, 31, 80, 0.94);
  box-shadow: 0 16px 42px rgba(7, 19, 47, 0.38);
  backdrop-filter: blur(16px);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 8px 6px;
  gap: 6px;
  border-radius: 13px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}

.mobile-cta a:last-child {
  color: var(--brand-950);
  background: var(--accent);
}

.mobile-cta svg {
  width: 17px;
  height: 17px;
}


.legal-back-short {
  display: none;
}

/* Legal pages */
.legal-hero {
  padding: 74px 0 54px;
  color: var(--white);
  background: var(--brand-950);
}

.legal-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.legal-hero p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.legal-content {
  max-width: 900px;
  padding: 70px 0 110px;
}

.legal-content h2 {
  margin: 54px 0 14px;
  font-size: 1.75rem;
  letter-spacing: -0.035em;
}

.legal-content h3 {
  margin: 34px 0 10px;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-soft);
}

.legal-content ul {
  padding-left: 22px;
}

.legal-meta {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: var(--brand-800);
  background: var(--brand-100);
  font-size: 0.82rem;
  font-weight: 800;
}

/* 404 */
.not-found {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 40px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 20%, rgba(210, 218, 230, 0.14), transparent 24rem),
    var(--brand-950);
}

.not-found-card {
  width: min(calc(100% - 40px), 760px);
  padding: clamp(34px, 7vw, 72px);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.not-found-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 30px;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--logo-panel);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.not-found-logo img {
  width: 188px;
  height: auto;
}

.not-found-code {
  color: var(--accent);
  font-size: clamp(5rem, 18vw, 10rem);
  font-weight: 950;
  letter-spacing: -0.09em;
  line-height: 0.8;
}

.not-found-card h1 {
  margin: 34px 0 0;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.not-found-card p {
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.68);
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
  gap: 10px;
}


/* Final Wello Cargo brand layer */
body {
  background:
    linear-gradient(180deg, rgba(14, 31, 80, 0.018), transparent 460px),
    var(--paper);
}

.site-header {
  border-top: 3px solid var(--brand-900);
  background: rgba(247, 248, 251, 0.92);
  box-shadow: 0 1px 0 rgba(14, 31, 80, 0.04);
}

.site-header.is-scrolled {
  background: rgba(247, 248, 251, 0.975);
  box-shadow: 0 12px 34px rgba(7, 19, 47, 0.1);
}

.brand {
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 13px;
  background: var(--logo-panel);
  box-shadow: 0 12px 28px rgba(7, 19, 47, 0.18);
}

.brand img {
  width: 184px;
  border-radius: inherit;
}

.primary-nav > a:not(.button) {
  color: var(--brand-950);
}

.primary-nav > a:not(.button)::after {
  height: 3px;
  border-radius: 99px;
  background: var(--brand-900);
}

.language-switch,
.nav-toggle {
  border-color: rgba(14, 31, 80, 0.18);
  color: var(--brand-900);
  box-shadow: 0 6px 18px rgba(7, 19, 47, 0.06);
}

.button {
  border-radius: 14px;
  letter-spacing: 0.005em;
}

.button-dark,
.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand-900), var(--brand-800));
  box-shadow: 0 14px 30px rgba(14, 31, 80, 0.22);
}

.button-dark:hover,
.button-primary:hover {
  background: linear-gradient(135deg, var(--brand-800), var(--brand-700));
  box-shadow: 0 17px 34px rgba(14, 31, 80, 0.28);
}

.button-ghost {
  border-color: rgba(14, 31, 80, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

.button-ghost:hover {
  border-color: rgba(14, 31, 80, 0.42);
  background: var(--white);
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  border-radius: 99px;
  background: currentColor;
  box-shadow: none;
}

.section-title,
.feature-card h3,
.material-card h3,
.audience-card h3,
.equipment-card h3 {
  color: var(--brand-950);
}

.section-muted {
  background:
    linear-gradient(180deg, rgba(14, 31, 80, 0.015), transparent 40%),
    var(--paper-2);
}

.section-dark {
  background:
    radial-gradient(circle at 88% 8%, rgba(210, 218, 230, 0.14), transparent 28rem),
    linear-gradient(145deg, var(--brand-900) 0%, var(--brand-950) 70%, #040a1c 100%);
}

.hero {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at 76% 18%, rgba(170, 180, 196, 0.18), transparent 25rem),
    radial-gradient(circle at 8% 92%, rgba(49, 85, 143, 0.22), transparent 31rem),
    linear-gradient(135deg, var(--brand-900) 0%, var(--brand-950) 74%, #040a1c 100%);
  background-size: 52px 52px, 52px 52px, auto, auto, auto;
}

.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 54%, rgba(255, 255, 255, 0.035) 54% 54.4%, transparent 54.4% 100%);
  content: "";
  pointer-events: none;
}

.hero::after {
  right: -0.035em;
  bottom: -0.29em;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.025);
  box-shadow: none;
  content: "03";
  font-size: clamp(20rem, 39vw, 43rem);
  font-weight: 950;
  letter-spacing: -0.12em;
  line-height: 1;
  pointer-events: none;
}

.hero-grid {
  z-index: 2;
}

.hero .eyebrow {
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 6rem);
  letter-spacing: -0.06em;
}

.hero h1 em {
  color: var(--accent);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.74);
}

.hero .button-dark {
  color: var(--brand-950);
  background: var(--white);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero .button-dark:hover {
  color: var(--brand-950);
  background: var(--brand-100);
}

.hero .button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.07);
}

.hero .button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.hero-proof li {
  border-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
}

.hero-proof svg {
  color: var(--accent);
}

.hero-visual-main {
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--brand-950);
  box-shadow: 0 38px 86px rgba(0, 0, 0, 0.34);
}

.cat3-badge {
  border-color: var(--brand-950);
  color: var(--brand-950);
  background: var(--accent);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.hero-info-card {
  border-color: rgba(14, 31, 80, 0.12);
  color: var(--brand-950);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 24px 58px rgba(7, 19, 47, 0.25);
}

.hero-info-card-icon {
  color: var(--white);
  background: var(--brand-900);
}

.entity-answer-inner {
  border-color: rgba(14, 31, 80, 0.12);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 60px rgba(7, 19, 47, 0.15);
}

.entity-answer-mark {
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-900), var(--brand-700));
  box-shadow: 0 12px 28px rgba(14, 31, 80, 0.2);
}

.entity-answer p {
  color: var(--ink-soft);
}

.entity-answer strong {
  color: var(--brand-900);
}

.feature-card,
.material-card,
.audience-card,
.equipment-card {
  isolation: isolate;
  border-color: rgba(14, 31, 80, 0.11);
  box-shadow: 0 10px 28px rgba(7, 19, 47, 0.065);
}

.feature-card::before,
.material-card::before,
.audience-card::before,
.equipment-card::before {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-900), var(--brand-600), var(--accent));
  content: "";
}

.feature-card:hover,
.material-card:hover,
.audience-card:hover,
.equipment-card:hover {
  border-color: rgba(32, 59, 120, 0.34);
  box-shadow: 0 22px 52px rgba(7, 19, 47, 0.13);
}

.card-number,
.check-list-icon,
.process-step-number,
.compliance-item-icon,
.contact-link-icon {
  color: var(--white);
  background: linear-gradient(145deg, var(--brand-900), var(--brand-700));
}

.audience-card-icon,
.material-card-icon,
.equipment-card-icon {
  color: var(--brand-900);
  background: var(--brand-100);
}

.material-card::after {
  background: rgba(170, 180, 196, 0.15);
}

.note-box {
  border-color: rgba(49, 85, 143, 0.25);
  color: #2b3955;
  background: linear-gradient(135deg, #f0f3f8, #e7ecf4);
}

.note-box svg {
  color: var(--brand-700);
}

.split-visual {
  background: var(--brand-900);
  box-shadow: 0 30px 72px rgba(7, 19, 47, 0.22);
}

.process-grid::before {
  background: linear-gradient(90deg, var(--brand-100), var(--brand-600), var(--accent));
}

.process-step-number {
  border-color: var(--paper-2);
  box-shadow: 0 0 0 1px rgba(14, 31, 80, 0.16), 0 10px 24px rgba(7, 19, 47, 0.12);
}

.compliance-highlight,
.compliance-item {
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

.compliance-highlight-number {
  color: var(--accent);
}

.requirements-box {
  border-color: rgba(14, 31, 80, 0.12);
  box-shadow: 0 26px 66px rgba(7, 19, 47, 0.13);
}

.requirements-intro {
  background:
    radial-gradient(circle at 90% 10%, rgba(210, 218, 230, 0.13), transparent 15rem),
    linear-gradient(145deg, var(--brand-900), var(--brand-950));
}

.requirement {
  border-color: rgba(14, 31, 80, 0.11);
  background: #f8f9fc;
}

.faq-item summary::before,
.faq-item summary::after {
  background: var(--brand-900);
}

.quote-section {
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    radial-gradient(circle at 8% 12%, rgba(210, 218, 230, 0.14), transparent 26rem),
    linear-gradient(145deg, var(--brand-900), var(--brand-950));
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.quote-section::after {
  border-color: rgba(210, 218, 230, 0.12);
  box-shadow: 0 0 0 70px rgba(210, 218, 230, 0.025), 0 0 0 140px rgba(210, 218, 230, 0.015);
}

.contact-link:hover {
  border-color: rgba(210, 218, 230, 0.58);
}

.quote-form {
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.form-field input,
.form-field select,
.form-field textarea {
  border-color: rgba(17, 27, 52, 0.18);
  background: #fbfcfe;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-600);
  box-shadow: 0 0 0 4px rgba(49, 85, 143, 0.13);
}

.site-footer {
  position: relative;
  border-top: 4px solid var(--accent);
  background:
    radial-gradient(circle at 85% 0%, rgba(210, 218, 230, 0.08), transparent 24rem),
    linear-gradient(180deg, #0b183d 0%, #07132f 100%);
}

.footer-brand > a,
.not-found-logo {
  padding: 0;
  overflow: hidden;
  border-radius: 13px;
  background: var(--logo-panel);
}

.footer-brand img,
.not-found-logo img {
  width: 184px;
  border-radius: inherit;
}

.mobile-cta {
  background: rgba(14, 31, 80, 0.96);
  box-shadow: 0 18px 46px rgba(7, 19, 47, 0.38);
}

.mobile-cta a:last-child {
  color: var(--brand-950);
  background: var(--accent);
}

.legal-hero,
.not-found {
  background:
    radial-gradient(circle at 20% 20%, rgba(210, 218, 230, 0.13), transparent 25rem),
    linear-gradient(145deg, var(--brand-900), var(--brand-950));
}

.not-found .button-primary {
  color: var(--brand-950);
  background: var(--accent);
}


/* Reveal */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

/* Responsive */
@media (max-width: 1080px) {
  :root {
    --header-h: 74px;
  }

  .site-header {
    background: rgba(247, 248, 244, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .primary-nav {
    position: fixed;
    z-index: 999;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    width: min(390px, 88vw);
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    padding: calc(var(--header-h) + 38px) 26px 32px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    box-shadow: -20px 0 55px rgba(7, 19, 47, 0.2);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .primary-nav.is-open {
    transform: translateX(0);
  }

  .primary-nav > a:not(.button) {
    padding: 15px 4px;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .primary-nav .button {
    margin-top: 22px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-backdrop.is-visible {
    display: block;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.88fr;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3rem, 7vw, 5.2rem);
  }

  .hero-visual {
    min-height: 500px;
  }

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

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

  .process-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 42px;
  }

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

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  .section-head {
    display: block;
  }

  .section-kicker {
    max-width: 650px;
    margin-top: 20px;
  }

  .hero-grid,
  .split,
  .split.reverse,
  .compliance-grid,
  .faq-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    max-width: 760px;
    font-size: clamp(3.25rem, 11vw, 6rem);
  }

  .hero-lead {
    max-width: 680px;
  }

  .hero-visual {
    width: min(100%, 640px);
    min-height: 560px;
    margin-inline: auto;
  }

  .entity-answer {
    margin-top: -20px;
  }

  .cards-3 {
    grid-template-columns: 1fr;
  }

  .split-visual,
  .split-visual img {
    min-height: 440px;
  }

  .compliance-highlight,
  .faq-intro,
  .quote-copy {
    position: static;
  }

  .requirements-box {
    grid-template-columns: 1fr;
  }

  .quote-copy {
    max-width: 720px;
  }

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

@media (max-width: 680px) {
  :root {
    --header-h: 68px;
  }

  body {
    padding-bottom: 78px;
  }

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

  .section {
    padding: 70px 0;
  }

  .site-header {
    height: var(--header-h);
  }

  .header-inner {
    min-height: var(--header-h);
  }

  .brand img {
    width: 166px;
  }

  .language-switch {
    min-width: 42px;
    min-height: 40px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding-top: 34px;
    padding-bottom: 84px;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1.02rem;
  }

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

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

  .hero-proof {
    gap: 8px;
  }

  .hero-proof li {
    font-size: 0.78rem;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual-main {
    inset: 0 0 18px;
    border-radius: 30px;
  }

  .cat3-badge {
    top: -18px;
    right: -8px;
    width: 108px;
    height: 108px;
    border-width: 7px;
  }

  .cat3-badge strong {
    font-size: 2.7rem;
  }

  .cat3-badge span {
    font-size: 0.54rem;
  }

  .hero-info-card {
    right: 10px;
    bottom: -12px;
    width: calc(100% - 20px);
    padding: 18px;
  }

  .entity-answer-inner {
    grid-template-columns: 1fr;
  }

  .entity-answer-mark {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.85rem;
  }

  .section-title {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }

  .cards-4,
  .cards-5 {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .material-card {
    padding: 24px;
  }

  .split-visual,
  .split-visual img {
    min-height: 340px;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 54px 1fr;
    padding: 0;
    column-gap: 16px;
  }

  .process-step-number {
    grid-row: 1 / span 2;
    width: 54px;
    height: 54px;
    margin: 0;
  }

  .process-step p {
    margin-top: 8px;
  }

  .compliance-item {
    grid-template-columns: 44px 1fr;
    padding: 20px;
    gap: 14px;
  }

  .compliance-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .requirements-list {
    grid-template-columns: 1fr;
  }

  .faq-answer {
    padding-right: 12px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 23px 18px;
    border-radius: 24px;
  }

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

  .form-field.full,
  .checkbox-field,
  .form-actions,
  .form-status {
    grid-column: auto;
  }

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

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

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

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-cta {
    display: grid;
    visibility: hidden;
    opacity: 0;
    transform: translateY(calc(100% + 28px));
    pointer-events: none;
    transition: opacity 180ms ease, transform 220ms ease, visibility 0s linear 220ms;
  }

  .mobile-cta.is-visible,
  .no-js .mobile-cta {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition-delay: 0s;
  }
}

@media (max-width: 420px) {
  .header-actions {
    gap: 7px;
  }

  .legal-back-link {
    min-height: 40px;
    padding: 8px 12px;
  }

  .legal-back-long {
    display: none;
  }

  .legal-back-short {
    display: inline;
  }

  .brand img {
    width: 148px;
  }

  html[lang="en"] .hero h1 {
    font-size: clamp(2.7rem, 13.5vw, 4rem);
  }

  .hero-proof li {
    width: 100%;
  }

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

  .hero-info-card p {
    font-size: 0.81rem;
  }
}

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

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

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

@media print {
  .site-header,
  .mobile-cta,
  .hero-actions,
  .quote-section,
  .site-footer {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section {
    padding: 32px 0;
  }
}
