:root {
  --c-bg: #040D08;
  --c-ink: #E2F5EB;
  --c-sub: #6B9E7E;
  --c-line: rgba(0, 255, 120, 0.08);
  --c-surface: rgba(0, 255, 120, 0.04);
  --c-hi: rgba(0, 255, 120, 0.07);
  --c-blue: #00E87A;
  --c-green: #00FF99;
  --c-glow-b: rgba(0, 232, 122, 0.18);
  --c-glow-g: rgba(0, 255, 153, 0.12);
  --f-head: 'Syne', sans-serif;
  --f-body: 'DM Sans', sans-serif;
  --r: 16px;
  --r-lg: 24px;
  --max: 1200px;
  --header-h: 76px;
  --lp-bg: #06110b;
  --lp-surface: rgba(0, 255, 153, 0.04);
  --lp-surface-strong: rgba(0, 255, 153, 0.07);
  --lp-line: rgba(0, 255, 153, 0.1);
  --lp-line-strong: rgba(0, 255, 153, 0.16);
  --lp-text: #e2f5eb;
  --lp-muted: #8bb39a;
  --lp-accent: #00ff99;
  --lp-accent-2: #7dffc4;
  --lp-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-body);
  background: radial-gradient(ellipse at top left, rgba(0, 180, 80, 0.13) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(0, 120, 60, 0.10) 0%, transparent 50%),
    #040D08;
  color: var(--c-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.45;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--c-line);
}

.header-inner {
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(4, 13, 8, 0.82);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: var(--header-h);
  position: relative;
}

.logo {
  font-family: var(--f-head);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 3;
}

.logo-dot {
  font-size: 18px;
  font-weight: 800;
  font-family: var(--f-head);
  color: var(--c-green);
  text-shadow: 0 0 14px var(--c-green), 0 0 28px rgba(14, 224, 158, 0.4);
  animation: pulse 2.4s ease-in-out infinite;
  line-height: 1;
  user-select: none;
}

@keyframes pulse{

  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.7);
  }

}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  color: var(--c-sub);
}

.nav-links a {
  transition: color 0.15s;
}

.nav-links a:hover {
  color: var(--c-ink);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
}

.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: 0.25s ease;
}

.nav-toggle span:nth-child(1) {
  top: 16px;
}

.nav-toggle span:nth-child(2) {
  top: 23px;
}

.nav-toggle span:nth-child(3) {
  top: 30px;
}

.nav-toggle.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 14px;
  font-weight: 500;
  height: 44px;
  padding: 0 20px;
  border-radius: var(--r);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  text-align: center;
}

.btn-ghost {
  border-color: var(--c-line);
  background: transparent;
  color: var(--c-sub);
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--c-ink);
}

.btn-solid {
  background: var(--c-green);
  color: #050A0F;
  font-weight: 700;
  box-shadow: 0 0 0 0 rgba(0, 255, 178, 0.3);
}

.btn-solid:hover {
  background: #00ffbe;
  box-shadow: 0 8px 24px rgba(0, 255, 178, 0.28);
  transform: translateY(-1px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--c-ink);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  height: 52px;
  padding: 0 28px;
  font-size: 15px;
  border-radius: 18px;
}

.hero {
  position: relative;
  padding: 100px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-bg-blob.b1 {
  width: 600px;
  height: 600px;
  background: rgba(0, 200, 90, 0.15);
  top: -200px;
  left: -100px;
}

.hero-bg-blob.b2 {
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 120, 0.08);
  top: 0;
  right: -50px;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 64px;
  align-items: center;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.hero-label-line {
  width: 24px;
  height: 1px;
  background: var(--c-green);
}

.hero h1 {
  font-family: var(--f-head);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  text-wrap: balance;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #0EE09E, #00FFB2, #7FFFD4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 17px;
  color: var(--c-sub);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  backdrop-filter: blur(12px);
  min-width: 0;
}

.hc-head {
  padding: 20px 24px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hc-title {
  font-size: 13px;
  color: var(--c-sub);
  font-weight: 400;
}

.hc-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--c-green);
  white-space: nowrap;
}

.hc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 8px var(--c-green);
  animation: pulse 2s infinite;
}

.hc-body {
  padding: 24px;
}

.hc-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.hc-stat {
  background: var(--c-hi);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 16px;
  min-width: 0;
}

.hc-stat-val {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hc-stat-val.green {
  color: var(--c-green);
}

.hc-stat-val.blue {
  color: #7DFFC4;
}

.hc-stat-lbl {
  font-size: 12px;
  color: var(--c-sub);
}

.tx-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tx-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--c-hi);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  font-size: 13px;
}

.tx-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.tx-ico {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: rgba(0, 200, 90, 0.1);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}

.tx-name {
  font-weight: 500;
}

.tx-time {
  color: var(--c-sub);
  font-size: 11px;
  margin-top: 1px;
}

.tx-amount {
  font-weight: 600;
  text-align: right;
  flex-shrink: 0;
}

.tx-amount.pos {
  color: var(--c-green);
}

.tx-amount.neg {
  color: var(--c-sub);
}

section {
  padding: 80px 0;
}

.s-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-sub);
  margin-bottom: 16px;
}

.s-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--c-sub);
}

h2.s-title {
  font-family: var(--f-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 16px;
  text-wrap: balance;
}

.s-sub {
  font-size: 16px;
  color: var(--c-sub);
  max-width: 560px;
  line-height: 1.7;
}

.s-head {
  margin-bottom: 52px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--c-line);
}

.stats-strip {
  padding: 40px 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  padding: 16px 32px;
  border-right: 1px solid var(--c-line);
}

.stat-item:first-child {
  padding-left: 0;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--f-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-num span {
  color: #00E87A;
}

.stat-desc {
  font-size: 14px;
  color: var(--c-sub);
  line-height: 1.4;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.feat {
  padding: 36px 32px;
  background: var(--c-bg);
  transition: background 0.2s;
  position: relative;
}

.feat:hover {
  background: var(--c-surface);
}

.feat::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: var(--c-line);
}

.feat:nth-child(3n)::after {
  display: none;
}

.feat-ico {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  font-size: 20px;
  display: grid;
  place-items: center;
}

.feat h3 {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.feat p {
  font-size: 14px;
  color: var(--c-sub);
  line-height: 1.65;
}

.bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.bento-card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  overflow: hidden;
  min-width: 0;
}

.bento-card:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--c-hi);
}

.bento-card .bc-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
  display: block;
}

.bento-card h3 {
  font-family: var(--f-head);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.bento-card p {
  font-size: 14px;
  color: var(--c-sub);
  line-height: 1.65;
}

.bento-card .bc-ico {
  font-size: 36px;
  margin-bottom: 20px;
  display: block;
  line-height: 1;
}

.bc-w4 {
  grid-column: span 4;
}

.bc-w5 {
  grid-column: span 5;
}

.bc-w6 {
  grid-column: span 6;
}

.bc-w7 {
  grid-column: span 7;
}

.bc-w8 {
  grid-column: span 8;
}

.bc-w12 {
  grid-column: span 12;
}

.bento-card.bc-accent {
  background: linear-gradient(135deg, rgba(14, 224, 158, 0.1), rgba(0, 255, 178, 0.05));
  border-color: rgba(14, 224, 158, 0.25);
}

.bento-card.bc-accent h3 {
  font-size: 28px;
}

.steps-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-item {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--c-line);
  position: relative;
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--f-head);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-sub);
  letter-spacing: 0.06em;
  min-width: 36px;
  padding-top: 2px;
}

.step-content h3 {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.step-content p {
  font-size: 14px;
  color: var(--c-sub);
  line-height: 1.65;
}

.steps-visual {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.steps-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0, 200, 90, 0.14), transparent 60%);
  pointer-events: none;
}

.sv-label {
  font-size: 11px;
  color: var(--c-sub);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.sv-bar-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sv-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sv-bar-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--c-sub);
}

.sv-bar-track {
  height: 6px;
  background: var(--c-hi);
  border-radius: 99px;
  overflow: hidden;
}

.sv-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #0EE09E, #00FFB2);
}

.methods-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mcard {
  padding: 24px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  transition: all 0.2s;
}

.mcard:hover {
  border-color: rgba(255, 255, 255, 0.14);
  background: var(--c-hi);
  transform: translateY(-2px);
}

.mcard-ico {
  font-size: 28px;
  margin-bottom: 16px;
  min-height: 34px;
  display: flex;
  align-items: center;
}

.mcard h4 {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.mcard p {
  font-size: 13px;
  color: var(--c-sub);
  line-height: 1.55;
}

.cta-section {
  padding: 100px 0;
}

.cta-inner {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 32px;
  padding: 72px 64px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 200, 90, 0.14), transparent 70%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 20%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 120, 0.08), transparent 70%);
  pointer-events: none;
}

.cta-text {
  position: relative;
  z-index: 1;
}

.cta-text h2 {
  font-family: var(--f-head);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-wrap: balance;
}

.cta-text p {
  font-size: 16px;
  color: var(--c-sub);
  line-height: 1.7;
}

.cta-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.footer {
  border-top: 1px solid var(--c-line);
  padding: 32px 0;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
}

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--c-sub);
  flex-wrap: wrap;
}

.footer-nav a:hover {
  color: var(--c-ink);
  transition: color 0.15s;
}

.footer-copy {
  font-size: 13px;
  color: var(--c-sub);
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

.fade-up:nth-child(2) {
  transition-delay: 0.07s;
}

.fade-up:nth-child(3) {
  transition-delay: 0.14s;
}

.fade-up:nth-child(4) {
  transition-delay: 0.21s;
}

.fade-up:nth-child(5) {
  transition-delay: 0.28s;
}

.fade-up:nth-child(6) {
  transition-delay: 0.35s;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 8, 5, 0.72);
  backdrop-filter: blur(8px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  background: rgba(4, 13, 8, 0.96);
  border: 1px solid var(--c-line);
  border-radius: 28px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}

.modal-dialog::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(0, 255, 153, 0.14), transparent 70%);
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 5; 
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.03);
  cursor: pointer;
}

.modal-close span {
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 10px;
}

.modal-close span:first-child {
  transform: rotate(45deg);
}

.modal-close span:last-child {
  transform: rotate(-45deg);
}

.modal-head {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
  padding-right: 48px;
}

.modal-label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(0, 255, 153, 0.08);
  border: 1px solid var(--c-line);
  color: var(--c-green);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.modal-head h3 {
  font-family: var(--f-head);
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.modal-sub {
  color: var(--c-sub);
  font-size: 15px;
  line-height: 1.7;
  max-width: 420px;
}

.lead-form {
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 13px;
  color: var(--c-ink);
  font-weight: 500;
}

.form-field input {
  width: 100%;
  height: 54px;
  border-radius: 16px;
  border: 1px solid var(--c-line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--c-ink);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.form-field input::placeholder {
  color: rgba(226, 245, 235, 0.4);
}

.form-field input:focus {
  border-color: rgba(0, 255, 153, 0.35);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 4px rgba(0, 255, 153, 0.08);
}

.form-field input.error {
  border-color: rgba(255, 110, 110, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 110, 110, 0.08);
}

.form-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--c-sub);
}

.form-error {
  min-height: 22px;
  margin-top: 10px;
  color: #ff8f8f;
  font-size: 13px;
}

.form-success {
  min-height: 22px;
  margin-top: 4px;
  color: var(--c-green);
  font-size: 13px;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

body.modal-open {
  overflow: hidden;
}

.legal-page .hero {
  padding: 72px 0 36px;
}

.legal-shell {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.legal-sidebar,
.legal-content,
.legal-note {
  background: var(--lp-surface);
  border: 1px solid var(--lp-line);
  box-shadow: var(--lp-shadow);
  backdrop-filter: blur(14px);
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  border-radius: 24px;
  padding: 22px;
}

.legal-sidebar-title {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.legal-sidebar-sub {
  font-size: 13px;
  color: var(--lp-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.legal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  color: var(--lp-muted);
  font-size: 14px;
  line-height: 1.45;
  transition: 0.2s ease;
}

.legal-nav a:hover,
.legal-nav a.active {
  color: var(--lp-text);
  border-color: var(--lp-line-strong);
  background: var(--lp-surface-strong);
}

.legal-content {
  border-radius: 28px;
  overflow: hidden;
}

.legal-topbar {
  padding: 22px 28px;
  border-bottom: 1px solid var(--lp-line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.015);
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid var(--lp-line-strong);
  background: rgba(0, 255, 153, 0.06);
  color: var(--lp-accent);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-updated {
  font-size: 13px;
  color: var(--lp-muted);
}

.legal-body {
  padding: 10px 28px 28px;
}

.legal-section {
  padding: 28px 0;
  border-bottom: 1px solid var(--lp-line);
  scroll-margin-top: 120px;
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  font-family: var(--f-head);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.legal-section h3 {
  font-family: var(--f-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 22px 0 10px;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--lp-text);
  margin-bottom: 14px;
}

.legal-section p:last-child {
  margin-bottom: 0;
}

.legal-section ul,
.legal-section ol {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--lp-text);
}

.legal-section li {
  font-size: 15px;
  line-height: 1.8;
  color: var(--lp-text);
  margin-bottom: 10px;
}

.legal-section li::marker {
  color: var(--lp-accent-2);
}

.legal-section strong {
  color: #ffffff;
  font-weight: 700;
}

.legal-note {
  margin-top: 18px;
  border-radius: 22px;
  padding: 20px 22px;
}

.legal-note-title {
  font-family: var(--f-head);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-note p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--lp-muted);
}

.legal-link {
  color: var(--lp-accent-2);
  text-decoration: underline;
  text-decoration-color: rgba(125, 255, 196, 0.35);
  text-underline-offset: 3px;
}

.legal-link:hover {
  color: #ffffff;
}

.legal-table-wrap {
  margin-top: 18px;
  overflow-x: auto;
  border: 1px solid var(--lp-line);
  border-radius: 18px;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--lp-line);
  font-size: 14px;
  line-height: 1.65;
}

.legal-table th {
  color: #ffffff;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.02);
}

.legal-table td {
  color: var(--lp-muted);
}

.legal-table tr:last-child td {
  border-bottom: none;
}

.floating-lead-btn {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 250;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 56px;
  padding: 0 18px;
  border: 1px solid rgba(0, 255, 153, 0.18);
  border-radius: 18px;
  background: rgba(4, 13, 8, 0.92);
  color: var(--c-ink);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.floating-lead-btn:hover {
  transform: translateY(-50%) translateX(-2px);
  background: rgba(0, 255, 153, 0.08);
  border-color: rgba(0, 255, 153, 0.35);
}

.floating-lead-btn-text {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.floating-lead-btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--c-green);
  color: #050A0F;
  font-weight: 700;
  flex-shrink: 0;
}

.floating-cta {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(70%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px 0 0 999px;
  background: #00ff99;
  color: #000;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  z-index: 1000;
}

.floating-cta:hover {
  transform: translateY(-50%) translateX(0);
}

.floating-cta .cta-text {
  white-space: nowrap;
}

.cta-icon {
  font-size: 18px;
}

@media (max-width: 1200px) {
  .hero-layout {
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 380px;
  }
  
  .steps-layout {
    gap: 48px;
  }
  
  .cta-inner {
    padding: 56px 48px;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }
  
  .hero-card {
    max-width: 560px;
  }
  
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .bc-w4,
    .bc-w5,
    .bc-w6,
    .bc-w7,
    .bc-w8 {
    grid-column: span 6;
  }
  
  .steps-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .steps-visual {
    display: none;
  }
  
  .methods-row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-inner {
    grid-template-columns: 1fr;
  }
  
  .cta-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }
  
  .nav {
    min-height: 72px;
  }
  
  .nav-toggle {
    display: inline-flex;
  }
  
  .nav-panel {
    position: fixed;
    top: calc(var(--header-h) + 1px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 20px;
    background: rgba(4, 13, 8, 0.96);
    border: 1px solid var(--c-line);
    border-radius: 24px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  
  .nav-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
  }
  
  .nav-links a {
    padding: 14px 16px;
    border: 1px solid var(--c-line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--c-ink);
  }
  
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .nav-actions .btn {
    width: 100%;
  }
  
  .hero {
    padding: 72px 0 56px;
  }
  
  .hero-card {
    max-width: 100%;
  }
  
  .stats-row {
    grid-template-columns: 1fr 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--c-line);
    padding: 20px 0;
  }
  
  .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
    border-bottom: none;
  }
  
  .stat-item:first-child {
    padding-left: 0;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    border: none;
    gap: 12px;
    background: transparent;
  }
  
  .feat {
    border: 1px solid var(--c-line);
    border-radius: var(--r-lg);
  }
  
  .feat::after {
    display: none;
  }
  
  .bento {
    grid-template-columns: 1fr;
  }
  
  .bc-w4,
    .bc-w5,
    .bc-w6,
    .bc-w7,
    .bc-w8,
    .bc-w12 {
    grid-column: auto;
  }
  
  .cta-inner {
    padding: 40px 28px;
    border-radius: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --header-h: 72px;
  }
  
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }
  
  section {
    padding: 64px 0;
  }
  
  .hero {
    padding: 56px 0 44px;
  }
  
  .hero-label {
    margin-bottom: 18px;
  }
  
  .hero h1 {
    font-size: clamp(34px, 11vw, 48px);
    margin-bottom: 18px;
  }
  
  .hero-desc,
    .s-sub,
    .cta-text p {
    font-size: 15px;
  }
  
  .hero-actions,
    .cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions .btn,
    .cta-btns .btn {
    width: 100%;
  }
  
  .hc-head,
    .hc-body,
    .bento-card,
    .steps-visual,
    .mcard {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .hc-stat-row {
    grid-template-columns: 1fr;
  }
  
  .tx-item {
    align-items: flex-start;
    flex-direction: column;
  }
  
  .tx-amount {
    text-align: left;
  }
  
  .stats-row {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    padding: 18px 0;
    border-bottom: 1px solid var(--c-line);
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .stat-num {
    font-size: 34px;
  }
  
  .step-item {
    gap: 16px;
    padding: 22px 0;
  }
  
  .step-num {
    min-width: 28px;
  }
  
  .methods-row {
    grid-template-columns: 1fr;
  }
  
  .footer-row {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 18px;
  }
  
  .btn,
    .btn-lg {
    font-size: 14px;
  }
  
  .cta-inner {
    padding: 28px 20px;
  }
  
  .bento-card {
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .modal {
    padding: 12px;
  }
  
  .modal-dialog {
    padding: 24px 18px;
    border-radius: 22px;
  }
  
  .modal-actions {
    flex-direction: column;
  }
  
  .modal-actions .btn {
    width: 100%;
  }
  
  .form-field input {
    height: 50px;
  }
}

@media (max-width: 1024px) {
  .legal-shell {
    grid-template-columns: 1fr;
  }
  
  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-page .hero {
    padding: 56px 0 24px;
  }
  
  .legal-content {
    border-radius: 22px;
  }
  
  .legal-topbar,
    .legal-body {
    padding-left: 18px;
    padding-right: 18px;
  }
  
  .legal-topbar {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  
  .legal-body {
    padding-top: 0;
    padding-bottom: 18px;
  }
  
  .legal-section {
    padding: 22px 0;
  }
  
  .legal-section p,
    .legal-section li {
    font-size: 14px;
  }
}

@media (max-width: 820px) {
  .floating-lead-btn {
    right: 16px;
    bottom: 16px;
    top: auto;
    transform: none;
    height: 52px;
    padding: 0 16px;
    border-radius: 16px;
  }
  
  .floating-lead-btn:hover {
    transform: translateY(-2px);
  }
}

@media (max-width: 480px) {
  .floating-lead-btn {
    left: 12px;
    right: 12px;
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 72px 0;
  }
  
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 20px;
    border-radius: 24px;
  }
  
  .cta-text h2 {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  
  .cta-text h2 br {
    display: none;
  }
  
  .cta-text p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .cta-btns {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  
  .cta-btns .btn {
    width: 100%;
    min-height: 52px;
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 56px 0;
  }
  
  .cta-inner {
    padding: 24px 16px;
    gap: 20px;
    border-radius: 20px;
  }
  
  .cta-text h2 {
    font-size: 26px;
  }
  
  .cta-text p {
    font-size: 14px;
  }
  
  .cta-btns .btn {
    font-size: 14px;
    border-radius: 16px;
  }
}

@media (max-width: 1024px) {
  .cta-inner {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 24px;
  }
  
  .cta-btns {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 72px 0;
  }
  
  .cta-inner {
    padding: 32px 20px;
    border-radius: 24px;
  }
  
  .cta-text h2 {
    font-size: 30px;
    line-height: 1.15;
  }
  
  .cta-text h2 br {
    display: none;
  }
  
  .cta-text p {
    font-size: 15px;
    line-height: 1.6;
  }
  
  .cta-btns {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-btns .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 56px 0;
  }
  
  .cta-inner {
    padding: 24px 16px;
    border-radius: 20px;
  }
  
  .cta-text h2 {
    font-size: 26px;
  }
  
  .cta-text p {
    font-size: 14px;
  }
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  flex-shrink: 0;
}

.lang-switcher__item {
  min-width: 44px;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--c-sub);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.lang-switcher__item:hover {
  color: var(--c-ink);
  background: rgba(255, 255, 255, 0.05);
}

.lang-switcher__item.is-active {
  background: var(--c-green);
  color: #050A0F;
}

/* если нужен focus */
.lang-switcher__item:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 255, 153, 0.18);
}

@media (max-width: 820px) {
  .nav-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .lang-switcher {
    width: 100%;
    justify-content: space-between;
  }

  .lang-switcher__item {
    flex: 1 1 0;
    min-width: 0;
  }
}

.tx-ico i,
.feat-ico i,
.bc-ico i,
.mcard-ico i {
    font-size: 1.4em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

