/* ============================================================
   FINBRIDGE — Premium redesign
   ============================================================ */

:root {
  --bg: #05070d;
  --bg-soft: #0a0e18;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #eaf0ff;
  --text-dim: #9aa7c7;
  --blue: #4f8cff;
  --cyan: #22d3ee;
  --teal: #16c9d4;
  --grad: linear-gradient(120deg, #4f8cff, #22d3ee);
  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --radius: 20px;
  --nav-h: 76px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: rgba(79, 140, 255, 0.35); color: #fff; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1240px, 92%);
  margin: 0 auto;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: #1d2740; border-radius: 8px; }
::-webkit-scrollbar-thumb:hover { background: #2c3a5e; }

/* ============ AURORA ============ */
.aurora { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.aurora__blob {
  position: absolute;
  width: 55vw; height: 55vw;
  border-radius: 50%;
  filter: blur(130px);
  opacity: 0.1;
}
.aurora__blob--1 { background: #2456d8; top: -20%; left: -10%; animation: drift1 26s ease-in-out infinite alternate; }
.aurora__blob--2 { background: #0e7a90; bottom: -30%; right: -15%; animation: drift2 32s ease-in-out infinite alternate; }
.aurora__blob--3 { background: #3d2b8f; top: 40%; left: 55%; width: 35vw; height: 35vw; animation: drift1 38s ease-in-out infinite alternate-reverse; }
@keyframes drift1 { to { transform: translate(12vw, 8vh) scale(1.15); } }
@keyframes drift2 { to { transform: translate(-10vw, -8vh) scale(0.9); } }

/* ============ PRELOADER ============ */
.preloader {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s;
}
.preloader.done { opacity: 0; visibility: hidden; }
.preloader__inner { text-align: center; width: min(320px, 80%); }
.preloader__logo {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin-bottom: 28px;
}
.preloader__logo img { width: 42px; height: 42px; }
.preloader__logo span {
  font-family: 'Poppins', sans-serif;
  font-size: 1.7rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--teal);
}
.preloader__bar {
  height: 2px; background: var(--border);
  border-radius: 2px; overflow: hidden;
}
.preloader__progress {
  height: 100%; width: 0%;
  background: var(--grad);
  transition: width 0.3s ease;
}
.preloader__pct { margin-top: 12px; font-size: 0.8rem; color: var(--text-dim); letter-spacing: 0.2em; }

/* ============ NAVIGATION ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(5, 7, 13, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--border);
}
.nav.hidden { transform: translateY(-100%); }
.nav__inner {
  width: min(1360px, 94%);
  margin: 0 auto;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.nav__logo { display: flex; align-items: center; gap: 11px; }
.nav__logo-mark { width: 36px; height: 36px; display: grid; place-items: center; }
.nav__logo-mark img, .nav__logo-mark svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 0 12px rgba(44, 199, 221, 0.35));
}
.nav__logo-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--teal);
}
.nav__links { display: flex; gap: 6px; }
.nav__link {
  position: relative;
  padding: 8px 14px;
  font-size: 0.92rem; font-weight: 500;
  color: var(--text-dim);
  border-radius: 10px;
  transition: color 0.25s, background 0.25s;
}
.nav__link:hover, .nav__link.active { color: var(--text); background: var(--surface-2); }
.nav__right { display: flex; align-items: center; gap: 14px; }
.nav__lang { display: flex; gap: 4px; }
.nav__lang-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-dim); font-family: var(--font-body); font-weight: 700;
  font-size: 0.76rem; padding: 8px 10px; border-radius: 10px; cursor: pointer;
  transition: all 0.25s;
}
.nav__lang-btn:hover { color: var(--text); border-color: var(--border-strong); }
.nav__lang-btn.active {
  color: var(--teal);
  border-color: rgba(22, 201, 212, 0.55);
  background: rgba(22, 201, 212, 0.08);
}
@media (max-width: 560px) {
  .nav__right .btn--small { display: none; }
}
.nav__burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__burger span {
  width: 24px; height: 2px; background: var(--text);
  border-radius: 2px; transition: 0.3s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(5, 7, 13, 0.96);
  backdrop-filter: blur(20px);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden;
  transition: 0.4s ease;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu__links { display: flex; flex-direction: column; gap: 8px; text-align: center; }
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 400;
  padding: 10px 24px;
  color: var(--text-dim);
  transition: color 0.25s;
}
.mobile-menu__links a:hover { color: var(--text); }

/* ============ BUTTONS ============ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  border: none;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }
.btn--small { padding: 10px 20px; font-size: 0.88rem; }
.btn--large { padding: 16px 30px; font-size: 0.98rem; }
.btn--full { width: 100%; }
.btn--primary {
  background: var(--grad);
  color: #04101e;
  box-shadow: 0 8px 32px rgba(43, 138, 235, 0.35);
}
.btn--primary::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.5) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
}
.btn--primary:hover::after { transform: translateX(100%); }
.btn--primary:hover { box-shadow: 0 12px 44px rgba(43, 138, 235, 0.55); }
.btn--ghost {
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--surface-2); border-color: rgba(79, 140, 255, 0.5); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 40px) 0 80px;
  overflow: hidden;
}
.hero__canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
.hero__vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 90% 60% at 50% 40%, transparent 40%, var(--bg) 100%),
    linear-gradient(to top, var(--bg) 0%, transparent 25%);
  pointer-events: none;
}
.hero__content { position: relative; z-index: 2; }
.hero__badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 600;
  color: var(--text-dim);
  backdrop-filter: blur(10px);
  margin-bottom: 32px;
}
.hero__badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot { 50% { opacity: 0.4; transform: scale(0.85); } }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 5.6rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.01em;
  margin-bottom: 30px;
}
.hero__line { display: block; overflow: hidden; }
.hero__line--sub .hero__word {
  font-size: clamp(1.1rem, 2.6vw, 2rem);
  font-weight: 300;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.hero__word { display: inline-block; transform: translateY(110%); }
.hero__word--gradient {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(43, 138, 235, 0.4));
}
.hero__subtitle {
  max-width: 620px;
  font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  color: var(--text-dim);
  margin-bottom: 40px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 52px; }
.hero__payments-label {
  display: block;
  font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.hero__payments-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-chip {
  padding: 9px 18px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-dim);
  backdrop-filter: blur(10px);
  transition: all 0.3s;
  cursor: default;
}
.pay-chip:hover {
  color: var(--text);
  border-color: rgba(79, 140, 255, 0.55);
  box-shadow: 0 0 24px rgba(43, 138, 235, 0.25);
  transform: translateY(-2px);
}
.hero__scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--text-dim);
  opacity: 0.7;
}
.hero__scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid var(--text-dim);
  border-radius: 14px;
  display: flex; justify-content: center; padding-top: 6px;
}
.hero__scroll-wheel {
  width: 3px; height: 8px;
  background: var(--cyan);
  border-radius: 3px;
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 50% { transform: translateY(10px); opacity: 0.2; } }

/* ============ TICKER ============ */
.ticker {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  backdrop-filter: blur(10px);
  overflow: hidden;
  padding: 18px 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.ticker__track {
  display: flex; align-items: center; gap: 40px;
  width: max-content;
  animation: ticker 34s linear infinite;
}
.ticker__track span {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 300;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}
.ticker__track i { color: var(--cyan); font-style: normal; opacity: 0.7; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============ SECTIONS COMMON ============ */
.section { position: relative; z-index: 2; padding: 110px 0; }
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.76rem; font-weight: 800;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 18px;
}
.section-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--grad);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.6vw, 2.8rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.section-title em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-desc { color: var(--text-dim); max-width: 640px; }
.section-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 40px; margin-bottom: 64px;
}
.section-head--center {
  flex-direction: column; align-items: center; text-align: center;
}
.section-desc--right { max-width: 420px; padding-bottom: 6px; }

/* ============ INTRO ============ */
.intro__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 70px;
  align-items: center;
}
.intro__stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 18px; margin-top: 44px;
}
.stat {
  padding: 22px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s, transform 0.3s;
}
.stat:hover { border-color: rgba(79, 140, 255, 0.4); transform: translateY(-3px); }
.stat__num {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label { font-size: 0.86rem; color: var(--text-dim); margin-top: 6px; }

/* ============ TILT CARD ============ */
.tilt-card {
  position: relative;
}
.tilt-card__inner {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.15s ease-out;
}
.tilt-card__inner img { width: 100%; height: auto; }
.tilt-card__glare {
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 50%), rgba(255,255,255,0.16), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.tilt-card:hover .tilt-card__glare { opacity: 1; }
.tilt-card__float {
  position: absolute;
  z-index: 2;
  display: flex; align-items: center; gap: 10px;
  padding: 12px 18px;
  background: rgba(12, 17, 28, 0.96);
  border: 1px solid var(--border-strong);
  border-radius: 14px;
  font-size: 0.82rem; font-weight: 700;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
  animation: floaty 5s ease-in-out infinite;
}
.tilt-card__float--1 { top: -8%; right: 0; }
.tilt-card__float--2 { bottom: -7%; left: -16%; animation-delay: -2.5s; }
@keyframes floaty { 50% { transform: translateY(-12px); } }

/* ============ WHY ============ */
.why__card {
  position: relative;
  padding: clamp(36px, 6vw, 72px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  backdrop-filter: blur(12px);
}
.why__glow {
  position: absolute; top: -40%; right: -10%;
  width: 55%; height: 120%;
  background: radial-gradient(circle, rgba(43, 138, 235, 0.16), transparent 65%);
  pointer-events: none;
}
.why__cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 18px;
  color: var(--text-dim);
}

/* ============ SOLUTIONS ============ */
.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.sol-card {
  position: relative;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
  display: flex; flex-direction: column;
}
.sol-card:hover {
  transform: translateY(-10px);
  border-color: rgba(79, 140, 255, 0.45);
  box-shadow: 0 30px 70px rgba(3, 10, 26, 0.7), 0 0 0 1px rgba(79, 140, 255, 0.15);
}
.sol-card__num {
  position: absolute; top: 22px; right: 26px;
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 300;
  color: var(--text-dim); opacity: 0.55;
}
.sol-card__media {
  height: 220px;
  display: grid; place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(79, 140, 255, 0.08), rgba(34, 211, 238, 0.04));
  border: 1px solid var(--border);
  overflow: hidden;
}
.sol-card__media img {
  max-height: 190px; width: auto; object-fit: contain;
  filter: drop-shadow(0 16px 30px rgba(0, 0, 0, 0.45));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.sol-card:hover .sol-card__media img { transform: scale(1.07) translateY(-4px); }
.sol-card__svg { width: 130px; height: 170px; transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
.sol-card__svg--wide { width: 180px; height: 150px; }
.sol-card:hover .sol-card__svg { transform: scale(1.08); }

/* ---- custom SVG micro-animations ---- */
.anim-dash { stroke-dasharray: 30; animation: dashflow 2.6s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -60; } }
.anim-spin { animation: spin360 4s linear infinite; }
@keyframes spin360 { to { transform: rotate(360deg); } }
.anim-float { animation: floaty 4s ease-in-out infinite; }
.anim-bill { animation: billdown 2.6s ease-in-out infinite; }
@keyframes billdown {
  0%, 15% { transform: translateY(-6px); opacity: 0; }
  35% { opacity: 0.9; }
  60% { transform: translateY(14px); opacity: 0.9; }
  75%, 100% { transform: translateY(16px); opacity: 0; }
}
.anim-bill-in { animation: billdown 3s ease-in-out infinite; }
.anim-card-in { animation: cardin 3.2s ease-in-out infinite; }
@keyframes cardin {
  0%, 20% { transform: translateY(-10px); opacity: 0; }
  40% { opacity: 0.95; }
  60% { transform: translateY(6px); opacity: 0.95; }
  78%, 100% { transform: translateY(8px); opacity: 0; }
}
.anim-glow-slot { animation: slotglow 3s ease-in-out infinite; }
@keyframes slotglow { 50% { filter: drop-shadow(0 0 6px rgba(34, 211, 238, 0.9)); } }
.anim-pulse-o { animation: pulseo 2.4s ease-in-out infinite; }
@keyframes pulseo { 50% { opacity: 0.35; } }
.anim-stack path, .anim-stack { animation: pulseo 2s ease-in-out infinite; }
.anim-shield { animation: shieldpulse 3s ease-in-out infinite; transform-origin: 30px 30px; }
@keyframes shieldpulse { 50% { transform: scale(1.05); filter: drop-shadow(0 0 8px rgba(79, 140, 255, 0.6)); } }
.anim-check {
  stroke-dasharray: 30; stroke-dashoffset: 30;
  animation: checkdraw 2.8s ease-in-out infinite;
}
@keyframes checkdraw {
  0% { stroke-dashoffset: 30; }
  35%, 75% { stroke-dashoffset: 0; opacity: 1; }
  95%, 100% { stroke-dashoffset: 30; opacity: 0; }
}
.anim-needle { animation: needlesweep 2.6s ease-in-out infinite; }
@keyframes needlesweep {
  0%, 100% { transform: rotate(-55deg); }
  50% { transform: rotate(28deg); }
}
.anim-knob1 { animation: knobx1 3.4s ease-in-out infinite; }
.anim-knob2 { animation: knobx2 3.4s ease-in-out infinite; }
.anim-knob3 { animation: knobx3 3.4s ease-in-out infinite; }
@keyframes knobx1 { 50% { transform: translateX(14px); } }
@keyframes knobx2 { 50% { transform: translateX(-16px); } }
@keyframes knobx3 { 50% { transform: translateX(10px); } }
.anim-bob { animation: bob 4s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(-3px); } }
.anim-bill-out { animation: billout 3s ease-in-out infinite; }
@keyframes billout {
  0%, 20% { transform: translateY(-8px); opacity: 0; }
  40% { opacity: 0.9; }
  65% { transform: translateY(16px); opacity: 0.9; }
  85%, 100% { transform: translateY(20px); opacity: 0; }
}
.hero-illus {
  width: min(430px, 92%);
  margin: 0 auto;
  display: block;
  position: relative;
  z-index: 1;
  animation: devfloat 8s ease-in-out infinite;
}
.hero-illus .scheme__wire { animation: dashmove 1.2s linear infinite; }
.hero-illus .scheme__pulse { fill: var(--cyan); filter: drop-shadow(0 0 6px var(--cyan)); }
.sol-card__title {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 500;
  margin-bottom: 12px;
}
.sol-card__desc { color: var(--text-dim); font-size: 0.94rem; flex: 1; margin-bottom: 22px; }
.sol-card__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.92rem;
  color: var(--cyan);
  transition: gap 0.3s;
}
.sol-card__link:hover { gap: 14px; }
.sol-card__shine {
  position: absolute; inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(79, 140, 255, 0.08), transparent 45%);
  opacity: 0; transition: opacity 0.4s;
  pointer-events: none;
}
.sol-card:hover .sol-card__shine { opacity: 1; }

/* ============ SCHEME ============ */
.scheme__diagram {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(16px, 3vw, 40px);
  backdrop-filter: blur(12px);
  overflow-x: auto;
}
.scheme__svg { width: 100%; min-width: 780px; height: auto; display: block; }
.scheme__wire {
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: dashmove 1.2s linear infinite;
}
@keyframes dashmove { to { stroke-dashoffset: -12; } }
.scheme__wire--dim { stroke: rgba(255, 255, 255, 0.07); }
.scheme__pulse { fill: var(--cyan); filter: drop-shadow(0 0 6px var(--cyan)); }
.scheme__node rect {
  fill: rgba(255, 255, 255, 0.035);
  stroke: rgba(255, 255, 255, 0.12);
  stroke-width: 1.2;
  transition: stroke 0.3s, fill 0.3s;
}
.scheme__node:hover rect { stroke: rgba(79, 140, 255, 0.7); fill: rgba(79, 140, 255, 0.07); }
.scheme__label {
  fill: var(--text);
  font-family: var(--font-body);
  font-size: 17px; font-weight: 800;
}
.scheme__sub { fill: var(--text-dim); font-family: var(--font-body); font-size: 12.5px; }
.scheme__core-ring {
  fill: rgba(79, 140, 255, 0.06);
  stroke: url(#flow);
  stroke-width: 1.6;
}
.scheme__core-ring--spin {
  fill: none;
  stroke-dasharray: 40 300;
  stroke-width: 2.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: ringspin 6s linear infinite;
}
@keyframes ringspin { to { transform: rotate(360deg); } }
.scheme__core-title {
  fill: var(--text);
  font-family: var(--font-display);
  font-size: 16px; font-weight: 600; letter-spacing: 2px;
}
.scheme__core-sub { fill: var(--text-dim); font-family: var(--font-body); font-size: 12px; }
.scheme__zone {
  fill: rgba(255, 255, 255, 0.015);
  stroke: rgba(255, 255, 255, 0.14);
  stroke-width: 1.4;
  stroke-dasharray: 8 8;
}
.scheme__zone--ext {
  fill: rgba(44, 199, 221, 0.04);
  stroke: rgba(44, 199, 221, 0.35);
}
.scheme__zone-label {
  fill: var(--text-dim);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400; letter-spacing: 4px;
}
.scheme__zone-label--ext { fill: rgba(44, 199, 221, 0.8); }
.scheme__fw rect {
  fill: rgba(255, 90, 90, 0.07);
  stroke: rgba(255, 120, 120, 0.55);
  stroke-width: 1.6;
}
.scheme__fw-lines { stroke: rgba(255, 120, 120, 0.4); stroke-width: 1.2; }
.scheme__chip rect {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(44, 199, 221, 0.4);
  stroke-width: 1.3;
  transition: fill 0.3s, stroke 0.3s;
}
.scheme__chip:hover rect { fill: rgba(44, 199, 221, 0.1); stroke: rgba(44, 199, 221, 0.85); }
.scheme__chip-t {
  fill: var(--text);
  font-family: var(--font-body);
  font-size: 16px; font-weight: 800; letter-spacing: 1px;
}
.scheme__chip-t--visa { font-style: italic; fill: #9db9ff; }
.scheme__chip-t--humo { fill: #ffd98a; }
.scheme__chip-t--paynet { fill: #8de8a0; }
.scheme__pulse--ext { fill: #7be8c8; filter: drop-shadow(0 0 6px #7be8c8); }

/* ============ ADVANTAGES ============ */
.adv__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.adv-card {
  position: relative;
  padding: 32px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s;
}
.adv-card:hover { transform: translateY(-8px); border-color: rgba(34, 211, 238, 0.4); }
.adv-card__icon {
  width: 74px; height: 74px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(79, 140, 255, 0.14), rgba(34, 211, 238, 0.06));
  border: 1px solid var(--border);
  display: grid; place-items: center;
  margin-bottom: 22px;
  overflow: hidden;
}
.adv-card__icon img { width: 54px; height: 54px; object-fit: contain; }
.adv-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  margin-bottom: 12px;
}
.adv-card p { color: var(--text-dim); font-size: 0.9rem; }
.adv-card__border {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.adv-card:hover .adv-card__border { transform: scaleX(1); }

/* ============ MISSION ============ */
.mission__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.mission__visual { position: sticky; top: 120px; }
.mission__points { margin-top: 36px; display: flex; flex-direction: column; gap: 10px; }
.mission__point {
  display: flex; gap: 22px;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.mission__point:hover { background: var(--surface); border-color: var(--border); }
.mission__point-num {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 300;
  color: var(--cyan);
  padding-top: 3px;
}
.mission__point h4 {
  font-family: var(--font-display);
  font-size: 1.02rem; font-weight: 500;
  margin-bottom: 8px;
}
.mission__point p { color: var(--text-dim); font-size: 0.92rem; }

/* ============ CLIENTS ============ */
.clients__marquee {
  overflow: hidden;
  padding: 30px 0 60px;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}
.clients__track {
  display: flex; align-items: center; gap: 30px;
  width: max-content;
  animation: ticker 26s linear infinite;
}
.clients__marquee:hover .clients__track { animation-play-state: paused; }
.clients__logo {
  width: 250px; height: 110px;
  display: grid; place-items: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 34px;
  backdrop-filter: blur(10px);
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.clients__logo:hover {
  transform: translateY(-6px);
  border-color: rgba(44, 199, 221, 0.45);
  box-shadow: 0 20px 50px rgba(20, 120, 160, 0.25);
}
.clients__logo img { max-height: 44px; width: auto; max-width: 100%; object-fit: contain; }
.clients__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.client-card {
  padding: 34px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(12px);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s;
}
.client-card:hover { transform: translateY(-6px); border-color: rgba(79, 140, 255, 0.4); }
.client-card__logo {
  height: 52px; width: auto; max-width: 210px; object-fit: contain;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  margin-bottom: 20px;
}
.client-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 500;
  margin-bottom: 12px;
}
.client-card p { color: var(--text-dim); font-size: 0.93rem; }

/* ============ GLOBE ============ */
.globe-wrap {
  position: relative;
  height: clamp(360px, 56vw, 560px);
  max-width: 860px;
  margin: 0 auto;
}
.globe-wrap::before {
  content: '';
  position: absolute; inset: 8%;
  background: radial-gradient(circle, rgba(45, 224, 140, 0.12), transparent 62%);
  filter: blur(30px);
  pointer-events: none;
}
#globe {
  width: 100%; height: 100%;
  display: block;
  position: relative; z-index: 1;
  touch-action: pan-y;
}

/* ============ PARTNERS ============ */
.partners__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.partner-card {
  position: relative;
  padding: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  display: flex; flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.4s, box-shadow 0.4s;
}
.partner-card:hover {
  transform: translateY(-8px);
  border-color: rgba(44, 199, 221, 0.45);
  box-shadow: 0 30px 70px rgba(3, 10, 26, 0.7);
}
.partner-card__head {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 18px;
}
.partner-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 600;
}
.partner-card__name span {
  font-weight: 300;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.partner-card__badge {
  padding: 7px 14px;
  background: rgba(44, 199, 221, 0.09);
  border: 1px solid rgba(44, 199, 221, 0.35);
  border-radius: 100px;
  font-size: 0.76rem; font-weight: 700;
  color: var(--cyan);
}
.partner-card__desc { color: var(--text-dim); font-size: 0.95rem; flex: 1; margin-bottom: 22px; }
.partner-card__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }

/* ============ DETAIL PAGES ============ */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 90px) 0 70px;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; top: -40%; right: -10%;
  width: 60%; height: 150%;
  background: radial-gradient(circle, rgba(43, 138, 235, 0.13), transparent 65%);
  pointer-events: none;
}
.page-hero__crumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.85rem; color: var(--text-dim);
  margin-bottom: 26px;
}
.page-hero__crumbs a { color: var(--cyan); transition: opacity 0.2s; }
.page-hero__crumbs a:hover { opacity: 0.75; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 600; line-height: 1.12;
  margin-bottom: 22px; max-width: 800px;
}
.page-hero h1 em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.page-hero p { max-width: 680px; color: var(--text-dim); font-size: 1.05rem; }

/* ---- fx page hero (adm/atm) ---- */
.page-hero--fx::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 60% at 60% 40%, #000 30%, transparent 75%);
  animation: gridpan 24s linear infinite;
  pointer-events: none;
}
@keyframes gridpan { to { background-position: 56px 56px; } }
.page-hero--fx .container {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 60px;
  align-items: center;
}
.page-hero__visual { position: relative; }
.page-hero__glow {
  position: absolute; inset: 5% -10%;
  background: radial-gradient(circle, rgba(22, 201, 212, 0.2), transparent 62%);
  filter: blur(34px);
  animation: glowpulse 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glowpulse { 50% { opacity: 0.55; transform: scale(1.07); } }
.page-hero__visual::after {
  content: '';
  position: absolute; left: 50%; top: 50%;
  width: 380px; height: 380px; max-width: 90%;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(22, 201, 212, 0.28);
  border-radius: 50%;
  animation: ringspin 26s linear infinite;
  pointer-events: none;
}
.device3d {
  position: relative;
  height: 520px;
  display: grid; place-items: center;
  cursor: grab;
  touch-action: none;
  z-index: 1;
}
.device3d.grabbing { cursor: grabbing; }
.device3d canvas {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  animation: devfloat 7s ease-in-out infinite;
}
.device3d img.page-hero__device {
  width: min(300px, 78%);
  border-radius: 20px;
  box-shadow: 0 34px 70px rgba(0, 0, 0, 0.6), 0 0 50px rgba(22, 201, 212, 0.12);
  animation: devfloat 7s ease-in-out infinite;
}
.device3d.is-3d::after {
  content: '↻ 360°';
  position: absolute; bottom: 8px; left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  opacity: 0.7;
  pointer-events: none;
}
@keyframes devfloat { 50% { transform: translateY(-14px); } }
@media (max-width: 900px) { .device3d { height: 420px; } }
.page-hero__visual .tilt-card__float--1 { top: 12%; right: 0; z-index: 2; }
.page-hero__visual .tilt-card__float--2 { bottom: 14%; left: 0; z-index: 2; }
.fx-dot {
  position: absolute;
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  opacity: 0.5;
  animation: fxfloat 9s ease-in-out infinite;
  pointer-events: none;
}
.fx-dot--1 { top: 24%; left: 8%; }
.fx-dot--2 { top: 62%; left: 46%; animation-delay: -3s; width: 5px; height: 5px; }
.fx-dot--3 { top: 30%; right: 10%; animation-delay: -6s; background: var(--blue); box-shadow: 0 0 14px var(--blue); }
@keyframes fxfloat {
  33% { transform: translate(14px, -22px); opacity: 0.9; }
  66% { transform: translate(-10px, 12px); opacity: 0.35; }
}
@media (max-width: 900px) {
  .page-hero--fx .container { grid-template-columns: 1fr; gap: 44px; }
  .page-hero__visual { max-width: 340px; margin: 0 auto; }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-grid--2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  position: relative;
  padding: 30px 26px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.35s, box-shadow 0.35s;
}
.feature-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 140, 255, 0.4);
  box-shadow: 0 22px 50px rgba(3, 10, 26, 0.55);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-card__num {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 300;
  color: var(--cyan);
  margin-bottom: 14px;
}
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, rgba(79, 140, 255, 0.15), rgba(34, 211, 238, 0.05));
  border: 1px solid var(--border);
  color: var(--cyan);
  margin-bottom: 18px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card:hover .feature-card__icon {
  transform: scale(1.12) rotate(-5deg);
  box-shadow: 0 0 26px rgba(34, 211, 238, 0.3);
}
.feature-card__icon + .feature-card__num {
  position: absolute; top: 20px; right: 24px;
  margin: 0; opacity: 0.55;
}
.device-card--teaser { position: relative; }
.device-card--teaser::before {
  content: '';
  position: absolute; inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(120deg, rgba(22, 201, 212, 0.55), transparent 40%, transparent 60%, rgba(79, 140, 255, 0.55));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: teasershift 5s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes teasershift { to { filter: hue-rotate(30deg); opacity: 0.55; } }
.device-card--teaser .partner-card__badge::before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  margin-right: 8px;
  animation: pulse-dot 2s ease-in-out infinite;
}
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 500;
  margin-bottom: 10px;
}
.feature-card p { color: var(--text-dim); font-size: 0.92rem; }

.timeline {
  display: flex; flex-direction: column; gap: 0;
  max-width: 640px;
}
.timeline__item {
  position: relative;
  display: flex; gap: 24px;
  padding: 0 0 34px 0;
}
.timeline__item::before {
  content: '';
  position: absolute; left: 23px; top: 48px; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(79, 140, 255, 0.5), rgba(34, 211, 238, 0.15));
}
.timeline__item:last-child::before { display: none; }
.timeline__num {
  flex: 0 0 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface-2);
  border: 1px solid rgba(79, 140, 255, 0.4);
  font-family: var(--font-display);
  font-size: 0.95rem; color: var(--cyan);
}
.timeline__item h4 { font-weight: 800; margin-bottom: 6px; }
.timeline__item p { color: var(--text-dim); font-size: 0.94rem; }
.timeline__time {
  margin-left: auto; flex: 0 0 auto;
  font-family: var(--font-display);
  color: var(--cyan); font-size: 0.95rem;
  padding-top: 12px;
}

.big-stat {
  display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap;
  padding: 34px 38px;
  background: linear-gradient(140deg, rgba(255, 99, 99, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 120, 120, 0.3);
  border-radius: 22px;
  margin-top: 10px;
}
.big-stat--good {
  background: linear-gradient(140deg, rgba(44, 199, 221, 0.09), rgba(255, 255, 255, 0.02));
  border-color: rgba(44, 199, 221, 0.4);
}
.big-stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 600;
}
.big-stat--bad .big-stat__num { color: #ff8f8f; }
.big-stat--good .big-stat__num {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.big-stat__label { color: var(--text-dim); max-width: 380px; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-row + h3 { margin-top: 28px; }
.tech-group h3 {
  font-family: var(--font-display);
  font-size: 0.85rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-dim);
  margin: 26px 0 14px;
}
.tech-group:first-child h3 { margin-top: 0; }

.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex; gap: 14px; align-items: flex-start;
  color: var(--text-dim);
}
.check-list li::before {
  content: '';
  flex: 0 0 22px; height: 22px; margin-top: 2px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='m6 12 4 4 8-8' stroke='%2322d3ee' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/14px no-repeat,
    rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.35);
}
.check-list b { color: var(--text); }

.device-card {
  display: flex; gap: 44px; align-items: center;
  max-width: 900px; margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: 28px;
  backdrop-filter: blur(12px);
}
.device-card__img {
  flex: 0 0 200px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #0b1626;
}
.device-card__img img { width: 100%; height: auto; display: block; }
.device-card__body { flex: 1; }
.device-card__body .partner-card__desc { margin-bottom: 26px; }
@media (max-width: 720px) {
  .device-card { flex-direction: column; }
  .device-card__img { flex: 0 0 auto; width: min(240px, 70%); }
}

.cta-band {
  position: relative;
  text-align: center;
  padding: clamp(40px, 7vw, 80px);
  background: linear-gradient(120deg, rgba(79, 140, 255, 0.14), rgba(255, 255, 255, 0.02) 40%, rgba(22, 201, 212, 0.12) 80%);
  background-size: 220% 220%;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  overflow: hidden;
  animation: ctashift 9s ease-in-out infinite alternate;
}
@keyframes ctashift { to { background-position: 100% 100%; } }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin: 0 auto 30px; }

/* ============ CONTACT ============ */
.contact__card {
  position: relative;
  padding: clamp(36px, 6vw, 72px);
  background: linear-gradient(160deg, rgba(79, 140, 255, 0.08), rgba(255, 255, 255, 0.02) 55%);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  overflow: hidden;
  backdrop-filter: blur(14px);
}
.contact__glow {
  position: absolute; top: -30%; left: -10%;
  width: 50%; height: 100%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.14), transparent 65%);
  pointer-events: none;
}
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.contact__list { list-style: none; margin-top: 34px; display: flex; flex-direction: column; gap: 22px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; color: var(--text-dim); font-size: 0.94rem; }
.contact__list b { color: var(--text); }
.contact__list a { color: var(--cyan); transition: opacity 0.2s; }
.contact__list a:hover { opacity: 0.75; }
.contact__ico {
  flex: 0 0 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--cyan);
}
.contact__form { display: flex; flex-direction: column; gap: 18px; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%;
  padding: 18px 20px;
  background: rgba(5, 7, 13, 0.55);
  border: 1px solid var(--border);
  border-radius: 14px;
  color: var(--text);
  font-family: var(--font-body); font-size: 0.96rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  border-color: rgba(79, 140, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(79, 140, 255, 0.12);
}
.field label {
  position: absolute; left: 20px; top: 18px;
  color: var(--text-dim); font-size: 0.94rem;
  pointer-events: none;
  transition: 0.25s ease;
  background: transparent;
}
.field input:focus + label, .field textarea:focus + label,
.field input:not(:placeholder-shown) + label, .field textarea:not(:placeholder-shown) + label {
  top: -9px; left: 14px;
  font-size: 0.72rem; font-weight: 700;
  color: var(--cyan);
  background: #0a0f1c;
  padding: 0 8px;
  border-radius: 6px;
}
.contact__success {
  display: none;
  padding: 14px 18px;
  background: rgba(34, 211, 238, 0.1);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 12px;
  color: var(--cyan); font-weight: 700; font-size: 0.9rem;
  text-align: center;
}
.contact__success.show { display: block; animation: successIn 0.5s cubic-bezier(0.22, 1, 0.36, 1); }
@keyframes successIn { from { opacity: 0; transform: translateY(10px); } }

/* ============ FOOTER ============ */
.footer {
  position: relative; z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(5, 7, 13, 0.7);
  backdrop-filter: blur(14px);
  padding: 70px 0 34px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer__brand p { color: var(--text-dim); margin-top: 18px; font-size: 0.92rem; max-width: 280px; }
.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  color: var(--text-dim);
  font-size: 0.92rem;
  padding: 6px 0;
  transition: color 0.25s, transform 0.25s;
}
.footer__col a:hover { color: var(--cyan); transform: translateX(4px); }
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 30px;
  color: var(--text-dim); font-size: 0.84rem;
}

/* ============ REVEAL (JS-driven) ============ */
.reveal, .reveal-hero { opacity: 0; }
body.no-js .reveal, body.no-js .reveal-hero { opacity: 1; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1080px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .solutions__grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .adv__grid { grid-template-columns: repeat(2, 1fr); }
  .intro__grid, .mission__grid, .contact__grid, .partners__grid { grid-template-columns: 1fr; gap: 26px; }
  .feature-grid, .feature-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .mission__visual { position: static; max-width: 520px; }
  .section-head { flex-direction: column; align-items: flex-start; }
  .section-head--center { align-items: center; }
  .why__cols { grid-template-columns: 1fr; gap: 20px; }
  .tilt-card__float--1 { right: 2%; }
  .tilt-card__float--2 { left: 2%; }
}
@media (max-width: 640px) {
  .section { padding: 72px 0; }
  .adv__grid, .clients__grid, .feature-grid, .feature-grid--4 { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .intro__stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero__cta .btn { width: 100%; }
  .footer__bottom { flex-direction: column; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__word { transform: none; }
  .reveal, .reveal-hero { opacity: 1; }
}

/* ============ INTRO GLOBE (replaces the bridge image) ============ */
.intro-globe {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: block;
  background: radial-gradient(120% 120% at 50% 40%, #06222f 0%, #04121d 60%, #030a12 100%);
  touch-action: pan-y;
}

/* return pulses: responses flowing back in */
.scheme__pulse--in { fill: #6fb2ff; filter: drop-shadow(0 0 6px #6fb2ff); opacity: 0.85; }
.scheme__pulse--in.scheme__pulse--ext { fill: #8fd0ff; filter: drop-shadow(0 0 6px #8fd0ff); }

/* ============ CONTACT: honeypot + error state ============ */
.hp-field {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; opacity: 0; pointer-events: none;
}
.contact__error {
  display: none;
  margin-top: 14px; padding: 12px 16px;
  border: 1px solid rgba(255, 120, 120, 0.4);
  border-radius: 12px;
  background: rgba(255, 90, 90, 0.08);
  color: #ff9d9d; font-size: 0.92rem;
}
.contact__error.show { display: block; }
