:root {
  --white: #ffffff;
  --bg-light: #f7f8fa;
  --text-dark: #0d1117;
  --text-muted: #6b7585;
  --blue: #1a56db;
  --blue-soft: #eef3fd;
  --green: #0e7f60;
  --border: #e4e7ec;
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.55;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.2;
  margin-top: 0;
  letter-spacing: -0.015em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.7rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  margin-bottom: 0.75rem;
}

h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 4.5rem 0;
}

.section-sm {
  padding: 1.5rem 0 2.8rem;
}

.bg-light {
  background: var(--bg-light);
}

#business {
  scroll-margin-top: 104px;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  height: 64px;
  background: var(--white);
  border-bottom: 1px solid #e2e6ed;
  backdrop-filter: none;
}

.quick-nav {
  display: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 64px;
  padding: 0;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  text-decoration: none;
}

.logo-dark {
  color: var(--text-dark);
}

.logo-blue {
  color: var(--blue);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.desktop-nav > a,
.nav-item > a,
.footer a {
  text-decoration: none;
  color: var(--text-muted);
  transition: all 0.15s ease;
}

.desktop-nav > a:hover,
.nav-item > a:hover,
.footer a:hover {
  color: var(--text-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.msb-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  border: 1px solid #b2e4d6;
  color: #0e7f60;
  background: #e8f7f2;
  font-size: 0.78rem;
  font-weight: 600;
}

.mobile-nav {
  display: none;
}

.mobile-menu-toggle {
  display: none;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  background: var(--white);
  padding: 0;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 4px;
  transition: all 0.15s ease;
}

.mobile-menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

.nav-item {
  position: relative;
}

.has-dropdown > a::after {
  content: "▾";
  margin-left: 0.35rem;
  font-size: 0.68rem;
  color: #6b7585;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid #e2e6ed;
  border-radius: 12px;
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.15s ease;
}

.dropdown-menu a {
  color: #3b4553;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.15s ease;
}

.dropdown-menu a:hover {
  background: #f7f8fa;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > a::after {
  content: "▸";
  float: right;
  color: #6b7585;
}

.dropdown-submenu-panel {
  position: absolute;
  left: calc(100% + 8px);
  top: -8px;
  min-width: 300px;
  max-height: 420px;
  overflow: auto;
  background: var(--white);
  border: 1px solid #e2e6ed;
  border-radius: 12px;
  padding: 8px;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(4px);
  transition: all 0.15s ease;
}

.dropdown-submenu:hover .dropdown-submenu-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.desktop-nav .active > a,
.desktop-nav > a.active {
  color: #1a56db;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.15s ease;
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

body.menu-open {
  overflow: hidden;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.mobile-menu-close {
  border: 1px solid var(--border);
  border-radius: 999px;
  width: 40px;
  height: 40px;
  background: var(--white);
  font-size: 1.3rem;
  line-height: 1;
}

.mobile-menu-links {
  display: grid;
  gap: 0.25rem;
}

.mobile-menu-links > a,
.mobile-menu-links summary {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 18px;
  padding: 0.62rem 0;
  list-style: none;
  cursor: pointer;
}

.mobile-menu-links details a {
  display: block;
  text-decoration: none;
  color: #3b4553;
  padding: 0.45rem 0 0.45rem 0.8rem;
  font-size: 15px;
}

.mobile-menu-links .mobile-submenu {
  margin-left: 0.4rem;
}

.mobile-menu-links .mobile-submenu summary {
  font-size: 16px;
  color: #3b4553;
  padding: 0.45rem 0;
}

.mobile-menu-links .mobile-submenu a {
  padding-left: 1.2rem;
}

.mobile-menu-footer {
  margin-top: auto;
  display: grid;
  gap: 0.8rem;
}

.mobile-signin {
  text-decoration: none;
  color: #3b4553;
}

.pricing-mobile-rows {
  display: none;
}

.footer-mobile-links {
  display: none;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.narrow {
  width: min(820px, calc(100% - 2rem));
}

.about-hero {
  background: linear-gradient(to bottom, #f8faff 0%, #ffffff 100%);
}

.country-grid {
  margin: 1rem 0 0.8rem;
  display: grid;
  gap: 0.7rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.country-grid span {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  background: var(--white);
  color: var(--text-dark);
  font-weight: 600;
}

.about-stats {
  margin-top: 1.4rem;
}

.value-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.contact-form {
  margin-top: 1rem;
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form span {
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  font: inherit;
  color: var(--text-dark);
  padding: 0.72rem 0.8rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  cursor: pointer;
}

.contact-form .consent-row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  flex: 0 0 16px;
}

.contact-form .consent-row span {
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.45;
}

.role-list {
  margin-top: 1.2rem;
  display: grid;
  gap: 1rem;
}

.role-card .btn {
  margin: 0.2rem 0 0.85rem;
}

.role-meta {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.5rem;
}

.role-meta li {
  padding: 0.2rem 0;
  color: var(--text-muted);
}

.hiring-note {
  margin-top: 1rem;
}

.quick-apply {
  margin-top: 1rem;
}

.press-grid {
  align-items: stretch;
}

.press-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.press-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.media-inquiry {
  margin-top: 1rem;
}

.media-emails {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.media-emails p {
  margin-bottom: 0;
}

.media-emails a {
  color: var(--blue);
  text-decoration: none;
}

.media-emails a:hover {
  text-decoration: underline;
}

.announce-badge {
  display: inline-flex;
  margin-top: 0.35rem;
  padding: 0.34rem 0.72rem;
  border-radius: 999px;
  border: 1px solid #d7e2ff;
  background: var(--blue-soft);
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.pill,
.mini-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.68rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.78rem;
  color: #394150;
  background: var(--white);
}

.pill-green {
  background: rgba(14, 127, 96, 0.12);
  border-color: rgba(14, 127, 96, 0.25);
  color: var(--green);
  font-weight: 600;
}

.pill-blue {
  background: var(--blue-soft);
  color: var(--blue);
  border-color: #d5e0fb;
}

.pill-blue-soft {
  background: var(--blue-soft);
  color: var(--blue);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 10px;
  min-height: 48px;
  padding: 0.62rem 0.92rem;
  font-weight: 600;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.15s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover {
  background: #1548b5;
}

.btn-outline {
  background: var(--white);
  color: var(--text-dark);
  border-color: var(--border);
}

.btn-outline:hover,
.btn-ghost:hover {
  background: #f3f5f9;
}

.btn-ghost {
  background: var(--white);
  border-color: var(--border);
  color: var(--text-dark);
}

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

.btn-white-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.3rem;
  align-items: center;
}

.lead {
  max-width: 64ch;
  font-size: 1.06rem;
}

.compact {
  max-width: 80ch;
}

.badge-row,
.pill-row,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.hero-actions {
 
  align-items: center;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0 0.8rem;
}

.small-note {
  font-size: 0.92rem;
}

.account-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(to bottom right, #ffffff, #f9fbff);
  padding: 1.25rem;
  box-shadow: 0 15px 40px rgba(14, 20, 33, 0.09);
}

.account-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.balance {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 700;
  margin: 0.8rem 0 0.4rem;
}

.iban {
  font-size: 0.92rem;
  padding-bottom: 0.95rem;
  border-bottom: 1px solid var(--border);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 1rem 0;
}

.label {
  display: block;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.green {
  color: var(--green);
}

.red {
  color: #bf2f44;
}

.amber {
  color: #b77300;
}

.network-label {
  margin-bottom: 0.8rem;
  color: var(--text-dark);
  font-weight: 600;
}

.cards {
  margin-top: 1.5rem;
}

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

.card,
.step,
.price-card,
.manager-card,
.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.card,
.step,
.price-card {
  padding: 1.1rem;
}

.service-grid .card {
  border-color: #d9e3f5;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  box-shadow: 0 8px 24px rgba(26, 86, 219, 0.06);
}

.service-grid .card h3 {
  margin-bottom: 0.55rem;
}

ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
}

.numbered .num,
.step .num {
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.steps-row {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pricing-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.price {
  color: var(--text-dark);
  font-weight: 700;
  font-size: 1.35rem;
}

.checks {
  list-style: none;
  padding: 0;
  margin: 0.8rem 0 1rem;
}

.checks li {
  padding: 0.33rem 0 0.33rem 1.2rem;
  position: relative;
}

.checks li::before {
  content: "✓";
  color: var(--green);
  position: absolute;
  left: 0;
}

.checks .minus::before {
  content: "—";
  color: #98a2b3;
}

.featured {
  border-color: #b8cbfa;
  background: #f8faff;
  position: relative;
}

.most-popular {
  position: absolute;
  top: -0.65rem;
  left: 1rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 999px;
  font-size: 0.72rem;
  padding: 0.2rem 0.55rem;
}

.full {
  width: 100%;
}

.stats-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.stats-4 article {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  padding: 1rem;
}

.stats-4 strong {
  display: block;
  color: var(--text-dark);
  font-size: 1.7rem;
}

.stats-4 span {
  color: var(--text-muted);
}

.manager-card {
  margin-top: 1rem;
  padding: 1.1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.status {
  color: var(--green);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
}

.faq {
  margin-top: 1.3rem;
  display: grid;
  gap: 0.8rem;
}

.faq details {
  padding: 0.95rem 1rem;
}

.faq summary {
  cursor: pointer;
  color: var(--text-dark);
  font-weight: 600;
}

.faq p {
  margin-top: 0.65rem;
}

.cta-dark {
  background: var(--text-dark);
}

.cta-wrap {
  text-align: center;
}

.cta-wrap h2 {
  color: var(--white);
}

.cta-wrap p {
  color: #c9d0db;
}

.light {
  color: #acb7c7;
}

.footer {
  padding-top: 3rem;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  padding-bottom: 1.6rem;
}

.footer h4 {
  margin-top: 0;
  margin-bottom: 0.55rem;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer li {
  margin: 0.33rem 0;
}

.bottom-bar {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0 1.4rem;
}

.bottom-bar p {
  margin: 0;
  font-size: 0.86rem;
}

@media (max-width: 1080px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .steps-row,
  .stats-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .grid-2x2,
  .footer-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
  }

  body {
    font-size: 14px;
  }

  .section {
    padding: 48px 0;
  }

  .hero.section {
    padding: 40px 0;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: min(28px, 7vw);
  }

  .container {
    width: min(1160px, calc(100% - 40px));
  }

  .nav-wrap {
    min-height: 64px;
    gap: 0.45rem;
    padding: 0;
  }

  .logo {
    font-size: 1.12rem;
  }

  .desktop-nav,
  .msb-badge,
  .nav-actions .btn-ghost {
    display: none;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn {
    padding: 0.5rem 0.78rem;
    font-size: 0.87rem;
    border-radius: 999px;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

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

  .lead {
    font-size: 15px;
  }

  .badge-row,
  .pill-row,
  .tag-row {
    gap: 0.4rem;
  }

  .pill,
  .mini-badge {
    font-size: 0.73rem;
    padding: 0.22rem 0.58rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .network-label {
    display: none;
  }

  .networks .pill-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 6px;
  }

  .networks .pill {
    flex: 0 0 auto;
  }

  .account-card {
    border-radius: 12px;
    padding: 20px;
  }

  .stats-row {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .stats-row > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.35rem;
  }

  .balance {
    font-size: 1.7rem;
  }

  .grid-2x2 {
    grid-template-columns: 1fr;
  }

  .card,
  .step,
  .price-card,
  .manager-card,
  .faq details {
    border-radius: 12px;
    padding: 20px;
  }

  .svc-list {
    display: none;
  }

  .num {
    font-size: 24px;
  }

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

  .step {
    display: grid;
    grid-template-columns: 28px 1fr;
    column-gap: 12px;
    border-left: 2px solid #e2e6ed;
    padding-left: 14px;
  }

  .step .num {
    grid-column: 1;
    grid-row: 1 / span 2;
    margin: 0;
    line-height: 1.1;
  }

  .step h3,
  .step p {
    grid-column: 2;
  }

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

  .pricing-grid .price-card:not(.featured) {
    display: none;
  }

  .pricing-mobile-rows {
    margin-top: 0.9rem;
    display: grid;
    gap: 0.55rem;
  }

  .pricing-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 0.8rem 0.9rem;
    text-decoration: none;
    color: var(--text-dark);
    background: var(--white);
  }

  .pricing-row span:last-child {
    color: var(--text-muted);
    font-size: 0.92em;
  }

  .most-popular {
    top: -0.55rem;
    left: 0.8rem;
  }

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

  .manager-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq details {
    padding: 16px 20px;
  }

  .faq summary {
    font-size: 14px;
  }

  .cta-dark {
    padding: 56px 0;
  }

  .cta-wrap h2 {
    font-size: 30px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding-bottom: 1rem;
  }

  .press-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .media-emails {
    grid-template-columns: 1fr;
  }

  .role-card .btn,
  .hiring-note .btn {
    width: 100%;
  }

  .bottom-bar {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .bottom-bar p:last-child {
    font-size: 11px;
  }
}

@media (max-width: 375px) {
  h1 {
    font-size: 28px;
  }

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