/* FluxRemit — Global Styles */

:root {
  --ink: #04080f;
  --navy-950: #060d1a;
  --navy-900: #0c1525;
  --navy-800: #131f35;
  --navy-700: #1c2d4d;
  --teal-500: #00c9a7;
  --teal-400: #2dd4bf;
  --teal-300: #5eead4;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --purple-500: #8b5cf6;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;

  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --ease: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1180px;
  --header-h: 88px;
  --header-shell-h: 60px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-600);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

/* ── Preloader ── */

.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}

.preloader__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: preloader-fade 1.6s ease-in-out infinite;
}

.preloader__logo {
  display: block;
  width: auto;
  height: 40px;
}

.preloader__track {
  width: 56px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.preloader__fill {
  display: block;
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, var(--teal-500), var(--cyan-500));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  animation: preloader-bar 1.4s ease-in-out infinite;
}

@keyframes preloader-fade {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.55; }
}

@keyframes preloader-bar {
  0% { transform: scaleX(0); }
  50% { transform: scaleX(0.75); }
  100% { transform: scaleX(0); transform-origin: right center; }
}

/* ── Cookie Banner ── */

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  width: min(400px, calc(100vw - 32px));
  pointer-events: none;
  transform: translateY(24px) scale(0.97);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.2, 0.64, 1), opacity 0.45s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner.is-hidden {
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner__panel {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: var(--navy-900);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 201, 167, 0.06) inset,
    0 24px 64px rgba(0, 0, 0, 0.45);
}

.cookie-banner__panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--cyan-500), transparent 80%);
}

.cookie-banner__mark {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  padding-top: 2px;
}

.cookie-banner__mark img {
  width: 28px;
  height: 28px;
  opacity: 0.9;
}

.cookie-banner__content {
  flex: 1;
  min-width: 0;
}

.cookie-banner__eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 6px;
}

.cookie-banner__title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.cookie-banner__desc {
  font-size: 12.5px;
  line-height: 1.65;
  color: var(--gray-500);
  margin-bottom: 18px;
}

.cookie-banner__link {
  color: var(--teal-400);
  font-weight: 600;
  border-bottom: 1px solid rgba(45, 212, 191, 0.35);
  transition: color var(--ease), border-color var(--ease);
}

.cookie-banner__link:hover {
  color: var(--teal-300);
  border-color: var(--teal-300);
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
}

.cookie-banner__btn {
  flex: 1;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 9px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease);
}

.cookie-banner__btn--accept {
  color: var(--ink);
  background: var(--teal-500);
  border-color: var(--teal-500);
}

.cookie-banner__btn--accept:hover {
  background: var(--teal-400);
  border-color: var(--teal-400);
  transform: translateY(-1px);
}

.cookie-banner__btn--decline {
  color: var(--gray-400);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.cookie-banner__btn--decline:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.22);
}

@media (max-width: 480px) {
  .cookie-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
  }

  .cookie-banner__panel {
    flex-direction: column;
    padding: 18px;
    gap: 12px;
  }

  .cookie-banner__mark {
    padding-top: 0;
  }

  .cookie-banner__actions {
    flex-direction: column-reverse;
  }

  .cookie-banner__btn {
    width: 100%;
    padding: 12px 16px;
  }
}

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

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

ul { list-style: none; }

/* ── Icons ── */

.icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm { width: 18px; height: 18px; }
.icon--lg { width: 28px; height: 28px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--teal-500);
  color: var(--ink);
  border-color: var(--teal-500);
}

.btn-primary:hover {
  background: var(--teal-400);
  border-color: var(--teal-400);
  transform: translateY(-1px);
}

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

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-ghost {
  background: transparent;
  color: var(--gray-300);
  border-color: transparent;
  padding: 10px 18px;
}

.btn-ghost:hover {
  color: var(--white);
}

.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ── Header ── */

.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 14px 20px 0;
  pointer-events: none;
}

.header__shell {
  pointer-events: auto;
  max-width: var(--container);
  margin: 0 auto;
  height: var(--header-shell-h);
  padding: 6px 8px 6px 14px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  overflow: visible;
  background: rgba(8, 14, 26, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(0, 201, 167, 0.04) inset,
    0 12px 40px rgba(0, 0, 0, 0.35);
}

.header__shell::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 167, 0.35), transparent);
  border-radius: 18px 18px 0 0;
  pointer-events: none;
}

.header__shell {
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  padding-right: 8px;
}

.logo__img {
  display: block;
  width: auto;
  height: 32px;
  flex-shrink: 0;
}

.logo__img--footer {
  height: 28px;
}

.logo__tag {
  display: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  margin-left: 4px;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  overflow: visible;
}

.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  border-radius: 9px;
  transition: background var(--ease), color var(--ease), box-shadow var(--ease);
}

.nav__link .icon {
  width: 15px;
  height: 15px;
  opacity: 0.55;
  transition: opacity var(--ease);
}

.nav__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}

.nav__link:hover .icon { opacity: 1; }

.nav__link.is-active,
.nav__link--active {
  color: var(--white);
  background: rgba(0, 201, 167, 0.12);
  box-shadow: 0 0 0 1px rgba(0, 201, 167, 0.18);
}

.nav__link.is-active .icon,
.nav__link--active .icon {
  opacity: 1;
  color: var(--teal-400);
}

/* Services dropdown */

.nav__item {
  position: relative;
}

.nav__item--dropdown .nav__link--dropdown {
  padding-right: 12px;
}

/* Invisible bridge so hover isn't lost when moving to dropdown */
.nav__item--dropdown::after {
  content: '';
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 14px;
  z-index: 99;
}

.icon--chevron {
  width: 13px;
  height: 13px;
  opacity: 0.5;
  margin-left: 2px;
  transition: transform var(--ease);
}

.nav__item--dropdown:hover .icon--chevron,
.nav__item--dropdown.open .icon--chevron {
  transform: rotate(180deg);
  opacity: 0.8;
}

.nav__dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 230px;
  padding: 6px;
  background: rgba(10, 16, 28, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.nav__item--dropdown:hover .nav__dropdown,
.nav__item--dropdown.open .nav__dropdown,
.nav__item--dropdown:focus-within .nav__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  border-radius: 9px;
  transition: background var(--ease), color var(--ease);
}

.nav__dropdown-link .icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
}

.nav__dropdown-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav__dropdown-link:hover .icon {
  opacity: 1;
  color: var(--teal-400);
}

.nav__dropdown-badge {
  margin-left: auto;
  padding: 2px 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple-500);
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 100px;
}

.header__login.is-active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 4px;
}

.header__divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
}

.header__login {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-400);
  border-radius: 9px;
  transition: color var(--ease), background var(--ease);
}

.header__login .icon {
  width: 16px;
  height: 16px;
}

.header__login:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.header__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--teal-500);
  border-radius: 10px;
  transition: background var(--ease), transform var(--ease);
}

.header__cta .icon {
  width: 15px;
  height: 15px;
  transition: transform var(--ease);
}

.header__cta:hover {
  background: var(--teal-400);
  transform: translateY(-1px);
}

.header__cta:hover .icon {
  transform: translateX(2px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  cursor: pointer;
  padding: 8px;
  justify-self: end;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--ease);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero ── */

.hero {
  position: relative;
  background: var(--ink);
  padding: calc(var(--header-h) + 64px) 0 0;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.hero__orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: rgba(0, 201, 167, 0.14);
}

.hero__orb--2 {
  width: 380px;
  height: 380px;
  bottom: 80px;
  left: -100px;
  background: rgba(139, 92, 246, 0.1);
}

.hero__arc {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 167, 0.3) 30%, rgba(6, 182, 212, 0.3) 70%, transparent);
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  padding-bottom: 72px;
}

.hero__content {
  max-width: 600px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 28px;
}

.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--teal-500);
}

.hero__title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 28px;
}

.hero__title .accent {
  display: block;
  background: linear-gradient(120deg, var(--teal-400) 0%, var(--cyan-400) 60%, var(--teal-300) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.125rem;
  color: var(--gray-400);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 500px;
}

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

/* Hero visual card */

.hero__visual {
  position: relative;
}

.hero__card {
  background: linear-gradient(145deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-xl);
  padding: 32px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow:
    0 0 0 1px rgba(0, 201, 167, 0.05) inset,
    0 32px 64px rgba(0, 0, 0, 0.4);
}

.hero__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.hero__card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-500);
}

.hero__card-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-400);
}

.hero__card-status::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 8px var(--teal-500);
}

.hero__balances {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.hero__balance {
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-md);
  text-align: center;
}

.hero__balance-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0 auto 10px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.18);
  border-radius: 10px;
  color: var(--teal-400);
}

.hero__balance-icon .icon {
  width: 18px;
  height: 18px;
}

.hero__balance-code {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.hero__balance-amount {
  font-size: 11px;
  color: var(--gray-500);
  font-variant-numeric: tabular-nums;
}

.hero__iban-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(0, 201, 167, 0.06);
  border: 1px solid rgba(0, 201, 167, 0.15);
  border-radius: var(--radius-sm);
}

.hero__iban-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-500);
  flex-shrink: 0;
}

.hero__iban-value {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: var(--teal-300);
  letter-spacing: 0.06em;
  text-align: right;
}

.hero__card-float {
  position: absolute;
  top: -16px;
  right: -16px;
  padding: 10px 16px;
  background: var(--navy-800);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  color: var(--teal-300);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* Stats bar */

.hero__stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

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

.hero__stat {
  padding: 32px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hero__stat:nth-child(2n) { border-right: none; }
.hero__stat:nth-last-child(-n+2) { border-bottom: none; }

.hero__stat-value {
  font-size: 1.625rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 6px;
}

.hero__stat-label {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.4;
}

/* ── Sections ── */

.section { padding: 100px 0; }

.section--dark {
  background: var(--navy-900);
  color: var(--gray-300);
}

.section--light {
  background: var(--gray-50);
}

.section__header {
  margin-bottom: 60px;
}

.section__header--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}

.section__eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 16px;
}

.section--dark .section__eyebrow { color: var(--teal-400); }

.section__title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
}

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

.section__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
  max-width: 480px;
}

.section--dark .section__desc { color: var(--gray-400); }

/* ── Services bento grid ── */

.services-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 16px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--gray-200);
  transition: var(--ease);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  border-color: rgba(0, 201, 167, 0.35);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
  transform: translateY(-3px);
}

.service-card--sepa  { grid-column: span 7; }
.service-card--gbp   { grid-column: span 5; }
.service-card--multi { grid-column: span 5; }
.service-card--cards { grid-column: span 7; }

.service-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 24px;
}

.service-card__icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.08), rgba(6, 182, 212, 0.05));
  border: 1px solid rgba(0, 201, 167, 0.15);
  border-radius: var(--radius-md);
  color: var(--teal-500);
}

.service-card__icon-wrap .icon {
  width: 22px;
  height: 22px;
}

.service-card__region {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 10px;
}

.service-card__title {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card__desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.service-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.5;
}

.service-card__feature::before {
  content: '';
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal-500);
  margin-top: 8px;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  transition: gap var(--ease), color var(--ease);
  margin-top: auto;
}

.service-card__link::after {
  content: '→';
  color: var(--teal-500);
  transition: transform var(--ease);
}

.service-card__link:hover {
  color: var(--teal-500);
}

.service-card__link:hover::after {
  transform: translateX(4px);
}

.badge-coming {
  display: inline-flex;
  padding: 5px 12px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-500);
}

.service-card--cards {
  background: linear-gradient(135deg, var(--white) 60%, rgba(139, 92, 246, 0.04) 100%);
}

/* ── Features ── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-card {
  padding: 36px 32px;
  background: var(--navy-900);
  transition: background var(--ease);
}

.feature-card:hover {
  background: var(--navy-800);
}

.feature-card__num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal-500);
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
}

/* ── CTA ── */

.cta {
  padding: 88px 0;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}

.cta__title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}

.cta__desc {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 440px;
  line-height: 1.7;
}

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

/* ── Info Block ── */

.info-block {
  padding: 100px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
}

.info-block__header {
  max-width: 560px;
  margin-bottom: 56px;
}

.info-block__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1.1;
  margin-bottom: 16px;
}

.info-block__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.75;
}

.info-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.info-step {
  position: relative;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.info-step:hover {
  border-color: rgba(0, 201, 167, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
}

.info-step__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.1), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(0, 201, 167, 0.18);
  border-radius: var(--radius-md);
  color: var(--teal-500);
}

.info-step__icon .icon {
  width: 20px;
  height: 20px;
}

.info-step__num {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 8px;
}

.info-step__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.info-step__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.info-panel {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  padding: 36px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
}

.info-panel__title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 10px;
}

.info-panel__text {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 520px;
}

.info-rails {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.info-rail {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  letter-spacing: 0.02em;
}

.info-panel__aside {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 28px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.info-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.info-contact__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  color: var(--teal-500);
}

.info-contact__label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 3px;
}

.info-contact__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.5;
}

a.info-contact__value {
  color: var(--teal-500);
  transition: color var(--ease);
}

a.info-contact__value:hover {
  color: var(--cyan-500);
}

.info-panel__aside .btn {
  width: 100%;
  justify-content: center;
}

/* ── Legal / Inner Pages ── */

.page-hero {
  padding: calc(var(--header-h) + 48px) 0 56px;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(0, 201, 167, 0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(139, 92, 246, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 14px;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 14px;
}

.page-hero__desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.7;
}

.legal-page {
  padding: 72px 0 96px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.legal-nav__heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.legal-nav__link {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: 8px;
  transition: background var(--ease), color var(--ease);
  margin-bottom: 2px;
}

.legal-nav__link:hover {
  color: var(--ink);
  background: var(--gray-50);
}

.legal-nav__link.is-active {
  color: var(--teal-500);
  background: rgba(0, 201, 167, 0.08);
}

.legal-content {
  max-width: 720px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin: 36px 0 12px;
  line-height: 1.3;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 8px;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 16px 20px;
  color: var(--gray-600);
}

.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--teal-500);
  font-weight: 600;
  transition: color var(--ease);
}

.legal-content a:hover {
  color: var(--cyan-500);
}

.legal-content strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px;
  }

  .legal-nav__heading {
    width: 100%;
    margin-bottom: 8px;
  }

  .legal-nav__link {
    padding: 8px 14px;
    margin-bottom: 0;
    font-size: 13px;
  }
}

/* ── About Page ── */

.about-accent {
  color: var(--teal-400);
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
}

.about-story--dark .about-eyebrow,
.about-values .about-eyebrow,
.about-infra .about-eyebrow {
  color: var(--teal-400);
}

.about-title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}

.about-story--dark .about-title,
.about-values .about-title,
.about-infra .about-title {
  color: var(--white);
}

.about-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-600);
}

.about-story--dark .about-text,
.about-values .about-text {
  color: var(--gray-400);
}

/* Hero */

.about-hero {
  position: relative;
  padding: calc(var(--header-h) + 56px) 0 0;
  background: var(--ink);
  overflow: hidden;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.about-hero__orb--1 {
  width: 520px;
  height: 520px;
  top: -120px;
  right: -80px;
  background: rgba(0, 201, 167, 0.14);
}

.about-hero__orb--2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -60px;
  background: rgba(139, 92, 246, 0.1);
}

.about-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black, transparent);
}

.about-hero__arc {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 201, 167, 0.3) 30%, rgba(6, 182, 212, 0.3) 70%, transparent);
}

.about-hero__layout {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}

.about-hero__content {
  max-width: 720px;
}

.about-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-400);
  margin-bottom: 24px;
}

.about-hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--teal-500);
  border-radius: 2px;
}

.about-hero__title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: var(--white);
  margin-bottom: 24px;
}

.about-hero__desc {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--gray-500);
  max-width: 600px;
}

.about-hero__stats-bar {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

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

.about-hero__stat {
  padding: 32px 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--ease);
}

.about-hero__stat:last-child {
  border-right: none;
}

.about-hero__stat:hover {
  background: rgba(0, 201, 167, 0.04);
}

.about-hero__stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.18);
  border-radius: 10px;
  color: var(--teal-400);
}

.about-hero__stat-icon .icon {
  width: 18px;
  height: 18px;
}

.about-hero__stat-value {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 6px;
}

.about-hero__stat-label {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.45;
}

/* Story blocks */

.about-story {
  padding: 96px 0;
  position: relative;
}

.about-story--light {
  background: var(--gray-50);
}

.about-story--dark {
  background: var(--ink);
}

.about-story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-story__inner--reverse .about-story__visual {
  order: -1;
}

.about-story__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.about-story__index {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 201, 167, 0.25);
  flex-shrink: 0;
}

.about-story__index--sm {
  font-size: clamp(2rem, 3vw, 2.75rem);
}

.about-story--dark .about-story__index {
  -webkit-text-stroke-color: rgba(0, 201, 167, 0.35);
}

.about-story__copy .about-title {
  margin-bottom: 24px;
}

.about-story__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.about-pullquote {
  margin: 0;
  padding: 20px 24px;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: normal;
  line-height: 1.6;
  color: var(--ink);
  border-left: 3px solid var(--teal-500);
  background: linear-gradient(90deg, rgba(0, 201, 167, 0.08), transparent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.about-pullquote--light {
  color: var(--navy-800);
}

.about-story--dark .about-pullquote {
  color: var(--white);
  background: linear-gradient(90deg, rgba(0, 201, 167, 0.12), transparent);
  border-left-color: var(--teal-400);
}

.about-story__frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 28px 72px rgba(4, 8, 15, 0.14);
}

.about-story--dark .about-story__frame {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
}

.about-story__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-story__frame--wide img {
  aspect-ratio: 16 / 10;
}

.about-story__glow {
  position: absolute;
  width: 60%;
  height: 60%;
  top: -10%;
  right: -10%;
  background: radial-gradient(circle, rgba(0, 201, 167, 0.35), transparent 70%);
  filter: blur(40px);
  z-index: 0;
  pointer-events: none;
}

.about-story__glow--cyan {
  background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent 70%);
  top: auto;
  bottom: -10%;
  left: -10%;
  right: auto;
}

.about-story__glow--purple {
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent 70%);
}

.about-story__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(4, 8, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}

.about-pills {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-pills__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  transition: border-color var(--ease);
}

.about-pills__item:hover {
  border-color: rgba(0, 201, 167, 0.35);
}

.about-pills__item .icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--teal-500);
}

.about-story--dark .about-pills__item {
  color: var(--gray-300);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.about-pills--dark .about-pills__item {
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

/* Values */

.about-values {
  position: relative;
  padding: 96px 0;
  background: var(--navy-900);
  overflow: hidden;
}

.about-values__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-values__orb {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 201, 167, 0.08), transparent 65%);
  filter: blur(60px);
}

.about-values .container {
  position: relative;
  z-index: 1;
}

.about-values__header {
  max-width: 580px;
  margin-bottom: 52px;
}

.about-values__header .about-text {
  margin-top: 16px;
}

.about-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.about-value {
  position: relative;
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}

.about-value::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--teal-500), var(--cyan-500), transparent);
  opacity: 0;
  transition: opacity var(--ease);
}

.about-value:hover {
  border-color: rgba(0, 201, 167, 0.3);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-4px);
}

.about-value:hover::before {
  opacity: 1;
}

.about-value__num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
}

.about-value__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.15), rgba(6, 182, 212, 0.08));
  border: 1px solid rgba(0, 201, 167, 0.25);
  border-radius: 14px;
  margin-bottom: 20px;
}

.about-value__icon .icon {
  width: 22px;
  height: 22px;
  color: var(--teal-400);
}

.about-value__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.about-value__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-500);
}

/* Audience */

.about-audience-section {
  padding: 96px 0;
  background: var(--white);
}

.about-audience-section__header {
  max-width: 640px;
  margin-bottom: 48px;
}

.about-audience-section__header .about-title {
  margin: 16px 0;
}

.about-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.about-audience__card {
  padding: 28px 24px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.about-audience__card:hover {
  border-color: rgba(0, 201, 167, 0.35);
  box-shadow: 0 12px 40px rgba(0, 201, 167, 0.1);
  transform: translateY(-4px);
}

.about-audience__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(0, 201, 167, 0.1), rgba(6, 182, 212, 0.06));
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 12px;
  color: var(--teal-500);
}

.about-audience__icon .icon {
  width: 22px;
  height: 22px;
}

.about-audience__title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.about-audience__text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}

.about-audience__visual .about-story__frame img {
  aspect-ratio: 21 / 9;
}

/* Infrastructure */

.about-infra {
  position: relative;
  padding: 96px 0;
  background: var(--ink);
  overflow: hidden;
}

.about-infra__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-infra__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 85% 30%, rgba(0, 201, 167, 0.1), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(139, 92, 246, 0.06), transparent 50%);
}

.about-infra .container {
  position: relative;
  z-index: 1;
}

.about-infra__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-infra__copy .about-eyebrow {
  margin-bottom: 16px;
}

.about-infra__copy .about-title {
  margin-bottom: 24px;
}

.about-infra__copy .about-text {
  color: var(--gray-500);
  margin-bottom: 16px;
}

.about-infra__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 28px 0 32px;
}

.about-infra__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  transition: border-color var(--ease), background var(--ease);
}

.about-infra__feature:hover {
  border-color: rgba(0, 201, 167, 0.25);
  background: rgba(0, 201, 167, 0.04);
}

.about-infra__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 11px;
  color: var(--teal-400);
}

.about-infra__feature-icon .icon {
  width: 20px;
  height: 20px;
}

.about-infra__feature strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 3px;
}

.about-infra__feature span {
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray-500);
}

.about-infra__frame {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.4);
}

.about-infra__frame img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-infra__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(4, 8, 15, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
}

.about-infra__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.about-infra__metric {
  padding: 18px 14px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
}

.about-infra__metric-value {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-400);
  margin-bottom: 4px;
}

.about-infra__metric-label {
  font-size: 11px;
  line-height: 1.4;
  color: var(--gray-500);
}

@media (max-width: 1024px) {
  .about-values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .about-hero__stat:nth-child(2) {
    border-right: none;
  }

  .about-hero__stat:nth-child(1),
  .about-hero__stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-infra__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story__inner--reverse .about-story__visual {
    order: unset;
  }

  .about-story {
    padding: 72px 0;
  }

  .about-audience__grid {
    grid-template-columns: 1fr;
  }

  .about-infra {
    padding: 72px 0;
  }
}

@media (max-width: 600px) {
  .about-values__grid,
  .about-hero__stats {
    grid-template-columns: 1fr;
  }

  .about-hero__stat {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-hero__stat:last-child {
    border-bottom: none;
  }

  .about-story__meta {
    flex-wrap: wrap;
    gap: 10px;
  }

  .about-infra__metrics {
    grid-template-columns: 1fr;
  }

}

/* ── Contact Page ── */

.contact-page {
  padding: 72px 0 96px;
  background: var(--gray-50);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.contact-form-wrap {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(4, 8, 15, 0.04);
}

.contact-form__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 10px;
}

.contact-form__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 32px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:hover {
  border-color: var(--gray-300);
}

.form-input:focus {
  outline: none;
  border-color: var(--teal-500);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.12);
}

.form-input.is-invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.6;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  margin-bottom: 28px;
}

.form-check__input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.form-check__box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border: 1.5px solid var(--gray-300);
  border-radius: 6px;
  background: var(--gray-50);
  transition: border-color var(--ease), background var(--ease);
  position: relative;
}

.form-check__input:checked + .form-check__box {
  background: var(--teal-500);
  border-color: var(--teal-500);
}

.form-check__input:checked + .form-check__box::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check__input:focus-visible + .form-check__box {
  box-shadow: 0 0 0 3px rgba(0, 201, 167, 0.2);
}

.form-check__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

.form-check__text a {
  color: var(--teal-500);
  font-weight: 600;
}

.form-check__text a:hover {
  color: var(--cyan-500);
}

.contact-form__submit {
  width: 100%;
}

.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: calc(var(--header-h) + 24px);
}

.contact-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.contact-card__title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}

.contact-card--legal {
  background: var(--gray-50);
}

.contact-card--legal p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-600);
}

.contact-card--legal strong {
  color: var(--ink);
}

.contact-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-steps__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  font-size: 12px;
  font-weight: 800;
  color: var(--teal-500);
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.2);
  border-radius: 8px;
}

.contact-steps__item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
}

.contact-steps__item span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray-500);
}

.contact-faq-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), color var(--ease), background var(--ease);
}

.contact-faq-link:hover {
  color: var(--teal-500);
  border-color: rgba(0, 201, 167, 0.35);
  background: rgba(0, 201, 167, 0.04);
}

.contact-faq-link .icon:last-child {
  margin-left: auto;
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .contact-faq-link {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .contact-form-wrap {
    padding: 28px 24px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-aside {
    grid-template-columns: 1fr;
  }
}

.contact-map {
  padding: 0 0 96px;
  background: var(--gray-50);
}

.contact-map__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.contact-map__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 10px;
}

.contact-map__title {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}

.contact-map__address {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--gray-600);
}

.contact-map__address .icon {
  flex-shrink: 0;
  color: var(--teal-500);
}

.contact-map__link {
  flex-shrink: 0;
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--gray-200);
}

.contact-map__link:hover {
  background: var(--gray-50);
  border-color: rgba(0, 201, 167, 0.35);
  color: var(--teal-500);
}

.contact-map__frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 12px 40px rgba(4, 8, 15, 0.08);
  background: var(--gray-200);
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

@media (max-width: 700px) {
  .contact-map {
    padding-bottom: 72px;
  }

  .contact-map__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map__link {
    width: 100%;
    justify-content: center;
  }

  .contact-map__frame iframe {
    height: 320px;
  }
}

/* ── Modal ── */

.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 8, 15, 0.72);
  backdrop-filter: blur(6px);
}

.modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 40px 36px 36px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.35);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
  overflow: hidden;
}

.modal.is-visible .modal__panel {
  transform: translateY(0) scale(1);
}

.modal__panel--success {
  background:
    linear-gradient(90deg, var(--teal-500), var(--cyan-500)) top / 100% 3px no-repeat,
    var(--white);
}

.modal__panel--error {
  background:
    linear-gradient(90deg, #f87171, #fb923c) top / 100% 3px no-repeat,
    var(--white);
}

.modal__panel--soon {
  background:
    linear-gradient(90deg, var(--purple-500), var(--teal-500)) top / 100% 3px no-repeat,
    var(--white);
}

.modal__icon--soon {
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  color: var(--purple-500);
}

.modal__badge {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-500);
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 100px;
}

.modal__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.modal__actions .btn {
  justify-content: center;
}

.login-modal__back {
  background: var(--gray-50);
  color: var(--ink);
  border: 1px solid var(--gray-200);
}

.login-modal__back:hover {
  background: var(--white);
  border-color: var(--gray-300);
  color: var(--ink);
}

.modal--persistent {
  opacity: 1;
  visibility: visible;
}

.modal--persistent:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
}

/* ── Login Page ── */

.login-page {
  min-height: 60vh;
}

.login-shell {
  padding: 0 0 96px;
  margin-top: -24px;
}

.login-shell__card {
  max-width: 400px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  opacity: 0.35;
  filter: blur(1px);
  pointer-events: none;
}

.login-shell__field {
  height: 48px;
  margin-bottom: 16px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.login-shell__btn {
  height: 48px;
  margin-top: 8px;
  background: var(--gray-200);
  border-radius: var(--radius-sm);
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: var(--gray-400);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  cursor: pointer;
  transition: color var(--ease), background var(--ease), border-color var(--ease);
}

.modal__close:hover {
  color: var(--ink);
  background: var(--white);
  border-color: var(--gray-300);
}

.modal__close .icon {
  width: 16px;
  height: 16px;
}

.modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
}

.modal__icon .icon {
  width: 32px;
  height: 32px;
}

.modal__icon--success {
  background: rgba(0, 201, 167, 0.1);
  border: 1px solid rgba(0, 201, 167, 0.25);
  color: var(--teal-500);
}

.modal__icon--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #ef4444;
}

.modal__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
}

.modal__text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 28px;
}

.modal__action {
  width: 100%;
  justify-content: center;
}

@media (max-width: 480px) {
  .modal__panel {
    padding: 36px 24px 28px;
  }

  .modal__actions {
    grid-template-columns: 1fr;
  }
}

/* ── Services Page ── */

.services-page {
  padding: 72px 0 96px;
  background: var(--gray-50);
}

.services-page__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-tile {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}

.service-tile:hover {
  border-color: rgba(0, 201, 167, 0.35);
  box-shadow: 0 20px 56px rgba(4, 8, 15, 0.1);
  transform: translateY(-4px);
}

.service-tile__media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.service-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-tile:hover .service-tile__media img {
  transform: scale(1.04);
}

.service-tile__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 8, 15, 0.35), transparent 50%);
  pointer-events: none;
}

.service-tile__icon {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(4, 8, 15, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  color: var(--teal-400);
}

.service-tile__icon .icon {
  width: 20px;
  height: 20px;
}

.service-tile__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-500);
  background: rgba(4, 8, 15, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 100px;
}

.service-tile__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 32px;
}

.service-tile__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal-500);
  margin-bottom: 10px;
}

.service-tile__title {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-tile__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.service-tile__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}

.service-tile__list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--gray-600);
}

.service-tile__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal-500);
}

.service-tile__btn {
  width: 100%;
  justify-content: center;
}

.service-tile--soon:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 20px 56px rgba(139, 92, 246, 0.1);
}

@media (max-width: 900px) {
  .services-page__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .services-page {
    padding: 56px 0 72px;
  }

  .service-tile__body {
    padding: 24px 22px 28px;
  }
}

/* ── Service Detail Pages ── */

.service-detail {
  padding: 56px 0 96px;
  background: var(--gray-50);
}

.service-detail__hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 0 0 64px;
}

.service-detail__visual {
  position: relative;
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 24px 64px rgba(4, 8, 15, 0.12);
}

.service-detail__visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-detail__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(4, 8, 15, 0.4), transparent 55%);
  pointer-events: none;
}

.service-detail__visual-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal-400);
  background: rgba(4, 8, 15, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 201, 167, 0.3);
  border-radius: 100px;
}

.service-detail__visual-badge--soon {
  color: var(--purple-400);
  border-color: rgba(139, 92, 246, 0.35);
}

.service-detail__intro h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.2;
}

.service-detail__intro p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 16px;
}

.service-detail__intro p:last-child {
  margin-bottom: 0;
}

.service-detail__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}

.service-detail__stat {
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  text-align: center;
}

.service-detail__stat-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--teal-500);
  margin-bottom: 6px;
  line-height: 1;
}

.service-detail__stat-label {
  font-size: 13px;
  line-height: 1.4;
  color: var(--gray-600);
}

.service-detail__section {
  margin-bottom: 56px;
}

.service-detail__section:last-child {
  margin-bottom: 0;
}

.service-detail__heading {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin-bottom: 24px;
}

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

.service-detail__feature {
  padding: 26px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.service-detail__feature:hover {
  border-color: rgba(0, 201, 167, 0.35);
  box-shadow: 0 12px 36px rgba(4, 8, 15, 0.08);
}

.service-detail__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 14px;
  background: rgba(0, 201, 167, 0.1);
  border-radius: 11px;
  color: var(--teal-500);
}

.service-detail__feature-icon .icon {
  width: 20px;
  height: 20px;
}

.service-detail__feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-detail__feature p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-600);
}

.service-detail__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.service-detail__usecases {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-detail__usecases li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 15px;
  line-height: 1.55;
  color: var(--gray-600);
}

.service-detail__usecases .icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  color: var(--teal-500);
}

.service-detail__steps {
  list-style: none;
  counter-reset: svc-step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-detail__steps li {
  counter-increment: svc-step;
  position: relative;
  padding: 28px 22px 24px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.service-detail__steps li::before {
  content: counter(svc-step, decimal-leading-zero);
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--teal-500);
  margin-bottom: 12px;
}

.service-detail__steps h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.service-detail__steps p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--gray-600);
}

.service-detail__rails {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.service-detail__rail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
}

.service-detail__rail-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
}

.service-detail__rail-desc {
  font-size: 13px;
  color: var(--gray-500);
  text-align: right;
}

.service-detail--soon .service-detail__stat-value {
  color: var(--purple-500);
}

.service-detail--soon .service-detail__feature:hover {
  border-color: rgba(139, 92, 246, 0.35);
  box-shadow: 0 12px 36px rgba(139, 92, 246, 0.08);
}

.service-detail--soon .service-detail__feature-icon {
  background: rgba(139, 92, 246, 0.1);
  color: var(--purple-500);
}

.service-detail--soon .service-detail__usecases .icon {
  color: var(--purple-500);
}

.service-detail--soon .service-detail__steps li::before {
  color: var(--purple-500);
}

.service-detail__notice {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 36px;
  margin-bottom: 48px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: var(--radius-lg);
}

.service-detail__notice-badge {
  flex-shrink: 0;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--purple-500);
  background: var(--white);
  border: 1px solid rgba(139, 92, 246, 0.35);
  border-radius: 100px;
}

.service-detail__notice p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600);
}

@media (max-width: 1024px) {
  .service-detail {
    padding-top: 48px;
  }

  .service-detail__hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 0 0 48px;
  }

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

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

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

  .service-detail__split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .service-detail {
    padding: 40px 0 72px;
  }

  .service-detail__notice {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 24px 22px;
  }

  .service-detail__stats {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .service-detail__features {
    grid-template-columns: 1fr;
  }

  .service-detail__steps {
    grid-template-columns: 1fr;
  }

  .service-detail__rails {
    grid-template-columns: 1fr;
  }

  .service-detail__rail {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-detail__rail-desc {
    text-align: left;
  }
}

/* ── FAQ Page ── */

.faq-page {
  padding: 72px 0 96px;
  background: var(--gray-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  align-items: start;
}

.faq-nav {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
}

.faq-nav__heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 14px;
}

.faq-nav__link {
  display: block;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-500);
  border-radius: 8px;
  transition: background var(--ease), color var(--ease);
  margin-bottom: 2px;
}

.faq-nav__link:hover {
  color: var(--ink);
  background: var(--gray-50);
}

.faq-category {
  margin-bottom: 48px;
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.faq-item.is-open {
  border-color: rgba(0, 201, 167, 0.35);
  box-shadow: 0 4px 24px rgba(0, 201, 167, 0.08);
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--ease);
}

.faq-item__trigger:hover {
  color: var(--teal-500);
}

.faq-item__trigger .icon--chevron {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  transition: transform var(--ease), color var(--ease);
}

.faq-item.is-open .faq-item__trigger .icon--chevron {
  transform: rotate(180deg);
  color: var(--teal-500);
}

.faq-item__panel {
  padding: 0 22px 20px;
}

.faq-item__panel p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin: 0;
}

.faq-item__panel a {
  color: var(--teal-500);
  font-weight: 600;
  transition: color var(--ease);
}

.faq-item__panel a:hover {
  color: var(--teal-400);
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .faq-nav {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding: 16px;
  }

  .faq-nav__heading {
    width: 100%;
    margin-bottom: 8px;
  }

  .faq-nav__link {
    padding: 8px 14px;
    margin-bottom: 0;
    font-size: 13px;
  }
}

/* ── Footer ── */

.footer {
  background: var(--ink);
  padding: 56px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__main {
  display: grid;
  grid-template-columns: minmax(180px, 1.35fr) repeat(3, minmax(120px, 1fr));
  gap: 32px 40px;
  align-items: start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__brand {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__address {
  font-size: 13px;
  line-height: 1.65;
  color: var(--gray-500);
  margin: 0;
}

.footer__email {
  font-size: 13px;
  color: var(--teal-400);
  transition: color var(--ease);
}

.footer__email:hover {
  color: var(--teal-300);
}

.footer__nav {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer__legal-block {
  padding-top: 24px;
}

.footer__disclaimer {
  font-size: 12px;
  line-height: 1.7;
  color: var(--gray-500);
  margin-bottom: 8px;
}

.footer__legal-block .footer__copy {
  font-size: 12px;
  color: var(--gray-500);
}

.footer__heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col:last-child .footer__links {
  gap: 9px;
}

.footer__col:last-child .footer__link {
  font-size: 13px;
  line-height: 1.45;
}

.footer__link {
  font-size: 14px;
  color: var(--gray-500);
  transition: color var(--ease);
}

.footer__link:hover { color: var(--teal-400); }

.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer__legal {
  font-size: 12px;
  color: var(--gray-500);
  line-height: 1.7;
}

.footer__legal strong {
  color: var(--gray-400);
  font-weight: 600;
}

.footer__copy {
  font-size: 12px;
  color: var(--gray-500);
}

/* ── Mobile nav ── */

.mobile-nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.mobile-nav__backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: calc(var(--header-h) + 8px);
  left: 16px;
  right: 16px;
  width: auto;
  height: auto;
  max-height: calc(100dvh - var(--header-h) - 20px);
  overflow-y: auto;
  background: rgba(6, 12, 22, 0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  z-index: 999;
  padding: 16px;
  flex-direction: column;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.98);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-300);
  border-radius: 10px;
  transition: background var(--ease), color var(--ease);
}

.mobile-nav__link .icon {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
  opacity: 0.7;
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.mobile-nav__services-row {
  display: flex;
  align-items: stretch;
  gap: 4px;
}

.mobile-nav__link--grow {
  flex: 1;
  min-width: 0;
}

.mobile-nav__services-expand {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  background: none;
  border: none;
  border-radius: 10px;
  color: var(--gray-400);
  cursor: pointer;
  transition: background var(--ease), color var(--ease);
}

.mobile-nav__services-expand .icon--chevron {
  width: 16px;
  height: 16px;
  transition: transform var(--ease);
}

.mobile-nav__services-expand.open .icon--chevron {
  transform: rotate(180deg);
}

.mobile-nav__services-expand:hover,
.mobile-nav__services-expand.open {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

.mobile-nav__services-panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 4px 0 8px 44px;
}

.mobile-nav__services-panel.open {
  display: flex;
}

.mobile-nav__sublink {
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  border-radius: 8px;
  transition: color var(--ease), background var(--ease);
}

.mobile-nav__sublink:hover {
  color: var(--teal-400);
  background: rgba(255, 255, 255, 0.04);
}

.mobile-nav__actions {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav__actions .btn {
  width: 100%;
  justify-content: center;
}

/* ── Responsive ── */

@media (min-width: 1100px) {
  .logo__tag { display: inline-block; }
}

@media (max-width: 1050px) and (min-width: 901px) {
  .nav__link {
    padding: 8px 11px;
    font-size: 12px;
  }

  .nav__link .icon {
    width: 14px;
    height: 14px;
  }
}

@media (min-width: 900px) {
  .hero__layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 64px;
    padding-bottom: 80px;
  }

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

  .hero__stat {
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: none;
  }

  .hero__stat:last-child { border-right: none; }
}

@media (max-width: 900px) {
  .header { padding: 12px 16px 0; }

  .header__shell {
    grid-template-columns: 1fr auto;
    padding: 6px 8px 6px 12px;
    gap: 12px;
  }

  .nav, .header__actions { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .mobile-nav__backdrop { display: block; }

  .section__header--split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-bento {
    grid-template-columns: 1fr;
  }

  .service-card--sepa,
  .service-card--gbp,
  .service-card--multi,
  .service-card--cards {
    grid-column: span 1;
  }

  .features-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-md);
  }

  .footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
    text-align: center;
  }

  .footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer__nav {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    width: 100%;
  }

  .footer__legal-block {
    text-align: center;
  }

  .footer__links {
    align-items: center;
  }

  .cta__inner {
    flex-direction: column;
    text-align: left;
  }

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

  .info-panel {
    grid-template-columns: 1fr;
    padding: 28px;
  }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .section { padding: 72px 0; }

  .hero {
    padding-top: calc(var(--header-h) + 40px);
  }

  .hero__layout { padding-bottom: 48px; gap: 40px; }

  .hero__card-float {
    top: -10px;
    right: 12px;
    font-size: 11px;
    padding: 8px 12px;
  }

  .hero__balances { grid-template-columns: 1fr; }

  .hero__stat { padding: 24px 20px; }

  .hero__actions .btn { width: 100%; }

  .service-card { padding: 28px 24px; }

  .footer__main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta__actions { width: 100%; }
  .cta__actions .btn { flex: 1; }

  .info-block { padding: 72px 0; }

  .info-steps {
    grid-template-columns: 1fr;
  }

  .info-step { padding: 24px 20px; }

  .info-panel { padding: 24px 20px; }

  .info-panel__aside { padding: 24px 20px; }
}
