:root {
  --black: #080b10;
  --black-soft: #0d1118;
  --ink: #111827;
  --muted: #5e6878;
  --muted-dark: #9aa6b7;
  --line: #dce3ea;
  --line-dark: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --silver: #eef2f6;
  --silver-strong: #c8d1dc;
  --blue: #0b5cad;
  --blue-dark: #063a74;
  --green: #18a874;
  --green-dark: #0a7251;
  --shadow: 0 20px 45px rgba(13, 17, 24, 0.12);
  --shadow-soft: 0 14px 35px rgba(13, 17, 24, 0.08);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.section {
  padding: 88px 0;
}

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

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(10, 114, 81, 0.18);
  border-radius: 999px;
  background: rgba(24, 168, 116, 0.08);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-badge.centered {
  display: flex;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.section-badge.inverse {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #d9f7ea;
}

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

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: 4.1rem;
  font-weight: 820;
}

h2 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 2.45rem;
  font-weight: 780;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

p {
  color: var(--muted);
}

.section-dark p,
.hero-subtitle {
  color: #c9d4df;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.btn svg {
  margin-left: 9px;
}

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

.btn-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 14px 24px rgba(24, 168, 116, 0.24);
}

.btn-primary:hover {
  background: #119465;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  left: 50%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: min(100% - 32px, 1220px);
  min-height: 72px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(8, 11, 16, 0.86);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.site-header.is-scrolled {
  background: rgba(8, 11, 16, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
}

.brand-logo-shell {
  display: block;
  flex: 0 0 118px;
  width: 118px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: #06152e;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.brand-logo-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.brand small {
  margin-top: 4px;
  color: var(--muted-dark);
  font-size: 0.74rem;
}

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

.main-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: #d8e0e8;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 760;
  text-decoration: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 154px 0 92px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(145deg, rgba(8, 11, 16, 0.96) 0%, rgba(10, 22, 38, 0.92) 48%, rgba(8, 11, 16, 0.98) 100%),
    linear-gradient(90deg, rgba(11, 92, 173, 0.24), rgba(24, 168, 116, 0.12));
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 84%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 54px;
}

.hero-logo-lockup {
  width: min(100%, 500px);
  margin: 0 0 24px;
  padding: 12px;
  border: 1px solid rgba(255, 224, 145, 0.26);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 224, 145, 0.1), rgba(255, 255, 255, 0.02)),
    #06152e;
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset;
}

.hero-logo-lockup img {
  width: 100%;
  height: 190px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 20px;
  color: #d6f6ea;
  font-size: 0.9rem;
  font-weight: 720;
}

.eyebrow svg {
  color: var(--green);
}

.hero-subtitle {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: 1.17rem;
}

.hero-retention {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  max-width: 660px;
  gap: 18px;
  margin-bottom: 28px;
  padding: 16px;
  border: 1px solid rgba(24, 168, 116, 0.34);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.hero-retention span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  min-height: 58px;
  border-radius: var(--radius);
  background: #dff8ec;
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 850;
}

.hero-retention p {
  margin: 0;
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 720;
}

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

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 476px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06)),
    rgba(8, 11, 16, 0.74);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.38);
}

.terminal-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}

.terminal-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--silver-strong);
}

.terminal-bar span:nth-child(1) {
  background: #ef6666;
}

.terminal-bar span:nth-child(2) {
  background: #dfbf5b;
}

.terminal-bar span:nth-child(3) {
  background: var(--green);
}

.visual-brand-panel {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px;
  border: 1px solid rgba(255, 224, 145, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 224, 145, 0.08), transparent 44%),
    rgba(6, 21, 46, 0.9);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.visual-brand-panel img {
  width: 100%;
  height: 190px;
  border-radius: calc(var(--radius) - 2px);
  object-fit: cover;
  object-position: center;
}

.visual-brand-panel span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 224, 145, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(8, 11, 16, 0.72);
  color: #fff0bf;
  font-size: 0.9rem;
  font-weight: 780;
  text-align: center;
  backdrop-filter: blur(12px);
}

.dashboard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.dashboard-head small,
.payment-flow span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.78rem;
}

.dashboard-head strong {
  color: var(--white);
  font-size: 1.08rem;
}

.approved-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 10px;
  border-radius: var(--radius);
  background: rgba(24, 168, 116, 0.16);
  color: #bff0d8;
  font-size: 0.84rem;
  font-weight: 750;
}

.approved-badge svg {
  width: 16px;
  height: 16px;
}

.hero-card-stage {
  display: grid;
  min-height: 206px;
  margin-bottom: 18px;
  place-items: center;
  perspective: 1100px;
}

.hero-card-3d {
  position: relative;
  width: min(82%, 330px);
  aspect-ratio: 1.58 / 1;
  transform-style: preserve-3d;
  animation: rotateHeroCard 11s linear infinite;
}

.hero-card-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  backface-visibility: hidden;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.36);
}

.hero-card-front {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 35%),
    linear-gradient(145deg, #07101d 0%, #0a315c 52%, #081019 100%);
}

.hero-card-back {
  background:
    linear-gradient(135deg, rgba(24, 168, 116, 0.18), transparent 44%),
    linear-gradient(145deg, #07101d 0%, #101722 58%, #07101d 100%);
  transform: rotateY(180deg);
}

.card-shine {
  position: absolute;
  top: -30%;
  right: 18%;
  width: 74px;
  height: 160%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(18deg);
}

.hero-card-top,
.hero-card-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.hero-card-top svg {
  width: 30px;
  height: 30px;
  color: #bff0d8;
}

.hero-chip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 50px;
  height: 36px;
  padding: 7px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f3f7fa, #8d99a9);
}

.hero-chip span {
  border: 1px solid rgba(8, 11, 16, 0.28);
  border-radius: 3px;
}

.hero-card-brand {
  position: relative;
  z-index: 1;
}

.hero-card-brand strong,
.hero-card-back strong {
  display: block;
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.08;
}

.hero-card-brand span,
.hero-card-back span,
.hero-card-back small,
.hero-card-bottom span {
  display: block;
  color: #c9d4df;
  font-size: 0.78rem;
}

.hero-card-bottom strong {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 1px solid rgba(24, 168, 116, 0.34);
  border-radius: 999px;
  background: rgba(24, 168, 116, 0.14);
  color: #cff8e2;
  font-size: 0.9rem;
}

.hero-card-stripe {
  height: 34px;
  margin: -6px -20px 18px;
  background: linear-gradient(90deg, #d9e1ea, #657386);
}

.hero-card-back span {
  margin: 12px 0;
  line-height: 1.45;
}

.payment-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 10px;
  margin-bottom: 18px;
}

.payment-flow > div {
  min-height: 104px;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.payment-flow > div:nth-child(1) {
  border-color: rgba(24, 168, 116, 0.34);
  background: rgba(24, 168, 116, 0.1);
}

.payment-flow > div:nth-child(2) {
  border-color: rgba(11, 92, 173, 0.34);
  background: rgba(11, 92, 173, 0.14);
}

.payment-flow > div:nth-child(3) {
  border-color: rgba(223, 191, 91, 0.34);
  background: rgba(223, 191, 91, 0.1);
}

.payment-flow > div:nth-child(4) {
  border-color: rgba(24, 168, 116, 0.22);
}

.payment-flow strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.25;
}

.payment-flow small {
  display: block;
  margin-top: 6px;
  color: #c9d4df;
  font-size: 0.76rem;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding-top: 22px;
}

.process-track {
  position: absolute;
  top: 31px;
  left: 10%;
  width: 80%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--blue), #dfbf5b, rgba(255, 255, 255, 0.22));
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #dce6f0;
  text-align: center;
}

.process-dot {
  position: relative;
  z-index: 1;
  display: block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(24, 168, 116, 0.12);
}

.process-step.protected .process-dot {
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(11, 92, 173, 0.16);
}

.process-step.hold .process-dot {
  background: #dfbf5b;
  box-shadow: 0 0 0 7px rgba(223, 191, 91, 0.14);
}

.process-step.release .process-dot {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.process-step strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.1;
}

.process-step small {
  color: var(--muted-dark);
  font-size: 0.72rem;
  line-height: 1.2;
}

@keyframes rotateHeroCard {
  from {
    transform: rotateY(0deg) rotateX(5deg);
  }

  to {
    transform: rotateY(360deg) rotateX(5deg);
  }
}

.trust-strip {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

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

.trust-grid div {
  min-height: 82px;
  padding: 14px 16px;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: var(--radius);
  background: var(--white);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid strong {
  color: var(--blue-dark);
  font-size: 1.1rem;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}

.split-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  align-items: start;
  gap: 48px;
}

.section-copy p {
  font-size: 1.04rem;
}

.feature-grid,
.contractor-grid,
.operation-map,
.dual-benefit-grid,
.client-steps,
.benefits-grid,
.segments-grid {
  display: grid;
  gap: 16px;
}

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

.info-card,
.benefit-card,
.segments-grid article,
.step-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.info-card {
  min-height: 196px;
  padding: 22px;
}

.info-card svg,
.benefit-card svg,
.segments-grid svg,
.step-card > svg {
  width: 30px;
  height: 30px;
  margin-bottom: 16px;
  color: var(--blue);
}

.info-card p,
.benefit-card p,
.segments-grid p,
.step-card p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

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

.operation-map {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 18px;
}

.operation-map article {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.operation-map strong,
.operation-map span {
  display: block;
}

.operation-map strong {
  margin-bottom: 7px;
  color: var(--blue-dark);
  font-size: 0.9rem;
}

.operation-map span {
  color: var(--muted);
  font-size: 0.9rem;
}

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

.dual-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

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

.side-panel {
  min-height: 470px;
  padding: 30px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.side-panel > svg {
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: var(--blue);
}

.side-panel h3 {
  margin-bottom: 18px;
}

.side-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-panel li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  color: var(--ink);
  font-weight: 640;
}

.side-panel li svg {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  color: var(--green);
}

.client-explain-section {
  background: var(--white);
}

.client-steps {
  grid-template-columns: repeat(5, 1fr);
  align-items: stretch;
}

.client-steps .step-card {
  min-height: 292px;
}

.operational-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(11, 92, 173, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 92, 173, 0.08), rgba(24, 168, 116, 0.08)),
    #f8fbff;
}

.operational-note svg {
  width: 34px;
  height: 34px;
  color: var(--green-dark);
}

.operational-note p {
  margin-bottom: 0;
  color: var(--ink);
}

.how-section {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.steps-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
}

.step-card {
  position: relative;
  min-height: 278px;
  padding: 24px;
}

.step-card.highlighted {
  border-color: rgba(24, 168, 116, 0.36);
  box-shadow: 0 18px 44px rgba(24, 168, 116, 0.13);
}

.step-number {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--silver);
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 850;
}

.flow-arrow {
  display: grid;
  width: 28px;
  place-items: center;
  color: var(--green);
}

.release-policy {
  padding-top: 70px;
  padding-bottom: 70px;
  background: var(--black-soft);
}

.policy-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(11, 92, 173, 0.38), rgba(8, 11, 16, 0.94)),
    #0b1220;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.policy-panel h2 {
  color: var(--white);
}

.policy-panel p {
  max-width: 900px;
  margin-bottom: 0;
  color: #dce6f0;
  font-size: 1.12rem;
}

.policy-icon {
  display: grid;
  width: 82px;
  height: 82px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  color: #c8f3dc;
}

.policy-icon svg {
  width: 42px;
  height: 42px;
}

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

.benefit-card {
  min-height: 214px;
  padding: 22px;
}

.partners-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 92px 0 96px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 8%, rgba(24, 168, 116, 0.2) 0, rgba(24, 168, 116, 0) 32%),
    radial-gradient(circle at 88% 15%, rgba(84, 163, 255, 0.2) 0, rgba(84, 163, 255, 0) 34%),
    linear-gradient(135deg, #061428 0%, #082f64 48%, #06111f 100%);
}

.partners-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.4));
}

.partners-heading,
.partners-showcase {
  max-width: 860px;
  margin: 0 auto 40px;
  text-align: center;
}

.partners-section h2 {
  color: var(--white);
  text-align: center;
}

.partners-heading p,
.partners-showcase p {
  margin: 0 auto;
  color: #d7e4f1;
  text-align: center;
}

.intermediary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.intermediary-card {
  min-height: 230px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.055)),
    rgba(7, 25, 47, 0.54);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.intermediary-card.accent {
  border-color: rgba(24, 168, 116, 0.42);
  background:
    linear-gradient(145deg, rgba(24, 168, 116, 0.18), rgba(255, 255, 255, 0.06)),
    rgba(7, 25, 47, 0.64);
}

.intermediary-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 18px;
  color: #bfe9d4;
}

.intermediary-card h3 {
  margin-bottom: 9px;
  color: var(--white);
  font-size: 1.06rem;
}

.intermediary-card p {
  margin-bottom: 0;
  color: #c7d4e2;
}

.intermediary-panel {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(5, 18, 34, 0.58);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.22);
}

.intermediary-flow-copy h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.35rem;
  line-height: 1.35;
}

.intermediary-flow-copy p {
  margin-bottom: 0;
  color: #d7e4f1;
}

.intermediary-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 28px 8px 4px;
}

.intermediary-flow::before {
  position: absolute;
  top: 46px;
  right: 12%;
  left: 12%;
  height: 4px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--green), var(--blue), #dfbf5b, rgba(255, 255, 255, 0.42));
}

.flow-point {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
}

.flow-point span {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border: 7px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.08);
}

.flow-point.done span {
  background: var(--green);
}

.flow-point.protected span {
  background: var(--blue);
}

.flow-point.hold span {
  background: #dfbf5b;
}

.flow-point.release span {
  background: var(--silver-strong);
}

.flow-point strong {
  color: var(--white);
  line-height: 1.25;
}

.flow-point small {
  color: #b8c5d5;
  font-weight: 650;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.audience-card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.audience-card h3 {
  margin-bottom: 16px;
  color: var(--white);
}

.audience-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.audience-card li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #d7e4f1;
}

.audience-card svg {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: #bfe9d4;
}

.partners-showcase {
  margin-top: 64px;
  margin-bottom: 34px;
}

.logo-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  top: 0;
  z-index: 2;
  width: 110px;
  height: 100%;
  content: "";
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, #071d3b 0%, rgba(7, 29, 59, 0) 100%);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, #071d3b 0%, rgba(7, 29, 59, 0) 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 22px;
  animation: scrollLogos 30s linear infinite;
}

.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

.logo-card {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 104px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.logo-card:hover {
  border-color: rgba(24, 168, 116, 0.48);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.24);
  transform: translateY(-3px);
}

.logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease, transform 0.2s ease;
}

.logo-card:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

@keyframes scrollLogos {
  from {
    transform: translateX(0);
  }

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

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

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

.segments-grid article {
  min-height: 204px;
  padding: 22px;
}

.differentials-section {
  background: #f8fafc;
}

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

.check-list li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  min-height: 54px;
  padding: 14px 16px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-weight: 650;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.check-list svg {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--green);
}

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

.institutional-section h2 {
  color: var(--white);
}

.institutional-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 0;
}

.institutional-grid div {
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.institutional-grid dt {
  margin-bottom: 8px;
  color: #aeb9c7;
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.institutional-grid dd {
  margin: 0;
  color: var(--white);
  font-weight: 680;
  overflow-wrap: anywhere;
}

.institutional-grid a {
  color: #b7ddff;
}

.institutional-grid .institutional-logo-card {
  position: relative;
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.045);
}

.institutional-grid .institutional-logo-card dt {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.institutional-grid .institutional-logo-card dd {
  position: absolute;
  inset: 0;
  margin: 0;
}

.institutional-grid .institutional-logo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.18;
  filter: saturate(0.9) contrast(1.08);
  transform: scale(1.04);
}

.institutional-grid .institutional-logo-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(13, 17, 24, 0.18), rgba(13, 17, 24, 0.34)),
    radial-gradient(circle at 50% 50%, rgba(255, 224, 145, 0.08), transparent 62%);
  pointer-events: none;
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  max-width: 430px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.contact-card svg {
  flex: 0 0 auto;
  color: var(--blue);
}

.contact-card strong,
.contact-card a {
  display: block;
}

.contact-card a {
  color: var(--blue-dark);
  text-decoration: none;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.contact-form label.full,
.contact-form .full,
.form-note {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 740;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.contact-form input {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 132px;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(11, 92, 173, 0.55);
  box-shadow: 0 0 0 4px rgba(11, 92, 173, 0.1);
}

.contact-form .btn {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 64px 0 24px;
  background:
    radial-gradient(circle at 16% 0%, rgba(11, 92, 173, 0.28) 0, rgba(11, 92, 173, 0) 32%),
    linear-gradient(135deg, #06090f 0%, #081426 54%, #05070b 100%);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line-dark);
}

.footer-card {
  min-width: 0;
  min-height: 272px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.18);
}

.footer-logo-link {
  display: block;
  width: fit-content;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-about p {
  margin: 12px 0 0;
  color: #b4c0ce;
}

.footer-logo-shell {
  max-width: 100%;
  flex-basis: 230px;
  width: 230px;
  height: 96px;
}

.footer-logo-shell img {
  object-fit: cover;
}

.footer-company-name {
  margin-bottom: 0;
}

.footer-grid strong,
.footer-grid a,
.footer-column span {
  display: block;
}

.footer-grid strong {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.footer-grid a,
.footer-column span {
  color: #aeb9c7;
  line-height: 1.55;
  text-decoration: none;
}

.footer-message p {
  margin: 0;
  color: #b4c0ce;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-message p + p {
  margin-top: 10px;
}

.footer-message b {
  color: var(--white);
}

.footer-main-link {
  font-weight: 700;
}

.footer-column .footer-subtitle {
  margin-top: 16px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 780;
  text-transform: uppercase;
}

.footer-section-label {
  color: #f4d77c;
  font-weight: 760;
}

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

.footer-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 8px;
}

.footer-column span {
  overflow-wrap: anywhere;
}

.footer-policies a {
  padding-bottom: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-policies a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  gap: 18px;
  padding-top: 22px;
  color: #9faabc;
  font-size: 0.88rem;
  text-align: center;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 3.3rem;
  }

  .site-header {
    grid-template-columns: auto auto;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    justify-content: end;
  }

  .hero-inner,
  .split-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 720px;
  }

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

  .flow-arrow {
    display: none;
  }

  .intermediary-grid,
  .operation-map,
  .contractor-grid,
  .client-steps,
  .benefits-grid,
  .segments-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intermediary-panel {
    grid-template-columns: 1fr;
  }

  .footer-card {
    min-height: auto;
  }

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

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

  .section {
    padding: 68px 0;
  }

  .site-header {
    top: 10px;
    width: min(100% - 20px, 1220px);
    min-height: 64px;
    padding: 9px 10px;
  }

  .brand small {
    display: none;
  }

  .brand-logo-shell {
    flex-basis: 88px;
    width: 88px;
    height: 42px;
  }

  .hero-logo-lockup {
    width: min(100%, 400px);
  }

  .hero-logo-lockup img {
    height: 156px;
  }

  .visual-brand-panel img {
    height: 150px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    justify-self: end;
  }

  .nav-toggle svg {
    width: 22px;
    height: 22px;
  }

  .main-nav {
    position: fixed;
    top: 82px;
    right: 10px;
    left: 10px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(8, 11, 16, 0.98);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
  }

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

  .main-nav a {
    min-height: 44px;
  }

  .hero {
    min-height: auto;
    padding: 128px 0 70px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.04rem;
  }

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

  .hero-retention span {
    width: fit-content;
    min-width: 112px;
  }

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

  .hero-visual {
    min-height: auto;
  }

  .hero-card-stage {
    min-height: 190px;
  }

  .hero-card-3d {
    width: min(100%, 300px);
  }

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

  .dashboard-head {
    flex-direction: column;
    align-items: stretch;
  }

  .process-line {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 0;
  }

  .process-track {
    top: 9px;
    bottom: 9px;
    left: 9px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--green), var(--blue), #dfbf5b, rgba(255, 255, 255, 0.22));
  }

  .process-step {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    column-gap: 12px;
    text-align: left;
  }

  .process-dot {
    grid-row: 1 / span 2;
  }

  .trust-grid,
  .feature-grid.compact,
  .operation-map,
  .contractor-grid,
  .dual-benefit-grid,
  .client-steps,
  .intermediary-grid,
  .intermediary-panel,
  .audience-grid,
  .steps-flow,
  .benefits-grid,
  .segments-grid,
  .institutional-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .intermediary-panel,
  .policy-panel {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .intermediary-flow {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 4px 0 0;
  }

  .intermediary-flow::before {
    top: 18px;
    bottom: 18px;
    left: 18px;
    width: 4px;
    height: auto;
    background: linear-gradient(180deg, var(--green), var(--blue), #dfbf5b, rgba(255, 255, 255, 0.42));
  }

  .flow-point {
    grid-template-columns: auto minmax(0, 1fr);
    justify-items: start;
    column-gap: 12px;
    text-align: left;
  }

  .flow-point span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .logo-carousel::before,
  .logo-carousel::after {
    width: 42px;
  }

  .logo-track {
    gap: 14px;
    animation-duration: 24s;
  }

  .logo-card {
    width: 176px;
    height: 88px;
    padding: 16px;
  }

  .logo-card img {
    max-height: 48px;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  h1 {
    font-size: 2.15rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  .brand strong {
    font-size: 0.86rem;
  }

  .brand-logo-shell {
    width: 74px;
    height: 38px;
    flex-basis: 74px;
  }

  .brand {
    gap: 10px;
  }

  .hero-retention p,
  .policy-panel p {
    font-size: 1rem;
  }

  .dashboard-head,
  .payment-flow > div,
  .hero-visual,
  .operation-map article,
  .side-panel,
  .operational-note,
  .intermediary-card,
  .intermediary-panel,
  .audience-card,
  .step-card,
  .info-card,
  .benefit-card,
  .segments-grid article {
    padding: 16px;
  }

  .hero-card-stage {
    min-height: 172px;
  }

  .hero-card-3d {
    width: min(100%, 260px);
  }

  .hero-card-face {
    padding: 16px;
  }

  .hero-card-brand strong {
    font-size: 1.02rem;
  }

  .hero-card-brand span,
  .hero-card-bottom span,
  .hero-card-back span,
  .hero-card-back small {
    font-size: 0.7rem;
  }

  .partners-section {
    padding: 62px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
