:root {
  --marketing-bg: #f7f8f4;
  --marketing-surface: #ffffff;
  --marketing-surface-alt: #eef3ed;
  --marketing-border: rgba(6, 71, 55, 0.1);
  --marketing-border-strong: rgba(6, 71, 55, 0.18);
  --marketing-text: #10352b;
  --marketing-text-soft: #48655d;
  --marketing-text-muted: #6f857d;
  --marketing-green-900: #064737;
  --marketing-green-700: #0f6b51;
  --marketing-green-500: #43d885;
  --marketing-green-400: #77e9a8;
  --marketing-green-100: #dff8e9;
  --marketing-highlight: #d8ff65;
  --marketing-shadow-sm: 0 10px 24px rgba(10, 34, 26, 0.05);
  --marketing-shadow-md: 0 24px 60px rgba(10, 34, 26, 0.08);
  --marketing-shadow-lg: 0 40px 90px rgba(10, 34, 26, 0.12);
  --marketing-radius-sm: 16px;
  --marketing-radius-md: 24px;
  --marketing-radius-lg: 32px;
  --marketing-container: 1180px;
  --marketing-font: "Manrope", "Century Gothic", -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body.marketing-shell {
  margin: 0;
  background: var(--marketing-bg);
  color: var(--marketing-text);
  font-family: var(--marketing-font);
}

body.marketing-shell p,
body.marketing-shell a,
body.marketing-shell h1,
body.marketing-shell h2,
body.marketing-shell h3,
body.marketing-shell h4,
body.marketing-shell h5,
body.marketing-shell h6,
body.marketing-shell li,
body.marketing-shell span {
  font-family: var(--marketing-font);
}

.marketing-main {
  text-align: left;
}

.marketing-page {
  position: relative;
}

.marketing-page::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at top left, rgba(67, 216, 133, 0.16), transparent 42%),
    radial-gradient(circle at top right, rgba(216, 255, 101, 0.12), transparent 36%);
  pointer-events: none;
}

.marketing-container {
  width: min(var(--marketing-container), calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.marketing-section {
  padding: 96px 0;
}

.marketing-section-tight {
  padding: 72px 0;
}

.marketing-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(6, 71, 55, 0.06);
  border: 1px solid rgba(6, 71, 55, 0.08);
  color: var(--marketing-green-900);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.marketing-section-header {
  display: grid;
  gap: 18px;
  margin-bottom: 42px;
  max-width: 820px;
}

.marketing-section-header h2,
.marketing-page-header h1 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--marketing-text);
  font-weight: 800;
}

.marketing-section-header p,
.marketing-page-header p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--marketing-text-soft);
}

.marketing-eyebrow {
  margin: 0;
  color: var(--marketing-green-700);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.marketing-grid {
  display: grid;
  gap: 24px;
}

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

.marketing-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.marketing-card {
  height: 100%;
  padding: 30px;
  border-radius: var(--marketing-radius-md);
  background: var(--marketing-surface);
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-sm);
}

.marketing-card h3,
.marketing-card h4 {
  margin: 0 0 12px;
  color: var(--marketing-text);
}

.marketing-card p,
.marketing-card li {
  color: var(--marketing-text-soft);
  line-height: 1.75;
}

.marketing-card ul {
  padding-left: 18px;
  margin: 18px 0 0;
}

.marketing-card.is-dark {
  background:
    linear-gradient(180deg, rgba(67, 216, 133, 0.08), rgba(67, 216, 133, 0)),
    var(--marketing-green-900);
  border-color: rgba(119, 233, 168, 0.18);
  box-shadow: var(--marketing-shadow-md);
}

.marketing-card.is-dark h3,
.marketing-card.is-dark h4,
.marketing-card.is-dark p,
.marketing-card.is-dark li,
.marketing-card.is-dark strong {
  color: #f7fff9;
}

.marketing-card.is-muted {
  background: var(--marketing-surface-alt);
}

.marketing-icon {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(67, 216, 133, 0.15);
  color: var(--marketing-green-900);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.marketing-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.marketing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.marketing-btn:hover,
.marketing-btn:focus-visible {
  transform: translateY(-1px);
  text-decoration: none;
}

.marketing-btn-primary {
  background: var(--marketing-green-900);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(6, 71, 55, 0.18);
}

.marketing-btn-primary:hover,
.marketing-btn-primary:focus-visible {
  color: #ffffff;
  background: #0a5944;
}

.marketing-btn-secondary {
  background: rgba(6, 71, 55, 0.04);
  color: var(--marketing-green-900);
  border-color: rgba(6, 71, 55, 0.12);
}

.marketing-btn-secondary:hover,
.marketing-btn-secondary:focus-visible {
  color: var(--marketing-green-900);
  background: rgba(67, 216, 133, 0.12);
  border-color: rgba(67, 216, 133, 0.28);
}

.marketing-btn-ghost-light {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.marketing-btn-ghost-light:hover,
.marketing-btn-ghost-light:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

.marketing-link {
  color: var(--marketing-green-900);
  font-weight: 800;
  text-decoration: none;
}

.marketing-link:hover,
.marketing-link:focus-visible {
  color: var(--marketing-green-700);
  text-decoration: none;
}

.marketing-page-header {
  padding: 88px 0 28px;
}

.marketing-page-header-inner {
  padding: 44px;
  border-radius: var(--marketing-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 255, 101, 0.15), transparent 35%),
    linear-gradient(160deg, rgba(67, 216, 133, 0.08), rgba(67, 216, 133, 0)),
    var(--marketing-surface);
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-sm);
}

.site-navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 248, 244, 0.9);
  border-bottom: 1px solid rgba(6, 71, 55, 0.08);
  backdrop-filter: blur(18px);
}

.site-navbar-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--marketing-green-500), var(--marketing-highlight));
}

.site-navbar .navbar {
  background: transparent !important;
  padding: 16px 0;
}

.site-navbar .container-fluid {
  width: min(var(--marketing-container), calc(100% - 32px));
  margin: 0 auto;
  padding: 0;
}

.site-navbar .navbar-brand img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.site-navbar .nav-link,
.site-navbar .dropdown-toggle {
  color: var(--marketing-text) !important;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 11px 16px !important;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link:focus-visible,
.site-navbar .dropdown-toggle:hover,
.site-navbar .dropdown-toggle:focus-visible {
  background: rgba(6, 71, 55, 0.05);
  color: var(--marketing-green-900) !important;
}

.site-navbar .dropdown-menu {
  padding: 10px;
  border: 1px solid var(--marketing-border);
  border-radius: 18px;
  box-shadow: var(--marketing-shadow-sm);
  background: rgba(255, 255, 255, 0.98);
}

.site-navbar .dropdown-item {
  padding: 11px 14px;
  border-radius: 12px;
  color: var(--marketing-text);
  font-size: 1.0625rem;
  font-weight: 600;
}

.site-navbar .dropdown-item:hover,
.site-navbar .dropdown-item:focus-visible {
  background: rgba(67, 216, 133, 0.12);
  color: var(--marketing-green-900);
}

.site-navbar .navbar-toggler {
  color: var(--marketing-green-900);
}

.site-navbar .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(67, 216, 133, 0.24);
}

.site-navbar .navbar-cta {
  margin-left: 8px;
}

.site-navbar .language-menu {
  background: #ffffff !important;
  border: 1px solid rgba(33, 37, 41, 0.08);
  border-radius: 16px;
  padding: 10px !important;
  box-shadow:
    0 12px 40px rgba(10, 34, 26, 0.1),
    0 2px 8px rgba(10, 34, 26, 0.06) !important;
}

.site-navbar .language-menu .btn {
  width: 100%;
  text-align: left;
  color: #212529;
  font-size: 1.0625rem;
  font-weight: 600;
  padding: 11px 14px;
  border-radius: 10px;
  border: none;
  background: transparent;
  box-shadow: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-navbar .language-menu .btn:hover,
.site-navbar .language-menu .btn:focus-visible {
  color: #212529;
  background: #f5f5f5;
}

.marketing-hero {
  padding: 56px 0 48px;
}

.marketing-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 32px;
  align-items: stretch;
}

.marketing-hero-copy {
  padding: 48px;
  border-radius: var(--marketing-radius-lg);
  background:
    radial-gradient(circle at top left, rgba(216, 255, 101, 0.14), transparent 36%),
    linear-gradient(160deg, rgba(67, 216, 133, 0.08), rgba(67, 216, 133, 0)),
    var(--marketing-surface);
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-md);
}

.marketing-hero-copy h1 {
  margin: 0 0 20px;
  font-size: clamp(2.75rem, 6vw, 5.25rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: var(--marketing-text);
  font-weight: 800;
}

.marketing-hero-copy .hero-highlight {
  color: var(--marketing-green-700);
}

.marketing-hero-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--marketing-text-soft);
  font-size: 1.12rem;
  line-height: 1.85;
}

.marketing-hero-actions {
  margin-top: 28px;
}

.marketing-trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.marketing-trust-item {
  padding: 18px 16px;
  border-radius: 20px;
  background: rgba(6, 71, 55, 0.04);
  border: 1px solid rgba(6, 71, 55, 0.08);
}

.marketing-trust-item strong {
  display: block;
  color: var(--marketing-text);
  font-size: 0.96rem;
}

.marketing-trust-item span {
  display: block;
  margin-top: 6px;
  color: var(--marketing-text-soft);
  font-size: 0.88rem;
  line-height: 1.6;
}

.marketing-hero-visual {
  display: grid;
  gap: 18px;
}

.account-preview {
  padding: 32px;
  border-radius: var(--marketing-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 255, 101, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(67, 216, 133, 0.12), rgba(67, 216, 133, 0)),
    #0b4135;
  color: #f6fff9;
  box-shadow: var(--marketing-shadow-lg);
  position: relative;
  overflow: hidden;
}

.account-preview::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.account-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.account-preview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.account-preview-balance {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  margin: 0;
  color: #fff;
}

.account-preview-subtitle {
  margin-top: 8px;
  color: rgba(247, 255, 249, 0.76);
  font-size: 0.95rem;
}

.account-preview-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 18px;
}

.account-preview-chip {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  font-weight: 700;
}

.account-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.account-preview-panel {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.account-preview-panel strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
}

.account-preview-panel span {
  display: block;
  color: rgba(247, 255, 249, 0.74);
  font-size: 0.88rem;
  line-height: 1.65;
}

.mini-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.feature-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(67, 216, 133, 0.14);
  color: var(--marketing-green-900);
  font-weight: 800;
  margin-bottom: 16px;
}

.about-story-grid,
.about-identity-grid,
.support-overview-grid,
.support-steps-grid,
.tutorial-grid,
.value-grid,
.milestone-grid,
.resource-topic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.about-story-grid .marketing-card:first-child,
.support-overview-grid .marketing-card:first-child {
  background:
    linear-gradient(180deg, rgba(67, 216, 133, 0.08), rgba(67, 216, 133, 0)),
    var(--marketing-surface);
}

.timeline-list {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(67, 216, 133, 0.15);
  color: var(--marketing-green-900);
  font-weight: 800;
}

.timeline-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  color: var(--marketing-text);
}

.timeline-copy p {
  margin: 0;
  text-align: left;
}

.team-section-note,
.marketing-note {
  margin: 0 0 24px;
  color: var(--marketing-text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: start;
}

.team-card-wide {
  grid-column: 1 / -1;
}

.team-card {
  padding: 28px;
  border-radius: var(--marketing-radius-md);
  background: var(--marketing-surface);
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-sm);
}

.team-card--member {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 16px 18px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.team-card--member:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--marketing-shadow-md);
  border-color: rgba(67, 216, 133, 0.35);
}

.team-card__media {
  margin-bottom: 14px;
  flex-shrink: 0;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top, rgba(216, 255, 101, 0.55), transparent 45%),
    linear-gradient(180deg, rgba(67, 216, 133, 0.18), rgba(6, 71, 55, 0.2));
  color: var(--marketing-green-900);
  font-size: 1.15rem;
  font-weight: 800;
}

.team-card--member .team-avatar {
  width: 120px;
  height: 120px;
  font-size: 1.35rem;
}

.team-role {
  margin: 0 0 8px;
  color: var(--marketing-green-700);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.team-card--member .team-role {
  margin: 0 0 10px;
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  color: var(--marketing-text-muted);
}

.team-name {
  margin: 0 0 6px;
  font-size: 1.24rem;
  font-weight: 800;
}

.team-card--member .team-name {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 4px;
}

.team-card p {
  margin: 0 0 18px;
  color: var(--marketing-text-soft);
  line-height: 1.75;
  text-align: left;
}

/* Team member bio: 4-line -webkit-line-clamp; equal collapsed height; Show more/less in JS */
.team-card--member .team-bio-block {
  width: 100%;
  min-width: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
}

.team-card--member .team-bio-clip--collapsed {
  width: 100%;
  min-height: calc(0.88rem * 1.5 * 4);
  max-height: calc(0.88rem * 1.5 * 4);
  box-sizing: border-box;
  overflow: hidden;
}

.team-card--member .team-bio-clip--collapsed .team-bio-inner {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
  margin: 0;
  text-align: center;
  color: var(--marketing-text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

.team-card--member .team-bio-clip--expanded {
  width: 100%;
  min-width: 0;
  max-height: none;
  min-height: 0;
  overflow: visible;
}

.team-card--member .team-bio-clip--expanded .team-bio-inner {
  display: block;
  margin: 0;
  text-align: center;
  color: var(--marketing-text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  overflow: visible;
}

/* Vertical rhythm: space from bio, space before LinkedIn (scoped to member cards only) */
.team-card--member .bio-toggle {
  margin-top: 14px;
  margin-bottom: 10px;
}

@media (max-width: 640px) {
  .team-card--member .bio-toggle {
    margin-top: 12px;
    margin-bottom: 8px;
  }
}

.team-card--member .team-bio-toggle {
  padding: 0;
  border: none;
  background: none;
  color: var(--marketing-green-900);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  align-self: center;
}

.team-card--member .team-bio-toggle:hover {
  color: var(--marketing-green-700);
}

.team-card--member .team-bio-toggle:focus-visible {
  outline: 2px solid rgba(67, 216, 133, 0.5);
  outline-offset: 2px;
  border-radius: 2px;
}

.team-card--member .team-bio-toggle[hidden] {
  display: none !important;
}

.team-card--member .team-link {
  margin-top: auto;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.team-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--marketing-green-900);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.team-card-supporting {
  text-align: left;
  padding: 22px 24px;
}

.team-card-supporting .team-role {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.84rem;
  font-weight: 800;
  color: var(--marketing-green-700);
}

.team-card-supporting .team-name {
  margin: 0 0 12px;
  font-size: 1.2rem;
}

.team-card-supporting .team-bio {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  text-align: left;
}

.tools-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
}

.calculator-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.calculator-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--marketing-text);
  font-size: 0.9rem;
  font-weight: 700;
}

.calculator-field input,
.calculator-field select {
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  border: 1px solid var(--marketing-border-strong);
  background: #ffffff;
  padding: 12px 14px;
  color: var(--marketing-text);
  font-size: 0.98rem;
}

.calculator-field input:focus,
.calculator-field select:focus {
  outline: 2px solid rgba(67, 216, 133, 0.35);
  outline-offset: 1px;
  border-color: rgba(67, 216, 133, 0.5);
}

.calculator-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.calculator-result {
  padding: 18px;
  border-radius: 20px;
  background: var(--marketing-surface-alt);
  border: 1px solid rgba(6, 71, 55, 0.08);
}

.calculator-result span {
  display: block;
  color: var(--marketing-text-muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.calculator-result strong {
  display: block;
  margin-top: 8px;
  color: var(--marketing-text);
  font-size: 1.35rem;
  line-height: 1.2;
}

.calculator-disclaimer {
  margin-top: 16px;
  color: var(--marketing-text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

.tool-roadmap {
  display: grid;
  gap: 18px;
}

.tool-roadmap .marketing-card h4 {
  font-size: 1.12rem;
}

.resource-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100%;
}

.resource-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.resource-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(67, 216, 133, 0.12);
  color: var(--marketing-green-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.resource-card p {
  margin: 0;
}

.resource-card-foot {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.resource-card-meta-line {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--marketing-text-muted);
  line-height: 1.4;
}

.resource-card-meta-sep {
  opacity: 0.6;
}

.resources-hero-lede {
  margin: 0 0 22px;
  max-width: 62ch;
  line-height: 1.65;
}

.marketing-page-header-cta {
  margin-top: 8px;
}

.resources-hero-store-row {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--marketing-border);
}

.resources-hero-store-label {
  display: block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--marketing-text-muted);
}

.resources-hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
}

.resources-hero-badge-link {
  display: inline-flex;
  opacity: 0.88;
  transition: opacity 0.2s ease, transform 0.2s ease;
  filter: saturate(0.92);
}

.resources-hero-badge-link:hover,
.resources-hero-badge-link:focus-visible {
  opacity: 1;
  filter: none;
  transform: translateY(-1px);
}

.resources-hero-badge-link img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.resource-product-bridge-card {
  padding: 32px 28px;
  text-align: center;
}

.resource-product-bridge-title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.8vw, 1.95rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.resource-product-bridge-copy {
  margin: 0 auto 22px;
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--marketing-text-soft);
}

.resource-product-bridge-cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.resource-differentiation-section .resource-differentiation-card {
  padding: 32px 28px;
}

.resource-differentiation-title {
  margin: 0 0 12px;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.resource-differentiation-copy {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--marketing-text-soft);
  max-width: 72ch;
}

.resources-insights-card {
  padding: 32px 28px;
}

.resources-insights-card__header {
  margin-bottom: 22px;
  text-align: left;
}

.resources-insights-card__header p {
  margin: 0;
  max-width: 48ch;
  color: var(--marketing-text-soft);
  line-height: 1.6;
}

.resources-insights-card__title {
  margin: 0 0 10px;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.resources-insights-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.resources-insights-form__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 16px;
}

.resources-insights-form__input {
  flex: 1 1 220px;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid var(--marketing-border-strong);
  background: #ffffff;
  font-size: 0.98rem;
  color: var(--marketing-text);
}

.resources-insights-form__input:focus {
  outline: 2px solid rgba(67, 216, 133, 0.35);
  outline-offset: 1px;
  border-color: rgba(67, 216, 133, 0.5);
}

.resources-insights-form__submit {
  flex: 0 1 auto;
}

.resources-insights-consent {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--marketing-text-muted);
  max-width: 52ch;
}

.resources-insights-feedback {
  margin: 0;
  padding: 12px 16px;
  border-radius: var(--marketing-radius-md);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.resources-insights-feedback[data-state="success"] {
  background: rgba(67, 216, 133, 0.15);
  color: var(--marketing-green-900);
  border: 1px solid rgba(67, 216, 133, 0.35);
}

.resources-insights-feedback[data-state="error"] {
  background: rgba(220, 53, 69, 0.08);
  color: #842029;
  border: 1px solid rgba(220, 53, 69, 0.25);
}

.resources-insights-form.is-success .resources-insights-form__row {
  display: none;
}

.resources-insights-form.is-success .resources-insights-consent {
  display: none;
}

@media (max-width: 575px) {
  .resources-insights-form__submit {
    width: 100%;
  }
}

/* ===== Country flag component ===== */

.country-flag.flag-icon {
  display: block;
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  line-height: normal;
  border: 3px solid #ffffff;
  box-shadow:
    0 2px 6px rgba(10, 34, 26, 0.08),
    0 8px 24px rgba(10, 34, 26, 0.06);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
  flex-shrink: 0;
}

/* ===== Country preview grid (homepage) ===== */

.country-preview-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.country-preview-card {
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px 16px 24px;
  border-radius: 24px;
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  box-shadow: 0 1px 4px rgba(10, 34, 26, 0.04);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
  cursor: default;
}

.country-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 34, 26, 0.08);
  background: #ffffff;
}

.country-preview-card:hover .country-flag {
  transform: scale(1.08);
  box-shadow:
    0 4px 12px rgba(10, 34, 26, 0.1),
    0 14px 36px rgba(10, 34, 26, 0.08);
}

.country-preview-card .country-flag.flag-icon {
  width: 52px !important;
  height: 52px !important;
}

.country-preview-card strong {
  color: var(--marketing-text);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.35;
}

.country-preview-card span {
  display: block;
}

.country-preview-card span:nth-of-type(1) {
  color: var(--marketing-green-700);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.country-preview-card span:last-child {
  color: var(--marketing-text-muted);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ===== Full country grid (supported-countries page) ===== */

.country-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.country-card {
  padding: 28px 20px 24px;
  border-radius: 24px;
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  box-shadow: 0 1px 4px rgba(10, 34, 26, 0.04);
  text-align: center;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.country-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 34, 26, 0.08);
  background: #ffffff;
}

.country-card:hover .country-flag {
  transform: scale(1.08);
  box-shadow:
    0 4px 12px rgba(10, 34, 26, 0.1),
    0 14px 36px rgba(10, 34, 26, 0.08);
}

.country-card-header {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.country-card-header h3 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--marketing-text);
  text-align: center;
}

/* ===== Country meta rows (chips) ===== */

.country-meta-row + .country-meta-row {
  margin-top: 14px;
}

.country-meta-label {
  display: block;
  margin-bottom: 8px;
  color: var(--marketing-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.country-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
}

.country-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(67, 216, 133, 0.1);
  color: var(--marketing-green-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.country-chip.is-muted {
  background: rgba(6, 71, 55, 0.05);
  color: var(--marketing-text-soft);
}

.country-chip.is-dark {
  background: var(--marketing-green-900);
  color: #ffffff;
}

/* ===== Content cards (blog/news) ===== */

.content-card {
  border-radius: 20px;
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.content-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.content-card-link:hover {
  text-decoration: none;
  color: inherit;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10, 34, 26, 0.08);
}

.content-card-image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--marketing-bg);
}

.content-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.content-card-link:hover .content-card-image img {
  transform: scale(1.03);
}

.content-card-body {
  padding: 24px;
}

.content-card-body h3 {
  margin: 8px 0;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.content-card-body p {
  color: var(--marketing-text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.content-card-category {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(67, 216, 133, 0.12);
  color: var(--marketing-green-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.content-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--marketing-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.content-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.content-pagination-info {
  font-size: 0.88rem;
  color: var(--marketing-text-muted);
  font-weight: 600;
}

/* ===== Article detail ===== */

.article-header {
  margin-bottom: 36px;
}

.article-header h1 {
  margin: 12px 0 0;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.article-excerpt {
  margin-top: 16px;
  font-size: 1.15rem;
  color: var(--marketing-text-soft);
  line-height: 1.7;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  color: var(--marketing-text-muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.article-featured-image {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 36px;
}

.article-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-body {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--marketing-text);
}

.article-body h2 {
  margin-top: 40px;
  font-size: 1.5rem;
  font-weight: 800;
}

.article-body h3 {
  margin-top: 32px;
  font-size: 1.2rem;
  font-weight: 700;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body img {
  max-width: 100%;
  border-radius: 12px;
  margin: 24px 0;
}

.article-body blockquote {
  border-left: 4px solid var(--marketing-green-700);
  padding-left: 20px;
  margin: 28px 0;
  color: var(--marketing-text-soft);
  font-style: italic;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--marketing-border);
}

.content-preview-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  margin-bottom: 24px;
  border-radius: 12px;
  background: #fff3cd;
  color: #856404;
  font-size: 0.9rem;
}

/* ===== Team photo ===== */

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow:
    0 2px 6px rgba(10, 34, 26, 0.08),
    0 8px 24px rgba(10, 34, 26, 0.06);
  display: block;
}

/* ===== Reviews ===== */

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

.review-card {
  border-radius: 20px;
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 34, 26, 0.07);
}

.review-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review-card-stars {
  display: flex;
  gap: 2px;
}

.review-star {
  color: #d4d4d4;
  font-size: 1.1rem;
  line-height: 1;
}

.review-star-filled {
  color: #f5a623;
}

/* ── source badges (shared base for <a> and <span>) ── */
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.review-badge i:first-child {
  font-size: 0.72rem;
}

.review-badge-external {
  font-size: 0.56rem !important;
  opacity: 0;
  margin-left: -2px;
  transition: opacity 0.2s ease, margin-left 0.2s ease;
}

a.review-badge:hover .review-badge-external,
a.review-badge:focus-visible .review-badge-external {
  opacity: 0.7;
  margin-left: 0;
}

/* Per-source colouring: subtle tinted backgrounds with matching text */
.review-badge-trustpilot {
  background: rgba(0, 182, 122, 0.10);
  color: #00895c;
}
.review-badge-google_play {
  background: rgba(1, 135, 95, 0.10);
  color: #016b4a;
}
.review-badge-app_store {
  background: rgba(0, 113, 227, 0.10);
  color: #005bba;
}
.review-badge-custom {
  background: rgba(108, 117, 125, 0.10);
  color: #555;
}

/* Clickable badge hover lift */
a.review-badge:hover,
a.review-badge:focus-visible {
  transform: translateY(-1px);
}
a.review-badge-trustpilot:hover,
a.review-badge-trustpilot:focus-visible {
  background: rgba(0, 182, 122, 0.18);
  box-shadow: 0 2px 8px rgba(0, 182, 122, 0.12);
}
a.review-badge-google_play:hover,
a.review-badge-google_play:focus-visible {
  background: rgba(1, 135, 95, 0.18);
  box-shadow: 0 2px 8px rgba(1, 135, 95, 0.12);
}
a.review-badge-app_store:hover,
a.review-badge-app_store:focus-visible {
  background: rgba(0, 113, 227, 0.18);
  box-shadow: 0 2px 8px rgba(0, 113, 227, 0.12);
}

/* Focus ring for accessibility */
a.review-badge:focus-visible {
  outline: 2px solid var(--marketing-green-500, #43d885);
  outline-offset: 2px;
}

/* Legacy class kept for reviews_page stats bar */
.review-source-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff;
}
.review-source-trustpilot { background: #00b67a; }
.review-source-google_play { background: #01875f; }
.review-source-app_store { background: #0071e3; }
.review-source-custom { background: var(--marketing-green-900); }

.review-card-title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.review-card-body {
  flex: 1;
  margin: 0;
  color: var(--marketing-text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

.review-card-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--marketing-border);
}

.review-card-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.review-card-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.review-card-author-title {
  display: block;
  font-size: 0.78rem;
  color: var(--marketing-text-muted);
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.review-avatar-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(67, 216, 133, 0.14);
  color: var(--marketing-green-900);
  font-weight: 800;
  font-size: 0.85rem;
}

.review-card-date {
  font-size: 0.78rem;
  color: var(--marketing-text-muted);
  white-space: nowrap;
}

.review-source-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--marketing-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.review-source-link i {
  font-size: 0.62rem;
}

.review-source-link:hover {
  color: var(--marketing-green-700);
}

.review-source-link:focus-visible {
  outline: 2px solid var(--marketing-green-500, #43d885);
  outline-offset: 2px;
  border-radius: 3px;
}

.review-stats-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.review-stats-rating {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f5a623;
}

.review-stats-count {
  font-size: 0.92rem;
  color: var(--marketing-text-muted);
  font-weight: 600;
}

.review-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

.review-filter-btn {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  color: var(--marketing-text);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.review-filter-btn:hover {
  border-color: var(--marketing-green-700);
  color: var(--marketing-green-900);
  text-decoration: none;
}

.review-filter-active {
  background: var(--marketing-green-900);
  color: #fff;
  border-color: var(--marketing-green-900);
}

.review-filter-active:hover {
  color: #fff;
}

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

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(6, 71, 55, 0.04);
  border: 1px solid rgba(6, 71, 55, 0.08);
  color: var(--marketing-text);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.social-chip:hover,
.social-chip:focus-visible {
  color: var(--marketing-green-900);
  text-decoration: none;
  background: rgba(67, 216, 133, 0.12);
}

.support-step {
  position: relative;
  padding-left: 58px;
}

.support-step-number {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(67, 216, 133, 0.14);
  color: var(--marketing-green-900);
  font-weight: 800;
}

.faq-card .accordion-item {
  border: 1px solid var(--marketing-border);
  border-radius: 18px !important;
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-card .accordion-button {
  font-weight: 700;
  color: var(--marketing-text);
  background: #ffffff;
}

.faq-card .accordion-button:not(.collapsed) {
  background: rgba(67, 216, 133, 0.1);
  color: var(--marketing-green-900);
  box-shadow: none;
}

.faq-card .accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(67, 216, 133, 0.2);
}

.faq-card .accordion-body {
  color: var(--marketing-text-soft);
  line-height: 1.8;
}

.cta-panel {
  padding: 42px;
  border-radius: var(--marketing-radius-lg);
  background:
    radial-gradient(circle at top right, rgba(216, 255, 101, 0.15), transparent 34%),
    linear-gradient(180deg, rgba(67, 216, 133, 0.08), rgba(67, 216, 133, 0)),
    var(--marketing-green-900);
  color: #f7fff9;
  box-shadow: var(--marketing-shadow-lg);
}

.cta-panel h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.cta-panel p {
  margin: 0 0 28px;
  color: rgba(247, 255, 249, 0.8);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 740px;
}

.cta-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.cta-proof span {
  color: rgba(247, 255, 249, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  margin-top: 80px;
  background: #0d3329;
  color: #f7fff9;
}

.site-footer-top {
  padding: 72px 0 40px;
}

.site-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.site-footer-brand {
  max-width: 320px;
  text-align: left;
}

.site-footer-brand p,
.site-footer-column a,
.site-footer-column span {
  color: rgba(247, 255, 249, 0.72);
  line-height: 1.8;
}

.site-footer-brand p {
  margin: 18px 0;
  align-content: start !important;
  text-align: left;
}

.site-footer-column h5 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer-column a {
  text-decoration: none;
  font-weight: 600;
}

.site-footer-column a:hover,
.site-footer-column a:focus-visible {
  color: var(--marketing-green-400);
  text-decoration: none;
}

.site-footer-apps {
  margin-top: 28px;
}

.site-footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.site-footer-badges img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 10px;
}

.site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.site-footer-social a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
}

.site-footer-social a:hover,
.site-footer-social a:focus-visible {
  background: rgba(67, 216, 133, 0.16);
  border-color: rgba(67, 216, 133, 0.32);
}

.site-footer-entities {
  padding: 36px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-entities h5 {
  margin: 0 0 8px;
  color: #ffffff;
}

.site-footer-entities p {
  margin: 0 0 24px;
  color: rgba(247, 255, 249, 0.72);
}

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

.entity-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.entity-card strong,
.entity-card span {
  display: block;
}

.entity-card strong {
  margin-bottom: 12px;
  color: #ffffff;
  font-size: 1rem;
}

.entity-card span {
  color: rgba(247, 255, 249, 0.72);
  line-height: 1.75;
}

.site-footer-bottom {
  padding: 24px 0 40px;
}

.site-footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-footer-bottom-row p {
  margin: 0;
  color: rgba(247, 255, 249, 0.6);
  font-size: 0.9rem;
}

.marketing-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1200;
  padding: 20px;
  background: rgba(16, 53, 43, 0.5);
  backdrop-filter: blur(8px);
}

.marketing-modal-content {
  max-width: 520px;
  margin: 8vh auto 0;
  padding: 32px;
  border-radius: 28px;
  background: #ffffff;
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-lg);
  position: relative;
}

.marketing-modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  border: 0;
  background: transparent;
  color: var(--marketing-text-muted);
  font-size: 1.5rem;
  line-height: 1;
}

.marketing-modal-content h3 {
  margin: 0 0 14px;
  font-size: 1.9rem;
}

.marketing-modal-content p {
  margin: 0 0 22px;
  color: var(--marketing-text-soft);
  line-height: 1.8;
}

.support-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
}

.mobile-only {
  display: none;
}

@media (max-width: 1199px) {
  .site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-brand {
    max-width: none;
    grid-column: 1 / -1;
  }

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

  .country-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .marketing-section {
    padding: 80px 0;
  }

  .marketing-hero-grid,
  .tools-grid,
  .about-story-grid,
  .about-identity-grid,
  .support-overview-grid,
  .support-steps-grid,
  .tutorial-grid,
  .value-grid,
  .milestone-grid,
  .support-split,
  .resource-topic-grid {
    grid-template-columns: 1fr;
  }

  .marketing-grid-2,
  .marketing-grid-3,
  .marketing-grid-4,
  .mini-proof-grid,
  .entity-grid,
  .calculator-results,
  .review-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .country-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .country-flag.flag-icon {
    width: 48px !important;
    height: 48px !important;
  }

  .country-preview-card .country-flag.flag-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .marketing-hero-copy,
  .account-preview,
  .cta-panel,
  .marketing-page-header-inner {
    padding: 36px;
  }

  .site-navbar .navbar-collapse {
    padding-top: 16px;
  }

  .site-navbar .nav-link,
  .site-navbar .dropdown-toggle {
    font-size: 1.25rem;
    padding: 14px 18px !important;
  }

  .site-navbar .dropdown-item {
    font-size: 1.125rem;
    padding: 13px 16px;
  }

  .site-navbar .language-menu .btn {
    font-size: 1.125rem;
    padding: 13px 16px;
  }

  .site-navbar .navbar-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .site-navbar .dropdown-menu {
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .marketing-section,
  .marketing-section-tight {
    padding: 64px 0;
  }

  .marketing-page-header {
    padding-top: 54px;
  }

  .marketing-container {
    width: min(var(--marketing-container), calc(100% - 24px));
  }

  .marketing-hero-copy,
  .account-preview,
  .marketing-card,
  .team-card,
  .cta-panel,
  .marketing-page-header-inner,
  .marketing-modal-content {
    padding: 28px;
    border-radius: 24px;
  }

  .marketing-grid-2,
  .marketing-grid-3,
  .marketing-grid-4,
  .mini-proof-grid,
  .calculator-grid,
  .calculator-results,
  .team-grid,
  .entity-grid,
  .site-footer-grid,
  .marketing-trust-list,
  .account-preview-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-card { padding: 22px; }
  .review-card-meta { flex-direction: column; align-items: flex-start; }

  .country-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

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

  .country-flag.flag-icon {
    width: 44px !important;
    height: 44px !important;
    border-width: 2px;
  }

  .country-preview-card .country-flag.flag-icon {
    width: 40px !important;
    height: 40px !important;
  }

  .country-preview-card {
    padding: 20px 12px 18px;
    gap: 8px;
  }

  .country-card {
    padding: 22px 16px 20px;
  }

  .marketing-button-row,
  .site-footer-badges,
  .social-row,
  .cta-proof,
  .site-footer-bottom-row {
    flex-direction: column;
    align-items: stretch;
  }

  .marketing-btn,
  .social-chip {
    width: 100%;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .timeline-year {
    justify-self: start;
    min-width: 84px;
  }

  .site-footer-bottom-row {
    align-items: flex-start;
  }

  .site-footer-social {
    flex-wrap: wrap;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* ========== Homepage conversion layout (v2) ========== */

.marketing-page.marketing-page-v2::before {
  height: 380px;
  opacity: 0.85;
}

.marketing-section-spacious {
  padding: 120px 0;
}

.marketing-section-alt {
  background: linear-gradient(180deg, rgba(238, 243, 237, 0.65) 0%, transparent 100%);
}

.marketing-section--flush-bottom {
  padding-bottom: 48px;
}

.marketing-hero-v2 {
  padding: 40px 0 56px;
}

.marketing-hero-grid-v2 {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 1fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

/* Homepage heroes: matched column heights (see .marketing-hero-v2--equal-columns on section) */
.marketing-hero-v2--equal-columns .marketing-hero-grid-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.marketing-hero-v2--equal-columns .marketing-hero-copy-v2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  min-height: 0;
}

.marketing-hero-v2--equal-columns .marketing-hero-media {
  height: 100%;
  min-height: 0;
}

.marketing-hero-v2--equal-columns .marketing-photo-frame--hero {
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  aspect-ratio: unset;
}

.marketing-hero-v2--equal-columns .marketing-photo-frame--hero .marketing-photo {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-height: none;
  object-fit: cover;
  flex: 1 1 auto;
}

.marketing-hero-copy-v2 {
  padding: clamp(28px, 4vw, 44px);
  background: var(--marketing-surface);
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-md);
}

.marketing-display-title {
  margin: 0 0 16px;
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: var(--marketing-text);
}

.marketing-lede {
  margin: 0 0 8px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.45;
  color: var(--marketing-text-soft);
  max-width: 28ch;
}

.marketing-hero-cta-v2 {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
}

.marketing-hero-cta__stores {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.marketing-hero-cta__stores .marketing-store-badges--hero {
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.marketing-hero-cta__primary {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* Global hero (first): extra air between primary CTA and trust line below it */
.marketing-hero-v2--equal-columns .marketing-hero-cta-v2 > .marketing-hero-cta__primary + .marketing-lede {
  margin-top: 10px;
}

.marketing-hero-v2--equal-columns .marketing-hero-cta-v2 > .marketing-lede {
  text-align: center;
  width: 100%;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

.marketing-store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.marketing-store-badges--hero .marketing-store-badge-link img {
  height: 48px;
  width: auto;
  display: block;
  border-radius: 10px;
}

.marketing-store-badge-link {
  line-height: 0;
  border-radius: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.marketing-store-badge-link:hover,
.marketing-store-badge-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(10, 34, 26, 0.12);
}

.marketing-btn-wide {
  width: 100%;
  max-width: 360px;
}

.marketing-hero-cta__primary .marketing-btn-wide {
  width: min(100%, 360px);
  max-width: 360px;
  box-sizing: border-box;
}

.marketing-hero-media {
  position: relative;
}

.marketing-photo-frame {
  margin: 0;
  border-radius: var(--marketing-radius-lg);
  overflow: hidden;
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-lg);
  background: #e8ebe8;
}

.marketing-photo-frame--hero {
  aspect-ratio: 4 / 5;
}

.marketing-photo-frame--cta {
  aspect-ratio: 1;
  max-width: 520px;
  margin-left: auto;
}

/* Expansion / split — asset is 640×720; keeps a stable frame without extreme crop */
.marketing-split-media .marketing-photo-frame {
  aspect-ratio: 8 / 9;
  max-height: min(90vh, 720px);
}

.marketing-split-media .marketing-photo {
  object-position: center 22%;
}

.marketing-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.marketing-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.marketing-split-copy .marketing-section-title {
  margin: 0 0 12px;
}

/* Expansion (LATAM + Africa): clear space before CTA row */
.marketing-split-copy .marketing-blurb {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.marketing-section-title {
  font-size: clamp(1.85rem, 3.5vw, 2.75rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--marketing-text);
  margin: 0 0 12px;
}

.marketing-section-title--sm {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
}

.marketing-blurb {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--marketing-text-soft);
  max-width: 52ch;
}

.marketing-blurb strong {
  color: var(--marketing-text);
  font-weight: 800;
}

.marketing-blurb--narrow {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.marketing-section-header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 720px;
}

.marketing-section-header--center .marketing-section-title {
  margin-left: auto;
  margin-right: auto;
}

.marketing-button-row--center {
  justify-content: center;
}

/* Product section: Swiper carousel */
.marketing-product-carousel.product-carousel {
  position: relative;
  margin: 0 auto;
  max-width: min(100%, var(--marketing-container));
  padding: 0 0 18px;
  isolation: isolate;
}

.marketing-product-carousel .product-swiper {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  margin: 0;
}

.marketing-product-carousel .swiper-slide {
  height: auto;
  box-sizing: border-box;
}

.marketing-product-carousel .swiper-slide .product-carousel-slide {
  width: 100%;
}

.product-carousel-slide {
  margin: 0;
  height: 100%;
  border-radius: var(--marketing-radius-md);
  overflow: hidden;
  background: var(--marketing-surface);
  box-shadow: var(--marketing-shadow-sm);
}

.product-carousel-slide--split .product-carousel-slide__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 14px;
  min-height: 0;
  padding: 10px 10px 12px;
  box-sizing: border-box;
}

.product-carousel-slide--split .product-carousel-slide__media {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 0;
  min-width: 0;
  width: 100%;
}

.product-carousel-slide--split .product-carousel-slide__media img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: min(52vh, 420px);
  object-fit: contain;
}

.product-carousel-slide--split .product-carousel-slide__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0 16px;
  text-align: center;
  justify-content: center;
  box-sizing: border-box;
}

.product-carousel-slide__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--marketing-text);
}

.product-carousel-slide__desc {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.5;
  font-weight: 500;
  color: var(--marketing-text-soft);
}

@media (min-width: 768px) {
  .product-carousel-slide--split .product-carousel-slide__inner {
    grid-template-columns: minmax(57%, 1fr) auto;
    gap: clamp(10px, 1.6vw, 16px);
    padding: 12px 8px 14px 12px;
    min-height: 0;
    align-items: center;
  }

  .product-carousel-slide--split .product-carousel-slide__copy {
    text-align: left;
    max-width: 450px;
    width: min(450px, 100%);
    padding: 10px 20px 10px clamp(24px, 3.5vw, 40px);
    margin: 0;
    justify-self: start;
    align-self: center;
    justify-content: center;
    gap: 10px;
    min-height: 0;
    box-sizing: border-box;
  }

  /* ~17% larger than prior max-heights; width fills image column */
  .product-carousel-slide--split .product-carousel-slide__media img {
    width: 100%;
    max-width: 100%;
    max-height: min(72vh, 705px);
  }
}

@media (min-width: 1024px) {
  .product-carousel-slide--split .product-carousel-slide__inner {
    grid-template-columns: minmax(58%, 1fr) auto;
    padding: 10px 6px 12px 14px;
    gap: clamp(12px, 1.8vw, 18px);
  }

  .product-carousel-slide--split .product-carousel-slide__media img {
    max-height: min(74vh, 800px);
  }
}

@media (min-width: 1280px) {
  .product-carousel-slide--split .product-carousel-slide__inner {
    grid-template-columns: minmax(59%, 1fr) auto;
    padding: 10px 6px 12px 16px;
  }

  .product-carousel-slide--split .product-carousel-slide__media img {
    max-height: min(76vh, 820px);
  }
}

.marketing-product-carousel .product-carousel__nav {
  position: absolute;
  top: 50%;
  z-index: 30;
  width: 48px;
  height: 48px;
  margin-top: 0;
  transform: translateY(-50%);
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.98);
  color: var(--marketing-green-900);
  box-shadow: 0 4px 20px rgba(10, 34, 26, 0.14);
  cursor: pointer;
  pointer-events: auto;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.marketing-product-carousel .product-carousel__nav i {
  pointer-events: none;
}

.marketing-product-carousel .product-carousel__nav:hover,
.marketing-product-carousel .product-carousel__nav:focus-visible {
  background: #fff;
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 8px 28px rgba(10, 34, 26, 0.14);
  outline: none;
}

.marketing-product-carousel .product-carousel__nav:focus-visible {
  box-shadow: 0 0 0 3px rgba(67, 216, 133, 0.45);
}

.marketing-product-carousel .product-carousel__prev {
  left: 2px;
}

.marketing-product-carousel .product-carousel__next {
  right: 2px;
}

@media (min-width: 768px) {
  .marketing-product-carousel.product-carousel {
    padding-left: 36px;
    padding-right: 36px;
  }

  .marketing-product-carousel .product-carousel__nav {
    display: flex;
  }

  .marketing-product-carousel .product-carousel__prev {
    left: 2px;
  }

  .marketing-product-carousel .product-carousel__next {
    right: 2px;
  }
}

@media (min-width: 1024px) {
  .marketing-product-carousel.product-carousel {
    padding-left: 40px;
    padding-right: 40px;
  }
}

.marketing-product-carousel .product-carousel__pagination.swiper-pagination {
  position: relative;
  margin-top: 12px;
  bottom: auto;
  left: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.marketing-product-carousel .product-carousel__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 !important;
  background: rgba(6, 71, 55, 0.22);
  opacity: 1;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.marketing-product-carousel .product-carousel__pagination .swiper-pagination-bullet-active {
  background: var(--marketing-green-900);
  transform: scale(1.15);
}

.marketing-use-cases {
  display: grid;
  gap: 22px;
}

.marketing-use-card {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--marketing-radius-lg);
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  box-shadow: var(--marketing-shadow-sm);
}

.marketing-use-card--biz {
  display: grid;
  grid-template-columns: minmax(220px, 0.95fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.marketing-use-card-media {
  min-width: 0;
  min-height: 0;
}

.marketing-use-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* Pay teams card — composite keeps logo/copy on the left */
.marketing-use-card--biz .marketing-use-card-media img {
  object-position: 18% center;
}

.marketing-use-card-copy {
  padding: clamp(24px, 4vw, 36px);
}

.marketing-use-card--biz .marketing-use-card-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.marketing-use-card--biz .marketing-use-card-copy .marketing-btn {
  align-self: center;
}

/* Pay teams: clear space before primary CTA */
.marketing-use-card--biz .marketing-use-card-copy .marketing-blurb {
  margin-bottom: clamp(28px, 5vw, 48px);
}

.marketing-card-visuals {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 8px;
}

.marketing-card-visual {
  margin: 0;
  border-radius: var(--marketing-radius-md);
  overflow: hidden;
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-sm);
  background: var(--marketing-surface);
}

.marketing-card-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.marketing-trust-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.45fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.marketing-trust-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.marketing-trust-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--marketing-shadow-sm);
}

.marketing-trust-bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 20px;
  display: grid;
  gap: 10px;
}

.marketing-trust-bullets li {
  font-size: 1.15rem;
  line-height: 1.35;
  color: var(--marketing-text);
}

/* Homepage trust summary — human visuals, then review + coverage proof */
.marketing-trust-summary__header {
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.marketing-trust-summary__header .marketing-section-title {
  margin-bottom: 10px;
}

.marketing-trust-summary__deck {
  margin-bottom: 0;
}

.marketing-trust-mosaic-wrap {
  max-width: min(920px, 100%);
  margin: 0 auto clamp(16px, 2.5vw, 26px);
}

.marketing-trust-mosaic__kicker {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--marketing-text-muted);
  text-align: center;
}

.marketing-trust-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.5vw, 14px);
  margin: 0;
}

.marketing-trust-mosaic__cell {
  margin: 0;
  border-radius: var(--marketing-radius-sm);
  overflow: hidden;
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-sm);
  aspect-ratio: 1;
  background: var(--marketing-surface-alt);
}

.marketing-trust-mosaic__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.marketing-trust-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 28px);
  align-items: stretch;
}

.marketing-trust-summary__panel {
  background: var(--marketing-surface);
  border: 1px solid var(--marketing-border);
  border-radius: var(--marketing-radius-md);
  box-shadow: var(--marketing-shadow-sm);
  padding: clamp(22px, 3vw, 32px);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.marketing-trust-summary__eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--marketing-green-700);
}

.marketing-trust-summary__stats {
  margin-bottom: 18px;
}

.marketing-trust-summary__rating-line {
  margin: 0 0 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  color: var(--marketing-text);
}

.marketing-trust-summary__score {
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.marketing-trust-summary__star-mark {
  font-size: 1.35rem;
  line-height: 1;
  color: #f4b400;
}

.marketing-trust-summary__count {
  margin: 0 0 12px;
  font-size: 0.95rem;
  color: var(--marketing-text-soft);
  font-weight: 600;
}

.marketing-trust-summary__sources {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.marketing-trust-summary__source-pill {
  font-size: 0.78rem;
}

.marketing-trust-summary__source-n {
  opacity: 0.72;
  font-weight: 600;
}

.marketing-trust-summary__empty {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--marketing-text-soft);
}

.marketing-trust-summary__quotes {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.marketing-trust-summary__quote {
  margin: 0;
  padding: 12px 12px 10px;
  border-radius: var(--marketing-radius-sm);
  background: var(--marketing-surface-alt);
  border: 1px solid var(--marketing-border);
}

.marketing-trust-summary__quote--featured {
  padding: 15px 15px 13px;
  background: linear-gradient(165deg, #ffffff 0%, var(--marketing-surface-alt) 100%);
  border-color: rgba(6, 71, 55, 0.16);
  box-shadow: 0 10px 32px rgba(10, 34, 26, 0.08);
}

.marketing-trust-summary__quote-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.marketing-trust-summary__avatar-slot {
  position: relative;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.marketing-trust-summary__avatar-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10, 34, 26, 0.08);
  position: relative;
  z-index: 1;
  background: var(--marketing-surface-alt);
}

.marketing-trust-summary__avatar-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--marketing-green-700);
  background: linear-gradient(145deg, var(--marketing-green-100), rgba(67, 216, 133, 0.28));
  border: 2px solid #fff;
  box-shadow: 0 2px 8px rgba(10, 34, 26, 0.08);
}

.marketing-trust-summary__avatar-slot--has-remote .marketing-trust-summary__avatar-fallback {
  display: none;
}

.marketing-trust-summary__avatar-slot--has-remote.is-broken .marketing-trust-summary__avatar-img {
  display: none;
}

.marketing-trust-summary__avatar-slot--has-remote.is-broken .marketing-trust-summary__avatar-fallback {
  display: flex;
}

.marketing-trust-summary__quote-main {
  flex: 1;
  min-width: 0;
}

.marketing-trust-summary__quote-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.marketing-trust-summary__quote-stars {
  font-size: 0.74rem;
  letter-spacing: 0.5px;
  color: #f4b400;
}

.marketing-trust-summary__quote-source {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--marketing-text-muted);
  opacity: 0.88;
}

.marketing-trust-summary__quote-title {
  margin: 0 0 5px;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--marketing-text);
}

.marketing-trust-summary__quote-body {
  margin: 0 0 6px;
  font-size: 0.86rem;
  line-height: 1.48;
  color: var(--marketing-text-soft);
  opacity: 0.95;
}

.marketing-trust-summary__quote-meta {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--marketing-text-muted);
  opacity: 0.9;
}

.marketing-trust-summary__coverage-headline {
  margin: 0 0 8px;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--marketing-text);
  line-height: 1.2;
}

.marketing-trust-summary__coverage-lede {
  margin: 0 0 8px;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--marketing-green-700);
}

.marketing-trust-summary__coverage-copy {
  margin: 0 0 20px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--marketing-text-soft);
  opacity: 0.92;
}

.marketing-trust-summary__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
  align-items: center;
}

.marketing-trust-summary__flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--marketing-surface-alt);
  border: 1px solid var(--marketing-border);
  box-shadow: 0 2px 10px rgba(10, 34, 26, 0.05);
}

.marketing-trust-summary__flag .flag-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 9px;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(6, 71, 55, 0.06);
}

.marketing-trust-summary__actions {
  margin-top: auto;
  padding-top: 8px;
  display: flex;
  justify-content: center;
}

.marketing-trust-summary__actions .marketing-btn {
  width: 100%;
  max-width: 260px;
}

.marketing-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.85fr);
  gap: 40px;
  align-items: center;
  padding: clamp(32px, 5vw, 48px);
  border-radius: var(--marketing-radius-lg);
  background:
    radial-gradient(circle at 20% 20%, rgba(216, 255, 101, 0.12), transparent 40%),
    var(--marketing-green-900);
  color: #f7fff9;
  box-shadow: var(--marketing-shadow-lg);
}

.marketing-final-cta .marketing-section-title {
  color: #fff;
}

.marketing-final-cta .marketing-blurb {
  color: rgba(247, 255, 249, 0.82);
  margin-bottom: 20px;
}

.marketing-final-cta .marketing-store-badges--hero .marketing-store-badge-link img {
  height: 48px;
}

.marketing-final-cta .marketing-btn-secondary {
  margin-top: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.marketing-final-cta .marketing-btn-secondary:hover,
.marketing-final-cta .marketing-btn-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

@media (max-width: 991px) {
  .marketing-hero-grid-v2 {
    grid-template-columns: 1fr;
  }

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

  .marketing-hero-v2--equal-columns .marketing-hero-copy-v2 {
    height: auto;
    display: block;
  }

  .marketing-hero-v2--equal-columns .marketing-hero-media {
    height: auto;
  }

  .marketing-hero-media {
    order: -1;
  }

  .marketing-split,
  .marketing-split--reverse-md {
    grid-template-columns: 1fr;
  }

  .marketing-split-media .marketing-photo-frame {
    max-height: min(78vh, 640px);
  }

  .marketing-split-media .marketing-photo {
    object-position: 48% 18%;
  }

  .marketing-use-card--biz {
    grid-template-columns: 1fr;
  }

  .marketing-trust-mosaic__img {
    object-position: center top;
  }

  .marketing-card-visuals {
    grid-template-columns: 1fr;
  }

  .marketing-trust-layout {
    grid-template-columns: 1fr;
  }

  .marketing-trust-photos {
    max-width: 280px;
    margin: 0 auto;
  }

  .marketing-trust-summary {
    grid-template-columns: 1fr;
  }

  .marketing-trust-mosaic-wrap {
    margin-bottom: clamp(14px, 2vw, 20px);
  }

  .marketing-trust-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .marketing-final-cta {
    grid-template-columns: 1fr;
  }

  .marketing-photo-frame--cta {
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .marketing-section-spacious {
    padding: 72px 0;
  }

  .marketing-store-badges--hero {
    flex-direction: column;
    align-items: stretch;
  }

  .marketing-store-badges--hero .marketing-store-badge-link img {
    width: 100%;
    height: auto;
    max-height: 54px;
    object-fit: contain;
  }
}

/* ============== About page ============== */
.about-page .about-hero .marketing-page-header-inner,
.about-page .about-hero__inner {
  max-width: 720px;
}

.about-page .about-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.about-hero__lede {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--marketing-text-soft);
  max-width: 52ch;
}

.about-section-header--tight {
  margin-bottom: 28px;
  max-width: 640px;
}

.about-section-header--tight h2 + .about-sub,
.about-section-header--tight .marketing-eyebrow + h2 {
  margin-top: 0;
}

.about-sub {
  margin: 0.5rem 0 0;
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--marketing-text-soft);
}

.about-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--marketing-text-soft);
}

.about-bullet-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--marketing-text-soft);
  line-height: 1.65;
  font-size: 0.98rem;
}

.about-bullet-list li + li {
  margin-top: 0.5rem;
}

.about-what-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}

.about-what-figure {
  margin: 0;
  border-radius: var(--marketing-radius-lg);
  overflow: hidden;
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-md);
  background: #eef3ed;
}

.about-what-img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(68vh, 580px);
  object-fit: contain;
}

.about-how-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.about-how-step {
  padding: 20px 18px 22px;
  border-radius: var(--marketing-radius-md);
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  box-shadow: var(--marketing-shadow-sm);
  text-align: center;
}

.about-how-step__img-wrap {
  margin: -4px -8px 12px;
  border-radius: var(--marketing-radius-sm);
  overflow: hidden;
  background: var(--marketing-surface-alt);
}

.about-how-step__img-wrap img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

.about-how-step .about-how-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(67, 216, 133, 0.2);
  color: var(--marketing-green-900);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.about-how-step h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 800;
}

.about-how-step p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--marketing-text-soft);
}

.about-corridor-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.about-corridor-item {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-radius: var(--marketing-radius-md);
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  box-shadow: var(--marketing-shadow-sm);
  min-width: min(180px, 100%);
}

.about-corridor-item--wide {
  flex: 1 1 200px;
  max-width: 420px;
}

.about-corridor-flags {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--marketing-text-muted);
}

.about-corridor-flags .flag-icon {
  width: 28px;
  height: 22px;
  background-size: cover;
  border-radius: 3px;
}

.about-corridor-flags--globe {
  font-size: 1.35rem;
  color: var(--marketing-green-700);
}

.about-corridor-label {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--marketing-text);
  text-align: center;
}

.about-identity-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.about-story-card p {
  margin-bottom: 0;
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.about-value-card {
  padding: 22px 18px;
  border-radius: var(--marketing-radius-md);
  border: 1px solid var(--marketing-border);
  background: var(--marketing-surface);
  box-shadow: var(--marketing-shadow-sm);
}

.about-value-card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: rgba(67, 216, 133, 0.15);
  color: var(--marketing-green-900);
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.about-value-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 800;
}

.about-value-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--marketing-text-soft);
}

.about-trust-header {
  max-width: 560px;
}

.about-trust-intro {
  max-width: 48ch;
}

.about-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 28px;
}

.about-trust-badge {
  display: grid;
  justify-items: center;
  gap: 6px;
  padding: 16px 18px;
  min-width: 140px;
  border-radius: var(--marketing-radius-md);
  background: var(--marketing-surface);
  border: 1px solid var(--marketing-border);
  box-shadow: var(--marketing-shadow-sm);
  text-align: center;
}

.about-trust-badge__mark {
  font-size: 1.25rem;
  color: var(--marketing-green-900);
}

.about-trust-badge__mark .flag-icon {
  width: 32px;
  height: 22px;
  background-size: cover;
  border-radius: 3px;
  display: block;
  margin: 0 auto;
}

.about-trust-badge__label {
  font-weight: 800;
  font-size: 0.88rem;
  color: var(--marketing-text);
}

.about-trust-badge__hint {
  font-size: 0.76rem;
  color: var(--marketing-text-muted);
  line-height: 1.35;
}

.about-trust-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-trust-card h3 {
  margin-top: 0;
}

.about-trust-card p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.about-journey-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
}

.about-journey-stat {
  flex: 1 1 200px;
  padding: 20px 22px;
  border-radius: var(--marketing-radius-md);
  background:
    linear-gradient(180deg, rgba(67, 216, 133, 0.1), transparent),
    var(--marketing-surface);
  border: 1px solid var(--marketing-border);
}

.about-journey-stat__value {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--marketing-green-900);
  line-height: 1.15;
}

.about-journey-stat__label {
  display: block;
  margin-top: 6px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--marketing-text-soft);
  line-height: 1.4;
}

.about-timeline-card {
  padding: 28px 24px;
}

.about-team-section .marketing-section-header {
  margin-bottom: 20px;
}

.about-team-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  letter-spacing: -0.04em;
}

.about-team-lede {
  margin: 0.35rem 0 0;
  font-size: 1rem;
  color: var(--marketing-text-soft);
  max-width: 58ch;
}

.about-page .about-team-section .team-grid {
  gap: 16px;
}

.about-page .about-team-section .team-card {
  padding: 22px 22px 24px;
}

.about-page .about-team-section .team-role {
  margin-bottom: 4px;
}

@media (max-width: 991px) {
  .about-what-split {
    grid-template-columns: 1fr;
  }

  .about-what-figure {
    order: -1;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
  }

  .about-how-steps {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

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

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

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

@media (max-width: 575px) {
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-journey-stats {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .marketing-btn,
  .site-footer-social a,
  .social-chip,
  .site-navbar .nav-link,
  .site-navbar .dropdown-toggle,
  .country-flag,
  .country-card,
  .country-preview-card,
  .review-card,
  .review-badge,
  .review-badge-external,
  .review-source-link,
  .marketing-store-badge-link {
    transition: none;
  }
}
