:root {
  --navy: #071b33;
  --navy-2: #0e2b4c;
  --ink: #17263a;
  --muted: #637083;
  --gold: #c99635;
  --gold-dark: #9b6c1f;
  --orange: #d96f2a;
  --green: #2f7259;
  --paper: #f5f3ee;
  --paper-2: #ece9e1;
  --white: #ffffff;
  --line: #dcd8cf;
  --shadow: 0 24px 70px rgba(7, 27, 51, 0.14);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

html[lang^="zh"] body,
html[lang^="zh"] button,
html[lang^="zh"] input,
html[lang^="zh"] select,
html[lang^="zh"] textarea {
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans CJK SC", "Source Han Sans SC", "Segoe UI", Arial, sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

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

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

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

.topbar {
  color: rgba(255, 255, 255, 0.88);
  background: var(--navy);
  font-size: 13px;
}

.topbar__inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar__address,
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar__dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: #5bc19a;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(91, 193, 154, 0.12);
}

.topbar__phone {
  color: var(--white);
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 27, 51, 0.08);
  backdrop-filter: blur(14px);
}

.header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 48px;
  height: 54px;
  object-fit: contain;
}

.brand__text {
  display: grid;
  line-height: 1.15;
}

.brand__text strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: 0.02em;
}

.brand__text span {
  margin-top: 5px;
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-nav a {
  padding: 11px 10px;
  color: #34445a;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  transition: 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  background: var(--paper);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding-inline: 15px;
  color: var(--white);
  background: var(--navy);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: var(--navy);
  background: var(--gold);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-left: 5px;
  padding: 3px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.site-nav .language-switcher a {
  min-width: 34px;
  padding: 6px 7px;
  text-align: center;
  border-radius: 7px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
}

.site-nav .language-switcher a[aria-current="true"] {
  color: var(--white);
  background: var(--navy);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.2s ease;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 27, 51, 0.97) 0%, rgba(7, 27, 51, 0.86) 48%, rgba(7, 27, 51, 0.24) 100%),
    linear-gradient(0deg, rgba(7, 27, 51, 0.65), transparent 44%);
}

.hero__media {
  position: absolute;
  inset: 0 0 0 44%;
}

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

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: 650px;
  display: flex;
  align-items: center;
  padding-block: 82px 72px;
}

.hero__content {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

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

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 850;
  line-height: 1.2;
  transition: 0.2s ease;
}

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

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

.button--gold:hover {
  background: #dbab4b;
}

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

.button--outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

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

.button--dark {
  color: var(--white);
  background: var(--navy);
}

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

.hero__proofs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 26px;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.hero__proofs span::before {
  content: "✓";
  margin-right: 8px;
  color: #72cba8;
  font-weight: 900;
}

.metric-strip {
  position: relative;
  z-index: 3;
  margin-top: -48px;
}

.metric-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(7, 27, 51, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.metric {
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid var(--line);
}

.metric:last-child {
  border-right: 0;
}

.metric strong {
  color: var(--navy);
  font-size: 28px;
  line-height: 1.1;
}

.metric span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.section {
  padding-block: 104px;
}

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

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

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

.section-head {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-head--split {
  max-width: none;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-head h2,
.content-block h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.section--navy .section-head h2,
.section--navy .content-block h2 {
  color: var(--white);
}

.section-head p:not(.eyebrow),
.content-block > p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section--navy .section-head p:not(.eyebrow),
.section--navy .content-block > p {
  color: rgba(255, 255, 255, 0.7);
}

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

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

.service-card--primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
}

.service-card--primary h3,
.service-card--primary .service-card__link {
  color: var(--white);
}

.service-card--primary p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card {
  min-height: 290px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: 0.25s ease;
}

.service-card:hover {
  border-color: rgba(201, 150, 53, 0.75);
  box-shadow: 0 18px 48px rgba(7, 27, 51, 0.1);
  transform: translateY(-4px);
}

.service-card__index {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--navy);
  font-size: 27px;
  line-height: 1.15;
}

.service-card p {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card__link {
  margin-top: auto;
  padding-top: 26px;
  color: var(--navy);
  font-weight: 850;
}

.service-card__link::after {
  content: "→";
  margin-left: 8px;
  color: var(--gold-dark);
}

.project-feature {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  min-height: 520px;
  overflow: hidden;
  background: var(--navy);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.project-feature__image {
  min-height: 420px;
}

.project-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-feature__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px;
  color: var(--white);
}

.status {
  align-self: flex-start;
  padding: 7px 11px;
  color: #b9efd9;
  background: rgba(78, 176, 137, 0.14);
  border: 1px solid rgba(97, 204, 162, 0.3);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-feature h3 {
  margin: 22px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.project-feature p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  padding: 7px 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  font-size: 13px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 175px;
  gap: 12px;
  margin-top: 18px;
}

.gallery figure {
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
  border-radius: var(--radius-sm);
}

.gallery figure:nth-child(1),
.gallery figure:nth-child(4) {
  grid-column: span 6;
  grid-row: span 2;
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery figure:hover img {
  transform: scale(1.03);
}

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

.proof-card,
.document-card,
.info-card,
.step-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.document-preview {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 285px;
  margin: -10px -10px 24px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 27, 51, 0.04), rgba(201, 150, 53, 0.08)),
    var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.document-preview img {
  width: 100%;
  height: 100%;
  padding: 12px;
  object-fit: contain;
  transition: transform 0.25s ease;
}

.document-preview:hover img,
.document-preview:focus-visible img {
  transform: scale(1.025);
}

.document-preview--small {
  height: 220px;
  margin-bottom: 22px;
}

.proof-card__number {
  color: var(--navy);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.proof-card h3,
.document-card h3,
.info-card h3,
.step-card h3 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 21px;
  line-height: 1.25;
}

.proof-card p,
.document-card p,
.info-card p,
.step-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.proof-card a,
.document-card a {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold-dark);
  font-weight: 850;
}

.investor-band {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  color: var(--white);
  background:
    radial-gradient(circle at 95% 10%, rgba(201, 150, 53, 0.25), transparent 35%),
    var(--navy);
  border-radius: 30px;
}

.investor-band h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.investor-band p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
}

.investor-band__facts {
  display: grid;
  gap: 12px;
}

.investor-band__fact {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.investor-band__fact strong {
  display: block;
  font-size: 19px;
}

.investor-band__fact span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.step-card__index {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.lead-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.lead-panel__intro {
  padding: 52px;
  color: var(--white);
  background: var(--navy);
}

.lead-panel__intro h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
}

.lead-panel__intro p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.lead-panel__list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
}

.lead-panel__list li::before {
  content: "✓";
  margin-right: 10px;
  color: #72cba8;
  font-weight: 900;
}

.lead-panel__form {
  padding: 46px;
}

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

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

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

.field label {
  color: #34445a;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfbfa;
  border: 1px solid #d8d5ce;
  border-radius: 10px;
  outline: none;
  transition: 0.2s ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 150, 53, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-note a {
  text-decoration: underline;
}

.form-status {
  min-height: 22px;
  margin: 10px 0 0;
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 0%, rgba(201, 150, 53, 0.22), transparent 35%),
    var(--navy);
}

.page-hero__inner {
  max-width: 940px;
  padding-block: 82px 88px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

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

.page-hero h1 {
  max-width: 920px;
  font-size: clamp(40px, 5.5vw, 66px);
}

.page-hero__lead {
  max-width: 790px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 20px;
}

.page-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.page-hero__facts span {
  padding: 8px 11px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 13px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.55fr);
  gap: 56px;
  align-items: start;
}

.content-block + .content-block {
  margin-top: 56px;
}

.content-block h3 {
  margin: 30px 0 0;
  color: var(--navy);
  font-size: 24px;
}

.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: #34445a;
}

.section--navy .check-list li {
  color: rgba(255, 255, 255, 0.82);
}

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

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

.aside-card {
  position: sticky;
  top: 118px;
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.aside-card h2,
.aside-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.2;
}

.aside-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.aside-card img {
  width: 100%;
  margin-bottom: 22px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius-sm);
}

.aside-card .button {
  width: 100%;
  margin-top: 20px;
}

.aside-card--dark {
  color: var(--white);
  background: var(--navy-2);
  border-color: rgba(255, 255, 255, 0.12);
}

.aside-card--dark h2,
.aside-card--dark h3 {
  color: var(--white);
}

.aside-card--dark p {
  color: rgba(255, 255, 255, 0.7);
}

.cards-2,
.cards-3,
.document-grid,
.project-grid {
  display: grid;
  gap: 18px;
}

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

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

.project-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-card__image {
  height: 260px;
}

.project-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card__body {
  padding: 28px;
}

.project-card h2,
.project-card h3 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 26px;
  line-height: 1.18;
}

.project-card p {
  margin: 13px 0 0;
  color: var(--muted);
}

.project-card__meta {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.risk-box,
.legal-box {
  padding: 28px;
  border-radius: var(--radius-sm);
}

.risk-box {
  color: #543b13;
  background: #fbf3df;
  border: 1px solid #ecd8a6;
}

.legal-box {
  color: #34445a;
  background: #f0f3f7;
  border: 1px solid #d8e0e8;
}

.risk-box strong,
.legal-box strong {
  display: block;
  color: var(--navy);
}

.risk-box p,
.legal-box p {
  margin: 8px 0 0;
  font-size: 14px;
}

.address-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 20px;
}

.address-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.address-card + .address-card {
  margin-top: 14px;
}

.address-card__label {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.address-card h2,
.address-card h3 {
  margin: 12px 0 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.address-card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.map-frame {
  min-height: 470px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 470px;
  border: 0;
}

.site-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #051427;
}

.footer__top {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.75fr 1.1fr;
  gap: 42px;
  padding-block: 62px 46px;
}

.footer__brand p {
  max-width: 360px;
  margin: 18px 0 0;
  font-size: 14px;
}

.site-footer .brand__text strong {
  color: var(--white);
}

.footer__column h2,
.footer__column h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 14px;
  letter-spacing: 0.05em;
}

.footer__column a,
.footer__column span {
  display: block;
  margin-top: 9px;
  font-size: 13px;
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 12px;
}

.mobile-cta {
  display: none;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 300;
  width: min(520px, calc(100% - 40px));
  padding: 20px;
  color: rgba(255, 255, 255, 0.75);
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.cookie-banner strong {
  display: block;
  color: var(--white);
}

.cookie-banner p {
  margin: 6px 0 0;
  font-size: 13px;
}

.cookie-banner a {
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.cookie-banner__actions .button {
  min-height: 40px;
  padding: 9px 13px;
  font-size: 13px;
}

.section--dark {
  background: var(--navy);
}

.service-card__number,
.document-card__type,
.proof-card__meta {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.document-card h2 {
  margin: 18px 0 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.2;
}

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

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

.button-row--center {
  justify-content: center;
  margin-top: 30px;
}

.audience-grid .info-card {
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

.audience-grid .info-card a {
  margin-top: auto;
  padding-top: 22px;
  color: var(--gold-dark);
  font-weight: 850;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: 56px;
  align-items: start;
}

.split-layout h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
}

.split-layout p {
  color: var(--muted);
  font-size: 17px;
}

.fact-panel {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.fact-panel h3 {
  margin: 0;
  color: var(--navy);
  font-size: 26px;
}

.fact-panel dl {
  margin: 20px 0 0;
}

.fact-panel dl div {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.fact-panel dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.fact-panel dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-weight: 800;
}

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

.contact-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card > span {
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 16px 0 0;
  color: var(--navy);
  font-size: 25px;
}

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

.contact-card a {
  color: var(--gold-dark);
  font-weight: 850;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: project-step;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.process-list li > span {
  color: var(--gold-dark);
  font-size: 27px;
  font-weight: 900;
}

.process-list h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
}

.process-list p {
  margin: 8px 0 0;
  color: var(--muted);
}

.notice {
  padding: 28px;
  color: #543b13;
  background: #fbf3df;
  border: 1px solid #ecd8a6;
  border-radius: var(--radius-sm);
}

.notice strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.notice p {
  margin: 8px 0 0;
}

.legal-footnote {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.lead-panel__content {
  padding: 52px;
  color: var(--white);
  background: var(--navy);
}

.lead-panel__content h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.1;
}

.lead-panel__content p {
  color: rgba(255, 255, 255, 0.72);
}

.lead-panel__content .check-list li {
  color: rgba(255, 255, 255, 0.86);
}

.lead-panel__direct a {
  color: var(--gold-light);
  font-weight: 900;
}

.investor-hero .page-hero__inner {
  max-width: 1010px;
}

.investor-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.investor-hero__actions .button--outline-light {
  border-color: rgba(255, 255, 255, 0.4);
}

.parameter-grid,
.principle-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

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

.parameter-grid li,
.principle-card {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}

.parameter-grid li {
  list-style: none;
  color: #34445a;
  font-weight: 750;
}

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

.principle-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.principle-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.reporting-list {
  columns: 2;
  column-gap: 48px;
  margin-top: 26px;
}

.reporting-list li {
  break-inside: avoid;
  margin-bottom: 10px;
}

.company-details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.company-details div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.company-details dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.company-details dd {
  margin: 5px 0 0;
  color: var(--navy);
  font-weight: 850;
}

.consent-field label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin-top: 2px;
}

.legal-warning {
  padding: 28px;
  color: #543b13;
  background: #fbf3df;
  border: 1px solid #ecd8a6;
  border-radius: var(--radius-sm);
}

.legal-warning p {
  margin: 0;
}

@media (max-width: 1120px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 120px 20px auto;
    max-height: calc(100vh - 140px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 2px;
    padding: 18px;
    overflow-y: auto;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 12px 13px;
  }

  .site-nav .nav-cta {
    margin: 8px 0 0;
    text-align: center;
  }

  .language-switcher {
    align-self: flex-start;
    margin: 8px 0 0;
  }

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

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

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .footer__top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }
}

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

  .topbar__inner {
    min-height: 34px;
    justify-content: flex-end;
  }

  .topbar__address {
    display: none;
  }

  .header__inner {
    min-height: 72px;
  }

  .brand img {
    width: 39px;
    height: 44px;
  }

  .brand__text strong {
    font-size: 15px;
  }

  .brand__text span {
    display: none;
  }

  .site-nav {
    inset: 112px 14px auto;
  }

  .hero__media {
    inset: 0;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(7, 27, 51, 0.97) 0%, rgba(7, 27, 51, 0.89) 60%, rgba(7, 27, 51, 0.7) 100%);
  }

  .hero__inner {
    min-height: 680px;
    align-items: end;
    padding-block: 100px 94px;
  }

  .hero h1 {
    font-size: clamp(39px, 12vw, 58px);
  }

  .hero__lead {
    font-size: 17px;
  }

  .metric-strip {
    margin-top: -34px;
  }

  .section {
    padding-block: 74px;
  }

  .section-head--split {
    display: block;
  }

  .section-head--split .button {
    margin-top: 22px;
  }

  .service-grid,
  .service-grid--three,
  .project-feature,
  .investor-band,
  .lead-panel,
  .content-grid,
  .split-layout,
  .contact-cards,
  .cards-2,
  .project-grid,
  .address-grid,
  .parameter-grid {
    grid-template-columns: 1fr;
  }

  .reporting-list {
    columns: 1;
  }

  .project-feature__body,
  .investor-band,
  .lead-panel__intro,
  .lead-panel__content,
  .lead-panel__form {
    padding: 34px;
  }

  .project-feature__image {
    min-height: 330px;
  }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
  }

  .gallery figure,
  .gallery figure:nth-child(1),
  .gallery figure:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery figure:first-child {
    grid-column: 1 / -1;
  }

  .aside-card {
    position: static;
  }

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

  .footer__bottom {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 68px;
  }

  .hero__actions,
  .button-row,
  .investor-hero__actions {
    flex-direction: column;
  }

  .hero__actions .button,
  .button-row .button,
  .investor-hero__actions .button {
    width: 100%;
  }

  .hero__proofs {
    display: grid;
    gap: 9px;
  }

  .metric-strip__inner,
  .proof-grid,
  .cards-3,
  .document-grid,
  .principle-grid,
  .steps,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metric,
  .metric:nth-child(2) {
    min-height: 116px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric:last-child {
    border-bottom: 0;
  }

  .service-card,
  .proof-card,
  .document-card,
  .info-card,
  .step-card,
  .address-card {
    padding: 24px;
  }

  .document-preview {
    height: 240px;
    margin: -6px -6px 22px;
  }

  .document-preview--small {
    height: 210px;
  }

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

  .gallery figure:first-child {
    grid-column: auto;
  }

  .project-feature__body,
  .investor-band,
  .lead-panel__intro,
  .lead-panel__form {
    padding: 26px;
  }

  .page-hero__inner {
    padding-block: 60px 68px;
  }

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

  .footer__brand {
    grid-column: auto;
  }

  .mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 220;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 12px;
    box-shadow: 0 12px 34px rgba(7, 27, 51, 0.28);
    font-weight: 900;
  }

  .cookie-banner {
    right: 10px;
    bottom: 72px;
    width: calc(100% - 20px);
  }
}

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

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