:root {
  color-scheme: dark;
  --bg: #07131d;
  --bg-2: #0d1d2b;
  --bg-3: #0f2639;
  --panel: rgba(12, 26, 38, 0.72);
  --panel-strong: rgba(16, 35, 49, 0.92);
  --panel-soft: rgba(255, 255, 255, 0.06);
  --line: rgba(148, 176, 212, 0.2);
  --text: #edf5ff;
  --muted: #b8c7d9;
  --muted-2: #8ea7c1;
  --blue: #3a8dff;
  --blue-strong: #1d6ef2;
  --cyan: #48d3ff;
  --green: #35d39c;
  --amber: #ffb545;
  --shadow: 0 24px 60px rgba(3, 10, 18, 0.45);
  --radius: 18px;
  --radius-sm: 12px;
  --container: min(1180px, calc(100% - 30px));
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(58, 141, 255, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(72, 211, 255, 0.12), transparent 32%),
    linear-gradient(180deg, #07131d 0%, #0b1b2a 100%);
  color: var(--text);
}

button,
input {
  font: inherit;
}

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

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

#loading {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(5, 13, 20, 0.94);
  backdrop-filter: blur(12px);
  transition: opacity 180ms ease;
}

#loading.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.12);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 800ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.site-shell {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(13, 29, 43, 0.4), rgba(7, 19, 29, 0.2));
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 19, 29, 0.7);
  backdrop-filter: blur(16px);
}

.topbar-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 800;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(58, 141, 255, 0.26));
}

.brand span {
  white-space: nowrap;
  font-size: 22px;
  color: #ffffff;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  color: var(--muted);
}

.nav a {
  transition: color 160ms ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--cyan);
}

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

.top-start-button {
  flex: 0 0 auto;
}

.language {
  position: relative;
}

.lang-button,
.ghost-button,
.primary-button,
.plain-button {
  min-height: 46px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.lang-button:hover,
.ghost-button:hover,
.primary-button:hover,
.plain-button:hover,
.lang-menu button:hover,
.footer-socials button:hover,
.float-contact:hover,
.modal-choice:hover {
  transform: translateY(-1px);
}

.lang-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.lang-current-icon,
.lang-option-icon {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--blue), #5cb8ff);
  border: 1px solid rgba(255, 255, 255, 0.26);
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  width: 228px;
  padding: 8px;
  background: rgba(9, 22, 32, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.lang-menu[hidden] {
  display: none;
}

.lang-menu button {
  width: 100%;
  height: 40px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  padding: 0 12px;
  cursor: pointer;
}

.lang-option-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.primary-button {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 35px rgba(25, 105, 246, 0.35);
}

.primary-button:hover {
  background: linear-gradient(135deg, var(--blue-strong), #1558d6);
}

.ghost-button {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.12);
}

.ghost-button:hover {
  border-color: rgba(72, 211, 255, 0.45);
  background: rgba(72, 211, 255, 0.08);
}

.plain-button {
  background: transparent;
  color: var(--cyan);
  padding-inline: 0;
  min-height: auto;
}

.section .plain-button,
.contact-band .plain-button {
  color: #8ad9ff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 710px;
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(72, 211, 255, 0.16), transparent 18%),
    radial-gradient(circle at 80% 25%, rgba(58, 141, 255, 0.18), transparent 26%),
    linear-gradient(135deg, #07131d 0%, #0a1b2b 45%, #0b2435 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 19, 29, 0.02), rgba(7, 19, 29, 0.0), rgba(72, 211, 255, 0.04)),
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-bg-logo {
  position: absolute;
  right: -24px;
  top: 52px;
  width: min(700px, 56vw);
  opacity: 0.13;
  filter: saturate(1.15) drop-shadow(0 18px 28px rgba(58, 141, 255, 0.22));
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at top right, rgba(72, 211, 255, 0.12), transparent 24%),
    linear-gradient(125deg, transparent 0 44%, rgba(72, 211, 255, 0.08) 44% 45%, transparent 45% 100%),
    linear-gradient(62deg, transparent 0 58%, rgba(255, 181, 69, 0.1) 58% 59%, transparent 59% 100%);
}

.hero-network {
  position: absolute;
  top: 120px;
  right: max(12px, calc((100vw - 1180px) / 2));
  width: 430px;
  height: 430px;
  z-index: 1;
  pointer-events: none;
}

.hero-network::before,
.hero-network::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(130, 187, 255, 0.22);
  border-radius: 26px;
  transform: rotate(12deg);
}

.hero-network::after {
  inset: 88px 54px;
  border-color: rgba(255, 181, 69, 0.26);
  transform: rotate(-18deg);
}

.chain-card {
  position: absolute;
  width: 180px;
  min-height: 128px;
  padding: 18px 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.04));
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.chain-card span,
.chain-card small {
  display: block;
  color: #aabed4;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.chain-card strong {
  display: block;
  margin: 12px 0 8px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
}

.chain-card-main {
  top: 42px;
  right: 92px;
}

.chain-card-side {
  right: 15px;
  bottom: 54px;
  width: 154px;
  min-height: 110px;
}

.chain-card-side strong {
  color: #7ee0ff;
  font-size: 28px;
}

.network-node {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #7ee0ff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 9px rgba(126, 224, 255, 0.12);
}

.node-a { top: 36px; left: 74px; }
.node-b { top: 180px; left: 36px; background: var(--amber); box-shadow: 0 0 0 9px rgba(255, 181, 69, 0.1); }
.node-c { right: 38px; top: 190px; }
.node-d { left: 170px; bottom: 28px; background: var(--green); box-shadow: 0 0 0 9px rgba(53, 211, 156, 0.12); }

.network-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(126,224,255,0), rgba(126,224,255,0.9), rgba(255,255,255,0.24));
  transform-origin: left center;
}

.line-a { width: 220px; top: 92px; left: 82px; transform: rotate(18deg); }
.line-b { width: 240px; top: 188px; left: 42px; transform: rotate(-8deg); background: linear-gradient(90deg, rgba(255,181,69,0), rgba(255,181,69,0.8), rgba(255,255,255,0.24)); }
.line-c { width: 190px; right: 58px; top: 262px; transform: rotate(36deg); }
.line-d { width: 160px; left: 146px; bottom: 80px; transform: rotate(-22deg); background: linear-gradient(90deg, rgba(53,211,156,0), rgba(53,211,156,0.82), rgba(255,255,255,0.22)); }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 88px 0 60px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: #dfeeff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(126, 224, 255, 0.2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-title {
  width: min(860px, 100%);
  margin: 22px 0 0;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-title span {
  color: #8ad9ff;
}

.hero-copy {
  width: min(620px, 100%);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  margin: 22px 0 0;
}

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

.hero-actions .ghost-button {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(126, 224, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dceeff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(820px, 100%);
  margin-top: 46px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.hero-stat {
  padding: 18px 18px 16px;
  background: rgba(12, 26, 38, 0.7);
}

.hero-stat small {
  display: block;
  color: var(--muted-2);
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-stat strong {
  font-size: 18px;
  color: var(--text);
}

.hero-console {
  width: min(1060px, 100%);
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.console-panel {
  padding: 20px 22px;
  background: rgba(9, 21, 31, 0.8);
}

.console-title {
  color: #b2d9ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.console-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.console-row div {
  border-left: 2px solid rgba(126, 224, 255, 0.6);
  padding-left: 12px;
}

.console-row small,
.compact-label {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  font-weight: 700;
}

.console-row strong,
.compact-value {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-top: 6px;
}

.section {
  position: relative;
  overflow: hidden;
  padding: 88px 0;
  background: linear-gradient(180deg, rgba(7, 19, 29, 0.86), rgba(9, 24, 38, 0.84));
  color: #ffffff;
}

.section.alt {
  background: linear-gradient(180deg, rgba(7, 20, 32, 0.96), rgba(11, 27, 41, 0.96));
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 0 46%, rgba(72, 211, 255, 0.06) 46% 47%, transparent 47% 100%),
    linear-gradient(65deg, transparent 0 58%, rgba(255, 181, 69, 0.06) 58% 59%, transparent 59% 100%);
}

.section::after {
  content: "";
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  top: 48px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(126, 224, 255, 0.12);
  border-radius: 28px;
  transform: rotate(18deg);
  pointer-events: none;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: clamp(2rem, 2vw, 2.9rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.section-subtitle {
  width: min(560px, 100%);
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.feature,
.panel,
.vip-card,
.faq-item,
.ref-card,
.step-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.feature {
  padding: 22px;
  min-height: 220px;
}

.feature-code {
  color: var(--cyan);
  font-weight: 800;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.feature h3,
.vip-card h3,
.ref-card h3,
.step-card h3 {
  color: #ffffff;
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.3;
}

.feature p,
.vip-card p,
.ref-card p,
.step-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.calc-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  align-items: stretch;
}

.panel {
  padding: 22px;
}

.field {
  margin-top: 18px;
}

.field label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 14px;
  font-weight: 800;
}

.field input {
  width: 100%;
  height: 60px;
  margin-top: 10px;
  border: 1px solid rgba(126, 224, 255, 0.22);
  border-radius: 14px;
  padding: 0 16px;
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  background: rgba(255,255,255,0.04);
  outline: none;
}

.field input:focus {
  border-color: rgba(126, 224, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(126, 224, 255, 0.12);
}

.range-note {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
  color: var(--muted-2);
  font-size: 13px;
}

.periods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.periods button {
  height: 46px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
  transition: all 180ms ease;
}

.periods button.active {
  background: linear-gradient(135deg, var(--blue), var(--blue-strong));
  border-color: rgba(126, 224, 255, 0.3);
  box-shadow: 0 10px 22px rgba(25, 105, 246, 0.28);
}

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

.result-card {
  min-height: 132px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
}

.result-card strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.1rem, 2vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.result-card small {
  color: var(--muted-2);
  font-weight: 800;
}

.result-card.highlight {
  background: linear-gradient(135deg, rgba(58,141,255,0.9), rgba(72,211,255,0.38));
  border-color: rgba(126,224,255,0.35);
}

.result-card.highlight small {
  color: rgba(223,238,255,0.9);
}

.tier-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.tier-pill {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
}

.tier-pill.active {
  border-color: rgba(126,224,255,0.38);
  background: rgba(58,141,255,0.18);
}

.tier-pill span,
.tier-pill strong {
  display: block;
}

.tier-pill strong {
  font-size: 1rem;
}

.tier-pill span {
  color: var(--muted-2);
  font-size: 12px;
  margin-top: 4px;
}

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

.vip-card {
  padding: 22px;
}

.vip-rate {
  font-size: 34px;
  color: #7af0b6;
  font-weight: 900;
  margin-top: 8px;
  letter-spacing: -0.05em;
}

.vip-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: var(--muted-2);
  font-size: 13px;
}

.ref-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 18px;
}

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

.ref-card {
  padding: 24px;
}

.ref-percent {
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
  letter-spacing: -0.06em;
}

.career-list {
  display: grid;
  gap: 10px;
}

.career-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.45fr) minmax(0, 1fr) minmax(110px, 0.35fr);
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
}

.career-item strong {
  color: #ffffff;
}

.career-item span {
  color: var(--muted);
}

.career-item b {
  color: #7af0b6;
  text-align: right;
}

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

.step-card {
  padding: 22px;
}

.step-number {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(126,224,255,0.12);
  color: var(--cyan);
  font-weight: 900;
  margin-bottom: 18px;
}

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

.faq-item {
  overflow: hidden;
}

.faq-item summary {
  min-height: 72px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  cursor: pointer;
  list-style: none;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
}

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

.faq-item summary:focus-visible {
  outline: 2px solid #8ad9ff;
  outline-offset: -3px;
}

.faq-question {
  min-width: 0;
}

.faq-indicator {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(126,224,255,0.28);
  border-radius: 50%;
  background: rgba(126,224,255,0.08);
  color: var(--cyan);
}

.faq-indicator::before {
  content: "+";
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.faq-item[open] {
  border-color: rgba(126,224,255,0.28);
}

.faq-item[open] .faq-indicator::before {
  content: "−";
}

.faq-answer {
  padding: 0 20px 20px;
}

.contact-band {
  position: relative;
  overflow: hidden;
  padding: 76px 0;
  background:
    radial-gradient(circle at top left, rgba(58,141,255,0.18), transparent 24%),
    radial-gradient(circle at bottom right, rgba(72,211,255,0.12), transparent 32%),
    linear-gradient(135deg, #07131d 0%, #0a1b2b 45%, #0b2435 100%);
  color: #ffffff;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
  background: rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.contact-panel p {
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.7;
}

.contact-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-button img,
.float-contact img,
.modal-choice img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.float-stack {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  display: grid;
  gap: 10px;
}

.float-contact {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(9,21,31,0.9);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  cursor: pointer;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(3, 7, 18, 0.6);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  width: min(440px, 100%);
  background: linear-gradient(180deg, rgba(9,21,31,0.96), rgba(12,26,38,0.96));
  border-radius: 20px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  color: #ffffff;
  backdrop-filter: blur(16px);
}

.modal-head {
  padding: 22px 22px 0;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
}

.modal-head h3 {
  margin: 0;
  font-size: 24px;
}

.modal-close {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  cursor: pointer;
}

.modal p {
  color: var(--muted);
  line-height: 1.65;
  margin: 10px 22px 0;
}

.modal-choices {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.modal-choice {
  min-height: 54px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

/* Final visual direction: editorial canvas with an ink-and-lime product system. */
:root {
  color-scheme: light;
  --bg: #f3f0e8;
  --bg-2: #e8e4d9;
  --bg-3: #d9e7c8;
  --panel: #ffffff;
  --panel-strong: #142b3d;
  --panel-soft: rgba(20, 43, 61, 0.07);
  --line: rgba(20, 43, 61, 0.16);
  --text: #142b3d;
  --muted: #5d6870;
  --muted-2: #79817f;
  --blue: #b9e83d;
  --blue-strong: #8fc420;
  --cyan: #e76845;
  --green: #78a825;
  --amber: #f2aa3c;
  --shadow: 0 20px 50px rgba(20, 43, 61, 0.12);
  --radius: 8px;
  --radius-sm: 5px;
  --container: min(1180px, calc(100% - 36px));
  font-family: Georgia, "Times New Roman", serif;
}

body {
  background: var(--bg);
  color: var(--text);
}

.site-shell {
  background: var(--bg);
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(243, 240, 232, 0.9);
  backdrop-filter: blur(18px);
}

.topbar-inner {
  min-height: 82px;
}

.brand {
  color: var(--text);
  letter-spacing: -0.03em;
}

.brand img {
  filter: none;
}

.brand span {
  color: var(--text);
  font-size: 23px;
}

.nav {
  color: #68716d;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--cyan);
}

.lang-button,
.ghost-button,
.primary-button,
.plain-button {
  border-radius: 4px;
  font-family: Arial, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lang-button,
.ghost-button {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.primary-button {
  background: var(--blue);
  border-color: var(--text);
  color: var(--text);
  box-shadow: 4px 4px 0 var(--text);
}

.primary-button:hover {
  background: var(--blue-strong);
  box-shadow: 2px 2px 0 var(--text);
}

.ghost-button:hover {
  border-color: var(--text);
  background: var(--panel);
}

.hero {
  min-height: 760px;
  background:
    linear-gradient(90deg, rgba(243, 240, 232, 0.96) 0 56%, rgba(243, 240, 232, 0.1) 82%),
    linear-gradient(135deg, #f3f0e8 0%, #e7ead8 100%);
  color: var(--text);
}

.hero::before {
  background:
    linear-gradient(90deg, transparent 0 56%, rgba(20, 43, 61, 0.1) 56% 56.2%, transparent 56.2%),
    linear-gradient(rgba(20, 43, 61, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 43, 61, 0.05) 1px, transparent 1px);
  background-size: auto, 32px 32px, 32px 32px;
}

.hero::after {
  background: var(--text);
}

.hero-grid {
  background:
    linear-gradient(142deg, transparent 0 59%, rgba(231, 104, 69, 0.2) 59% 60%, transparent 60%),
    linear-gradient(38deg, transparent 0 73%, rgba(185, 232, 61, 0.38) 73% 74%, transparent 74%);
}

.hero-bg-logo {
  right: 4vw;
  top: 130px;
  width: min(540px, 46vw);
  opacity: 0.2;
  filter: grayscale(1) contrast(1.2);
}

.hero-content {
  padding: 112px 0 70px;
}

.eyebrow {
  border: 0;
  border-radius: 0;
  padding: 0;
  color: var(--cyan);
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
}

.eyebrow::before {
  content: "///";
  margin-right: 8px;
  color: var(--blue-strong);
}

.hero-title {
  max-width: 760px;
  margin-top: 20px;
  color: var(--text);
  font-size: clamp(3.5rem, 7vw, 7.5rem);
  font-weight: 400;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.hero-title span {
  display: block;
  color: var(--cyan);
  font-style: italic;
}

.hero-copy {
  max-width: 530px;
  margin-top: 30px;
  color: #536069;
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  margin-top: 34px;
}

.hero-trust span {
  border: 0;
  border-left: 2px solid var(--cyan);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-family: Arial, sans-serif;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.hero-stats,
.hero-console {
  border-color: var(--line);
  border-radius: 4px;
  box-shadow: none;
}

.hero-stat,
.console-panel,
.console-side {
  background: rgba(255, 255, 255, 0.54);
}

.hero-stat small,
.console-row small,
.compact-label {
  color: var(--muted-2);
  font-family: Arial, sans-serif;
  text-transform: uppercase;
}

.hero-stat strong,
.console-row strong,
.compact-value {
  color: var(--text);
}

.hero-network {
  top: 160px;
  right: 6vw;
}

.hero-network::before,
.hero-network::after {
  border-color: rgba(20, 43, 61, 0.2);
  border-radius: 50%;
}

.hero-network::after {
  border-color: rgba(231, 104, 69, 0.34);
}

.chain-card {
  border-color: var(--text);
  border-radius: 4px;
  background: var(--text);
  box-shadow: 9px 9px 0 rgba(231, 104, 69, 0.75);
}

.chain-card span,
.chain-card small {
  color: #b8c9c8;
  font-family: Arial, sans-serif;
}

.chain-card strong {
  color: var(--blue);
}

.chain-card-side {
  background: var(--cyan);
  box-shadow: 9px 9px 0 var(--blue);
}

.chain-card-side span,
.chain-card-side small,
.chain-card-side strong {
  color: #ffffff;
}

.section {
  background: var(--bg);
  color: var(--text);
}

.section.alt {
  background: var(--bg-2);
}

.section::before {
  background: linear-gradient(120deg, transparent 0 70%, rgba(185, 232, 61, 0.22) 70% 71%, transparent 71%);
}

.section::after {
  border-color: rgba(20, 43, 61, 0.13);
  border-radius: 50%;
}

.section-kicker,
.feature-code {
  color: var(--cyan);
  font-family: Arial, sans-serif;
}

.section-title {
  font-weight: 400;
  letter-spacing: -0.06em;
}

.section-subtitle,
.feature p,
.vip-card p,
.faq-answer,
.step-card p {
  color: var(--muted);
}

.feature,
.panel,
.vip-card,
.faq-item,
.ref-card,
.step-card {
  border-color: var(--line);
  border-radius: 4px;
  background: var(--panel);
  box-shadow: 6px 6px 0 rgba(20, 43, 61, 0.08);
  backdrop-filter: none;
}

.feature:nth-child(even),
.vip-card:nth-child(even) {
  background: var(--text);
  color: #ffffff;
}

.feature:nth-child(even) p,
.vip-card:nth-child(even) p {
  color: #c5d1d0;
}

.contact-band {
  background: var(--cyan);
  color: #ffffff;
}

.contact-panel {
  border: 0;
  border-radius: 4px;
  background: var(--text);
  box-shadow: 10px 10px 0 rgba(20, 43, 61, 0.18);
}

.contact-panel p {
  color: #cad8d7;
}

.modal-backdrop {
  background: rgba(20, 43, 61, 0.72);
}

.modal {
  border: 2px solid var(--text);
  border-radius: 4px;
  background: var(--bg);
  color: var(--text);
  box-shadow: 12px 12px 0 rgba(185, 232, 61, 0.9);
}

.modal-head h3 {
  font-size: 30px;
  font-weight: 400;
}

.modal-close {
  border-color: var(--line);
  background: transparent;
  color: var(--text);
}

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

.modal-choice {
  border-color: var(--text);
  border-radius: 4px;
  background: #ffffff;
  color: var(--text);
  font-family: Arial, sans-serif;
}

.modal-choice-whatsapp {
  background: var(--blue);
}

.footer {
  background: var(--text);
  border-top: 0;
  color: #b7c6c4;
}

.footer-logo,
.footer-logo strong,
.footer-column h3 {
  color: #ffffff;
}

@media (max-width: 680px) {
  .hero {
    min-height: 680px;
  }

  .hero-content {
    padding-top: 84px;
  }

  .hero-title {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .hero-network {
    right: -180px;
    top: 220px;
    opacity: 0.36;
    transform: scale(0.78);
    transform-origin: top right;
  }

  .modal {
    width: min(100%, 360px);
  }

  .modal-head {
    padding: 18px 18px 0;
  }

  .modal-head h3 {
    font-size: 25px;
  }

  .modal p {
    margin-inline: 18px;
  }

  .modal-choices {
    padding: 18px;
  }

  .modal-choice {
    min-height: 52px;
    padding: 8px 12px;
    font-size: 14px;
    line-height: 1.2;
    white-space: normal;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 0;
  background: linear-gradient(180deg, rgba(4, 12, 19, 0.98), rgba(6, 16, 25, 0.98));
  color: #a9b7ca;
  border-top: 1px solid rgba(126,224,255,0.18);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.8), transparent 85%);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.72fr) minmax(240px, 1fr);
  gap: 64px;
  padding-bottom: 54px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.footer-logo strong {
  font-size: 24px;
}

.footer-brand > p {
  max-width: 500px;
  margin: 20px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15px;
}

.footer-column h3 {
  margin: 10px 0 20px;
  color: #ffffff;
  font-size: 17px;
}

.footer-links {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.footer-links a {
  color: var(--cyan);
  font-weight: 700;
  transition: color 160ms ease, transform 160ms ease;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(3px);
}

[dir="rtl"] .footer-links a:hover {
  transform: translateX(-3px);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.footer-socials button {
  min-height: 44px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  color: #ffffff;
  cursor: pointer;
  font-weight: 800;
}

.footer-socials button:hover {
  border-color: rgba(126,224,255,0.32);
  background: rgba(126,224,255,0.08);
}

.footer-socials img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.footer-contact,
.footer-disclaimer {
  margin: 0;
  line-height: 1.7;
}

.footer-contact {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.footer-disclaimer {
  margin-top: 18px;
  font-size: 13px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.footer-trust span {
  padding: 7px 10px;
  border: 1px solid rgba(126,224,255,0.2);
  border-radius: 999px;
  background: rgba(126,224,255,0.08);
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.15);
}

.footer-bottom-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: #8998a9;
  font-size: 13px;
}

[dir="rtl"] body {
  text-align: right;
}

[dir="rtl"] .lang-menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .lang-menu button {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .section,
[dir="rtl"] .contact-band,
[dir="rtl"] .modal {
  direction: rtl;
}

[dir="rtl"] .hero-network {
  right: auto;
  left: max(12px, calc((100vw - 1180px) / 2));
}

[dir="rtl"] .hero-bg-logo {
  right: auto;
  left: -24px;
}

[dir="rtl"] .section::after {
  right: auto;
  left: max(22px, calc((100vw - 1180px) / 2));
}

[dir="rtl"] .console-row div {
  border-left: 0;
  border-right: 2px solid rgba(126,224,255,0.6);
  padding-left: 0;
  padding-right: 12px;
}

[dir="rtl"] .career-item b {
  text-align: left;
}

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

  .hero-bg-logo {
    right: 20px;
    left: auto;
    top: 90px;
    width: min(620px, 70vw);
    opacity: 0.1;
  }

  [dir="rtl"] .hero-bg-logo {
    right: auto;
    left: 20px;
  }

  .hero-network {
    right: -50px;
    top: 150px;
    opacity: 0.38;
  }

  .hero-title {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
  }

  .hero-console,
  .calc-layout,
  .ref-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

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

@media (max-width: 680px) {
  .container {
    width: min(100% - 22px, 1180px);
  }

  .topbar-inner {
    min-height: 64px;
  }

  .brand span {
    font-size: 18px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .top-actions .ghost-button {
    display: none;
  }

  .top-actions {
    gap: 8px;
  }

  .lang-button,
  .primary-button {
    padding-inline: 12px;
  }

  .lang-current-icon {
    width: 20px;
    height: 20px;
    flex-basis: 20px;
    font-size: 10px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-bg-logo {
    right: 12px;
    top: 100px;
    width: min(84vw, 430px);
    opacity: 0.12;
  }

  [dir="rtl"] .hero-bg-logo {
    right: auto;
    left: 12px;
  }

  .hero-network {
    display: none;
  }

  .hero-content {
    padding-top: 58px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-stats,
  .console-row,
  .result-grid,
  .tier-list,
  .vip-grid,
  .feature-grid,
  .steps,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    display: block;
  }

  .section-title {
    font-size: 28px;
  }

  .career-item {
    grid-template-columns: 1fr;
  }

  .career-item b {
    text-align: left;
  }

  .float-stack {
    right: 12px;
    bottom: 12px;
  }

  .footer {
    padding-top: 54px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 42px;
  }

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

  .footer-column h3 {
    margin-top: 0;
  }

  .footer-bottom-inner {
    min-height: 82px;
    padding-block: 16px;
    display: grid;
    justify-items: start;
  }
}

@media (max-width: 420px) {
  .topbar-inner {
    gap: 6px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .brand span {
    font-size: 16px;
  }

  .top-actions {
    gap: 6px;
  }

  .lang-button,
  .top-start-button {
    min-height: 40px;
    padding-inline: 8px;
    font-size: 13px;
  }

  .lang-current-icon {
    display: none;
  }

  .hero-bg-logo {
    right: 8px;
    width: min(86vw, 360px);
  }

  [dir="rtl"] .hero-bg-logo {
    right: auto;
    left: 8px;
  }
}

:root {
  color-scheme: light;
  --bg: #f7faff;
  --bg-2: #eef4fa;
  --bg-3: #e4edf5;
  --panel: #ffffff;
  --panel-strong: #0b1d33;
  --panel-soft: #f2f6fa;
  --line: #d9e3ed;
  --text: #10243b;
  --muted: #5d7185;
  --muted-2: #7890a3;
  --blue: #1269e8;
  --blue-strong: #0b4fba;
  --cyan: #14a8d7;
  --green: #0c9b6b;
  --amber: #d88b25;
  --shadow: 0 18px 45px rgba(16, 36, 59, 0.08);
  --radius: 12px;
  --radius-sm: 8px;
  --container: min(1180px, calc(100% - 36px));
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: Inter, Manrope, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
}

button,
input {
  font-family: inherit;
}

.site-shell {
  background: var(--bg);
}

.topbar {
  border-bottom: 1px solid rgba(217, 227, 237, 0.92);
  background: rgba(247, 250, 255, 0.9);
  box-shadow: 0 3px 18px rgba(16, 36, 59, 0.04);
}

.topbar-inner {
  min-height: 74px;
}

.brand {
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand img {
  width: 40px;
  height: 40px;
  filter: none;
}

.brand span {
  color: var(--text);
  font-size: 20px;
}

.nav {
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--blue);
}

.lang-button,
.ghost-button,
.primary-button,
.plain-button {
  min-height: 44px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: none;
}

.lang-button,
.ghost-button {
  border-color: var(--line);
  background: #ffffff;
  color: var(--text);
}

.lang-button:hover,
.ghost-button:hover {
  border-color: #a9c0d6;
  background: var(--bg-2);
}

.primary-button {
  border-color: var(--blue);
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(18, 105, 232, 0.2);
}

.primary-button:hover {
  border-color: var(--blue-strong);
  background: var(--blue-strong);
  box-shadow: 0 10px 22px rgba(18, 105, 232, 0.26);
}

.lang-current-icon,
.lang-option-icon {
  background: var(--panel-strong);
  border: 0;
}

.lang-menu {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.lang-menu button {
  color: var(--text);
}

.lang-menu button:hover {
  background: var(--bg-2);
}

.hero {
  min-height: auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(238, 244, 250, 0.72), rgba(247, 250, 255, 0.98)),
    var(--bg);
  color: var(--text);
}

.hero::before {
  background:
    linear-gradient(rgba(18, 105, 232, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 232, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.75;
}

.hero::after {
  background: var(--line);
}

.hero-grid {
  background:
    radial-gradient(circle at 76% 22%, rgba(20, 168, 215, 0.12), transparent 22%),
    radial-gradient(circle at 95% 66%, rgba(18, 105, 232, 0.08), transparent 26%);
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: 58px;
  padding: 94px 0 78px;
}

.hero-copy-column {
  position: relative;
  z-index: 2;
}

.eyebrow {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--blue);
  background: transparent;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 155, 107, 0.12);
}

.hero-title {
  width: auto;
  margin: 18px 0 0;
  color: var(--text);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.98;
  overflow-wrap: anywhere;
}

.hero-title span {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.hero-copy {
  width: min(540px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.hero-actions {
  margin-top: 30px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(12, 155, 107, 0.1);
}

.hero-system {
  position: relative;
  z-index: 2;
  padding: 24px;
  border: 1px solid #cddbe8;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(16, 36, 59, 0.1);
}

.system-header,
.system-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.system-title img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.system-visual {
  display: block;
  width: 100%;
  height: 112px;
  margin-top: 18px;
  border: 1px solid #e0eaf2;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}

.system-status {
  color: var(--green);
  letter-spacing: 0;
  text-transform: none;
}

.system-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 0;
  margin: 28px 0 30px;
}

.system-node {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.system-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid #bcd0e2;
  border-radius: 14px;
  background: #f5f9fc;
  color: var(--blue);
  font-size: 20px;
  font-weight: 850;
  box-shadow: 0 8px 20px rgba(16, 36, 59, 0.08);
}

.system-node strong {
  color: var(--text);
  font-size: 13px;
}

.system-node small {
  color: var(--muted-2);
  font-size: 10px;
  line-height: 1.3;
}

.system-node-accent .system-icon {
  border-color: rgba(18, 105, 232, 0.3);
  background: rgba(18, 105, 232, 0.08);
}

.system-node-success .system-icon {
  border-color: rgba(12, 155, 107, 0.3);
  background: rgba(12, 155, 107, 0.08);
  color: var(--green);
}

.system-connector {
  position: relative;
  height: 1px;
  background: #b9cfe1;
}

.system-connector::after {
  content: ">";
  position: absolute;
  right: -3px;
  top: -10px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
}

.system-connector i {
  position: absolute;
  top: -2px;
  left: 24%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(20, 168, 215, 0.1);
  animation: flow-pulse 2.4s ease-in-out infinite;
}

.system-connector:nth-of-type(4) i {
  animation-delay: 0.8s;
}

.system-connector:nth-of-type(6) i {
  animation-delay: 1.6s;
}

@keyframes flow-pulse {
  0%, 100% { transform: translateX(0); opacity: 0.35; }
  50% { transform: translateX(120px); opacity: 1; }
}

.system-footer {
  justify-content: flex-start;
  gap: 22px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0;
  text-transform: none;
}

.system-footer b {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--green);
}

.hero-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-stat {
  min-height: 88px;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  background: transparent;
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat small,
.console-row small,
.compact-label {
  display: block;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-stat strong,
.console-row strong,
.compact-value {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 17px;
  font-weight: 800;
}

.hero-stat-status strong {
  display: flex;
  align-items: center;
  color: var(--green);
}

.hero-console {
  grid-column: 1 / -1;
  width: auto;
  margin-top: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.console-panel {
  background: #ffffff;
}

.console-title {
  color: var(--text);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.console-row div {
  border-left-color: var(--blue);
}

.console-row strong,
.compact-value {
  color: var(--text);
}

.section {
  padding: 92px 0;
  background: #ffffff;
  color: var(--text);
}

.section.alt {
  background: var(--bg-2);
}

.section::before {
  background: linear-gradient(120deg, transparent 0 78%, rgba(18, 105, 232, 0.035) 78% 78.2%, transparent 78.2%);
}

.section::after {
  width: 180px;
  height: 180px;
  border-color: rgba(18, 105, 232, 0.08);
  border-radius: 50%;
}

.section-head {
  margin-bottom: 34px;
}

.section-kicker,
.feature-code {
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  color: var(--text);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.section-subtitle {
  color: var(--muted);
  line-height: 1.7;
}

.feature-grid {
  gap: 16px;
}

.feature,
.panel,
.vip-card,
.faq-item,
.ref-card,
.step-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.feature {
  min-height: 238px;
  padding: 24px;
}

.feature:nth-child(even),
.vip-card:nth-child(even) {
  background: #ffffff;
  color: var(--text);
}

.feature:nth-child(even) p,
.vip-card:nth-child(even) p {
  color: var(--muted);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 28px;
  border: 1px solid rgba(18, 105, 232, 0.2);
  border-radius: 10px;
  background: rgba(18, 105, 232, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.feature h3,
.vip-card h3,
.step-card h3,
.ref-card h3 {
  color: var(--text);
}

.feature p,
.vip-card p,
.step-card p,
.ref-card p,
.faq-answer {
  color: var(--muted);
  line-height: 1.7;
}

.calc-layout {
  gap: 18px;
}

.panel {
  padding: 26px;
}

.field label {
  color: var(--text);
  font-weight: 800;
}

.field input {
  border: 1px solid #b9cde0;
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--text);
  box-shadow: inset 0 1px 2px rgba(16, 36, 59, 0.04);
}

.field input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(18, 105, 232, 0.12);
}

.periods button,
.tier-pill {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fbfd;
  color: var(--muted);
}

.periods button.active,
.tier-pill.active {
  border-color: var(--blue);
  background: rgba(18, 105, 232, 0.09);
  color: var(--blue-strong);
}

.result-grid {
  gap: 12px;
}

.result-card {
  min-height: 112px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #f8fbfd;
}

.result-card.highlight {
  border-color: rgba(18, 105, 232, 0.28);
  background: rgba(18, 105, 232, 0.08);
}

.result-card small {
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.result-card strong {
  display: block;
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  letter-spacing: -0.04em;
}

.vip-grid {
  gap: 14px;
}

.vip-card {
  position: relative;
  min-height: 228px;
  padding: 22px;
  overflow: hidden;
}

.vip-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue);
}

.vip-card:nth-child(3n)::before {
  background: var(--cyan);
}

.vip-card:nth-child(4n)::before {
  background: var(--green);
}

.vip-rate {
  color: var(--blue-strong);
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.vip-meta {
  border-top-color: var(--line);
  color: var(--muted-2);
}

.vip-meta strong {
  color: var(--text);
}

.ref-layout,
.career-list {
  gap: 16px;
}

.ref-card {
  box-shadow: none;
}

.career-item {
  border-color: var(--line);
  background: #ffffff;
}

.career-item b {
  color: var(--blue-strong);
}

.steps {
  gap: 14px;
}

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

.step-card::after {
  content: "";
  position: absolute;
  top: 42px;
  right: -15px;
  width: 16px;
  height: 1px;
  background: #a9c5dc;
}

.step-card:last-child::after {
  display: none;
}

.step-number {
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
}

.faq-item {
  box-shadow: none;
}

.faq-item summary {
  color: var(--text);
}

.faq-indicator {
  border-color: rgba(18, 105, 232, 0.22);
  background: rgba(18, 105, 232, 0.06);
  color: var(--blue);
}

.contact-band {
  padding: 82px 0;
  background: var(--panel-strong);
  color: #ffffff;
}

.contact-panel {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.contact-panel p {
  color: #b8c7d8;
}

.contact-button.ghost-button {
  border-color: rgba(255, 255, 255, 0.25);
  background: transparent;
  color: #ffffff;
}

.float-contact {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.modal-backdrop {
  background: rgba(7, 25, 46, 0.6);
}

.modal {
  border: 1px solid #cbd9e5;
  border-radius: 14px;
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 28px 80px rgba(7, 25, 46, 0.22);
}

.modal-head h3 {
  color: var(--text);
  font-size: 24px;
}

.modal-close {
  border-color: var(--line);
  background: var(--bg-2);
  color: var(--text);
}

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

.modal-choice {
  border-color: var(--line);
  border-radius: 8px;
  background: #f7fafd;
  color: var(--text);
}

.modal-choice:hover {
  border-color: rgba(18, 105, 232, 0.45);
  background: rgba(18, 105, 232, 0.06);
}

.modal-choice-whatsapp {
  background: rgba(12, 155, 107, 0.08);
}

.footer {
  padding-top: 72px;
  background: #08182b;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #a9bacd;
}

.footer-logo,
.footer-logo strong,
.footer-column h3 {
  color: #ffffff;
}

.footer-brand > p,
.footer-contact {
  color: #a9bacd;
}

.footer-links a {
  color: #c8d8e8;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-socials button {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
}

@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-system {
    width: min(760px, 100%);
  }

  .hero-metrics,
  .hero-console {
    grid-column: auto;
  }

  .hero-metrics,
  .hero-console {
    width: 100%;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .topbar-inner {
    min-height: 66px;
  }

  .hero-content {
    gap: 28px;
    padding: 66px 0 54px;
  }

  .hero-title {
    font-size: clamp(2.55rem, 13vw, 4.5rem);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-system {
    padding: 16px;
  }

  .system-visual {
    height: 76px;
    margin-top: 14px;
  }

  .system-flow {
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 30px 0;
  }

  .system-connector {
    width: 1px;
    height: 20px;
    margin: 0 auto;
  }

  .system-connector::after {
    right: auto;
    top: 12px;
    left: -5px;
    content: "v";
    font-size: 12px;
  }

  .system-connector i {
    top: 8px;
    left: -2px;
    animation-name: flow-pulse-mobile;
  }

  @keyframes flow-pulse-mobile {
    0%, 100% { transform: translateY(0); opacity: 0.35; }
    50% { transform: translateY(12px); opacity: 1; }
  }

  .system-footer {
    display: grid;
    gap: 8px;
  }

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

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

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

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

  .console-row {
    grid-template-columns: 1fr;
  }

  .console-row div {
    border-left: 0;
    border-top: 2px solid rgba(18, 105, 232, 0.6);
    padding: 10px 0 0;
  }

  .feature-grid,
  .vip-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .step-card::after {
    top: auto;
    right: auto;
    bottom: -15px;
    left: 50%;
    width: 1px;
    height: 16px;
  }

  .section {
    padding: 68px 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

body {
  background:
    radial-gradient(circle at 8% 4%, rgba(18, 105, 232, 0.045), transparent 24%),
    radial-gradient(circle at 92% 42%, rgba(20, 168, 215, 0.035), transparent 24%),
    var(--bg);
}

.site-shell {
  background: transparent;
}

.hero {
  background:
    radial-gradient(circle at 74% 34%, rgba(18, 105, 232, 0.1), transparent 28%),
    radial-gradient(circle at 96% 80%, rgba(20, 168, 215, 0.07), transparent 26%),
    linear-gradient(180deg, #eef5fb 0%, #f7faff 72%);
}

.hero::before {
  background:
    linear-gradient(rgba(18, 105, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 105, 232, 0.05) 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 48%, rgba(18, 105, 232, 0.035) 48% 48.15%, transparent 48.15% 100%);
  background-size: 36px 36px, 36px 36px, 100% 100%;
  opacity: 0.8;
}

.hero-grid {
  background:
    radial-gradient(circle at 72% 28%, rgba(20, 168, 215, 0.08), transparent 2px),
    radial-gradient(circle at 82% 52%, rgba(18, 105, 232, 0.1), transparent 2px),
    radial-gradient(circle at 91% 34%, rgba(12, 155, 107, 0.08), transparent 2px),
    linear-gradient(24deg, transparent 0 68%, rgba(18, 105, 232, 0.045) 68% 68.1%, transparent 68.1%),
    linear-gradient(148deg, transparent 0 78%, rgba(20, 168, 215, 0.04) 78% 78.1%, transparent 78.1%);
  background-size: 180px 180px, 220px 220px, 260px 260px, 100% 100%, 100% 100%;
  animation: ambient-drift 24s ease-in-out infinite alternate;
}

.hero-system {
  box-shadow:
    0 24px 60px rgba(16, 36, 59, 0.1),
    0 0 90px rgba(18, 105, 232, 0.08);
}

.section {
  background-color: #ffffff;
}

.section::after {
  display: none;
}

#features {
  background:
    radial-gradient(circle at 16% 24%, rgba(18, 105, 232, 0.07) 0 2px, transparent 3px),
    radial-gradient(circle at 74% 70%, rgba(20, 168, 215, 0.055) 0 2px, transparent 3px),
    linear-gradient(34deg, transparent 0 63%, rgba(18, 105, 232, 0.035) 63% 63.1%, transparent 63.1%),
    #ffffff;
  background-size: 150px 150px, 210px 210px, 100% 100%, auto;
}

#calculator {
  position: relative;
  background:
    radial-gradient(circle at 18% 34%, rgba(18, 105, 232, 0.1), transparent 38%),
    radial-gradient(circle at 86% 68%, rgba(20, 168, 215, 0.07), transparent 34%),
    #eef4fa;
}

#calculator::before {
  background:
    linear-gradient(90deg, transparent 0 16%, rgba(18, 105, 232, 0.045) 16% 16.1%, transparent 16.1%),
    linear-gradient(rgba(18, 105, 232, 0.04) 1px, transparent 1px);
  background-size: 100% 100%, 100% 42px;
}

#vip {
  background:
    linear-gradient(30deg, transparent 0 48%, rgba(18, 105, 232, 0.035) 48% 48.1%, transparent 48.1% 100%),
    linear-gradient(150deg, transparent 0 48%, rgba(20, 168, 215, 0.03) 48% 48.1%, transparent 48.1% 100%),
    #ffffff;
  background-size: 150px 86px, 150px 86px, auto;
}

#referral {
  background:
    radial-gradient(circle at 92% 24%, rgba(18, 105, 232, 0.035), transparent 25%),
    #f3f6f9;
}

#how {
  background: #ffffff;
}

#how .container {
  position: relative;
}

#how .steps {
  position: relative;
}

#how .steps::before {
  content: "";
  position: absolute;
  top: 43px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #b9cfe1 12%, #b9cfe1 88%, transparent);
  pointer-events: none;
}

#faq {
  background:
    radial-gradient(circle at 8% 88%, rgba(18, 105, 232, 0.035), transparent 22%),
    #fbfdff;
}

.contact-band {
  position: relative;
  background:
    radial-gradient(circle at 14% 0%, rgba(18, 105, 232, 0.3), transparent 28%),
    radial-gradient(circle at 88% 100%, rgba(20, 168, 215, 0.18), transparent 34%),
    #0b1d33;
}

.footer {
  position: relative;
  background:
    radial-gradient(circle at 18% 0%, rgba(18, 105, 232, 0.14), transparent 28%),
    #08182b;
}

.footer::before {
  background:
    linear-gradient(90deg, transparent, rgba(18, 105, 232, 0.28), transparent),
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 100% 1px, 44px 44px, 44px 44px;
  background-position: 0 0, 0 0, 0 0;
}

@keyframes ambient-drift {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(8px, -5px, 0); }
}

@media (max-width: 680px) {
  #how .steps::before {
    top: 10%;
    right: auto;
    bottom: 10%;
    left: 24px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, #b9cfe1 12%, #b9cfe1 88%, transparent);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid,
  .system-connector i {
    animation: none;
  }
}

.feature,
.panel,
.vip-card,
.ref-card,
.step-card,
.faq-item {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature:hover,
.panel:hover,
.vip-card:hover,
.ref-card:hover,
.step-card:hover,
.faq-item:hover {
  transform: translateY(-3px);
  border-color: #b6cce0;
  box-shadow: 0 18px 42px rgba(16, 36, 59, 0.12);
}

.feature-icon {
  position: relative;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
}

.feature-icon::after {
  content: "";
  position: absolute;
  top: -8px;
  right: -8px;
  width: 7px;
  height: 7px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(20, 168, 215, 0.1);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.projection-block {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.projection-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.projection-heading span {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.projection-heading small {
  color: var(--muted-2);
  font-size: 11px;
  text-align: right;
}

.projection-svg {
  display: block;
  width: 100%;
  height: auto;
  min-height: 142px;
}

.projection-grid-line {
  fill: none;
  stroke: #dbe7f1;
  stroke-width: 1;
}

.projection-area {
  fill: url(#projectionFill);
}

.projection-line {
  fill: none;
  stroke: var(--blue);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.projection-point {
  fill: #ffffff;
  stroke: var(--blue);
  stroke-width: 2;
}

.projection-svg text {
  fill: var(--muted-2);
  font-family: inherit;
  font-size: 10px;
  font-weight: 700;
}

.vip-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0;
  margin: 0 0 20px;
  padding: 0 22px;
}

.vip-progress::before {
  content: "";
  position: absolute;
  top: 13px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, #c9dced, #8cb5d8, #c9dced);
}

.vip-progress-step {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 7px;
  color: var(--muted-2);
  font-size: 10px;
}

.vip-progress-step i {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid #c9dced;
  border-radius: 50%;
  background: #ffffff;
  color: var(--muted-2);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
}

.vip-progress-step b {
  font-weight: 750;
}

.vip-progress-step.active i,
.vip-progress-step:nth-child(n + 4) i {
  border-color: rgba(18, 105, 232, 0.4);
  color: var(--blue);
}

.security-section {
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 168, 215, 0.06), transparent 28%),
    #f4f8fb;
}

.security-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(160px, 0.6fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}

.security-column {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.security-system-column {
  border-color: rgba(18, 105, 232, 0.2);
}

.security-label {
  display: block;
  margin-bottom: 20px;
  color: var(--blue-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.security-item {
  display: flex;
  gap: 12px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.security-item:first-of-type {
  border-top: 0;
}

.security-glyph {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 1px solid rgba(18, 105, 232, 0.2);
  border-radius: 9px;
  background: rgba(18, 105, 232, 0.07);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
}

.security-item strong {
  color: var(--text);
  font-size: 13px;
}

.security-item p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.security-route {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  color: var(--muted-2);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.security-route i {
  position: relative;
  display: block;
  width: 1px;
  height: 24px;
  background: #aec8dc;
}

.security-route i::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #8eb0ca;
  border-bottom: 1px solid #8eb0ca;
  transform: rotate(45deg);
}

.security-boundary {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 18px;
  border: 1px dashed #b9cfe1;
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
}

.security-boundary strong {
  color: var(--text);
  font-weight: 750;
}

.step-card {
  z-index: 1;
}

.step-glyph {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 16px 0 18px;
  border: 1px solid rgba(18, 105, 232, 0.22);
  border-radius: 11px;
  background: rgba(18, 105, 232, 0.07);
  color: var(--blue);
  font-size: 16px;
  font-weight: 850;
}

.contact-panel .section-title {
  color: #f8fbff;
}

.contact-panel .primary-button {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--blue-strong);
  box-shadow: none;
}

.contact-panel .primary-button:hover {
  background: #eaf3ff;
  border-color: #eaf3ff;
}

@media (max-width: 680px) {
  .projection-heading {
    display: grid;
    gap: 5px;
  }

  .projection-heading small {
    text-align: left;
  }

  .vip-progress {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 14px;
    padding: 0;
  }

  .vip-progress::before {
    display: none;
  }

  .security-layout {
    grid-template-columns: 1fr;
  }

  .security-route {
    grid-template-columns: repeat(7, auto);
    gap: 7px;
  }

  .security-route i {
    width: 18px;
    height: 1px;
  }

  .security-route i::after {
    right: -1px;
    bottom: -3px;
    left: auto;
    border-top: 1px solid #8eb0ca;
    border-right: 0;
    border-bottom: 0;
    transform: rotate(45deg);
  }

  .security-boundary {
    display: grid;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .feature,
  .panel,
  .vip-card,
  .ref-card,
  .step-card,
  .faq-item {
    transition: none;
  }
}
