/* ==========================================================================
   David PSP — Clean Light Fintech Design System
   Rich Technical Background, Brand Logo & Mobile-Optimized
   ========================================================================== */

:root {
  /* Light Theme Palette */
  --bg-body: #FAFBFD;
  --bg-subtle: #F1F5F9;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFFFF;
  --bg-tint: #EEF4FF;
  
  /* Borders */
  --border-light: #E2E8F0;
  --border-medium: #CBD5E1;
  --border-active: #0052FF;
  
  /* Brand Colors */
  --brand-navy: #0A1B39;
  --brand-blue: #0052FF;
  --brand-blue-hover: #0045D8;
  --brand-blue-light: #EEF4FF;
  --brand-cyan: #0284C7;
  --brand-emerald: #059669;

  /* Typography Colors */
  --text-primary: #0A1B39;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-white: #FFFFFF;

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Radii */
  --radius-xs: 6px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Natural Fintech Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 27, 57, 0.04);
  --shadow-card: 0 2px 8px -2px rgba(10, 27, 57, 0.06), 0 1px 3px rgba(10, 27, 57, 0.04);
  --shadow-hover: 0 12px 28px -6px rgba(10, 27, 57, 0.1), 0 2px 6px rgba(10, 27, 57, 0.04);
  --shadow-dropdown: 0 12px 32px rgba(10, 27, 57, 0.12);

  /* Transitions */
  --transition: 0.18s ease;
}

/* ==========================================================================
   Base Reset & Rich Background
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  /* Rich subtle fintech dot-grid background */
  background-image: 
    radial-gradient(rgba(10, 27, 57, 0.07) 1px, transparent 1px),
    linear-gradient(to right, rgba(10, 27, 57, 0.015) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 27, 57, 0.015) 1px, transparent 1px);
  background-size: 24px 24px, 72px 72px, 72px 72px;
}

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

/* ==========================================
   Badges & Indicators
   ========================================== */
.clean-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 13px;
  background: var(--brand-blue-light);
  border: 1px solid #D6E4FF;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-blue);
  margin-bottom: 18px;
}

.geo-detected-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-full);
  font-size: 12.5px;
  font-weight: 600;
  color: #065F46;
}

/* ==========================================
   Buttons
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition);
  outline: none;
  font-family: inherit;
  white-space: nowrap;
}

.btn-primary {
  background: var(--brand-navy);
  color: var(--text-white);
  box-shadow: 0 2px 6px rgba(10, 27, 57, 0.15);
}

.btn-primary:hover {
  background: #12284e;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(10, 27, 57, 0.22);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #FFFFFF;
  color: var(--brand-navy);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: #94A3B8;
  transform: translateY(-1px);
}

/* ==========================================
   Navbar
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  transition: all var(--transition);
}

.navbar--scrolled {
  box-shadow: 0 2px 14px rgba(10, 27, 57, 0.07);
}

.navbar__inner {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--brand-navy);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.navbar-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  display: block;
}

.brand-dot {
  color: var(--brand-blue);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.navbar__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color var(--transition);
}

.navbar__link:hover {
  color: var(--brand-navy);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Language Switcher */
.lang-dropdown {
  position: relative;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-navy);
  cursor: pointer;
  transition: all var(--transition);
}

.lang-btn:hover {
  background: var(--bg-subtle);
  border-color: var(--border-medium);
}

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #FFFFFF;
  border-radius: var(--radius-xs);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-dropdown);
  min-width: 135px;
  padding: 6px;
  display: none;
  z-index: 100;
}

.lang-dropdown.active .lang-dropdown-menu {
  display: block;
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: background var(--transition);
}

.lang-option:hover, .lang-option.active {
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  font-weight: 600;
}

.btn-nav-login {
  padding: 8px 18px;
  font-size: 13px;
}

.navbar__burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.navbar__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--brand-navy);
  border-radius: 2px;
  transition: all 0.25s ease;
}

/* ==========================================
   Hero Section with Layered Tech Background
   ========================================== */
.hero {
  padding-top: 136px;
  padding-bottom: 70px;
  position: relative;
  overflow: hidden;
  text-align: center;
  background: 
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(219, 234, 254, 0.5) 0%, rgba(255, 255, 255, 0) 80%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFBFD 100%);
  border-bottom: 1px solid var(--border-light);
}

/* Subtle architectural orbital arcs in hero */
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 82, 255, 0.12);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1250px;
  height: 1250px;
  border-radius: 50%;
  border: 1px solid rgba(10, 27, 57, 0.04);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  max-width: 880px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(32px, 4.4vw, 54px);
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -0.03em;
  color: var(--brand-navy);
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(15.5px, 1.6vw, 18px);
  color: var(--text-secondary);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 34px;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

/* Metrics Strip */
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  max-width: 960px;
  margin: 0 auto;
}

.metric-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.metric-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-light);
}

.metric-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--brand-navy);
  letter-spacing: -0.02em;
}

.metric-label {
  font-size: 13px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-top: 2px;
}

/* ==========================================
   Sections Common
   ========================================== */
.section {
  padding: 88px 0;
  position: relative;
}

.section--subtle {
  background: rgba(241, 245, 249, 0.6);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--brand-navy);
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   Solutions (Clean White 6-Card Grid)
   ========================================== */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.solution-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.solution-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.solution-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-blue-light);
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.solution-icon svg {
  width: 22px;
  height: 22px;
}

.solution-title {
  font-size: 17.5px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}

.solution-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   Flow Architecture
   ========================================== */
.flow-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.flow-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.flow-step-btn {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
}

.flow-step-btn:hover, .flow-step-btn.active {
  background: #FFFFFF;
  border-color: var(--brand-navy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.flow-step-btn.active {
  border-color: var(--brand-blue);
  background: var(--brand-blue-light);
}

.step-num {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 4px;
}

.step-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 2px;
}

.step-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.flow-inspector {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--brand-blue);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.flow-inspector strong {
  color: var(--brand-navy);
}

/* ==========================================
   Partner Markets Hub
   ========================================== */
.markets-hub {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}

.region-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.region-btn {
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition);
}

.region-btn:hover, .region-btn.active {
  background: var(--brand-navy);
  color: var(--text-white);
  border-color: var(--brand-navy);
}

.market-chips-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-bottom: 24px;
  max-height: 260px;
  overflow-y: auto;
  padding: 4px;
}

.market-chip {
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-navy);
  transition: all var(--transition);
}

.market-chip:hover, .market-chip.active {
  background: #FFFFFF;
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.market-active-panel {
  background: var(--brand-blue-light);
  border: 1px solid #D6E4FF;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.market-active-text h4 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.market-active-text p {
  font-size: 13.5px;
  color: var(--text-secondary);
  max-width: 620px;
}

/* ==========================================
   Verticals
   ========================================== */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.vertical-card {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 26px 22px;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.vertical-card:hover {
  border-color: var(--brand-blue);
  transform: translateY(-2px);
}

.vertical-tag {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 8px;
}

.vertical-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-navy);
  margin-bottom: 8px;
}

.vertical-text {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================
   Founder Quote
   ========================================== */
.quote-card {
  background: var(--brand-navy);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  color: var(--text-white);
  box-shadow: var(--shadow-card);
}

.quote-body {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  line-height: 1.65;
  color: #E2E8F0;
  margin-bottom: 24px;
}

.quote-author-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1E3A6B;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
}

.quote-author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
}

.quote-author-role {
  font-size: 13px;
  color: #94A3B8;
}

/* ==========================================
   CTA Box
   ========================================== */
.cta-box {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 52px 36px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.cta-box .section-title {
  margin-bottom: 12px;
}

.cta-box .section-desc {
  max-width: 560px;
  margin: 0 auto 28px;
}

/* ==========================================
   Footer
   ========================================== */
.footer {
  background: #061122;
  color: #94A3B8;
  padding: 60px 0 32px;
  border-top: 1px solid var(--border-light);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 28px;
}

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

.footer-brand-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-white);
  font-size: 19px;
  font-weight: 800;
}

.footer-logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 13.5px;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--text-white);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #94A3B8;
  font-size: 13px;
  text-decoration: none;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--text-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================
   Floating Messenger Actions
   ========================================== */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.floating-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-white);
  box-shadow: 0 3px 12px rgba(10, 27, 57, 0.18);
  transition: all var(--transition);
}

.floating-pill svg {
  width: 15px;
  height: 15px;
}

.floating-pill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(10, 27, 57, 0.25);
}

.floating-pill--dark {
  background: var(--brand-navy);
}

.floating-pill--blue {
  background: #0088cc;
}

.floating-pill--green {
  background: #25d366;
}

/* ==========================================
   Modal
   ========================================== */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 27, 57, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-window {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  max-width: 420px;
  width: 100%;
  padding: 30px 26px;
  box-shadow: var(--shadow-dropdown);
  position: relative;
  transform: scale(0.97);
  transition: transform 0.2s ease;
}

.modal-backdrop.active .modal-window {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
}

.modal-close:hover {
  color: var(--brand-navy);
}

.modal-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.modal-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.input-group {
  margin-bottom: 12px;
  text-align: left;
}

.input-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-navy);
  margin-bottom: 4px;
}

.input-field {
  width: 100%;
  padding: 10px 12px;
  font-size: 13.5px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-xs);
  outline: none;
  font-family: inherit;
}

.input-field:focus {
  border-color: var(--brand-blue);
}

/* ==========================================================================
   Mobile Perfection
   ========================================================================== */
@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .flow-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  
  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .metric-box:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .navbar__menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 18px;
    box-shadow: 0 10px 25px rgba(10, 27, 57, 0.1);
    border-bottom: 1px solid var(--border-light);
    gap: 16px;
    align-items: flex-start;
  }
  
  .navbar__menu.open {
    display: flex;
  }
  
  .navbar__link {
    font-size: 15px;
    width: 100%;
    padding: 6px 0;
    border-bottom: 1px solid var(--border-light);
  }

  .navbar__burger {
    display: flex;
  }

  .hero {
    padding-top: 100px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: 28px;
    margin-bottom: 14px;
  }

  .hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 32px;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .metrics-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 16px 12px;
    gap: 14px;
  }

  .metric-value {
    font-size: 22px;
  }

  .metric-label {
    font-size: 12px;
  }

  .section {
    padding: 60px 0;
  }

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

  .section-title {
    font-size: 24px;
  }

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

  .solution-card {
    padding: 22px 20px;
  }

  .flow-box, .markets-hub {
    padding: 24px 18px;
  }

  .flow-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .flow-step-btn {
    padding: 10px 8px;
  }

  .step-title {
    font-size: 12px;
  }

  .region-tabs {
    gap: 6px;
  }

  .region-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  .market-chips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .market-active-panel {
    flex-direction: column;
    align-items: stretch;
    padding: 18px 16px;
  }

  .market-active-panel .btn {
    width: 100%;
  }

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

  .quote-card {
    padding: 28px 20px;
  }

  .quote-body {
    font-size: 15px;
    margin-bottom: 18px;
  }

  .cta-box {
    padding: 36px 20px;
  }

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

  .floating-actions {
    bottom: 12px;
    right: 12px;
    gap: 6px;
  }

  .floating-pill {
    padding: 6px 12px;
    font-size: 11px;
  }
}
