/* =============================================
   WAYBILLER PRICING PAGE – pricing.css
   Brand: Dark navy + white + green accent
   ============================================= */

/* === RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #f7f8fa;
  color: #1a2540;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === UTILITIES === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid #71E5BD;
  outline-offset: 2px;
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.875rem;
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
  padding: 12px 24px;
}

.btn--primary {
  background: #71E5BD;
  color: #0d1a30;
  border-color: #71E5BD;
}

.btn--primary:hover {
  background: #5dd4aa;
  border-color: #5dd4aa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(61, 187, 110, 0.35);
}

.btn--outline {
  background: transparent;
  color: #1a2540;
  border-color: #d0d5e0;
}

.btn--outline:hover {
  background: #f0f2f7;
  border-color: #b0b8cc;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.3);
}

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


.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

.btn--outline-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  transform: translateY(-1px);
}

/* === SITE HEADER === */
.site-header {
  background: #0d1f4d;
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-header__left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.site-header__logo-link {
  display: block;
  line-height: 0;
}

.site-header__logo {
  height: 30px;
  width: auto;
  display: block;
}

.site-header__divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.18);
}

.site-header__lang {
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  gap: 4px;
  transition: background 0.15s;
  user-select: none;
}
.site-header__lang:hover,
.site-header__lang.is-open {
  background: rgba(255,255,255,0.1);
}

.site-header__flag {
  width: 22px;
  height: auto;
  border-radius: 2px;
  display: block;
}

.site-header__lang-chevron {
  width: 9px;
  height: 5px;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.site-header__lang.is-open .site-header__lang-chevron {
  transform: rotate(180deg);
}

/* Language dropdown */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 140px;
  background: #0f2050;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 6px;
  list-style: none;
  margin: 0;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  z-index: 1000;
}
.lang-dropdown[hidden] {
  display: none;
}
.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.01em;
  transition: background 0.12s, color 0.12s;
}
.lang-dropdown__item:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}
.lang-dropdown__item--active {
  background: rgba(113,229,189,0.14);
  color: #71E5BD;
}
.lang-dropdown__flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  flex-shrink: 0;
}

/* Site nav */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav__item {
  position: relative;
}

.site-nav__link,
.site-nav__link--btn {
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.site-nav__link:hover,
.site-nav__link--btn:hover {
  color: #71E5BD;
  background: rgba(255,255,255,0.05);
}

.site-nav__link--active {
  color: #fff;
  font-weight: 500;
}

.site-nav__link--active:hover {
  color: #71E5BD;
  background: rgba(255,255,255,0.05);
}

.site-nav__chevron {
  width: 10px;
  height: 6px;
  flex-shrink: 0;
  color: #71E5BD;
  transition: transform 0.2s ease;
}

/* Dropdowns */
.site-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(13,31,77,0.14);
  list-style: none;
  margin: 0;
  padding: 6px 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
  pointer-events: none;
  z-index: 300;
}

/* Transparent bridge fills the 8px gap so hover stays active when moving cursor to dropdown */
.site-nav__item--has-dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
}

.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within .site-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.site-nav__item--has-dropdown:hover .site-nav__chevron {
  transform: rotate(180deg);
}

.site-nav__dropdown li a {
  display: block;
  padding: 9px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2d3a55;
  text-decoration: none;
  transition: background 0.12s ease, color 0.12s ease;
}

.site-nav__dropdown li a:hover {
  background: #f0f3fb;
  color: #0d1f4d;
}

/* Right: login + hamburger */
.site-header__right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.site-header__login {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-header__login-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  padding: 7px 12px;
  border-radius: 6px;
  transition: color 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}

.site-header__login-link:first-child {
  color: #71E5BD;
  font-weight: 600;
}

.site-header__login-link:first-child:hover {
  color: #5dd4aa;
  background: rgba(113,229,189,0.08);
}

.site-header__login-link:hover {
  color: #71E5BD;
  background: rgba(255,255,255,0.05);
}

.site-header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: rgba(255,255,255,0.8);
  border-radius: 6px;
}

.site-header__hamburger svg {
  width: 22px;
  height: 22px;
  display: block;
}

/* Mobile menu */
.mobile-menu {
  background: #0d1f4d;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 0;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}

.mobile-menu__list li a {
  display: block;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.15s ease;
}

.mobile-menu__list li a[aria-current="page"] {
  color: #71E5BD;
}

.mobile-menu__list li a:hover {
  color: #fff;
}

.mobile-menu__divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 8px 24px;
}

/* === HERO === */
.hero {
  background: #0d1f4d;
  padding: 72px 0 64px;
  text-align: center;
}

.hero__inner {
  max-width: 720px;
}

.hero__badge {
  display: inline-block;
  background: rgba(113,229,189,0.15);
  color: #71E5BD;
  border: 1px solid rgba(113,229,189,0.3);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  margin-bottom: 16px;
}

.hero__heading {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero__sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

/* === VIEW SELECTOR (TABS) === */
.view-selector {
  background: #fff;
  border-bottom: 1px solid #e4e8f0;
  position: sticky;
  top: 64px;
  z-index: 90;
}

.tab-nav {
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tab-nav::-webkit-scrollbar {
  display: none;
}

.tab-nav__btn {
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  color: #5a6480;
  padding: 18px 36px;
  cursor: pointer;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.tab-nav__btn:hover {
  color: #1a2540;
  background: #f7f8fa;
}

.tab-nav__btn.active {
  color: #0d1f4d;
  border-bottom-color: #71E5BD;
  font-weight: 600;
}

.tab-nav__btn:focus-visible {
  outline: 2px solid #71E5BD;
  outline-offset: -2px;
}

/* === PRICING PANELS === */
.pricing-panels {
  background: #f7f8fa;
}

.pricing-panel {
  display: none;
  animation: fadeInPanel 0.3s ease forwards;
}

.pricing-panel.active {
  display: block;
}

@keyframes fadeInPanel {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === BILLING TOGGLE === */
.billing-toggle-section {
  padding: 32px 0 0;
  background: #f7f8fa;
}

.billing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.billing-label {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #3a4560;
}

.billing-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  background: #d0d5e0;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.25s ease;
  flex-shrink: 0;
  padding: 0;
}

.billing-toggle[aria-checked="true"] {
  background: #71E5BD;
}

.billing-toggle__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.billing-toggle[aria-checked="true"] .billing-toggle__thumb {
  transform: translateX(24px);
}

.billing-toggle:focus-visible {
  outline: 3px solid #71E5BD;
  outline-offset: 2px;
}

.billing-save-badge {
  background: rgba(113,229,189,0.12);
  color: #0d1f4d;
  border: 1px solid rgba(113,229,189,0.25);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 3px 12px;
}

/* === CARDS SECTION === */
.cards-section {
  padding: 40px 0 60px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

/* === PRICING CARD === */
.card {
  background: #fff;
  border: 1.5px solid #e4e8f0;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: box-shadow 0.25s ease, transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(26,37,64,0.1);
  transform: translateY(-2px);
  border-color: #c4ccd8;
}

.card--featured {
  background: #0d1f4d;
  border-color: #0d1f4d;
  box-shadow: 0 16px 48px rgba(13,31,77,0.25);
  transform: translateY(-6px);
}

.card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(13,31,77,0.32);
  border-color: #1e3460;
}

.card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #71E5BD;
  color: #0d1f4d;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.card__header {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.card__plan-name {
  font-size: 1.875rem;
  font-weight: 800;
  color: #0d1f4d;
  letter-spacing: -0.02em;
  line-height: 1.1;
  order: 1;
  margin-bottom: 0;
}

.card--featured .card__plan-name {
  color: #fff;
}

.card__plan-sub {
  display: none;
}

.card__desc {
  order: 2;
  margin: 10px 0 18px;
  font-size: 0.9375rem;
  color: #5a6480;
  line-height: 1.5;
}

.card__price-wrap {
  order: 3;
  margin-bottom: 0;
  padding-top: 18px;
  border-top: 1px solid #e4e8f0;
}

.card--featured .card__price-wrap {
  border-top-color: rgba(255,255,255,0.12);
}

.card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.card__price-amount {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1a2540;
  letter-spacing: -0.03em;
  line-height: 1;
}

.card--featured .card__price-amount {
  color: #fff;
}

.card__price-period {
  font-size: 0.875rem;
  color: #8a93a8;
  font-weight: 400;
}

.card--featured .card__price-period {
  color: rgba(255,255,255,0.5);
}

.card__price-note {
  font-size: 0.8125rem;
  color: #8a93a8;
  margin-top: 4px;
}

.card--featured .card__price-note {
  color: rgba(255,255,255,0.45);
}

.card__price-ref {
  font-size: 0.8125rem;
  color: #aab0c0;
  margin-top: 2px;
}

.card--featured .card__price-ref {
  color: rgba(255,255,255,0.35);
}

.card__save-label {
  display: inline-block;
  background: rgba(113,229,189,0.15);
  color: #71E5BD;
  border: 1px solid rgba(113,229,189,0.3);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 6px;
}

.save-label.hidden {
  display: none;
}

.card--featured .card__desc {
  color: rgba(255,255,255,0.65);
}

.card__body {
  flex: 1;
  margin-bottom: 24px;
}

.card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card__feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: #3a4560;
  line-height: 1.4;
}

.card--featured .card__feature {
  color: rgba(255,255,255,0.8);
}

.icon-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: rgba(113,229,189,0.2);
  border-radius: 50%;
  color: #0d1f4d;
  font-size: 0.65rem;
  margin-top: 1px;
}

.icon-check::after {
  content: "✓";
  font-weight: 700;
}

.card--featured .icon-check {
  background: rgba(113,229,189,0.2);
  color: #71E5BD;
}

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

.card__compare-link {
  text-align: center;
  font-size: 0.8125rem;
  color: #1a2540;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.card__compare-link:hover {
  color: #0d1f4d;
  text-decoration: underline;
}

.card__compare-link--light {
  color: rgba(255,255,255,0.55);
}

.card__compare-link--light:hover {
  color: #fff;
}

/* === VOLUME NOTE === */
.volume-note {
  margin-top: 28px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #5a6480;
  background: #fff;
  border: 1px solid #e4e8f0;
  border-left: 3px solid #71E5BD;
  border-radius: 8px;
  padding: 14px 18px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.volume-note__icon {
  flex-shrink: 0;
  font-size: 1rem;
  color: #0d1f4d;
  line-height: 1.4;
}

/* === SECTION SHARED === */
.section-label {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d1f4d;
  margin-bottom: 12px;
  background: rgba(113,229,189,0.12);
  border-left: 3px solid #71E5BD;
  border-radius: 0 4px 4px 0;
  padding: 4px 12px 4px 10px;
}

.section-heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1a2540;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: #5a6480;
  max-width: 600px;
  line-height: 1.6;
  margin-bottom: 48px;
}

/* === ONBOARDING PACKAGES === */
.onboarding-section {
  padding: 80px 0 72px;
  background: #fff;
}

.onboarding-section .section-label {
  color: #0d1f4d;
}

/* Onboarding comparison table */
.ob-table-wrap {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e0e3ec;
}

.ob-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

/* Header row — light lavender/grey like the screenshot */
.ob-table thead tr {
  background: #dde1ef;
}

.ob-table thead th {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid #c8cedf;
  vertical-align: bottom;
}

.ob-table thead th.ob-table__label-col {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1f4d;
  width: 36%;
}

.ob-th--featured {
  background: #0d1f4d;
}

.ob-th--featured .ob-th__name {
  color: #fff;
}

.ob-th--featured .ob-th__price {
  color: rgba(255,255,255,0.7);
}

.ob-th__badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0d1a30;
  background: #71E5BD;
  border-radius: 20px;
  padding: 2px 8px;
  margin-bottom: 6px;
}

.ob-th__name {
  font-size: 1rem;
  font-weight: 700;
  color: #0d1f4d;
  line-height: 1.3;
}

.ob-th__price {
  font-size: 0.9rem;
  font-weight: 400;
  color: #3a4560;
  margin-top: 2px;
}

/* Body rows — alternating white / light grey */
.ob-table tbody tr {
  border-bottom: 1px solid #e8eaf2;
  transition: background 0.12s ease;
}

.ob-table tbody tr:last-child {
  border-bottom: none;
}

.ob-table tbody tr:nth-child(odd) {
  background: #fff;
}

.ob-table tbody tr:nth-child(even) {
  background: #f5f6fa;
}

.ob-table tbody tr:hover {
  background: #edf0f8;
}

.ob-table tbody td {
  padding: 13px 20px;
  font-size: 0.9375rem;
  color: #3a4560;
  text-align: left;
  vertical-align: middle;
}

.ob-table tbody td:first-child {
  color: #0d1f4d;
  font-weight: 500;
}

/* Featured column cells — very subtle tint */
.ob-td--featured {
  background: rgba(90,106,153,0.06) !important;
}

/* First "Suitable for" row */
.ob-table tbody tr.ob-tr--group td:first-child {
  color: #3a4560;
  font-weight: 400;
}

/* Plain checkmark — green to match brand */
.ob-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #71E5BD;
  font-style: normal;
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0d1a30;
  vertical-align: middle;
}

.ob-check::before {
  content: "✓";
}

.ob-dash {
  color: #c8cedf;
  font-size: 1rem;
}

@media (max-width: 700px) {
  .ob-table-wrap {
    overflow-x: auto;
  }
  .ob-table {
    min-width: 560px;
  }
}

/* Onboarding value banner — compact strip */
.onboarding-value {
  margin-top: 16px;
  background: #f5f6fa;
  border: 1px solid #e0e3ec;
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}

.onboarding-value__label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #5a6480;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-right: 8px;
  border-right: 1px solid #d8dce8;
}

.onboarding-value__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.onboarding-value__list li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #0d1f4d;
}

.ob-val-check {
  font-size: 0.6875rem;
  font-weight: 700;
  color: #0d1a30;
  background: #71E5BD;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}


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

/* === COMPARE TABLE === */
.compare-section {
  padding: 80px 0;
  background: #fff;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 12px;
  border: 1px solid #e4e8f0;
  box-shadow: 0 2px 12px rgba(26,37,64,0.05);
}

.compare-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
  table-layout: fixed;
}

.compare-table thead th {
  width: 15%;
}

.compare-table thead th:first-child {
  width: 28%;
}

.compare-table thead {
  background: #0d1f4d;
}

.compare-table thead th {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.8);
  text-align: center;
  border-bottom: 3px solid #0a1633;
}

.compare-table thead .col-feature {
  text-align: left;
  position: sticky;
  left: 0;
  background: #0d1f4d;
  z-index: 10;
}

.compare-table thead .col-plan--featured {
  background: #162544;
  color: #fff;
  position: relative;
}

.compare-table thead .col-plan--featured::after {
  content: "★ Recommended";
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  margin-top: 2px;
}

.compare-table tbody tr {
  border-bottom: 1px solid #edf0f7;
  transition: background 0.15s ease;
}

.compare-table tbody tr:hover {
  background: #f7f9fc;
}

.compare-table tbody td {
  padding: 13px 20px;
  text-align: center;
  color: #3a4560;
  vertical-align: middle;
}

.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: #1a2540;
  position: sticky;
  left: 0;
  background: inherit;
  z-index: 5;
  min-width: 220px;
}

.compare-table tbody tr:hover td:first-child {
  background: #f7f9fc;
}

.group-row {
  background: #f0f3f9 !important;
}

.group-row td {
  font-size: 0.75rem !important;
  font-weight: 700 !important;
  color: #5a6480 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 20px !important;
  text-align: left !important;
  position: sticky;
  left: 0;
}

.col-feat--featured {
  background: rgba(13,31,77,0.04);
}

.col-plan--featured {
  width: 15%;
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #0d1f4d;
  border-radius: 50%;
  color: #71E5BD;
  font-size: 0.75rem;
  font-weight: 700;
}

.dash {
  color: #c8cdd8;
  font-size: 1.1rem;
  font-weight: 300;
}

.add-on {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #5a6480;
}

.footnote-ref {
  font-size: 0.7rem;
  color: #8a93a8;
  vertical-align: super;
}

.footnote {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: #8a93a8;
  font-style: italic;
}

/* === ADD-ONS SECTION === */
.addons-section {
  padding: 80px 0;
  background: #f7f8fa;
}

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

.addon-card {
  background: #fff;
  border: 1.5px solid #e4e8f0;
  border-radius: 12px;
  padding: 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.addon-card:hover {
  box-shadow: 0 6px 24px rgba(26,37,64,0.08);
  transform: translateY(-2px);
}

.addon-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(113,229,189,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #0d1f4d;
  flex-shrink: 0;
}

.addon-card__name {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #1a2540;
  margin-bottom: 6px;
}

.addon-card__desc {
  font-size: 0.875rem;
  color: #5a6480;
  line-height: 1.5;
}

/* === HOW IT WORKS === */
.how-section {
  padding: 80px 0;
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
  margin-bottom: 48px;
}

.step {
  text-align: center;
  padding: 16px;
}

.step--connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  color: #71E5BD;
}

.step__arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #0d1f4d;
  color: #fff;
  border-radius: 50%;
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.step__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1a2540;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 0.875rem;
  color: #5a6480;
  line-height: 1.6;
}

.how-section__cta {
  text-align: center;
}

/* === FAQ === */
.faq-section {
  padding: 80px 0;
  background: #f7f8fa;
}

.faq-container {
  max-width: 760px;
}

/* FAQ category tabs */
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 36px;
  margin-bottom: 4px;
}

.faq-tab {
  padding: 8px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #5a6480;
  background: #fff;
  border: 1.5px solid #e0e3ec;
  border-radius: 100px;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  line-height: 1;
}

.faq-tab:hover {
  border-color: #0d1f4d;
  color: #0d1f4d;
}

.faq-tab--active {
  background: #0d1f4d;
  color: #fff;
  border-color: #0d1f4d;
}

/* FAQ panels */
.faq-panel {
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid #e4e8f0;
}

.faq-item:first-child {
  border-top: 1px solid #e4e8f0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #1a2540;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: #0d1f4d;
}

.faq-question:focus-visible {
  outline: 2px solid #71E5BD;
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border: 1.5px solid #d0d5e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.25s ease;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #5a6480;
  border-radius: 1px;
  transition: background 0.2s ease, transform 0.25s ease, opacity 0.2s ease;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  background: #71E5BD;
  border-color: #71E5BD;
}

.faq-question[aria-expanded="true"] .faq-icon::before {
  background: #fff;
}

.faq-answer {
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.9375rem;
  color: #5a6480;
  line-height: 1.7;
}

.faq-answer ul {
  margin: 8px 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-answer ul li {
  font-size: 0.9375rem;
  color: #5a6480;
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.faq-answer ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #0d1f4d;
  font-weight: 600;
}

/* === FINAL CTA === */
.final-cta {
  background: #0d1f4d;
  padding: 48px 0;
  text-align: center;
}

.final-cta__inner {
  max-width: 600px;
}

.final-cta__heading {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-bottom: 10px;
}

.final-cta__sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  line-height: 1.6;
}

.final-cta__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === SITE FOOTER === */
.site-footer {
  background: #0d1f4d;
  color: rgba(255,255,255,0.65);
}

.site-footer__top {
  display: flex;
  gap: 48px;
  padding: 60px 0 48px;
  flex-wrap: wrap;
}

.site-footer__brand-col {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.site-footer__logo-link {
  display: inline-block;
  line-height: 0;
}

.site-footer__logo {
  height: 32px;
  width: auto;
  display: block;
}

.site-footer__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
  margin: 0;
}

.site-footer__find h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.45);
  margin: 0 0 8px;
}

.site-footer__address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #71E5BD;
  text-decoration: none;
  font-size: 0.875rem;
  line-height: 1.45;
  transition: color 0.15s ease;
}

.site-footer__address:hover {
  color: #5dd4aa;
}

.site-footer__address svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: #71E5BD;
}

.site-footer__social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.site-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.site-footer__social a:hover {
  background: rgba(113,229,189,0.15);
  color: #71E5BD;
}

.site-footer__social svg {
  width: 16px;
  height: 16px;
}

.site-footer__menus {
  flex: 1;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.site-footer__menu-col {
  flex: 1;
  min-width: 130px;
}

.site-footer__menu-title {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255,255,255,0.45);
  margin-bottom: 14px;
}

.site-footer__menu-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__menu-col ul a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-footer__menu-col ul a:hover {
  color: #71E5BD;
}

/* Footer bottom — EU funding */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 28px 0;
}

.site-footer__bottom-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  flex-wrap: wrap;
}

.site-footer__eu-logo {
  height: 52px;
  width: auto;
  flex-shrink: 0;
  border-radius: 4px;
}

.site-footer__eu-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  margin: 0;
}

/* === RESPONSIVE === */

/* Tablet: 3 columns for cards */
@media (max-width: 1100px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card--featured {
    transform: none;
  }

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

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

  .step--connector {
    width: auto;
    height: auto;
    justify-self: center;
  }

  .step__arrow {
    transform: rotate(90deg);
  }
}

/* Mobile: 1 column */
@media (max-width: 640px) {
  .hero {
    padding: 36px 0 32px;
  }

  .hero__heading {
    font-size: 2rem;
  }

  .hero__sub {
    font-size: 1rem;
  }

  .hero__sub br {
    display: none;
  }

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

  .card--featured {
    transform: none;
  }

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

  .nav__cta-group .btn--ghost {
    display: none;
  }

  .compare-section {
    padding: 60px 0;
  }

  .section-heading {
    font-size: 1.625rem;
  }

  .final-cta {
    padding: 36px 0;
  }

  .final-cta__heading {
    font-size: 1.125rem;
  }

  .billing-save-badge {
    display: block;
    text-align: center;
    width: 100%;
    order: 5;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .tab-nav__btn {
    padding: 14px 16px;
    font-size: 0.875rem;
  }

  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
}

/* === HERO BUTTON OVERRIDES === */
.hero .btn--outline-light,
.final-cta .btn--outline-light {
  color: #fff !important;
  border-color: rgba(255,255,255,0.5) !important;
}

/* === SEASONAL/ANNUAL PRICE DISPLAY === */
.seasonal-note {
  transition: opacity 0.2s ease;
}

.seasonal-mode .seasonal-note {
  opacity: 1;
}

.annual-mode .seasonal-note {
  opacity: 0;
  height: 0;
  margin: 0;
  overflow: hidden;
}

/* === RESPONSIVE HEADER / FOOTER === */
@media (max-width: 900px) {
  .site-nav,
  .site-header__login,
  .site-header__divider,
  .site-header__lang {
    display: none;
  }

  .site-header__hamburger {
    display: flex;
  }

  .site-footer__brand-col {
    flex: 0 0 100%;
  }

  .site-footer__menus {
    flex: 0 0 100%;
  }
}

/* === PRINT === */
@media print {
  .site-header, .view-selector, .billing-toggle-section, .how-section, .faq-section, .final-cta, .site-footer {
    display: none;
  }

  .pricing-panel {
    display: block !important;
  }
}

/* ===== COMPARE MODAL ===== */
.compare-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.compare-modal[hidden] {
  display: none;
}

.compare-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 16, 40, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.compare-modal__dialog {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 16px;
  width: min(960px, 96vw);
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(8,16,40,0.4);
  overflow: hidden;
  animation: modalIn 0.22s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

.compare-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid #e8eaf0;
  flex-shrink: 0;
  background: #fff;
}

.compare-modal__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d1f4d;
  margin: 0;
}

.compare-modal__close {
  background: none;
  border: none;
  cursor: pointer;
  color: #5a6480;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  padding: 0;
}

.compare-modal__close:hover {
  background: #f0f2f8;
  color: #0d1f4d;
}

.compare-modal__body {
  overflow-y: auto;
  padding: 24px 28px 28px;
  flex: 1;
}

.compare-modal__panel {
  display: none;
}

.compare-modal__panel.is-active {
  display: block;
}

/* Inside modal, override table-wrap to not constrain height */
.compare-modal__body .table-wrap {
  max-height: none;
  overflow-x: auto;
}

/* Button styling for card compare link */
.card__compare-link {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

/* ===== OPERATIONAL READINESS REVIEW ===== */
.orr-section {
  margin-top: 40px;
  padding-top: 36px;
  border-top: 1px solid #e4e8f0;
}

.orr-intro {
  max-width: 680px;
  margin-bottom: 24px;
}

.orr-intro__heading {
  font-size: clamp(1.625rem, 3vw, 2.25rem);
  font-weight: 800;
  color: #1a2540;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 14px;
}

.orr-intro__body {
  font-size: 0.9375rem;
  color: #5a6480;
  line-height: 1.65;
  margin: 0;
}

.orr-card {
  background: #fff;
  border: 1px solid #e0e3ec;
  border-radius: 14px;
  overflow: hidden;
}

.orr-card__header {
  background: linear-gradient(135deg, #0d1f4d 0%, #162f6e 100%);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.orr-card__header-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.orr-card__label {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: #fff;
}

.orr-card__price {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  white-space: nowrap;
}

.orr-card__sub {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  margin: 0;
}

.orr-card__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 0;
}

.orr-col {
  padding: 28px 32px;
}

.orr-col:first-child {
  border-right: 1px solid #e4e8f0;
}

.orr-col__title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #0d1f4d;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

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

.orr-list li {
  font-size: 0.9rem;
  color: #3a4460;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}

.orr-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #71E5BD;
  font-weight: 700;
}


.orr-card__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 16px 32px;
  background: #f8f9fc;
  border-top: 1px solid #e4e8f0;
  font-size: 0.8375rem;
  color: #5a6480;
  line-height: 1.55;
}

.orr-card__note svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: #5a6480;
}

.orr-card__note strong {
  color: #0d1f4d;
}

@media (max-width: 680px) {
  .orr-card__body {
    grid-template-columns: 1fr;
  }
  .orr-col:first-child {
    border-right: none;
    border-bottom: 1px solid #e4e8f0;
  }
  .orr-col {
    padding: 22px 20px;
  }
  .orr-card__header {
    padding: 20px;
  }
  .orr-card__note {
    padding: 14px 20px;
  }
}

.orr-section__cta {
  text-align: center;
  margin-top: 32px;
}
