/* Finom — borderless business banking */
:root {
  --color-bg: #faf9f7;
  --color-bg-cream: #f5f3ef;
  --color-bg-soft: #f0eeea;
  --color-white: #ffffff;
  --color-text: #0f0f0f;
  --color-text-muted: #5c5c5c;
  --color-text-light: rgba(255, 255, 255, 0.85);
  --color-border: #e8e6e2;
  --color-pink: #ff4d8d;
  --color-purple: #7c3aed;
  --color-violet: #8b5cf6;
  --gradient-brand: linear-gradient(135deg, #ff4d8d 0%, #7c3aed 100%);
  --gradient-hero: linear-gradient(160deg, #fff5f9 0%, #f3eeff 45%, #faf9f7 100%);
  --gradient-cta: linear-gradient(135deg, #1a0a2e 0%, #2d1b4e 50%, #1a0a2e 100%);
  --shadow-sm: 0 2px 8px rgba(15, 15, 15, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 15, 15, 0.1);
  --shadow-lg: 0 24px 64px rgba(15, 15, 15, 0.14);
  --shadow-modal: 0 32px 80px rgba(0, 0, 0, 0.35);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-hero: "Dark Condensed", "Barlow Condensed", "Inter", sans-serif;
  --font-hero-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-h: 64px;
  --color-promo-bg: #0c0c0c;
  --color-header-bg: #f6f4f2;
  --color-header-pink: #f3e8f4;
  --color-nav-pill: #ffffff;
  --color-nav-active: #ebe8e4;
  --color-nav-cta: #1c1c1c;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2,  1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— Country modal ——— */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(12, 10, 18, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal-overlay.is-closing {
  opacity: 0;
  visibility: hidden;
}

.modal-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 40px 48px 44px;
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-modal);
  animation: modalIn 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-title {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  color: var(--color-text);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.country-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
}

.country-grid-full {
  grid-column: 1 / -1;
  margin-top: 4px;
}

.country-option {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition);
}

.country-option:hover,
.country-option:focus-visible {
  background: #f5f5f5;
  outline: none;
}

.country-option img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.main-content.is-hidden {
  visibility: hidden;
  height: 0;
  overflow: hidden;
}

.main-content.is-visible {
  visibility: visible;
  height: auto;
  overflow: visible;
}

/* ——— Site top (promo + header like Finom top.png) ——— */
.site-top {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 16px 0 0;
  background: linear-gradient(105deg, var(--color-header-pink) 0%, var(--color-header-bg) 38%, var(--color-header-bg) 100%);
}

.site-top.promo-hidden .promo-banner {
  display: none;
}

/* Promo banner */
.promo-banner {
  margin-bottom: 10px;
}

.promo-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 92px;
  padding: 16px 52px 16px 14px;
  background: var(--color-promo-bg);
  border-radius: 14px;
  overflow: hidden;
  color: var(--color-white);
}

.promo-banner__main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 24px;
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.promo-banner__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.promo-banner__bg-img {
  position: absolute;
  left: -8%;
  top: 50%;
  transform: translateY(-50%);
  height: 140%;
  width: auto;
  max-width: none;
  opacity: 0.14;
  filter: blur(10px) saturate(1.2);
  object-fit: contain;
  user-select: none;
}

.promo-banner__visual {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.promo-banner__img {
  display: block;
  height: auto;
  max-height: 76px;
  width: auto;
  max-width: 150px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 6px 20px rgba(255, 77, 141, 0.45));
}

.promo-banner__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  min-width: 0;
  color: inherit;
  text-align: left;
}

.promo-banner__title {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.promo-banner__text {
  font-size: 1.125rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: -0.015em;
  line-height: 1.35;
}

.promo-banner__discover {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  align-self: center;
  padding: 10px 22px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-white);
  border: 1.5px solid var(--color-pink);
  border-radius: var(--radius-pill);
  background: transparent;
  transition: background var(--transition), color var(--transition);
}

.promo-banner__discover:hover {
  background: rgba(255, 77, 141, 0.12);
}

.promo-banner__close {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}

.promo-banner__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

.promo-banner__close svg {
  width: 18px;
  height: 18px;
}

/* Header */
.site-header {
  background: transparent;
}

.site-header.is-scrolled .header-shell {
  box-shadow: var(--shadow-sm);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  min-height: var(--header-h);
  padding: 8px 16px 14px 0;
  max-width: 100%;
  margin: 0;
  width: 100%;
}

.logo-wordmark {
  flex-shrink: 0;
  margin-right: auto;
  margin-left: 0;
  padding-left: 12px;
  display: inline-flex;
  align-items: center;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--color-text);
  line-height: 1;
  transition: color var(--transition);
}

.logo-wordmark:hover {
  color: var(--color-pink);
}

.logo-icon {
  display: block;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo--footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.logo-icon--footer {
  width: 40px;
  height: 40px;
}

.header-nav-pill {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 5px 6px;
  background: var(--color-nav-pill);
  border-radius: var(--radius-pill);
  box-shadow: 0 1px 3px rgba(15, 15, 15, 0.06);
}

.header-nav-pill__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition);
}

.header-nav-pill__link:hover {
  background: rgba(0, 0, 0, 0.04);
}

.header-nav-pill__link.is-active {
  background: var(--color-nav-active);
}

.header-nav-pill__link--icon {
  padding-left: 12px;
}

.header-nav-pill__icon {
  width: 14px;
  height: 14px;
  color: var(--color-pink);
  stroke-width: 2.5px;
}

.header-nav-pill__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  margin-left: 2px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-nav-cta);
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: opacity var(--transition), transform 0.15s ease;
}

.header-nav-pill__cta:hover {
  opacity: 0.9;
}

.header-end {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  margin-left: auto;
}

.header-signin {
  display: none;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.header-signin:hover {
  opacity: 0.75;
}

.header-signin__flag {
  border-radius: 50%;
  object-fit: cover;
}

.nav-desktop {
  display: none;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: none;
  background: var(--color-nav-pill);
  cursor: pointer;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(15, 15, 15, 0.08);
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--color-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 0 8px 16px;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-mobile.is-open {
  display: flex;
}

.nav-mobile a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  background: var(--color-nav-pill);
}

.nav-mobile a:hover {
  background: var(--color-white);
}

.nav-mobile .header-nav-pill__cta {
  justify-content: center;
  margin-top: 4px;
}

.nav-mobile .header-signin--mobile {
  background: transparent;
  box-shadow: none;
}

.nav-mobile svg {
  width: 16px;
  height: 16px;
  color: var(--color-pink);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--gradient-brand);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(255, 77, 141, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(255, 77, 141, 0.45);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn-outline:hover {
  border-color: var(--color-text);
  background: var(--color-white);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding: 10px 16px;
}

.btn-ghost:hover {
  background: rgba(0, 0, 0, 0.04);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-text);
}

.btn-white:hover {
  box-shadow: var(--shadow-md);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ——— Hero (Dark Condensed Superbold headline) ——— */
.hero {
  background: var(--gradient-hero);
  padding: 40px 0 64px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero-copy {
  font-family: var(--font-hero-body);
}

.hero-copy h1 {
  font-family: var(--font-hero);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  font-weight: 900;
  font-stretch: condensed;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--color-text);
  text-transform: none;
}

.hero-lead {
  font-family: var(--font-hero-body);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 400;
  color: #4a4a4a;
  max-width: 540px;
  margin-bottom: 36px;
  line-height: 1.55;
  letter-spacing: -0.015em;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta .btn {
  font-family: var(--font-hero-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero-image {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 0;
}

.pill {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-soft);
  color: var(--color-text);
}

.pill--success {
  background: #ecfdf5;
  color: #059669;
}

/* ——— Sections ——— */
.section {
  padding: 80px 0;
}

.section--cream {
  background: var(--color-bg-cream);
}

.section--soft {
  background: var(--color-bg-soft);
}

.section--gradient {
  background: linear-gradient(135deg, #fff0f6 0%, #ede9fe 100%);
}

.section--dark {
  background: #0f0f12;
  color: var(--color-white);
}

.section--cta {
  background: var(--gradient-cta);
  padding: 100px 0;
}

.section--pricing {
  background: var(--color-white);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--color-white);
}

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.65;
}

.section-subtitle.center,
.center-block {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-subtitle.light {
  color: var(--color-text-light);
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-pink);
  margin-bottom: 12px;
}

/* ——— Feature cards ——— */
.feature-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

.feature-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2px;
}

.feature-card__icon--pink { background: #ffe4ef; color: var(--color-pink); }
.feature-card__icon--purple { background: #ede9fe; color: var(--color-purple); }
.feature-card__icon--blue { background: #e0f2fe; color: #0284c7; }
.feature-card__icon--violet { background: #f3e8ff; color: var(--color-violet); }

.feature-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* ——— Split blocks ——— */
.split-block {
  display: grid;
  gap: 48px;
  align-items: center;
}

.split-block__copy h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  line-height: 1.2;
}

.split-block__copy p {
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-size: 1.0625rem;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 0.9375rem;
  color: var(--color-text);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  background: var(--gradient-brand);
  color: var(--color-white);
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Section media (interest, boost, etc.) */
.section-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.section-media__img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}

/* Transparent PNGs (e.g. boost arrow) — shadow follows shape, not bounding box */
.section-media--transparent .section-media__img {
  box-shadow: none;
  background: transparent;
  filter: drop-shadow(0 20px 48px rgba(15, 15, 15, 0.14));
}

/* Stats */
.stats-row {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
}

.stat {
  text-align: center;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.stat__num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat__label {
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.icon-features {
  display: grid;
  gap: 24px;
}

.icon-features li {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.icon-features__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  flex-shrink: 0;
}

.icon-features__icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2px;
}

.icon-features__icon--globe {
  background: #ede9fe;
  color: var(--color-purple);
}

.icon-features__icon--zap {
  background: #fef3c7;
  color: #d97706;
}

.icon-features strong {
  display: block;
  margin-bottom: 4px;
}

.icon-features p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

/* Timeline */
.timeline-grid {
  display: grid;
  gap: 24px;
}

.timeline-item {
  padding: 32px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.timeline-item__num {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-pink);
  background: #ffe4ef;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

.timeline-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* Dark cards */
.dark-cards {
  display: grid;
  gap: 20px;
}

.dark-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

.dark-card h3 {
  font-size: 1.0625rem;
  margin-bottom: 8px;
}

.dark-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}

/* Transfer UI */
.transfer-ui {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  max-width: 380px;
  margin: 0 auto;
}

.transfer-ui__row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.transfer-ui__row span {
  color: var(--color-text-muted);
}

.transfer-ui__row--fee strong {
  color: #059669;
}

.transfer-ui .btn {
  margin-top: 20px;
}

/* Team */
.team-grid,
.ops-grid {
  display: grid;
  gap: 20px;
}

.team-card,
.ops-card {
  padding: 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.team-card--media {
  padding: 0;
  overflow: hidden;
}

.team-card__media {
  background: var(--color-bg-soft);
  line-height: 0;
}

.team-card__media img {
  width: 100%;
  height: auto;
  min-height: 180px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.team-card__body {
  padding: 24px 28px 28px;
}

.team-card h3,
.ops-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-card p,
.ops-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.team-grid .team-card:not(.team-card--media) {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Support chat */
.support-chat {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.support-chat__bubble {
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.875rem;
  max-width: 90%;
}

.support-chat__bubble--them {
  background: var(--color-bg-soft);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.support-chat__bubble--you {
  background: var(--gradient-brand);
  color: var(--color-white);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Logo strip */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 48px;
  margin-top: 40px;
  opacity: 0.45;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

/* Pricing */
.pricing-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  background: var(--color-bg-soft);
  padding: 6px;
  border-radius: var(--radius-pill);
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-toggle__btn {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  cursor: pointer;
  color: var(--color-text-muted);
  transition: all var(--transition);
}

.pricing-toggle__btn.is-active {
  background: var(--color-white);
  color: var(--color-text);
  box-shadow: var(--shadow-sm);
}

.pricing-toggle .badge {
  font-size: 0.7rem;
  color: var(--color-pink);
}

.pricing-cards {
  display: grid;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.pricing-card--featured {
  border-color: var(--color-pink);
  box-shadow: 0 0 0 1px var(--color-pink), var(--shadow-md);
  background: var(--color-white);
}

.pricing-card__ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-brand);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
}

.pricing-card__header h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-card__desc {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.pricing-card__save {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-pink);
}

.pricing-card__price {
  margin: 24px 0;
}

.price-old {
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-right: 8px;
}

.price-new {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price-unit {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.price-vat {
  display: block;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.pricing-features {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
}

.pricing-features li {
  padding: 8px 0 8px 24px;
  font-size: 0.9375rem;
  position: relative;
}

.pricing-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-pink);
  font-weight: 700;
}

.pricing-note {
  text-align: center;
  margin-top: 32px;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.pricing-note a {
  text-decoration: underline;
}

/* Security */
.security-grid {
  display: grid;
  gap: 20px;
}

.security-card {
  padding: 28px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.security-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.security-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact-email {
  margin-top: 20px;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.contact-email a {
  color: var(--color-pink);
  font-weight: 600;
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  gap: 40px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 16px;
  font-size: 0.9375rem;
  max-width: 280px;
}

.logo--footer .logo-text {
  -webkit-text-fill-color: white;
  color: white;
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.9375rem;
  padding: 6px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  font-size: 0.8125rem;
  text-align: center;
}

/* ——— Responsive ——— */
@media (min-width: 640px) {
  .country-grid {
    gap: 4px 40px;
  }

  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dark-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid,
  .ops-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .security-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .site-top {
    padding: 14px 24px 0 0;
  }

  .header-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 8px 24px 14px 0;
    max-width: 100%;
  }

  .logo-wordmark {
    justify-self: start;
    margin-right: 0;
    margin-left: 0;
    padding-left: 16px;
  }

  .header-nav-pill.nav-desktop {
    display: flex;
    justify-self: center;
    max-width: none;
    margin: 0;
  }

  .header-end {
    justify-self: end;
    margin-left: 0;
  }

  .header-signin.nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 48px 64px;
  }

  .hero {
    padding: 56px 0 88px;
  }

  .hero-copy h1 {
    font-size: clamp(3.25rem, 4.8vw, 4.75rem);
  }

  .split-block {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }

  .split-block--reverse .split-block__copy {
    order: 2;
  }

  .split-block--reverse .split-block__visual {
    order: 1;
  }

  .feature-cards {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .security-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .modal-card {
    padding: 32px 24px 36px;
  }

  .country-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .country-grid-full {
    grid-column: 1;
  }

  .promo-banner__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 14px 44px 14px 12px;
    min-height: 76px;
    align-content: center;
  }

  .promo-banner__main {
    flex: 1 1 100%;
    justify-content: center;
    gap: 14px 18px;
  }

  .promo-banner__title {
    font-size: 1.25rem;
  }

  .promo-banner__text {
    font-size: 1rem;
  }

  .promo-banner__img {
    max-height: 64px;
    max-width: 120px;
  }

  .promo-banner__discover {
    margin-left: auto;
    margin-right: auto;
  }

  .header-nav-pill {
    display: none;
  }

  .section {
    padding: 56px 0;
  }

  .hero {
    padding: 32px 0 56px;
  }
}

@media (min-width: 1100px) {
  .header-nav-pill__link {
    padding: 10px 16px;
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .promo-banner__discover {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
  .modal-title {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}
