:root {
  --ink: #0f172a;
  --muted: #617084;
  --line: #dce6f2;
  --paper: #f7fbff;
  --white: #ffffff;
  --blue: #1f7df0;
  --blue-deep: #0a4ea3;
  --cyan: #22c7d9;
  --aqua: #28d7d0;
  --gold: #d6a948;
  --shadow: 0 24px 80px rgba(29, 78, 134, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", Arial, sans-serif;
  letter-spacing: 0;
}

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

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

.selector-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 82% 12%, rgba(34, 199, 217, 0.18), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef7ff 55%, #ffffff 100%);
}

.selector-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.selector-hero {
  max-width: 820px;
  margin-bottom: 34px;
}

.selector-hero h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.06;
}

.selector-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.concept-card {
  min-height: 520px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
}

.concept-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #dce8f6;
  background: #f6fbff;
}

.concept-card span,
.eyebrow {
  display: inline-flex;
  margin: 24px 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.concept-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.concept-card p {
  color: var(--muted);
  line-height: 1.75;
}

.platinum-card span {
  color: #9a7222;
}

.aqua-card span {
  color: #087b83;
}

.legacy-card span {
  color: #1f2937;
}

.concept-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 0 clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(18, 47, 89, 0.1);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 60px rgba(29, 78, 134, 0.12);
  backdrop-filter: blur(18px);
}

.brand-slot {
  display: inline-flex;
  align-items: center;
  min-width: 190px;
  color: var(--blue-deep);
  font-weight: 900;
}

.brand-slot span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px dashed rgba(23, 109, 202, 0.24);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.58);
}

.brand-slot img {
  width: 174px;
  height: auto;
}

.concept-nav,
.header-tools,
.lang-switch,
.hero-actions,
.hero-stats,
.contact-section {
  display: flex;
  align-items: center;
}

.concept-nav {
  gap: 28px;
  color: #38516f;
  font-size: 16px;
  font-weight: 800;
}

.concept-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 10px;
  border-radius: 999px;
  transition: color 180ms ease, transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.concept-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), transparent);
  opacity: 0;
  transform: scaleX(0.24);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.concept-nav a:hover,
.concept-nav a.active {
  background: color-mix(in srgb, var(--blue) 10%, transparent);
  box-shadow: 0 0 24px color-mix(in srgb, var(--blue) 24%, transparent);
  color: var(--blue-deep);
  transform: translateY(-2px);
}

.concept-nav a:hover::after,
.concept-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.concept-platinum .concept-nav a {
  min-height: 42px;
  padding: 0 14px;
}

.concept-platinum .concept-nav a.active {
  color: #173f72;
  background:
    linear-gradient(135deg, rgba(255, 250, 235, 0.94), rgba(255, 255, 255, 0.78));
  box-shadow:
    0 14px 34px rgba(23, 63, 114, 0.1),
    0 0 0 1px rgba(167, 132, 70, 0.18) inset;
}

.concept-platinum .concept-nav a.active::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 7px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(182, 136, 46, 0.82), transparent);
  box-shadow: 0 0 16px rgba(214, 169, 72, 0.28);
}

.header-tools {
  gap: 12px;
}

.lang-switch {
  padding: 4px;
  border: 1px solid #d9e7f6;
  border-radius: 999px;
  background: #f6fbff;
}

.lang-switch button {
  min-width: 36px;
  height: 30px;
  padding: 0 11px;
  border: 0;
  border-radius: 999px;
  color: #4f637c;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lang-switch button:hover,
.lang-switch button.active {
  color: #ffffff;
  background: var(--blue);
  box-shadow: 0 0 24px color-mix(in srgb, var(--blue) 32%, transparent);
  transform: translateY(-2px);
}

.lang-select {
  display: none;
}

.lang-trigger {
  display: none;
}

.lang-menu {
  display: flex;
  align-items: center;
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 900;
  white-space: nowrap;
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #22a7df);
  box-shadow: 0 16px 40px rgba(23, 109, 202, 0.24);
}

.header-cta,
.primary-button,
.secondary-button {
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  box-shadow: 0 20px 54px color-mix(in srgb, var(--blue) 28%, transparent);
  transform: translateY(-5px);
}

.secondary-button {
  color: var(--blue-deep);
  border: 1px solid #c9def4;
  background: #ffffff;
}

.concept-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.05fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 148px);
  padding: 58px clamp(20px, 6vw, 86px) 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(34, 199, 217, 0.18), transparent 30%),
    linear-gradient(135deg, #f8fcff 0%, #edf7ff 48%, #ffffff 100%);
}

.concept-blue .concept-hero {
  background:
    radial-gradient(circle at 76% 18%, rgba(9, 107, 255, 0.3), transparent 30%),
    radial-gradient(circle at 16% 82%, rgba(46, 143, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #f4f9ff 0%, #ddecff 48%, #ffffff 100%);
}

.concept-blue .concept-header {
  border-bottom-color: rgba(9, 107, 255, 0.14);
  background: rgba(249, 253, 255, 0.9);
  box-shadow: 0 20px 70px rgba(6, 26, 85, 0.12);
}

.concept-blue .brand-slot {
  min-width: 276px;
}

.concept-blue .brand-slot img {
  width: 272px;
  max-height: 62px;
  object-fit: contain;
}

.concept-blue .primary-button {
  background: linear-gradient(135deg, #096bff, #0062f2);
  box-shadow: 0 18px 46px rgba(9, 107, 255, 0.28);
}

.concept-blue .secondary-button {
  border-color: rgba(9, 107, 255, 0.24);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 36px rgba(9, 107, 255, 0.08);
}

.concept-blue .hero-stats div {
  border-color: rgba(31, 125, 240, 0.14);
  background:
    linear-gradient(135deg, rgba(9, 107, 255, 0.09), rgba(46, 143, 255, 0.07)),
    rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 42px rgba(6, 26, 85, 0.1);
}

.concept-blue .hero-stats div::before {
  background: linear-gradient(90deg, #096bff, #52a7ff, transparent);
  box-shadow: 0 0 16px rgba(9, 107, 255, 0.28);
}

.concept-blue .hero-stats div:hover {
  border-color: rgba(9, 107, 255, 0.44);
  box-shadow: 0 22px 58px rgba(9, 107, 255, 0.18);
}

.concept-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.22;
  pointer-events: none;
  background-image:
    linear-gradient(color-mix(in srgb, var(--blue) 13%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--blue) 13%, transparent) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
}

.concept-hero > * {
  position: relative;
  z-index: 1;
}

.concept-platinum .concept-hero {
  background:
    radial-gradient(circle at 76% 12%, rgba(214, 169, 72, 0.2), transparent 30%),
    linear-gradient(135deg, #fbfcff 0%, #f3f7fb 52%, #fffaf0 100%);
}

.concept-platinum .concept-hero::after,
.concept-platinum .platform-section::after,
.concept-platinum .network-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background:
    radial-gradient(circle, rgba(182, 136, 46, 0.36) 0 2px, transparent 3px),
    linear-gradient(90deg, transparent, rgba(182, 136, 46, 0.18), transparent);
}

.concept-platinum .concept-hero::after {
  right: clamp(20px, 8vw, 122px);
  bottom: 118px;
  width: 240px;
  height: 1px;
  opacity: 0.74;
}

.concept-platinum .brand-slot img {
  width: 206px;
  height: auto;
  max-height: none;
  object-fit: contain;
}

.concept-platinum .brand-slot {
  margin-left: clamp(10px, 1.8vw, 28px);
}

.concept-platinum .section-heading .eyebrow {
  color: #a7792a;
}

.concept-platinum .section-heading h2 {
  text-shadow: 0 14px 34px rgba(23, 63, 114, 0.08);
}

.concept-platinum .section-heading.centered::after {
  content: "";
  display: block;
  width: 118px;
  height: 1px;
  margin: 24px auto 0;
  background:
    linear-gradient(90deg, transparent, rgba(167, 132, 70, 0.62), transparent);
}

.concept-aqua .concept-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(40, 215, 208, 0.2), transparent 30%),
    linear-gradient(135deg, #effcff 0%, #f7fbff 48%, #eaf4ff 100%);
}

.hero-copy-block {
  max-width: 720px;
}

.hero-copy-block h1 {
  margin: 0 0 24px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 900;
  color: #0c2344;
}

[data-lang="en"] .hero-copy-block h1,
[data-lang="ru"] .hero-copy-block h1 {
  font-size: clamp(34px, 4.3vw, 60px);
}

[data-lang="ru"] .section-heading h2,
[data-lang="ru"] .partner-copy h2,
[data-lang="ru"] .contact-section h2 {
  font-size: clamp(27px, 3.15vw, 42px);
}

.hero-copy-block p:not(.eyebrow) {
  color: #4c6078;
  font-size: clamp(16px, 1.45vw, 19px);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
  margin: 26px 0 22px;
}

.hero-stats {
  gap: 10px;
  flex-wrap: wrap;
}

.hero-stats div {
  position: relative;
  overflow: hidden;
  min-width: 142px;
  padding: 12px 16px;
  border: 1px solid #d7e7f8;
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blue) 9%, transparent), transparent 48%),
    rgba(255, 255, 255, 0.72);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.hero-stats div::before {
  content: "";
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-stats div:hover {
  border-color: color-mix(in srgb, var(--gold) 64%, var(--blue));
  box-shadow: 0 18px 48px color-mix(in srgb, var(--blue) 14%, transparent);
  transform: translateY(-6px);
}

.hero-stats strong,
.hero-stats span {
  display: block;
}

.hero-stats strong {
  color: var(--blue-deep);
  font-size: 30px;
}

.concept-trust-bar {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 6vw, 86px);
  background: #eaf3fb;
}

.concept-trust-bar span {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 0 16px;
  border: 1px solid color-mix(in srgb, var(--blue) 10%, transparent);
  color: #35516d;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--blue) 8%, transparent), transparent 42%),
    #ffffff;
  font-size: clamp(14px, 1.08vw, 17px);
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.js-motion-ready .concept-trust-bar span[data-animate] {
  opacity: 1;
  transform: none;
  filter: none;
}

.concept-trust-bar span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 18px color-mix(in srgb, var(--gold) 64%, transparent);
}

.concept-trust-bar span:hover {
  color: var(--blue-deep);
  border-color: color-mix(in srgb, var(--gold) 64%, var(--blue));
  box-shadow: inset 0 0 32px color-mix(in srgb, var(--gold) 12%, transparent);
  transform: translateY(-4px);
}

.concept-platinum .concept-trust-bar {
  background: #f5f0e6;
}

.concept-aqua .concept-trust-bar {
  background: #e8fbfc;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
}

.hero-visual {
  position: relative;
  min-height: clamp(390px, 34vw, 520px);
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(23, 109, 202, 0.13);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.48)),
    color-mix(in srgb, var(--blue) 8%, #ffffff);
  box-shadow: 0 30px 90px color-mix(in srgb, var(--blue) 20%, transparent);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18) 42%, rgba(255, 255, 255, 0.04)),
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--blue) 28%, transparent), transparent 28%);
  pointer-events: none;
}

.hero-visual .hero-photo {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(1.12) brightness(1.2);
}

.hero-visual > img:not(.hero-photo) {
  position: absolute;
  z-index: 2;
  right: clamp(18px, 3vw, 44px);
  bottom: clamp(18px, 3vw, 44px);
  width: 100%;
  max-width: min(58%, 520px);
  max-height: 58%;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--blue) 20%, transparent);
  backdrop-filter: blur(12px);
}

.concept-platinum .hero-visual {
  display: grid;
  place-items: center;
  padding: clamp(12px, 1.6vw, 20px);
  background:
    radial-gradient(circle at 78% 18%, rgba(207, 177, 116, 0.16), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.92), rgba(247, 241, 229, 0.64));
  box-shadow:
    0 24px 74px rgba(23, 63, 114, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.platinum-hero-illu {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1.38;
  min-height: 360px;
}

.platinum-hero-illu svg {
  display: block;
  width: 100%;
  height: 100%;
}

.platinum-hero-illu .glass-panel,
.platinum-hero-illu .glass-card rect {
  fill: rgba(255, 252, 244, 0.58);
  stroke: rgba(167, 132, 70, 0.14);
  stroke-width: 1.15;
}

.platinum-hero-illu .world-ring {
  fill: rgba(207, 177, 116, 0.045);
  stroke: rgba(167, 132, 70, 0.13);
}

.platinum-hero-illu .world-line,
.platinum-hero-illu .payment-route {
  fill: none;
  stroke: rgba(167, 132, 70, 0.16);
  stroke-width: 1.55;
}

.platinum-hero-illu .payment-route {
  stroke: rgba(182, 136, 46, 0.48);
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-dasharray: 10 14;
}

.platinum-hero-illu .payment-route.alt {
  stroke: rgba(23, 63, 114, 0.24);
  opacity: 0.58;
}

.platinum-hero-illu .map-shape path {
  fill: rgba(207, 177, 116, 0.055);
  stroke: rgba(167, 132, 70, 0.22);
  stroke-width: 1.15;
}

.platinum-hero-illu .hero-nodes circle {
  fill: url(#platinumGold);
  stroke: rgba(255, 255, 255, 0.72);
  stroke-width: 4;
}

.platinum-hero-illu .glass-card path {
  fill: none;
  stroke: rgba(167, 132, 70, 0.36);
  stroke-width: 3.1;
  stroke-linecap: round;
}

.platinum-hero-illu .glass-card circle {
  fill: url(#platinumGold);
}

.platinum-card-illu {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 92px;
  height: 66px;
  margin: 0;
  opacity: 0.66;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.platinum-card-illu svg,
.region-illu,
.partner-illu {
  display: block;
}

.glass-illu {
  display: grid;
  place-items: center;
  border: 1px solid rgba(167, 132, 70, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 26% 22%, rgba(255, 255, 255, 0.9), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(207, 177, 116, 0.075), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(247, 242, 230, 0.28));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.7),
    0 10px 26px rgba(23, 63, 114, 0.045);
}

.platinum-card-illu::before,
.platinum-card-illu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.platinum-card-illu::before {
  inset: 8px;
  border-radius: 6px;
  background-image:
    radial-gradient(circle at 14px 12px, rgba(23, 63, 114, 0.14) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 58px 34px, rgba(182, 136, 46, 0.16) 0 1.5px, transparent 2.5px),
    linear-gradient(rgba(23, 63, 114, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 63, 114, 0.045) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 16px 16px, 16px 16px;
  mask-image: linear-gradient(135deg, #000, transparent 76%);
}

.platinum-card-illu::after {
  right: 8px;
  bottom: 8px;
  width: 20px;
  height: 20px;
  border-right: 2px solid rgba(167, 132, 70, 0.36);
  border-bottom: 2px solid rgba(167, 132, 70, 0.36);
  border-radius: 0 0 6px 0;
  box-shadow: 10px 10px 22px rgba(182, 136, 46, 0.1);
}

.glass-illu svg {
  position: relative;
  z-index: 1;
  width: 58%;
  height: 58%;
  overflow: visible;
  filter: drop-shadow(0 8px 12px rgba(23, 63, 114, 0.08));
}

.glass-illu rect,
.glass-illu circle,
.glass-illu path {
  fill: rgba(255, 252, 244, 0.1);
  stroke: rgba(139, 107, 54, 0.46);
  stroke-width: 2.45;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.glass-illu circle,
.glass-illu rect:nth-of-type(2) {
  fill: rgba(207, 177, 116, 0.1);
}

.concept-platinum .feature-grid article:hover .platinum-card-illu,
.concept-platinum .feature-grid article.is-hovered .platinum-card-illu {
  transform: translateY(-3px);
  border-color: rgba(182, 136, 46, 0.36);
  box-shadow: 0 18px 44px rgba(23, 63, 114, 0.1);
}

.concept-platinum .feature-grid article:hover .glass-illu rect,
.concept-platinum .feature-grid article:hover .glass-illu circle,
.concept-platinum .feature-grid article:hover .glass-illu path,
.concept-platinum .feature-grid article.is-hovered .glass-illu rect,
.concept-platinum .feature-grid article.is-hovered .glass-illu circle,
.concept-platinum .feature-grid article.is-hovered .glass-illu path {
  stroke: rgba(151, 113, 38, 0.88);
}

.region-illu {
  width: 100%;
  height: 82px;
  margin-bottom: 16px;
}

.concept-platinum .region-illu {
  position: absolute;
  top: 28px;
  right: 28px;
  width: 92px;
  height: 58px;
  margin: 0;
  opacity: 0.82;
}

.region-illu path,
.region-illu circle {
  fill: none;
  stroke: rgba(145, 112, 56, 0.58);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.region-list > *:hover .region-illu path,
.region-list > *:hover .region-illu circle {
  stroke: #b6882e;
}

.concept-platinum .feature-grid span {
  position: relative;
  width: 100%;
  margin: 0 0 34px;
  min-height: 38px;
  align-items: center;
  color: #a7792a;
}

.concept-platinum .feature-card__meta {
  margin-bottom: 0;
}

.concept-platinum .feature-grid article {
  min-height: 276px;
  padding: 30px 28px 26px;
  border-color: rgba(23, 63, 114, 0.1);
  background:
    linear-gradient(180deg, rgba(247, 242, 230, 0.36) 0 104px, transparent 105px),
    radial-gradient(circle at 84% 14%, rgba(207, 177, 116, 0.1), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfdff 62%, #f7f4ed 100%);
  box-shadow:
    0 22px 64px rgba(23, 63, 114, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.concept-platinum .feature-grid span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -14px;
  width: min(116px, 48%);
  height: 1px;
  background:
    linear-gradient(90deg, rgba(167, 132, 70, 0.56), rgba(167, 132, 70, 0.08), transparent);
}

.concept-platinum .feature-grid span::before {
  content: "";
  position: absolute;
  left: min(122px, 52%);
  bottom: -16px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(167, 132, 70, 0.42);
  box-shadow: 28px 0 0 rgba(23, 63, 114, 0.1);
}

.concept-platinum .feature-grid article::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 34px;
  width: 78px;
  height: 52px;
  opacity: 0.34;
  background:
    radial-gradient(circle at 16px 10px, rgba(167, 132, 70, 0.28) 0 3px, transparent 4px),
    radial-gradient(circle at 50px 30px, rgba(23, 63, 114, 0.18) 0 3px, transparent 4px),
    linear-gradient(135deg, transparent 0 44%, rgba(23, 63, 114, 0.14) 45% 48%, transparent 49%),
    linear-gradient(0deg, transparent 0 62%, rgba(167, 132, 70, 0.14) 63% 66%, transparent 67%);
  pointer-events: none;
}

.concept-platinum .feature-grid h3 {
  max-width: 94%;
  margin-bottom: 14px;
}

.concept-platinum .feature-grid article .platinum-card-illu {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  flex: 0 0 auto;
  z-index: 1;
}

.concept-platinum .region-list > * {
  position: relative;
  min-height: 236px;
  padding: 28px 26px 24px;
  border-color: rgba(23, 63, 114, 0.1);
  background:
    linear-gradient(180deg, rgba(247, 242, 230, 0.28) 0 96px, transparent 97px),
    linear-gradient(180deg, #ffffff, #fbfdff);
  box-shadow:
    0 20px 58px rgba(23, 63, 114, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.concept-platinum .region-list span {
  margin: 0;
  min-height: auto;
  align-items: flex-start;
  color: #a7792a;
  font-size: 13px;
  letter-spacing: 0;
}

.region-card__meta {
  display: grid;
  gap: 5px;
  min-height: 64px;
  margin: 4px 0 18px;
}

.region-card__meta em {
  max-width: 66%;
  color: rgba(23, 63, 114, 0.46);
  font-size: 11.5px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.35;
}

.concept-platinum .region-list strong {
  max-width: 80%;
  color: #10284a;
  font-size: clamp(23px, 1.55vw, 26px);
  line-height: 1.18;
}

.concept-platinum .region-list p {
  max-width: 92%;
  color: #657487;
  font-size: 14.5px;
}

.concept-platinum .region-list .region-status {
  display: inline-flex;
  align-items: center;
  width: auto;
  min-height: 26px;
  margin: 0 0 12px;
  padding: 0 10px;
  border: 1px solid rgba(167, 132, 70, 0.24);
  border-radius: 999px;
  color: #8c6b2e;
  background: linear-gradient(135deg, rgba(255, 250, 235, 0.92), rgba(247, 242, 230, 0.52));
  font-size: 11px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(23, 63, 114, 0.045);
}

.concept-platinum .region-list > *::after,
.concept-platinum .partner-board div::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 32px;
  height: 32px;
  border-right: 1px solid rgba(167, 132, 70, 0.28);
  border-bottom: 1px solid rgba(167, 132, 70, 0.28);
  pointer-events: none;
}

.concept-platinum .platform-section,
.concept-platinum .network-section {
  position: relative;
  overflow: hidden;
}

.concept-platinum .platform-section::after {
  left: clamp(18px, 7vw, 98px);
  top: 118px;
  width: 168px;
  height: 1px;
  opacity: 0.52;
}

.concept-platinum .network-section::after {
  right: clamp(18px, 8vw, 120px);
  top: 92px;
  width: 196px;
  height: 1px;
  opacity: 0.44;
}

.concept-platinum .partner-board div {
  position: relative;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  border-color: rgba(23, 63, 114, 0.1);
  background:
    linear-gradient(90deg, rgba(247, 242, 230, 0.4), #ffffff 42%, #fbfdff);
  box-shadow:
    0 18px 46px rgba(23, 63, 114, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.concept-platinum .partner-board div:hover .partner-illu path,
.concept-platinum .partner-board div:hover .partner-illu rect,
.concept-platinum .partner-board div:hover .partner-illu circle {
  stroke: rgba(151, 113, 38, 0.84);
}

.concept-platinum .partner-board div strong,
.concept-platinum .partner-board div span {
  grid-column: 2;
}

.partner-illu {
  grid-row: span 2;
  width: 70px;
  height: 62px;
}

.concept-platinum .partner-illu {
  width: 64px;
  height: 58px;
}

.partner-illu rect,
.partner-illu path,
.partner-illu circle {
  fill: none;
  stroke: rgba(145, 112, 56, 0.6);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-board div:hover .partner-illu rect,
.partner-board div:hover .partner-illu path,
.partner-board div:hover .partner-illu circle {
  stroke: #b6882e;
}

.concept-blue .hero-visual {
  min-height: clamp(420px, 36vw, 548px);
  border-color: rgba(9, 107, 255, 0.15);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(221, 241, 255, 0.72)),
    #f7fcff;
  box-shadow: 0 34px 110px rgba(6, 26, 85, 0.18);
}

.concept-blue .hero-visual::before {
  inset: 0;
  z-index: 2;
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12), transparent 34%, rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 88% 18%, rgba(46, 143, 255, 0.18), transparent 26%);
}

.concept-blue .hero-visual > img:not(.hero-photo) {
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  padding: 0;
  object-fit: cover;
  border-radius: 12px;
  background: transparent;
  box-shadow: none;
}

.concept-blue .concept-trust-bar {
  background: linear-gradient(90deg, #ddecff, #edf6ff);
}

.concept-blue .concept-trust-bar span {
  border-color: rgba(9, 107, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(9, 107, 255, 0.09), rgba(46, 143, 255, 0.06)),
    rgba(255, 255, 255, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.concept-blue .concept-trust-bar span::before {
  background: #096bff;
  box-shadow: 0 0 18px rgba(9, 107, 255, 0.48);
}

.concept-blue .concept-trust-bar span:hover,
.concept-blue .concept-trust-bar span.is-active {
  color: #073d88;
  border-color: rgba(9, 107, 255, 0.46);
  background:
    linear-gradient(135deg, rgba(9, 107, 255, 0.16), rgba(46, 143, 255, 0.1)),
    rgba(255, 255, 255, 0.98);
  box-shadow: inset 0 0 34px rgba(9, 107, 255, 0.1), 0 18px 46px rgba(9, 107, 255, 0.14);
  transform: translateY(-5px);
}

.concept-blue .concept-trust-bar span:hover::before,
.concept-blue .concept-trust-bar span.is-active::before {
  background: #167bff;
  box-shadow: 0 0 24px rgba(9, 107, 255, 0.7);
}

.concept-blue .platform-section {
  background:
    radial-gradient(circle at 94% 10%, rgba(9, 107, 255, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fcff 0%, #eef8ff 100%);
}

.concept-blue .feature-grid article,
.concept-blue .region-list div,
.concept-blue .partner-board div {
  position: relative;
  overflow: hidden;
  border-color: rgba(9, 107, 255, 0.13);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.92)),
    #ffffff;
  box-shadow: 0 18px 54px rgba(6, 26, 85, 0.1);
}

.concept-blue .feature-grid article::after,
.concept-blue .region-list div::after,
.concept-blue .partner-board div::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #096bff, #52a7ff, transparent);
}

.concept-blue .feature-grid article:hover,
.concept-blue .feature-grid article.is-hovered,
.concept-blue .region-list div:hover,
.concept-blue .partner-board div:hover {
  border-color: rgba(9, 107, 255, 0.4);
  box-shadow: 0 30px 82px rgba(6, 26, 85, 0.15), 0 0 34px rgba(9, 107, 255, 0.12);
}

.concept-blue .feature-grid article:hover span,
.concept-blue .feature-grid article.is-hovered span {
  color: #096bff;
  text-shadow: 0 0 20px rgba(9, 107, 255, 0.26);
}

.section {
  padding: 96px clamp(20px, 6vw, 86px);
}

.platform-section,
.network-section,
.partner-section {
  position: relative;
  overflow: hidden;
}

.platform-section::before,
.network-section::before,
.partner-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, color-mix(in srgb, var(--blue) 12%, transparent), transparent 24%),
    radial-gradient(circle at 92% 8%, rgba(214, 169, 72, 0.12), transparent 22%);
}

.platform-section > *,
.network-section > *,
.partner-section > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.partner-copy h2,
.contact-section h2 {
  margin: 0 0 16px;
  color: #0c2344;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.15;
}

.section-heading p,
.feature-grid p,
.region-list p,
.partner-copy p,
.partner-board span,
.contact-section p {
  color: var(--muted);
  line-height: 1.8;
}

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

.feature-grid article,
.region-list > *,
.partner-board div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 42px rgba(18, 57, 98, 0.07);
}

.feature-grid article {
  position: relative;
  min-height: 286px;
  padding: 30px;
  overflow: hidden;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.feature-card__meta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  margin-bottom: 18px;
}

.feature-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(214, 169, 72, 0.2), transparent 34%);
  transition: opacity 240ms ease;
  pointer-events: none;
}

.feature-grid article > * {
  position: relative;
  z-index: 1;
}

.feature-grid article:hover,
.feature-grid article.is-hovered,
.region-list > *:hover,
.partner-board div:hover,
.contact-card:hover {
  transform: translateY(-12px) scale(1.012);
  border-color: rgba(214, 169, 72, 0.52);
  box-shadow: 0 30px 82px rgba(18, 57, 98, 0.18), 0 0 36px color-mix(in srgb, var(--blue) 16%, transparent);
}

.feature-grid article:hover::before,
.feature-grid article.is-hovered::before {
  opacity: 1;
}

.feature-grid article:hover span,
.feature-grid article.is-hovered span {
  color: var(--gold);
  text-shadow: 0 0 20px rgba(214, 169, 72, 0.4);
  transform: translateX(12px) scale(1.08);
}

.feature-grid span,
.region-list span {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--blue);
  font-weight: 900;
  transition: color 220ms ease, transform 220ms ease;
}

.feature-grid h3,
.region-list strong,
.partner-board strong {
  display: block;
  margin-bottom: 10px;
  color: #10284a;
  font-size: clamp(22px, 1.7vw, 27px);
}

.network-section {
  background: #ffffff;
}

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

.region-list > * {
  min-height: 220px;
  padding: 26px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.partner-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: center;
  background: #eef7ff;
}

.concept-platinum .partner-section {
  background: #f8f4ea;
}

.concept-aqua .partner-section {
  background: #effbfb;
}

.partner-board {
  display: grid;
  gap: 14px;
}

.partner-board div {
  display: grid;
  gap: 6px;
  padding: 24px;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(500px, 0.86fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: 70px clamp(20px, 6vw, 86px);
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.16), transparent 24%),
    linear-gradient(135deg, #0f4fa5, #1299c7);
}

.concept-platinum .contact-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(255, 242, 207, 0.08), transparent 18%, transparent 78%, rgba(232, 205, 142, 0.14)),
    linear-gradient(135deg, #102f55 0%, #173f68 52%, #263c52 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 0 -1px 0 rgba(214, 169, 72, 0.18);
}

.concept-platinum .contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 48%, rgba(255, 232, 176, 0.12) 49%, transparent 50% 100%);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}

.concept-platinum .contact-section::after {
  content: "";
  position: absolute;
  right: clamp(24px, 7vw, 112px);
  top: 58px;
  width: min(520px, 48vw);
  height: 120px;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 239, 197, 0.72), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent) 0 48px / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(214, 169, 72, 0.16), transparent) 0 96px / 100% 1px no-repeat;
}

.concept-platinum .contact-section > * {
  position: relative;
  z-index: 1;
}

.concept-platinum .contact-card {
  border-color: rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    linear-gradient(120deg, rgba(255, 232, 176, 0.08), transparent 42%),
    rgba(10, 31, 58, 0.22);
  box-shadow:
    0 34px 96px rgba(5, 22, 45, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.concept-platinum .contact-proof span {
  border-color: rgba(255, 239, 197, 0.26);
  background:
    linear-gradient(90deg, rgba(255, 239, 197, 0.14), rgba(255, 255, 255, 0.07));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.concept-platinum .contact-proof span::before {
  background: #f2cc75;
  box-shadow: 0 0 18px rgba(242, 204, 117, 0.58);
}

.contact-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-assurance span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255, 239, 197, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 239, 197, 0.16), rgba(255, 255, 255, 0.055));
  font-size: 12px;
  font-weight: 900;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.contact-assurance span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #f2cc75;
  box-shadow: 0 0 16px rgba(242, 204, 117, 0.48);
}

.concept-platinum .contact-form input,
.concept-platinum .contact-form select,
.concept-platinum .contact-form textarea {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
}

.concept-platinum .contact-form input:focus,
.concept-platinum .contact-form select:focus,
.concept-platinum .contact-form textarea:focus {
  border-color: rgba(255, 232, 176, 0.58);
  box-shadow: 0 0 0 4px rgba(255, 232, 176, 0.12);
}

.concept-platinum .contact-section .eyebrow {
  color: #f4d28a;
}

.concept-platinum .contact-form .form-submit {
  color: #173f72;
  background:
    linear-gradient(135deg, #fffdf8 0%, #f1dfb4 58%, #ffffff 100%);
  box-shadow:
    0 18px 48px rgba(5, 22, 45, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.concept-aqua .contact-section {
  background: linear-gradient(135deg, #0f6f8a, #24c6bd);
}

.contact-section h2,
.contact-section p,
.contact-section .eyebrow {
  color: #ffffff;
}

.contact-section p {
  max-width: 760px;
  opacity: 0.82;
}

.contact-proof {
  display: grid;
  gap: 12px;
  max-width: 520px;
  margin-top: 24px;
}

.contact-proof span {
  position: relative;
  min-height: 46px;
  padding: 13px 16px 13px 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.11);
  font-size: 14px;
  font-weight: 900;
}

.contact-proof span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ffe8b0;
  box-shadow: 0 0 18px rgba(255, 232, 176, 0.55);
}

.contact-card {
  width: 100%;
  min-width: 0;
  max-width: 640px;
  justify-self: end;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.18), transparent 28%);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  backdrop-filter: blur(18px);
}

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

.contact-card span {
  margin-bottom: 8px;
  font-weight: 900;
}

.contact-card strong {
  font-size: clamp(19px, 1.8vw, 25px);
  line-height: 1.45;
}

.contact-detail {
  display: grid;
  gap: 16px;
}

.contact-lines {
  display: grid;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-lines p {
  display: grid;
  grid-template-columns: 106px 1fr;
  gap: 8px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.contact-lines em {
  color: rgba(255, 232, 176, 0.95);
  font-style: normal;
  font-weight: 900;
}

.contact-lines a {
  color: #ffffff;
  word-break: break-word;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

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

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

.contact-form label,
.contact-form fieldset {
  min-width: 0;
}

.contact-form label > span,
.contact-form legend {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  outline: 0;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

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

.contact-form select {
  height: 48px;
  padding: 0 14px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, 0.9) 50%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9) 50%, transparent 50%);
  background-position: calc(100% - 18px) 20px, calc(100% - 12px) 20px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.custom-select-field {
  position: relative;
}

.custom-select-field.is-open {
  z-index: 80;
}

.custom-select-field select[data-custom-select-native] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.custom-select-trigger {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 42px 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08));
  font: inherit;
  font-size: 15px;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.custom-select-trigger::after {
  content: "";
  position: absolute;
  right: 17px;
  top: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255, 232, 176, 0.92);
  border-bottom: 2px solid rgba(255, 232, 176, 0.92);
  transform: rotate(45deg);
  transition: transform 180ms ease, top 180ms ease;
}

.custom-select-field.is-open .custom-select-trigger {
  border-color: rgba(255, 232, 176, 0.82);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 232, 176, 0.12);
}

.custom-select-field.is-open .custom-select-trigger::after {
  top: 21px;
  transform: rotate(225deg);
}

.custom-select-menu {
  position: absolute;
  z-index: 90;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  display: none;
  gap: 5px;
  padding: 7px;
  border: 1px solid rgba(255, 232, 176, 0.22);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(38, 62, 90, 0.98), rgba(25, 47, 76, 0.98));
  box-shadow:
    0 22px 54px rgba(5, 22, 45, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.custom-select-field.is-open .custom-select-menu {
  display: grid;
}

.custom-select-menu button {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 42px;
  padding: 0 13px;
  border: 0;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.custom-select-menu button:hover,
.custom-select-menu button.is-selected {
  color: #ffffff;
  background: rgba(255, 232, 176, 0.14);
}

.custom-select-menu button:hover {
  transform: translateX(2px);
}

.contact-form textarea {
  min-height: 112px;
  resize: vertical;
  padding: 14px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 232, 176, 0.82);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 0 3px rgba(255, 232, 176, 0.12);
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #ff6c8e;
  box-shadow: 0 0 0 3px rgba(255, 108, 142, 0.14);
}

.contact-form .volume-field {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form .volume-field legend {
  grid-column: 1 / -1;
}

.contact-form .volume-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-form .volume-field label:hover,
.contact-form .volume-field label:has(input:checked) {
  border-color: rgba(255, 232, 176, 0.86);
  background: rgba(255, 232, 176, 0.18);
  transform: translateY(-2px);
}

.contact-form .volume-field input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  accent-color: #ffe8b0;
}

.contact-form .message-field em {
  color: rgba(255, 255, 255, 0.58);
  font-style: normal;
}

.contact-form .terms-field {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.contact-form .terms-field input {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  accent-color: #ffe8b0;
}

.contact-form .terms-field a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .form-submit {
  justify-self: center;
  min-width: 220px;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  color: var(--blue-deep);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  font: inherit;
  font-size: 17px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.contact-form .form-submit:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
}

.contact-form .form-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.contact-form .form-status {
  min-height: 22px;
  margin: -6px 0 0;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-weight: 900;
}

.contact-form .form-status.is-error {
  color: #ffd1dc;
}

.concept-platinum {
  --blue: #b6882e;
  --blue-deep: #173f72;
}

.concept-aqua {
  --blue: #0c8fa0;
  --blue-deep: #0f5365;
}

.concept-footer {
  padding: 62px clamp(20px, 6vw, 86px) 50px;
  color: rgba(255, 255, 255, 0.68);
  background: #344150;
  font-size: 15px;
}

.concept-footer .footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.6fr) minmax(420px, 1fr);
  gap: clamp(34px, 7vw, 110px);
  max-width: 1400px;
  margin: 0 auto 34px;
}

.concept-footer .footer-brand img {
  width: 190px;
  margin-bottom: 8px;
}

.concept-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.concept-footer .footer-brand > span,
.concept-footer .footer-contact strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
}

.concept-footer .footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}

.concept-footer .footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  color: #263240;
  background: #ffc948;
  font-size: 13px;
  font-weight: 900;
}

.concept-footer .footer-contact {
  display: grid;
  gap: 26px;
}

.concept-footer .footer-contact p {
  margin: 0;
}

.concept-footer .footer-contact span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 700;
}

.concept-footer .footer-contact em {
  color: rgba(255, 201, 72, 0.94);
  font-style: normal;
  font-weight: 900;
}

.concept-footer .footer-bottom {
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.concept-footer .footer-badges {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.concept-footer .footer-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  color: #263240;
  border-radius: 6px;
  background: #ffffff;
  font-size: 12px;
  font-weight: 900;
}

.concept-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.concept-platinum .concept-footer {
  color: #4d6078;
  background:
    radial-gradient(circle at 18% 12%, rgba(207, 177, 116, 0.1), transparent 28%),
    radial-gradient(circle at 88% 22%, rgba(23, 63, 114, 0.06), transparent 26%),
    linear-gradient(135deg, #fbfaf6 0%, #f3ecdf 50%, #f5f8fb 100%);
  border-top: 1px solid rgba(167, 132, 70, 0.18);
}

.concept-platinum .concept-footer .footer-main {
  grid-template-columns: minmax(330px, 0.66fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
}

.concept-platinum .concept-footer .footer-brand {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 470px;
  padding: 18px 20px;
  border: 1px solid rgba(167, 132, 70, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.36);
  box-shadow:
    0 18px 48px rgba(23, 63, 114, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.concept-platinum .concept-footer .footer-brand img {
  width: 92px;
  height: 128px;
  margin: 0;
  object-fit: contain;
  border-radius: 18px;
  filter: drop-shadow(0 18px 34px rgba(23, 63, 114, 0.16));
}

.concept-platinum .concept-footer .footer-brand-copy {
  min-width: 0;
}

.concept-platinum .concept-footer .footer-brand p,
.concept-platinum .concept-footer .footer-contact span,
.concept-platinum .concept-footer .footer-bottom p {
  color: #5e6f84;
}

.concept-platinum .concept-footer .footer-brand p {
  margin: 0 0 12px;
  color: #173f72;
  line-height: 1.45;
}

.concept-platinum .concept-footer .footer-brand > span,
.concept-platinum .concept-footer .footer-contact strong {
  color: #173f72;
}

.concept-platinum .concept-footer .footer-brand-copy > span {
  display: block;
  color: #173f72;
  font-size: 16px;
  font-weight: 900;
}

.concept-platinum .concept-footer .footer-contact em {
  color: #9d7a36;
}

.concept-platinum .concept-footer .footer-socials a {
  min-width: 86px;
  height: 38px;
  color: #173f72;
  border: 1px solid rgba(167, 132, 70, 0.2);
  background: linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(226, 209, 166, 0.62));
  box-shadow: 0 12px 30px rgba(23, 63, 114, 0.08);
}

.concept-platinum .concept-footer .footer-socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(167, 132, 70, 0.36);
  box-shadow: 0 16px 34px rgba(23, 63, 114, 0.12);
}

.concept-platinum .concept-footer .footer-bottom {
  border-top: 1px solid rgba(167, 132, 70, 0.2);
}

.concept-platinum .concept-footer .footer-badges span {
  color: #173f72;
  border: 1px solid rgba(167, 132, 70, 0.22);
  background: rgba(255, 255, 255, 0.64);
}

.js-motion-ready [data-animate] {
  opacity: 1;
  transform: translateY(18px);
  filter: blur(4px);
  transition:
    opacity 620ms ease var(--delay, 0ms),
    transform 620ms ease var(--delay, 0ms),
    filter 620ms ease var(--delay, 0ms);
}

.js-motion-ready [data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

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

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

  .js-motion-ready [data-animate] {
    transform: none;
    filter: none;
  }
}

body[data-lang="en"] .concept-hero,
body[data-lang="ru"] .concept-hero {
  padding-top: 48px;
  padding-bottom: 36px;
}

@media (min-width: 1101px) {
  body[data-lang="zh"] .concept-hero {
    grid-template-columns: minmax(0, 0.88fr) minmax(440px, 1.04fr);
    gap: clamp(28px, 5vw, 72px);
    min-height: calc(100vh - 190px);
    padding-top: 42px;
    padding-bottom: 30px;
  }

  body[data-lang="zh"] .hero-copy-block h1 {
    max-width: 680px;
    margin-bottom: 18px;
    font-size: clamp(36px, 3.35vw, 46px);
    line-height: 1.04;
  }

  body[data-lang="zh"] .hero-copy-block p:not(.eyebrow) {
    max-width: 680px;
    font-size: clamp(15px, 1.18vw, 17px);
    line-height: 1.56;
  }

  body[data-lang="zh"] .hero-actions {
    margin: 20px 0 18px;
  }

  body[data-lang="zh"] .hero-stats {
    gap: 8px;
  }

  body[data-lang="zh"] .hero-stats div {
    min-width: 128px;
    padding: 10px 14px;
  }

  body[data-lang="zh"] .hero-stats div::before {
    margin-bottom: 7px;
  }

  body[data-lang="zh"] .hero-stats strong {
    font-size: 27px;
  }

  body[data-lang="zh"] .hero-stats span {
    font-size: 12px;
    line-height: 1.32;
  }

  body[data-lang="zh"] .concept-platinum .hero-visual {
    min-height: clamp(330px, 28vw, 460px);
  }

  body[data-lang="zh"] .concept-platinum .platinum-hero-illu {
    height: clamp(330px, 28vw, 460px);
    min-height: 0;
    aspect-ratio: auto;
  }
}

body[data-lang="en"] .hero-copy-block h1,
body[data-lang="ru"] .hero-copy-block h1 {
  font-size: clamp(31px, 3.25vw, 42px);
  line-height: 1.08;
}

body[data-lang="en"] .hero-copy-block p:not(.eyebrow),
body[data-lang="ru"] .hero-copy-block p:not(.eyebrow) {
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.48;
}

body[data-lang="en"] .hero-actions,
body[data-lang="ru"] .hero-actions {
  margin: 22px 0 20px;
}

body[data-lang="en"] .hero-stats,
body[data-lang="ru"] .hero-stats {
  gap: 8px;
}

body[data-lang="en"] .hero-stats div,
body[data-lang="ru"] .hero-stats div {
  min-width: 118px;
  padding: 10px 14px;
}

body[data-lang="en"] .hero-stats div::before,
body[data-lang="ru"] .hero-stats div::before {
  margin-bottom: 7px;
}

body[data-lang="en"] .hero-stats strong,
body[data-lang="ru"] .hero-stats strong {
  font-size: 25px;
}

body[data-lang="en"] .hero-stats span,
body[data-lang="ru"] .hero-stats span {
  font-size: 11px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .concept-nav {
    display: none;
  }

  .concept-hero,
  .partner-section,
  .concept-footer .footer-main {
    grid-template-columns: 1fr;
  }

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

  .region-list,
  .feature-grid,
  .concept-trust-bar,
  .concept-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .selector-shell {
    width: calc(100% - 32px);
    padding: 56px 0;
  }

  .concept-grid,
  .feature-grid,
  .region-list,
  .concept-trust-bar {
    grid-template-columns: 1fr;
  }

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

  .concept-header {
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px;
  }

  .concept-platinum .concept-header {
    min-height: 68px;
    align-items: center;
    flex-direction: row;
    gap: 12px;
    padding: 10px 12px;
  }

  .brand-slot {
    min-width: 0;
  }

  .concept-platinum .brand-slot {
    flex: 1 1 auto;
    margin-left: 0;
    min-width: 0;
  }

  .concept-platinum .brand-slot img {
    width: min(164px, 48vw);
    height: auto;
    max-height: none;
  }

  .brand-slot span {
    min-height: 32px;
    font-size: 13px;
  }

  .header-tools {
    width: 100%;
    justify-content: space-between;
  }

  .concept-platinum .header-tools {
    position: relative;
    z-index: 30;
    width: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
  }

  .concept-platinum .lang-switch {
    position: relative;
    display: block;
    width: 118px;
    min-width: 118px;
    height: 40px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .concept-platinum .lang-switch::after {
    content: none;
  }

  .concept-platinum .lang-trigger {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 118px;
    height: 40px;
    padding: 0 30px 0 12px;
    border: 1px solid rgba(167, 132, 70, 0.34);
    border-radius: 999px;
    color: #173f72;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 241, 227, 0.9));
    box-shadow:
      0 12px 28px rgba(23, 63, 114, 0.12),
      inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font: inherit;
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
  }

  .concept-platinum .lang-trigger span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    text-align: center;
    pointer-events: none;
  }

  .concept-platinum .lang-trigger::after {
    content: "";
    position: absolute;
    right: 12px;
    top: 14px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #8c6b2e;
    border-bottom: 2px solid #8c6b2e;
    transform: rotate(45deg);
    transition: transform 180ms ease, top 180ms ease;
    pointer-events: none;
  }

  .concept-platinum .lang-switch.is-open .lang-trigger {
    border-color: rgba(167, 132, 70, 0.5);
    box-shadow:
      0 18px 42px rgba(23, 63, 114, 0.18),
      0 0 0 4px rgba(214, 169, 72, 0.1);
  }

  .concept-platinum .lang-switch.is-open .lang-trigger::after {
    top: 17px;
    transform: rotate(225deg);
  }

  .concept-platinum .lang-menu {
    display: none;
  }

  .concept-platinum .lang-switch.is-open .lang-menu {
    position: absolute;
    top: 46px;
    right: 0;
    z-index: 50;
    display: grid;
    gap: 4px;
    width: 132px;
    padding: 5px;
    border: 1px solid rgba(167, 132, 70, 0.2);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow:
      0 24px 60px rgba(23, 63, 114, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .concept-platinum .lang-menu button {
    display: inline-flex;
    width: 100%;
    height: 32px;
    justify-content: center;
    padding: 0 10px;
    border-radius: 10px;
    color: #49617c;
    background: transparent;
    box-shadow: none;
    font-size: 12px;
    transform: none;
  }

  .concept-platinum .lang-menu button.active,
  .concept-platinum .lang-menu button:hover {
    color: #173f72;
    background: linear-gradient(135deg, rgba(247, 238, 216, 0.95), rgba(255, 255, 255, 0.96));
  }

  .header-cta {
    min-height: 38px;
    padding: 0 13px;
    font-size: 13px;
  }

  .concept-hero {
    min-height: auto;
    gap: 26px;
    padding: 42px 16px 36px;
  }

  .hero-copy-block h1 {
    margin-bottom: 18px;
    font-size: 34px;
    line-height: 1.12;
  }

  .hero-copy-block p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.58;
  }

  .hero-actions {
    gap: 10px;
    margin: 20px 0 16px;
  }

  .hero-actions a {
    width: 100%;
    min-height: 46px;
  }

  .hero-stats div {
    flex: 1 1 100%;
    padding: 10px 14px;
  }

  .concept-trust-bar {
    padding: 0;
  }

  .concept-trust-bar span {
    min-height: 56px;
    justify-content: flex-start;
    padding: 0 18px;
  }

  .section,
  .contact-section {
    padding: 52px 16px;
  }

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

  .section-heading h2,
  .partner-copy h2,
  .contact-section h2 {
    margin-bottom: 12px;
    font-size: 29px;
    line-height: 1.18;
  }

  .section-heading p,
  .feature-grid p,
  .region-list p,
  .partner-copy p,
  .partner-board span,
  .contact-section p {
    line-height: 1.66;
  }

  .feature-grid article,
  .region-list > * {
    min-height: auto;
    padding: 22px;
  }

  .feature-grid span,
  .region-list span {
    margin-bottom: 22px;
  }

  .concept-platinum .feature-grid article {
    min-height: 238px;
    padding: 24px 22px 22px;
  }

  .concept-platinum .feature-grid article .platinum-card-illu {
    width: 78px;
    height: 56px;
  }

  .concept-platinum .feature-grid span {
    min-height: 34px;
    margin-bottom: 28px;
  }

  .concept-platinum .region-list > * {
    min-height: 210px;
    padding: 24px 22px 22px;
  }

  .concept-platinum .region-illu {
    top: 22px;
    right: 20px;
    width: 78px;
    height: 50px;
  }

  .concept-platinum .region-list span {
    min-height: auto;
    margin: 0;
  }

  .region-card__meta {
    min-height: 54px;
    margin: 4px 0 16px;
  }

  .region-card__meta em {
    max-width: 68%;
  }

  .contact-assurance {
    gap: 8px;
  }

  .contact-assurance span {
    width: 100%;
    min-height: 38px;
    justify-content: flex-start;
  }

  .contact-section {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .contact-lines p {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .contact-form .form-grid,
  .contact-form .volume-field {
    grid-template-columns: 1fr;
  }

  .custom-select-trigger {
    height: 50px;
    padding: 0 44px 0 14px;
    font-size: 15.5px;
  }

  .custom-select-trigger::after {
    top: 19px;
  }

  .custom-select-field.is-open .custom-select-trigger::after {
    top: 22px;
  }

  .custom-select-menu {
    top: calc(100% + 9px);
    gap: 6px;
    padding: 8px;
    border-color: rgba(255, 232, 176, 0.34);
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(46, 72, 104, 0.99), rgba(23, 48, 79, 0.99));
    box-shadow:
      0 24px 58px rgba(3, 18, 36, 0.46),
      0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  }

  .custom-select-menu button {
    min-height: 48px;
    padding: 0 14px;
    font-size: 15px;
  }

  .contact-form .form-submit {
    width: 100%;
  }

  .concept-footer {
    padding: 42px 16px 28px;
  }

  .concept-platinum .concept-footer .footer-brand {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 16px;
    max-width: none;
    padding: 16px;
  }

  .concept-platinum .concept-footer .footer-brand img {
    width: 74px;
    height: 104px;
    border-radius: 14px;
  }

  .concept-platinum .concept-footer .footer-brand p {
    margin-bottom: 12px;
  }

  .concept-platinum .concept-footer .footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .concept-platinum .concept-footer .footer-contact {
    min-width: 0;
  }

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

  .concept-platinum .platinum-hero-illu {
    min-height: 0;
    max-width: 100%;
  }

  .concept-platinum .concept-footer .footer-bottom {
    display: grid;
    gap: 14px;
    margin-top: 4px;
    padding: 18px 16px 0;
    border-top-color: rgba(167, 132, 70, 0.16);
  }

  .concept-platinum .concept-footer .footer-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .concept-platinum .concept-footer .footer-badges span {
    min-height: 30px;
    padding: 0 11px;
    border-radius: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 237, 218, 0.78));
    font-size: 11px;
    box-shadow: 0 8px 22px rgba(23, 63, 114, 0.06);
  }

  .concept-platinum .concept-footer .footer-bottom p {
    padding: 12px 13px;
    border: 1px solid rgba(167, 132, 70, 0.12);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.38);
    color: #5d6f84;
    font-size: 11.5px;
    line-height: 1.55;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}
