:root {
  --navy-950: #04132f;
  --navy-900: #071f52;
  --navy-800: #0b2e6f;
  --red-600: #d9231c;
  --red-500: #e3312a;
  --gold-600: #a97d28;
  --gold-500: #be9138;
  --gold-300: #ddbf7b;
  --ink: #12213d;
  --slate: #52617a;
  --mist: #e8edf5;
  --cloud: #f6f8fc;
  --white: #ffffff;
  --success: #16794a;
  --shadow-sm: 0 12px 35px rgba(4, 19, 47, 0.08);
  --shadow-lg: 0 28px 80px rgba(4, 19, 47, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 88px;
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Aptos, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

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

:focus-visible {
  outline: 3px solid var(--gold-300);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

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

.section {
  position: relative;
  padding: 112px 0;
}

.section--soft {
  background: var(--cloud);
}

.section--navy {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.section--navy::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(190, 145, 56, 0.17), transparent 32%),
    radial-gradient(circle at 85% 75%, rgba(217, 35, 28, 0.16), transparent 28%);
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--red-600);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 32px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section--navy .eyebrow {
  color: var(--gold-300);
}

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

h1,
h2,
h3 {
  color: inherit;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  max-width: 880px;
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 6.4rem);
}

h2 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 4.25rem);
}

h3 {
  margin-bottom: 16px;
  font-size: 1.35rem;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.65fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.section-intro h2,
.section-intro p {
  margin-bottom: 0;
}

.section-intro p {
  color: var(--slate);
  font-size: 1.08rem;
}

.section--navy .section-intro p {
  color: rgba(255, 255, 255, 0.68);
}

.lead {
  max-width: 700px;
  color: var(--slate);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.muted {
  color: var(--slate);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 31, 82, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 76px;
  box-shadow: 0 10px 40px rgba(4, 19, 47, 0.08);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand img {
  width: 210px;
  height: auto;
  background: transparent;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 27px;
}

.desktop-nav > a:not(.button):not(.language-link) {
  position: relative;
  color: var(--ink);
  font-size: 0.91rem;
  font-weight: 650;
}

.desktop-nav > a:not(.button):not(.language-link)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--red-600);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav > a:not(.button):not(.language-link):hover::after {
  transform: scaleX(1);
}

.language-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: var(--navy-900);
  border: 1px solid var(--mist);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 13px 22px;
  color: var(--white);
  background: var(--red-600);
  border: 1px solid var(--red-600);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: #bd1e18;
  border-color: #bd1e18;
  box-shadow: 0 12px 30px rgba(217, 35, 28, 0.22);
  transform: translateY(-2px);
}

.button--small {
  min-height: 44px;
  padding: 10px 17px;
  font-size: 0.88rem;
}

.button--outline {
  color: var(--navy-900);
  background: transparent;
  border-color: rgba(7, 31, 82, 0.23);
}

.button--outline:hover {
  color: var(--white);
  background: var(--navy-900);
  border-color: var(--navy-900);
  box-shadow: none;
}

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

.button--light:hover {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.button svg {
  width: 17px;
  height: 17px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 50%;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

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

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

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

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: calc(var(--header-height) + 94px) 0 90px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(190, 145, 56, 0.22), transparent 29%),
    linear-gradient(125deg, var(--navy-950) 0%, #08275e 58%, #0b3477 100%);
}

.hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to right, transparent 5%, black 70%);
}

.hero::after {
  position: absolute;
  right: -180px;
  bottom: -470px;
  width: 960px;
  height: 960px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 75px rgba(255, 255, 255, 0.025),
    0 0 0 150px rgba(255, 255, 255, 0.018);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.65fr);
  gap: 70px;
  align-items: center;
}

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

.hero h1 {
  font-size: clamp(3.3rem, 6.4vw, 6.25rem);
}

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

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero .button--outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.hero .button--outline:hover {
  color: var(--navy-950);
  background: var(--white);
  border-color: var(--white);
}

.hero-visual {
  position: relative;
  display: grid;
  min-height: 500px;
  place-items: center;
}

.global-orbit {
  position: relative;
  width: min(100%, 455px);
  aspect-ratio: 1;
  animation: float 7s ease-in-out infinite;
}

.global-orbit svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.22));
}

.orbit-note {
  position: absolute;
  right: 0;
  bottom: 24px;
  max-width: 250px;
  padding: 21px 23px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}

.orbit-note span {
  display: block;
  margin-bottom: 5px;
  color: var(--red-600);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.orbit-note strong {
  font-size: 1.05rem;
  line-height: 1.35;
}

@keyframes float {
  0%,
  100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

.trust-bar {
  position: relative;
  z-index: 3;
  margin-top: -34px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--white);
  border: 1px solid rgba(7, 31, 82, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 15px;
  padding: 24px 28px;
  border-right: 1px solid var(--mist);
}

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

.trust-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--red-600);
  background: rgba(217, 35, 28, 0.08);
  border-radius: 50%;
  place-items: center;
}

.trust-icon svg {
  width: 20px;
  height: 20px;
}

.trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 0.96rem;
}

.trust-item small {
  display: block;
  color: var(--slate);
  font-size: 0.79rem;
  line-height: 1.35;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.1fr);
  gap: 90px;
  align-items: center;
}

.about-visual {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-visual::before,
.about-visual::after {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.about-visual::before {
  top: -130px;
  right: -100px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle at 30% 30%, var(--gold-300), var(--gold-600));
  opacity: 0.92;
}

.about-visual::after {
  bottom: -115px;
  left: -140px;
  width: 420px;
  height: 420px;
  background: var(--red-600);
  opacity: 0.9;
}

.about-visual__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(145deg, black, transparent 75%);
}

.about-visual__content {
  position: absolute;
  z-index: 2;
  right: 36px;
  bottom: 40px;
  left: 36px;
}

.about-visual__content p {
  margin-bottom: 14px;
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-visual__content strong {
  display: block;
  max-width: 410px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-copy h2 {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.about-copy > p {
  color: var(--slate);
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 15px;
  align-items: start;
}

.feature-list__number {
  display: grid;
  width: 38px;
  height: 38px;
  color: var(--red-600);
  background: rgba(217, 35, 28, 0.08);
  border-radius: 50%;
  font-size: 0.76rem;
  font-weight: 850;
  place-items: center;
}

.feature-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-900);
}

.feature-list p {
  margin: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

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

.service-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(7, 31, 82, 0.1);
  border-radius: var(--radius-md);
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

.service-card:hover {
  border-color: rgba(217, 35, 28, 0.3);
  box-shadow: var(--shadow-sm);
  transform: translateY(-6px);
}

.service-card::after {
  position: absolute;
  right: -40px;
  bottom: -45px;
  width: 145px;
  height: 145px;
  background: rgba(7, 31, 82, 0.035);
  border-radius: 50%;
  content: "";
}

.service-card__icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 48px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 17px;
  place-items: center;
}

.service-card:nth-child(2n) .service-card__icon {
  background: var(--red-600);
}

.service-card:nth-child(3n) .service-card__icon {
  background: var(--gold-600);
}

.service-card__icon svg {
  width: 27px;
  height: 27px;
}

.service-card h3 {
  color: var(--navy-900);
}

.service-card p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.94rem;
}

.market-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 80px;
  align-items: center;
}

.market-copy h2 {
  font-size: clamp(2.4rem, 4.7vw, 4.4rem);
}

.market-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.08rem;
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.market-tags span {
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 999px;
  font-size: 0.82rem;
}

.market-panel {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.market-card {
  min-height: 210px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
}

.market-card:first-child {
  background: var(--red-600);
  border-color: var(--red-600);
}

.market-card__label {
  display: block;
  margin-bottom: 32px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.market-card:first-child .market-card__label {
  color: var(--white);
}

.market-card h3 {
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.market-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
}

.market-card:first-child p {
  color: rgba(255, 255, 255, 0.82);
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--mist);
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
}

.sector-item {
  min-height: 220px;
  padding: 32px;
  background: var(--white);
}

.sector-item span {
  display: block;
  margin-bottom: 44px;
  color: var(--red-600);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.sector-item h3 {
  color: var(--navy-900);
}

.sector-item p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding-top: 84px;
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: var(--navy-900);
  border-radius: 50%;
  content: "0" counter(process);
  font-size: 0.8rem;
  font-weight: 850;
  place-items: center;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 29px;
  left: 74px;
  width: calc(100% - 46px);
  height: 1px;
  background: var(--mist);
  content: "";
}

.process-step h3 {
  color: var(--navy-900);
}

.process-step p {
  margin-bottom: 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.contact-wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 120px;
}

.contact-copy h2 {
  font-size: clamp(2.4rem, 4.6vw, 4.3rem);
}

.contact-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.06rem;
}

.contact-details {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.93rem;
}

.contact-detail svg {
  width: 18px;
  height: 18px;
  color: var(--gold-300);
}

.contact-form {
  padding: 42px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 7px;
}

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

.form-field label {
  color: var(--navy-900);
  font-size: 0.81rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  background: var(--cloud);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  outline: 0;
  transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 145px;
  padding: 14px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: rgba(7, 31, 82, 0.35);
  box-shadow: 0 0 0 4px rgba(7, 31, 82, 0.07);
}

.checkbox-field {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  margin: 23px 0;
  color: var(--slate);
  font-size: 0.82rem;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--red-600);
}

.checkbox-field a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  font-size: 0.88rem;
  font-weight: 650;
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--red-600);
}

.contact-form .button[disabled] {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.faq-list {
  display: grid;
  max-width: 900px;
  margin-inline: auto;
  border-top: 1px solid var(--mist);
}

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

.faq-item summary {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--navy-900);
  cursor: pointer;
  font-size: 1.07rem;
  font-weight: 750;
  list-style: none;
}

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

.faq-item summary::after {
  display: grid;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  color: var(--red-600);
  background: rgba(217, 35, 28, 0.07);
  border-radius: 50%;
  content: "+";
  font-size: 1.3rem;
  font-weight: 400;
  place-items: center;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 760px;
  padding: 0 0 28px;
  color: var(--slate);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #020c1f;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 70px;
  padding: 76px 0 58px;
}

.footer-brand {
  width: min(275px, 100%);
  height: auto;
  padding: 10px 14px;
  object-fit: contain;
  background: var(--white);
  border-radius: 12px;
}

.footer-about p {
  max-width: 460px;
  margin: 22px 0 0;
  font-size: 0.9rem;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  font-size: 0.89rem;
  transition: color 160ms ease;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.footer-bottom p {
  margin: 0;
}

.legal-hero {
  padding: calc(var(--header-height) + 80px) 0 70px;
  color: var(--white);
  background: var(--navy-950);
}

.legal-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(2.7rem, 5vw, 5rem);
}

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

.legal-content {
  width: min(calc(100% - 40px), 850px);
  margin-inline: auto;
  padding: 80px 0 100px;
}

.legal-content h2 {
  margin-top: 52px;
  font-size: 1.75rem;
}

.legal-content h3 {
  margin-top: 32px;
  color: var(--navy-900);
  font-size: 1.12rem;
}

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

.legal-content a {
  color: var(--navy-900);
  font-weight: 700;
  text-decoration: underline;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 17px;
  }

  .desktop-nav > a:not(.button):not(.language-link) {
    font-size: 0.84rem;
  }

  .desktop-nav .button {
    display: none;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.58fr);
    gap: 40px;
  }

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

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n+2) {
    border-bottom: 1px solid var(--mist);
  }

  .about-grid,
  .market-layout,
  .contact-wrap {
    gap: 54px;
  }

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

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

  .process-step:nth-child(2)::after,
  .process-step:last-child::after {
    display: none;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 76px;
  }

  .section {
    padding: 84px 0;
  }

  .brand img {
    width: 175px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    display: grid;
    align-content: start;
    gap: 0;
    padding: 30px 20px;
    background: var(--white);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav a {
    padding: 15px 4px;
    color: var(--navy-900);
    border-bottom: 1px solid var(--mist);
    font-size: 1.05rem;
    font-weight: 750;
  }

  .mobile-nav .button {
    margin-top: 22px;
    color: var(--white);
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    padding-top: calc(var(--header-height) + 72px);
  }

  .hero-inner,
  .section-intro,
  .about-grid,
  .market-layout,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

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

  .global-orbit {
    width: min(82vw, 410px);
  }

  .section-intro {
    gap: 20px;
    align-items: start;
  }

  .about-visual {
    min-height: 470px;
  }

  .market-copy {
    max-width: 650px;
  }

  .contact-copy {
    position: static;
  }

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

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

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

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

  .section {
    padding: 72px 0;
  }

  h1,
  .hero h1 {
    font-size: clamp(2.75rem, 13vw, 4.4rem);
  }

  h2 {
    font-size: clamp(2.05rem, 10vw, 3.2rem);
  }

  .hero {
    padding-bottom: 72px;
  }

  .hero-actions {
    display: grid;
  }

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

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

  .orbit-note {
    right: 5px;
    bottom: 0;
    max-width: 220px;
    padding: 16px 18px;
  }

  .trust-bar {
    margin-top: -20px;
  }

  .trust-grid,
  .card-grid,
  .market-panel,
  .sector-grid,
  .process-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item {
    min-height: 96px;
    padding: 20px;
    border-right: 0;
    border-bottom: 1px solid var(--mist);
  }

  .trust-item:nth-child(3) {
    border-bottom: 1px solid var(--mist);
  }

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

  .about-grid,
  .market-layout,
  .contact-wrap {
    gap: 42px;
  }

  .about-visual {
    min-height: 420px;
    border-radius: var(--radius-md);
  }

  .about-visual__content {
    right: 25px;
    bottom: 28px;
    left: 25px;
  }

  .service-card {
    min-height: 310px;
    padding: 28px;
  }

  .service-card__icon {
    margin-bottom: 38px;
  }

  .market-card {
    min-height: 180px;
  }

  .sector-item {
    min-height: 190px;
    padding: 27px;
  }

  .sector-item span {
    margin-bottom: 32px;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .contact-form {
    padding: 27px 20px;
    border-radius: var(--radius-md);
  }

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

  .footer-main {
    gap: 38px;
    padding-top: 58px;
  }

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

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

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
