@font-face {
  font-family: "Noto Sans";
  src: url("./assets/fonts/noto-sans-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("./assets/fonts/noto-sans-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("./assets/fonts/noto-sans-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("./assets/fonts/noto-sans-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans";
  src: url("./assets/fonts/noto-sans-800.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-500.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("./assets/fonts/space-grotesk-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --navy: #0c2238;
  --petrol: #0e5c5b;
  --amber: #dfa24b;
  --ivory: #f4f3ee;
  --graphite: #1a1f25;
  --sand: #c8b08b;
  --white: #fffefb;
  --ink: #10283e;
  --ink-soft: rgba(16, 40, 62, 0.76);
  --line: rgba(12, 34, 56, 0.12);
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.9);
  --shadow-soft: 0 24px 60px rgba(9, 24, 39, 0.08);
  --shadow-strong: 0 30px 90px rgba(9, 24, 39, 0.18);
  --radius-xl: 38px;
  --radius-lg: 26px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Noto Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 14%, rgba(223, 162, 75, 0.15), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(14, 92, 91, 0.18), transparent 24%),
    linear-gradient(180deg, #f9f7f1 0%, #f4f3ee 48%, #eee8dd 100%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.noise {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.44) 1px, transparent 1px);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, black 60%, transparent 100%);
}

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

.site-header {
  position: sticky;
  top: 18px;
  z-index: 60;
  padding-top: 18px;
}

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

.home-shell {
  width: min(calc(100% - 40px), 1320px);
  margin: 0 auto;
  padding: 34px 0 96px;
}

.home-brandbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 38px;
}

.home-brandbar .lang-toggle {
  padding: 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(12, 34, 56, 0.12);
  box-shadow: 0 18px 36px rgba(12, 34, 56, 0.08);
}

.home-brandbar .lang-toggle button {
  color: var(--navy);
  background: rgba(12, 34, 56, 0.09);
}

.home-brandbar .lang-toggle button:hover,
.home-brandbar .lang-toggle button:focus-visible {
  color: var(--navy);
  background: rgba(12, 34, 56, 0.16);
}

.home-brandbar .lang-toggle button.is-active {
  color: var(--navy);
  background: var(--amber);
}

.home-brandbar__brand img {
  width: 182px;
  height: auto;
}

.home-brandbar__stamp {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(12, 34, 56, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  color: rgba(16, 40, 62, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.branch-gate {
  display: grid;
  gap: 24px;
}

.branch-gate__intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.72fr);
  gap: 26px;
  align-items: end;
}

.branch-gate__intro h1 {
  max-width: 8.8ch;
  font-size: clamp(4rem, 8.5vw, 8rem);
  line-height: 0.88;
}

.branch-gate__intro p {
  max-width: 54ch;
  font-size: 1.05rem;
}

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

.branch-panel {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: grid;
  align-content: end;
  padding: 34px;
  color: var(--white);
  border-radius: 34px;
  box-shadow: var(--shadow-strong);
  isolation: isolate;
}

.branch-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(7, 18, 30, 0.06), rgba(7, 18, 30, 0.38));
  z-index: 0;
}

.branch-panel--trade {
  background: linear-gradient(155deg, #0c2238 0%, #10283e 54%, #163f49 100%);
}

.branch-panel--management {
  background: linear-gradient(155deg, #123b45 0%, #0c2238 52%, #091827 100%);
}

.branch-panel__art {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.branch-panel__art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
}

.branch-panel__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  max-width: 36rem;
}

.branch-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 243, 238, 0.76);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.branch-panel__content h2 {
  max-width: 9ch;
  font-size: clamp(2.9rem, 4.4vw, 4.9rem);
}

.branch-panel__content p {
  max-width: 56ch;
  color: rgba(244, 243, 238, 0.8);
}

.branch-panel__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 6px;
}

.branch-panel__stat {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(7, 18, 30, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.branch-panel__stat strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.36rem;
}

.branch-panel__stat span {
  color: rgba(244, 243, 238, 0.7);
  font-size: 0.82rem;
  line-height: 1.5;
}

.branch-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.branch-panel__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.branch-panel__list li {
  position: relative;
  padding-left: 20px;
  color: rgba(244, 243, 238, 0.78);
}

.branch-panel__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 0 18px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    linear-gradient(135deg, rgba(12, 34, 56, 0.98), rgba(16, 47, 74, 0.92));
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(12, 34, 56, 0.22);
  position: relative;
}

.nav-shell::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(223, 162, 75, 0.9), rgba(14, 92, 91, 0.8));
  opacity: 0.9;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px 20px 18px 22px;
  background: rgba(255, 255, 255, 0.06);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand__compact {
  width: 46px;
  display: none;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  align-items: center;
}

.site-nav a {
  color: rgba(244, 243, 238, 0.76);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 12px 16px;
  border-radius: 16px;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, border-color 180ms ease;
  border: 1px solid transparent;
}

.site-nav a.is-active {
  color: var(--white);
  background: rgba(223, 162, 75, 0.12);
  border-color: rgba(223, 162, 75, 0.26);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.lang-toggle button:hover,
.lang-toggle button:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.lang-toggle {
  display: inline-flex;
  padding: 4px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.lang-toggle button,
.nav-toggle {
  border: 0;
  background: transparent;
  color: rgba(244, 243, 238, 0.76);
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease;
}

.lang-toggle button {
  min-width: 54px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-toggle button.is-active {
  color: var(--navy);
  background: var(--amber);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto 4px;
  background: currentColor;
}

.nav-toggle span:last-child {
  margin-bottom: 0;
}

.site-main {
  padding-bottom: 90px;
}

.section {
  padding: 96px 0;
}

.section--tight {
  padding: 72px 0;
}

.section--dark {
  position: relative;
  color: var(--white);
}

.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 16% 18%, rgba(223, 162, 75, 0.15), transparent 28%),
    linear-gradient(140deg, #0c2238 0%, #102f4a 54%, #0d5050 100%);
}

.section-head {
  display: grid;
  gap: 18px;
  margin-bottom: 40px;
}

.section-head--split {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
}

.kicker {
  margin: 0;
  color: var(--amber);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 6.4rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
  line-height: 0.96;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.04;
}

p {
  margin: 0;
}

.lead,
.section-head p,
.card p,
.panel p,
.detail-copy p,
.metric-card span,
.contact-shell__intro p,
.site-footer p,
.site-footer a,
.quote-card p,
.timeline-step p,
.feature-list li,
.capability-list li,
.stats-band__item span,
.faq-item p,
.stack-card p,
.trade-product p,
.offer-card p,
.detail-step p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.section--dark .lead,
.section--dark .section-head p,
.section--dark .card p,
.section--dark .panel p,
.section--dark .timeline-step p,
.section--dark .quote-card p,
.section--dark .stats-band__item span,
.section--dark .trade-product p,
.section--dark .offer-card p {
  color: rgba(244, 243, 238, 0.76);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.button--primary {
  color: var(--navy);
  background: var(--amber);
  box-shadow: 0 18px 34px rgba(223, 162, 75, 0.26);
}

.button--secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.button--ghost {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.54);
  border-color: var(--line);
}

.button--ink {
  color: var(--white);
  background: linear-gradient(140deg, var(--navy) 0%, var(--petrol) 100%);
  box-shadow: 0 18px 34px rgba(12, 34, 56, 0.2);
}

.button--full {
  width: 100%;
}

.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, 0.92fr);
  gap: 34px;
  align-items: stretch;
  padding: 72px 0 42px;
}

.hero-split__copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 30px 0 18px;
}

.hero-split__copy h1 {
  max-width: 10.5ch;
}

.hero-split__copy .lead {
  max-width: 62ch;
  font-size: 1.05rem;
}

.hero-split__visual,
.page-hero__visual,
.panel,
.card,
.stack-card,
.detail-slab,
.quote-card,
.contact-shell,
.stats-band,
.timeline-step,
.faq-item,
.contact-form,
.gateway-option,
.metric-card,
.capability-card,
.trade-product,
.offer-card {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.hero-split__visual,
.page-hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: linear-gradient(145deg, rgba(12, 34, 56, 0.98), rgba(14, 92, 91, 0.88));
}

.hero-split__visual img,
.page-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.visual-card {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  display: grid;
  gap: 16px;
  padding: 24px;
  color: var(--white);
  background: rgba(9, 24, 39, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}

.visual-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.28rem;
}

.gateway-prompt {
  display: grid;
  gap: 24px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.7));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
}

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

.gateway-option {
  display: grid;
  gap: 18px;
  min-height: 300px;
  padding: 28px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(12, 34, 56, 0.98), rgba(10, 24, 37, 0.88));
}

.gateway-option::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(223, 162, 75, 0.22), transparent 26%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.03));
  pointer-events: none;
}

.gateway-option--management {
  background: linear-gradient(180deg, rgba(14, 92, 91, 0.96), rgba(12, 34, 56, 0.92));
}

.gateway-option__eyebrow,
.stats-band__item strong,
.metric-card strong {
  color: rgba(244, 243, 238, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gateway-option h3 {
  max-width: 10ch;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.gateway-option p {
  color: rgba(244, 243, 238, 0.78);
}

.gateway-option ul,
.feature-list,
.capability-list,
.product-list,
.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.gateway-option li,
.feature-list li,
.capability-list li,
.product-list li,
.mini-list li {
  position: relative;
  padding-left: 20px;
}

.gateway-option li::before,
.feature-list li::before,
.capability-list li::before,
.product-list li::before,
.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  transform: translateY(-50%);
}

.gateway-option .button {
  margin-top: auto;
  width: fit-content;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.stats-band__item {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(12, 34, 56, 0.94);
  color: var(--white);
}

.stats-band__item em {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-size: clamp(2rem, 3vw, 3rem);
  letter-spacing: -0.06em;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.panel,
.stack-card,
.detail-slab,
.contact-shell,
.trade-product,
.offer-card,
.capability-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(12px);
}

.panel--dark,
.card--dark,
.offer-card--dark,
.stack-card--dark,
.detail-slab--dark {
  color: var(--white);
  background: linear-gradient(180deg, rgba(12, 34, 56, 0.98), rgba(9, 24, 39, 0.92));
  border-color: rgba(255, 255, 255, 0.1);
}

.panel--dark p,
.card--dark p,
.offer-card--dark p,
.stack-card--dark p,
.detail-slab--dark p,
.panel--dark li,
.card--dark li,
.offer-card--dark li,
.stack-card--dark li,
.detail-slab--dark li {
  color: rgba(244, 243, 238, 0.76);
}

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

.metric-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  background: rgba(12, 34, 56, 0.96);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-card em {
  font-family: "Space Grotesk", sans-serif;
  font-style: normal;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  letter-spacing: -0.06em;
}

.metric-card span {
  color: rgba(244, 243, 238, 0.78);
}

.page-hero {
  padding: 54px 0 32px;
}

.page-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 30px;
  align-items: stretch;
}

.page-hero__copy {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 28px 0 10px;
}

.page-hero__copy h1 {
  max-width: 9ch;
  font-size: clamp(2.7rem, 5vw, 5.2rem);
}

.page-hero__copy .lead {
  max-width: 60ch;
  font-size: 1.04rem;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(16, 40, 62, 0.58);
  font-size: 0.9rem;
  font-weight: 600;
}

.breadcrumbs a {
  color: inherit;
}

.breadcrumbs span::before {
  content: "/";
  margin-right: 10px;
}

.trade-products,
.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.trade-product {
  display: grid;
  gap: 18px;
}

.trade-product__header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
}

.trade-product h3,
.offer-card h3,
.detail-step h3,
.capability-card strong,
.metric-card em,
.page-hero__copy h1,
.detail-copy h1,
.branch-gate__intro h1,
.branch-panel__content h2 {
  overflow-wrap: break-word;
  word-break: normal;
  hyphens: auto;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(12, 34, 56, 0.08);
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.offer-card {
  display: grid;
  gap: 18px;
}

.offer-card__icon {
  display: grid;
  place-items: center;
  width: 118px;
  height: 86px;
  padding: 8px;
  border-radius: 22px;
  background:
    linear-gradient(155deg, rgba(12, 34, 56, 0.08), rgba(14, 92, 91, 0.08)),
    rgba(255, 255, 255, 0.74);
  overflow: hidden;
  border: 1px solid rgba(12, 34, 56, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.offer-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 16px;
}

.quote-card {
  display: grid;
  gap: 18px;
  padding: 28px;
  background: linear-gradient(155deg, rgba(12, 34, 56, 0.98), rgba(14, 92, 91, 0.92));
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-card .lead,
.quote-card p {
  color: rgba(244, 243, 238, 0.78);
}

.timeline {
  display: grid;
  gap: 18px;
}

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

.timeline-step {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

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

.management-layers .timeline-step {
  min-height: 220px;
  align-content: start;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.management-layers .timeline-step h3 {
  color: var(--navy);
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  line-height: 1.08;
  text-wrap: balance;
}

.section--dark .management-layers .timeline-step p {
  color: var(--ink-soft);
}

.timeline-step span,
.detail-step__index {
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-page {
  padding: 66px 0 90px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.64fr);
  gap: 28px;
}

.detail-copy {
  display: grid;
  gap: 26px;
}

.detail-copy h1 {
  max-width: 11.6ch;
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
}

.detail-copy .lead {
  max-width: 60ch;
}

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

.detail-slab {
  display: grid;
  gap: 18px;
}

.detail-slab--graphic {
  padding: 0;
  overflow: hidden;
}

.detail-slab--graphic img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
}

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

.detail-step {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(12, 34, 56, 0.98);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.capability-card {
  display: grid;
  gap: 16px;
}

.capability-card strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.02rem;
}

.legal-hero {
  padding-top: 34px;
}

.legal-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  gap: 24px;
  align-items: start;
}

.legal-hero .section-head--split {
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.62fr);
  align-items: start;
}

.legal-hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.6vw, 5.2rem);
}

.legal-hero .section-head--split p {
  max-width: 34ch;
}

.legal-stack {
  display: grid;
  gap: 18px;
}

.legal-card,
.legal-note,
.legal-block {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 34, 56, 0.08);
  box-shadow: var(--shadow-soft);
}

.legal-card,
.legal-note {
  display: grid;
  gap: 10px;
  padding: 24px;
  border-radius: 26px;
}

.legal-card strong,
.legal-note strong,
.legal-section h2 {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  color: var(--navy);
}

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

.legal-section {
  display: grid;
  gap: 22px;
}

.legal-section + .legal-section {
  margin-top: 34px;
}

.legal-block {
  display: grid;
  gap: 12px;
  padding: 24px;
  border-radius: 28px;
}

.legal-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.legal-meta {
  display: grid;
  gap: 14px;
}

.legal-meta__row {
  display: grid;
  gap: 4px;
}

.legal-meta__label {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(16, 40, 62, 0.56);
}

.legal-meta__value {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.55;
}

.legal-todo {
  color: #9a5b08;
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
  gap: 28px;
}

.contact-shell__intro {
  display: grid;
  gap: 18px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--navy);
  border: 1px solid rgba(12, 34, 56, 0.14);
  border-radius: 18px;
  background: #fffdfa;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(16, 40, 62, 0.46);
}

.contact-form textarea {
  min-height: 140px;
  padding: 16px;
  resize: vertical;
}

.contact-form__status {
  min-height: 1.5em;
  font-size: 0.92rem;
  color: rgba(16, 40, 62, 0.64);
}

.contact-form__status.is-success {
  color: #0b7d57;
}

.contact-form__status.is-error {
  color: #aa3e2f;
}

.site-footer {
  padding: 0 0 40px;
}

.site-footer__shell {
  display: grid;
  gap: 26px;
  padding: 28px;
  border-radius: 30px;
  color: var(--white);
  background: linear-gradient(160deg, rgba(12, 34, 56, 0.98), rgba(9, 24, 39, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
}

.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer__meta span,
.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(244, 243, 238, 0.76);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.footer-links a {
  color: rgba(244, 243, 238, 0.74);
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--white);
}

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

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

@media (max-width: 1120px) {
  .branch-gate__intro,
  .branch-gate__choices,
  .hero-split,
  .page-hero__layout,
  .detail-layout,
  .contact-shell,
  .section-head--split {
    grid-template-columns: 1fr;
  }

  .stats-band,
  .timeline--four,
  .capability-grid,
  .detail-grid,
  .metric-grid,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-shell {
    grid-template-columns: 1fr auto;
    padding-right: 14px;
  }

  .site-nav {
    position: fixed;
    inset: 94px 20px auto;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(12, 34, 56, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-strong);
    transform: scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
  }

  .brand {
    padding: 16px 18px;
  }

  .nav-actions {
    justify-self: end;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .gateway-options,
  .trade-products,
  .offer-grid,
  .grid-3,
  .grid-2,
  .form-grid,
  .stats-band,
  .timeline--four,
  .capability-grid,
  .detail-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .brand img {
    width: 132px;
  }

  .hero-split__visual,
  .page-hero__visual {
    min-height: 460px;
  }

  .branch-panel {
    min-height: 620px;
  }

  .branch-panel__meta {
    grid-template-columns: 1fr;
  }

  .legal-hero__layout,
  .legal-card-grid {
    grid-template-columns: 1fr;
  }
}

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

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

  .nav-shell {
    padding-right: 10px;
    border-radius: 24px;
  }

  .brand img {
    display: none;
  }

  .brand .brand__compact {
    display: block;
    width: 46px;
  }

  .home-shell {
    width: min(calc(100% - 28px), 1320px);
    padding-top: 22px;
  }

  .home-brandbar {
    margin-bottom: 28px;
  }

  .home-brandbar__brand img {
    width: 158px;
  }

  .branch-gate__intro h1 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .branch-panel {
    min-height: 560px;
    padding: 22px;
  }

  .branch-panel__content h2 {
    max-width: 11ch;
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .branch-panel__actions .button {
    width: 100%;
  }

  .button,
  .lang-toggle button {
    min-height: 50px;
  }

  .button {
    padding: 0 18px;
    font-size: 0.9rem;
  }

  .button-row {
    flex-direction: column;
    align-items: stretch;
  }

  .button-row .button {
    width: 100%;
  }

  .visual-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 18px;
  }

  .section,
  .page-hero,
  .detail-page {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .hero-split {
    padding-top: 54px;
  }

  .gateway-prompt,
  .card,
  .panel,
  .stack-card,
  .detail-slab,
  .offer-card,
  .trade-product,
  .contact-form,
  .contact-shell,
  .timeline-step,
  .site-footer__shell {
    padding: 22px;
  }

  .stats-band__item,
  .metric-card,
  .detail-step {
    padding: 20px;
  }

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

@media (max-width: 360px) {
  .container,
  .site-header__inner,
  .home-shell {
    width: min(calc(100% - 20px), var(--container));
  }

  .home-brandbar {
    gap: 12px;
  }

  .lang-toggle button {
    min-width: 46px;
    padding: 8px 10px;
    font-size: 0.75rem;
  }

  .branch-panel,
  .gateway-prompt,
  .card,
  .panel,
  .detail-slab,
  .offer-card,
  .trade-product,
  .contact-form,
  .contact-shell,
  .timeline-step,
  .site-footer__shell,
  .metric-card,
  .stats-band__item,
  .detail-step {
    padding: 18px;
  }

  .page-hero__copy h1,
  .detail-copy h1 {
    font-size: clamp(2.25rem, 13vw, 3rem);
  }

  .branch-gate__intro h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }
}
