/* ==========================================================
 * VabcV-ERP — Public landing stylesheet
 * Made by: Bert Rendon · 2026 · AB CleanLoop Group
 * Scoped: .public-* / .landing-* prefixes to avoid leak into
 *         the authenticated app shell (vabcv.css owns that).
 * ========================================================== */

:root {
  --pub-sidebar:        #0b3d5c;
  --pub-sidebar-dark:   #082c43;
  --pub-primary:        #2094c7;
  --pub-primary-hover:  #1d7fa8;
  --pub-accent:         #4fb3d9;
  --pub-accent-light:   #e8f4fa;

  --pub-amber:          #f59e0b;
  --pub-amber-bg:       #fff4e0;
  --pub-amber-dark:     #854f0b;

  --pub-red:            #dc2626;
  --pub-red-light:      #fde6e6;
  --pub-green:          #17a34a;
  --pub-green-light:    #d1f4dd;

  --pub-bg:             #f8fafb;
  --pub-white:          #ffffff;
  --pub-text:           #0f1c2b;
  --pub-text-body:      #1a2634;
  --pub-text-muted:     #6b7a85;
  --pub-text-dim:       #9ba7b0;

  --pub-border:         #e4ebf0;
  --pub-border-strong:  #ccd8e0;

  --pub-radius-sm:      8px;
  --pub-radius-md:      14px;
  --pub-radius-lg:      20px;

  --pub-shadow-sm:      0 2px 6px rgba(11, 61, 92, 0.06);
  --pub-shadow-md:      0 8px 24px rgba(11, 61, 92, 0.10);
  --pub-shadow-lg:      0 12px 32px rgba(0, 0, 0, 0.25);
}

* { box-sizing: border-box; }

html, body {
  margin: 0; padding: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--pub-text-body);
  background: var(--pub-white);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pub-primary); text-decoration: none; }
a:hover { color: var(--pub-primary-hover); }

img { max-width: 100%; display: block; }

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

/* ============================================================ */
/* TOPBAR (sticky)                                              */
/* ============================================================ */
.public-topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--pub-border);
}
.public-topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.public-brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--pub-text); font-weight: 700; letter-spacing: -0.01em;
  font-size: 17px;
}
.public-brand-logo {
  width: 40px; height: 40px;
  background: #fff;
  padding: 4px;
  border-radius: var(--pub-radius-sm);
  box-shadow: var(--pub-shadow-sm);
  display: flex; align-items: center; justify-content: center;
}
.public-brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.public-brand-name span { color: var(--pub-primary); }

/* ---- Burger button + panel ---- */
.burger-btn {
  width: 40px; height: 40px;
  border: 1px solid var(--pub-border);
  background: var(--pub-white);
  border-radius: var(--pub-radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.burger-btn:hover { border-color: var(--pub-primary); }
.burger-btn:focus-visible { outline: 2px solid var(--pub-primary); outline-offset: 2px; }
.burger-btn svg { width: 22px; height: 22px; color: var(--pub-text); }

.burger-backdrop {
  position: fixed; inset: 0;
  background: rgba(11, 28, 43, 0.32);
  backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden;
  transition: opacity 200ms ease, visibility 200ms ease;
  z-index: 90;
}
.burger-backdrop.open { opacity: 1; visibility: visible; }

.burger-panel {
  position: fixed; top: 76px; right: 16px;
  width: 280px;
  background: var(--pub-white);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-md);
  box-shadow: var(--pub-shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px) scale(0.97);
  transform-origin: top right;
  transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  z-index: 100;
}
.burger-panel.open {
  opacity: 1; visibility: visible;
  transform: translateY(0) scale(1);
}
.burger-link {
  display: block;
  padding: 14px 16px;
  border-radius: var(--pub-radius-sm);
  color: var(--pub-text);
  font-weight: 500;
  font-size: 15px;
  transition: background 120ms ease, color 120ms ease;
}
.burger-link:hover { background: var(--pub-accent-light); color: var(--pub-primary); }
.burger-link small {
  display: block;
  color: var(--pub-text-muted);
  font-size: 12px;
  font-weight: 400;
  margin-top: 2px;
}

/* ============================================================ */
/* HERO                                                          */
/* ============================================================ */
.public-hero {
  background:
    radial-gradient(circle at 75% 15%, rgba(79, 179, 217, 0.20) 0%, transparent 55%),
    linear-gradient(135deg, var(--pub-sidebar) 0%, var(--pub-sidebar-dark) 100%);
  color: #eef6fb;
  padding: 80px 0 96px;
  text-align: center;
}
.hero-logo {
  width: 110px; height: 110px;
  background: #fff;
  padding: 14px;
  border-radius: var(--pub-radius-lg);
  box-shadow: var(--pub-shadow-lg);
  margin: 0 auto 28px;
  object-fit: contain;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(245, 158, 11, 0.16);
  color: #fde2a4;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  border: 1px solid rgba(245, 158, 11, 0.3);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--pub-amber);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.85); }
}
.hero-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 880px; margin-left: auto; margin-right: auto;
}
.hero-subtitle {
  font-size: clamp(16px, 1.6vw, 19px);
  color: #c7dceb;
  max-width: 720px;
  margin: 0 auto 36px;
}
.hero-ctas {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-pub {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px;
  border-radius: var(--pub-radius-md);
  font-weight: 600; font-size: 15px;
  border: none; cursor: pointer;
  transition: transform 150ms ease, box-shadow 150ms ease;
}
.btn-pub:hover { transform: translateY(-1px); box-shadow: var(--pub-shadow-md); }
.btn-primary-pub { background: var(--pub-primary); color: #fff; }
.btn-primary-pub:hover { background: var(--pub-primary-hover); color: #fff; }
.btn-ghost-pub {
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,0.32);
}
.btn-ghost-pub:hover { background: rgba(255,255,255,0.08); color: #fff; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; max-width: 760px; margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat-num {
  font-size: 28px; font-weight: 700; color: var(--pub-accent);
  font-feature-settings: 'tnum';
}
.hero-stat-label { font-size: 13px; color: #9eb6c9; }

@media (max-width: 720px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================ */
/* SECTION SCAFFOLD                                              */
/* ============================================================ */
.public-section {
  padding: 80px 0;
}
.public-section.alt { background: var(--pub-bg); }
.public-section.dark {
  background: linear-gradient(135deg, var(--pub-sidebar) 0%, var(--pub-sidebar-dark) 100%);
  color: #d9e8f2;
}
.public-section.dark .section-title { color: #fff; }
.public-section.dark .section-kicker { color: var(--pub-accent); }
.public-section.dark .card-pub {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: #d9e8f2;
}
.public-section.dark .card-pub h3 { color: #fff; }
.public-section.dark .card-pub p  { color: #b6cad9; }

.section-kicker {
  display: inline-block;
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.10em;
  color: var(--pub-primary);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700; letter-spacing: -0.02em;
  margin: 0 0 16px; color: var(--pub-text);
  line-height: 1.15;
}
.section-lead {
  font-size: 17px; color: var(--pub-text-muted);
  max-width: 680px; margin-bottom: 48px;
}
.section-header-center {
  text-align: center;
  max-width: 720px; margin: 0 auto 56px;
}
.section-header-center .section-lead { margin: 0 auto; }

/* ============================================================ */
/* ALANUBE BANNER                                                */
/* ============================================================ */
.alanube-banner {
  background: linear-gradient(135deg, var(--pub-amber-bg) 0%, #ffe9c2 100%);
  border: 1px solid rgba(245, 158, 11, 0.4);
  border-left: 6px solid var(--pub-amber);
  border-radius: var(--pub-radius-md);
  padding: 32px 36px;
  box-shadow: var(--pub-shadow-sm);
}
.alanube-tag {
  display: inline-block;
  background: var(--pub-amber);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.alanube-title {
  font-size: 24px; font-weight: 700;
  color: var(--pub-amber-dark);
  margin: 0 0 12px;
}
.alanube-text { color: #6b4f1d; margin: 0 0 18px; line-height: 1.6; }
.alanube-status {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.7);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 500;
  color: var(--pub-amber-dark);
  border: 1px solid rgba(245, 158, 11, 0.4);
}
.alanube-status .dot {
  width: 8px; height: 8px; background: var(--pub-amber);
  border-radius: 50%; animation: pulse 1.8s ease-in-out infinite;
}

/* ============================================================ */
/* GRIDS / CARDS                                                 */
/* ============================================================ */
.grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.grid-3 {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card-pub {
  background: #fff;
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-md);
  padding: 28px;
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
}
.card-pub:hover {
  transform: translateY(-2px);
  box-shadow: var(--pub-shadow-md);
  border-color: var(--pub-accent);
}
.card-pub h3 {
  font-size: 18px; font-weight: 700; margin: 0 0 8px;
  color: var(--pub-text);
}
.card-pub p { margin: 0; color: var(--pub-text-muted); font-size: 14px; line-height: 1.6; }

.feature-icon {
  width: 44px; height: 44px;
  background: var(--pub-accent-light);
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--pub-primary);
  margin-bottom: 14px;
}
.feature-icon svg { width: 22px; height: 22px; }

/* ---- Problema / Solución ---- */
.problem-card {
  border-left: 4px solid var(--pub-red);
  background: #fff7f7;
  padding: 28px;
  border-radius: var(--pub-radius-md);
}
.problem-card h3 { color: var(--pub-red); margin: 0 0 12px; }
.problem-card ul { margin: 0; padding-left: 20px; color: #6b3a3a; }
.problem-card li { margin-bottom: 8px; line-height: 1.55; }

.solution-card {
  border-left: 4px solid var(--pub-primary);
  background: var(--pub-accent-light);
  padding: 28px;
  border-radius: var(--pub-radius-md);
}
.solution-card h3 { color: var(--pub-primary); margin: 0 0 12px; }
.solution-card ul { margin: 0; padding-left: 20px; color: #134e6b; }
.solution-card li { margin-bottom: 8px; line-height: 1.55; }

/* ---- Módulos showcase rows ---- */
.module-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px;
  align-items: center;
  padding: 48px 0;
}
.module-row.reverse > div:first-child { order: 2; }
@media (max-width: 900px) {
  .module-row, .module-row.reverse > div:first-child { grid-template-columns: 1fr; order: 0; }
  .module-row { gap: 28px; padding: 32px 0; }
}
.module-tag {
  display: inline-block;
  background: var(--pub-accent-light);
  color: var(--pub-primary);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 12px;
}
.module-title { font-size: 26px; font-weight: 700; margin: 0 0 14px; color: var(--pub-text); }
.module-text { color: var(--pub-text-muted); font-size: 15px; line-height: 1.65; margin-bottom: 18px; }
.module-list { margin: 0; padding-left: 20px; color: var(--pub-text-body); font-size: 14px; }
.module-list li { margin-bottom: 6px; }

.mock-card {
  background: #fff;
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-md);
  padding: 24px;
  box-shadow: var(--pub-shadow-md);
}
.mock-card.invoice .mock-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding-bottom: 16px; border-bottom: 1px solid var(--pub-border); margin-bottom: 16px;
}
.mock-card.invoice .ncf {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; background: var(--pub-accent-light); color: var(--pub-primary);
  padding: 4px 10px; border-radius: 6px;
}
.mock-card.invoice .mock-row {
  display: flex; justify-content: space-between; padding: 6px 0; font-size: 14px;
}
.mock-card.invoice .mock-total {
  display: flex; justify-content: space-between;
  padding-top: 12px; margin-top: 12px;
  border-top: 1px solid var(--pub-border);
  font-weight: 700; color: var(--pub-text);
}

.chat-mock {
  background: #e7e0d8;
  border-radius: var(--pub-radius-md);
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
}
.chat-bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.45;
}
.chat-bubble.client { background: #fff; align-self: flex-start; }
.chat-bubble.bot    { background: #dcf8c6; align-self: flex-end; }

.country-card {
  background: #fff;
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-md);
  padding: 18px;
  text-align: center;
}
.country-flag { font-size: 32px; margin-bottom: 8px; }
.country-name { font-weight: 700; color: var(--pub-text); margin-bottom: 4px; }
.country-tax  { font-size: 12px; color: var(--pub-text-muted); font-family: 'JetBrains Mono', monospace; }

/* ============================================================ */
/* TIMELINE                                                      */
/* ============================================================ */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 32px;
}
.timeline::before {
  content: ''; position: absolute;
  left: 11px; top: 6px; bottom: 6px;
  width: 2px; background: var(--pub-border);
}
.timeline-item {
  position: relative; padding-bottom: 28px;
}
.timeline-item::before {
  content: ''; position: absolute;
  left: -28px; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%; background: #fff;
  border: 3px solid var(--pub-border-strong);
}
.timeline-item.done::before { background: var(--pub-green); border-color: var(--pub-green); }
.timeline-item.active::before { background: var(--pub-amber); border-color: var(--pub-amber); box-shadow: 0 0 0 4px rgba(245,158,11,0.18); animation: pulse 1.8s ease-in-out infinite; }
.timeline-item.future::before { background: #fff; border-color: var(--pub-primary); }
.timeline-date { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pub-text-muted); margin-bottom: 4px; }
.timeline-title { font-size: 16px; font-weight: 700; color: var(--pub-text); margin-bottom: 4px; }
.timeline-text { font-size: 14px; color: var(--pub-text-muted); margin: 0; }

/* ============================================================ */
/* PRICING                                                       */
/* ============================================================ */
.pricing-card {
  background: #fff;
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-md);
  padding: 32px 28px;
  position: relative;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--pub-primary);
  box-shadow: 0 16px 40px rgba(32, 148, 199, 0.18);
  transform: translateY(-8px);
}
.pricing-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--pub-primary); color: #fff;
  padding: 4px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
}
.pricing-name { font-size: 16px; font-weight: 600; color: var(--pub-text-muted); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 12px; }
.pricing-price { font-size: 36px; font-weight: 800; color: var(--pub-text); margin-bottom: 4px; }
.pricing-price small { font-size: 13px; font-weight: 400; color: var(--pub-text-muted); }
.pricing-tag { font-size: 13px; color: var(--pub-text-muted); margin-bottom: 24px; }
.pricing-list { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.pricing-list li {
  padding: 8px 0;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--pub-text-body);
  border-top: 1px solid var(--pub-border);
}
.pricing-list li:first-child { border-top: 0; }
.pricing-list .ck { color: var(--pub-green); flex: 0 0 16px; margin-top: 3px; }
.pricing-note { font-size: 12px; color: var(--pub-text-muted); font-style: italic; margin-top: -8px; margin-bottom: 16px; }
.pricing-cta {
  display: block; text-align: center;
  padding: 12px 18px;
  border-radius: var(--pub-radius-sm);
  font-weight: 600; font-size: 14px;
  background: var(--pub-accent-light); color: var(--pub-primary);
  border: 1px solid transparent;
}
.pricing-cta:hover { background: var(--pub-primary); color: #fff; }
.pricing-card.featured .pricing-cta { background: var(--pub-primary); color: #fff; }
.pricing-card.featured .pricing-cta:hover { background: var(--pub-primary-hover); }

/* ============================================================ */
/* TRACTION                                                      */
/* ============================================================ */
.traction-card {
  background: linear-gradient(135deg, var(--pub-accent-light) 0%, #fff 100%);
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-md);
  padding: 24px;
  text-align: center;
}
.traction-num {
  font-size: 36px; font-weight: 800;
  color: var(--pub-primary);
  font-feature-settings: 'tnum';
  margin-bottom: 8px;
}
.traction-label {
  font-size: 13px;
  color: var(--pub-text-muted);
  line-height: 1.5;
}

/* ============================================================ */
/* FOUNDER                                                       */
/* ============================================================ */
.founder-card {
  display: grid; grid-template-columns: 140px 1fr; gap: 28px;
  background: #fff;
  border: 1px solid var(--pub-border);
  border-radius: var(--pub-radius-lg);
  padding: 36px;
  box-shadow: var(--pub-shadow-sm);
  max-width: 820px; margin: 0 auto;
}
@media (max-width: 720px) {
  .founder-card { grid-template-columns: 1fr; text-align: center; }
}
.founder-avatar {
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--pub-primary) 0%, var(--pub-sidebar) 100%);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px; font-weight: 800;
  letter-spacing: -0.02em;
}
.founder-name { font-size: 22px; font-weight: 700; margin: 0 0 4px; color: var(--pub-text); }
.founder-role { font-size: 14px; color: var(--pub-primary); margin: 0 0 14px; font-weight: 600; }
.founder-bio { color: var(--pub-text-muted); font-size: 14px; line-height: 1.65; margin-bottom: 16px; }
.cred-chip {
  display: inline-block;
  background: var(--pub-accent-light); color: var(--pub-primary);
  padding: 4px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500;
  margin: 0 6px 6px 0;
}

/* ============================================================ */
/* FINAL CTA                                                     */
/* ============================================================ */
.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--pub-sidebar-dark) 0%, var(--pub-sidebar) 100%);
  color: #fff;
  padding: 96px 24px;
}
.final-cta h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  margin: 0 0 18px;
}
.final-cta p {
  color: #b6cad9;
  font-size: 17px;
  max-width: 580px;
  margin: 0 auto 36px;
}
.final-cta .btn-pub {
  font-size: 17px;
  padding: 18px 36px;
}
.final-cta .url-hint {
  margin-top: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--pub-accent);
}

/* ============================================================ */
/* FOOTER                                                        */
/* ============================================================ */
.public-footer {
  background: var(--pub-sidebar-dark);
  color: #aabfd0;
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
.footer-brand {
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.footer-brand-logo {
  width: 36px; height: 36px;
  background: #fff; padding: 3px;
  border-radius: var(--pub-radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.footer-brand-logo img { width: 100%; height: 100%; object-fit: contain; }
.footer-brand-name { color: #fff; font-weight: 700; font-size: 16px; }
.footer-brand-name span { color: var(--pub-accent); }
.footer-tag { font-size: 13px; color: #8da3b4; line-height: 1.6; margin: 0; max-width: 280px; }
.footer-col h4 {
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0 0 14px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; font-size: 14px; }
.footer-col a { color: #aabfd0; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: #7d92a4;
}
.footer-bottom strong { color: #d8e6f1; }
