﻿/* ============================================
   JOBOTOP — Navbar + Footer + Shared UI CSS
   ============================================ */

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  border-bottom: 1px solid transparent;
  height: 64px;
}

#navbar.scrolled {
  border-bottom-color: var(--n200);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.navbar-inner {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--n700);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.12s, border-color 0.12s;
}

.navbar-links a:hover { color: var(--navy); }
.navbar-links a.active {
  color: var(--navy);
  border-bottom-color: var(--orange);
  font-weight: 600;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--navy);
  border-radius: var(--radius-md);
  transition: background 0.12s;
}
.navbar-hamburger:hover { background: var(--n100); }

/* ---- MOBILE INSTALL BAR ---- */
.mobile-install-bar {
  display: none;
}

@media (max-width: 820px) {
  body.has-mobile-install-bar {
    padding-top: calc(var(--page-existing-padding-top, 0px) + var(--mobile-install-bar-height, 54px));
  }

  body.has-mobile-install-bar #navbar {
    top: var(--mobile-install-bar-height, 54px);
  }

  .mobile-install-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1250;
    min-height: var(--mobile-install-bar-height, 54px);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px 8px 14px;
    background: #071a33;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 8px 24px rgba(10,31,61,0.18);
  }

  .mobile-install-bar-icon {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 7px;
    background: rgba(255,255,255,0.08);
    object-fit: contain;
    display: block;
  }

  .mobile-install-bar-text {
    min-width: 0;
    flex: 1;
    display: grid;
    gap: 1px;
  }

  .mobile-install-bar-text strong {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.15;
  }

  .mobile-install-bar-text span {
    color: rgba(255,255,255,0.68);
    font-size: 11.5px;
    line-height: 1.25;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .mobile-install-bar-action {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: var(--radius-md);
    background: var(--orange);
    color: #071a33;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }

  .mobile-install-bar-close {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 0;
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.75);
    background: transparent;
    cursor: pointer;
  }

  .mobile-install-bar-close:active {
    background: rgba(255,255,255,0.08);
  }
}

/* ---- MOBILE DRAWER ---- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 100vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  padding: 20px 24px 40px;
  transition: right 0.25s ease;
}

.mobile-drawer.open { right: 0; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}

.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  padding: 4px;
  border-radius: var(--radius-md);
  transition: color 0.12s;
}
.drawer-close:hover { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.mobile-nav a {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.12s;
}
.mobile-nav a:hover { color: #fff; }

.mobile-drawer-cta {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
}

/* ---- FOOTER ---- */
#footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 64px 0 0;
}

.footer-inner {}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {}
.footer-brand .brand-logo { height: 30px; width: auto; margin-bottom: 18px; display: block; }
.mobile-drawer-header .brand-logo { height: 26px; width: auto; }
.navbar-logo .brand-logo { height: 30px; width: auto; display: block; }

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
  margin-top: 12px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
}

.footer-contact a,
.footer-contact span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.12s;
}
.footer-contact a:hover { color: #fff; }

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-socials a {
  color: rgba(255,255,255,0.40);
  transition: color 0.12s;
}
.footer-socials a:hover { color: rgba(255,255,255,0.80); }

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 16px;
}

.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  line-height: 2.2;
  transition: color 0.12s;
}
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.30);
}

/* ---- SCROLL FADE ---- */
/* Initial hidden state is set by JS only — no CSS default hiding */
[data-fade].fade-init {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
[data-fade].fade-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (prefers-reduced-motion: reduce) {
  [data-fade].fade-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ---- NAVBAR HERO OVERRIDE (fond foncé) ---- */
.logo-light { display: none; }
.logo-dark  { display: block; }

.navbar-hero #navbar:not(.scrolled) .logo-dark  { display: none; }
.navbar-hero #navbar:not(.scrolled) .logo-light { display: block; }

.navbar-hero #navbar {
  background: transparent;
  border-bottom-color: transparent;
}
.navbar-hero #navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--n200);
}
.navbar-hero #navbar:not(.scrolled) .navbar-links a { color: rgba(255,255,255,0.75); }
.navbar-hero #navbar:not(.scrolled) .navbar-links a:hover { color: #fff; }
.navbar-hero #navbar:not(.scrolled) .navbar-links a.active { color: #fff; border-bottom-color: var(--orange); }
.navbar-hero #navbar:not(.scrolled) .btn-ghost { color: rgba(255,255,255,0.80); border-color: rgba(255,255,255,0.25); }
.navbar-hero #navbar:not(.scrolled) .btn-ghost:hover { background: rgba(255,255,255,0.08); }
.navbar-hero #navbar:not(.scrolled) .navbar-hamburger { color: rgba(255,255,255,0.80); }

/* ---- PRICING TOGGLE ---- */
.pricing-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}
.pricing-toggle-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--n700);
  cursor: pointer;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--n300);
  border-radius: 999px;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  top: 3px;
  left: 3px;
  transition: transform 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--navy); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.annual-badge {
  display: none;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}

/* ---- PRICING CARDS ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: 48px;
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--n200);
  border-radius: 16px;
  padding: 32px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}
.pricing-card:hover {
  box-shadow: 0 8px 40px rgba(10,31,61,0.10);
  transform: translateY(-3px);
  border-color: var(--n300);
}

.pricing-card.featured {
  background: #0A1F3D;
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(10,31,61,0.35);
  transform: scale(1.02);
}
.pricing-card.featured:hover {
  transform: scale(1.02) translateY(-3px);
  box-shadow: 0 28px 72px rgba(10,31,61,0.40);
}

.pricing-tier {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.pricing-card.featured .pricing-tier { color: rgba(255,255,255,0.50); }

.pricing-desc {
  font-size: 14px;
  color: var(--n600);
  margin-top: 4px;
  line-height: 1.5;
}
.pricing-card.featured .pricing-desc { color: rgba(255,255,255,0.60); }

.pricing-price {
  margin: 20px 0;
}
.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--navy);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.pricing-card.featured .pricing-amount { color: #fff; }
.pricing-currency {
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,0.70); }
.pricing-per {
  font-size: 14px;
  color: var(--n500);
  margin-top: 4px;
}
.pricing-card.featured .pricing-per { color: rgba(255,255,255,0.40); }

.pricing-divider {
  border: none;
  border-top: 1px solid var(--n200);
  margin: 20px 0;
}
.pricing-card.featured .pricing-divider { border-top-color: rgba(255,255,255,0.12); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--n700);
  line-height: 1.45;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,0.80); }
.pricing-features .check-icon { color: var(--success); flex-shrink: 0; margin-top: 1px; }
.pricing-card.featured .check-icon { color: var(--orange); }
.pricing-features .dash { color: var(--n400); flex-shrink: 0; margin-top: 1px; }

.pricing-note {
  text-align: center;
  font-size: 12px;
  color: var(--n500);
  margin-top: 12px;
}
.pricing-card.featured .pricing-note { color: rgba(255,255,255,0.30); }

.pricing-recommended {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ---- CTA SECTION (navy bg) ---- */
.cta-section {
  background: linear-gradient(135deg, #0A1F3D 0%, #0F2849 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-section .cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta-reassurance {
  margin-top: 20px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.40);
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---- COMPARISON TABLE ---- */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
}
.compare-table th {
  padding: 14px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--n600);
  border-bottom: 2px solid var(--n200);
  text-align: left;
}
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td {
  padding: 12px 16px;
  font-size: 14px;
  color: var(--n700);
  border-bottom: 1px solid var(--n100);
}
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .check-yes { color: var(--success); }
.compare-table .check-no  { color: var(--n400); }
.compare-table .cat-header td {
  background: var(--n50);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--n600);
  padding: 8px 16px;
}

/* ---- GUARANTEES ---- */
.guarantee-card {
  text-align: center;
  padding: 32px 24px;
}
.guarantee-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(10,31,61,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--navy);
}

/* ---- CONTENT / TRUST / SEO PAGES ---- */
.content-page {
  padding-top: 64px;
  background: #fff;
}

.content-hero {
  background: #fff;
  padding: 78px 0 54px;
  border-bottom: 1px solid var(--n200);
}

.content-hero .content-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 56px;
  align-items: center;
}

.content-hero-narrow {
  max-width: 820px;
}

.content-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.content-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

.content-lead {
  max-width: 680px;
  color: var(--n600);
  font-size: 18px;
  line-height: 1.75;
  margin-top: 18px;
}

.content-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.content-meta-panel,
.product-snapshot {
  background: var(--n50);
  border: 1px solid var(--n200);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.content-visual-stack {
  display: grid;
  gap: 14px;
}

.content-photo-panel {
  position: relative;
  min-height: 210px;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--n200);
  background: var(--n100);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}

.content-photo-panel img {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
}

.content-photo-panel::after {
  content: none;
}

.content-photo-panel figcaption {
  min-height: 58px;
  padding: 12px 14px;
  border-top: 1px solid var(--n200);
  background: #fff;
  color: var(--navy);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.35;
  display: flex;
  align-items: center;
}

.content-meta-panel h2,
.content-meta-panel h3,
.product-snapshot h2,
.product-snapshot h3 {
  font-size: 14px;
  color: var(--navy);
  margin-bottom: 14px;
}

.content-meta-list {
  display: grid;
  gap: 12px;
}

.content-meta-item {
  border-top: 1px solid var(--n200);
  padding-top: 12px;
}

.content-meta-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.content-meta-label {
  display: block;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--n500);
}

.content-meta-value {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  color: var(--n800);
  line-height: 1.55;
}

.content-band {
  padding: 72px 0;
  background: #fff;
}

.content-band.alt {
  background: var(--n50);
}

.content-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.content-toc {
  position: sticky;
  top: 88px;
  border-left: 3px solid var(--orange);
  padding-left: 18px;
}

.content-toc-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--n500);
  margin-bottom: 10px;
}

.content-toc a {
  display: block;
  color: var(--n700);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  padding: 6px 0;
}

.content-toc a:hover {
  color: var(--navy);
}

.content-article {
  max-width: 840px;
}

.content-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--n200);
  scroll-margin-top: 100px;
}

.content-section:first-child {
  padding-top: 0;
}

.content-section:last-child {
  border-bottom: 0;
}

.content-section h2 {
  color: var(--navy);
  font-size: 26px;
  line-height: 1.25;
  margin-bottom: 14px;
}

.content-section h3 {
  color: var(--n900);
  font-size: 17px;
  line-height: 1.35;
  margin: 22px 0 8px;
}

.content-section p {
  color: var(--n700);
  margin: 10px 0;
}

.content-section ul,
.content-section ol {
  padding-left: 20px;
  margin: 12px 0;
  color: var(--n700);
}

.content-section li {
  margin: 7px 0;
}

.content-note {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-left: 3px solid var(--warning);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  color: #7c4a03;
  font-size: 14px;
  line-height: 1.65;
  margin: 18px 0;
}

.content-source-list {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.content-source-list a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  overflow-wrap: anywhere;
}

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

.content-card {
  background: #fff;
  border: 1px solid var(--n200);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.content-card h3 {
  color: var(--navy);
  font-size: 17px;
  margin-bottom: 8px;
}

.content-card p {
  color: var(--n600);
  font-size: 14px;
  line-height: 1.65;
}

.product-snapshot {
  background: #071a33;
  color: #fff;
  padding: 18px;
  box-shadow: var(--shadow-navy);
}

.product-snapshot-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}

.product-snapshot-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,0.24);
}

.product-snapshot-url {
  margin-left: 8px;
  flex: 1;
  min-width: 0;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.46);
  font-size: 10px;
  padding: 3px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-snapshot-body {
  background: #f8f9fa;
  border-radius: var(--radius-lg);
  color: var(--n900);
  overflow: hidden;
}

.product-snapshot-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--n200);
}

.product-snapshot-title {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
}

.product-snapshot-chip {
  background: rgba(244,166,44,0.16);
  color: #a46400;
  border-radius: 999px;
  padding: 2px 8px;
  font-size: 10px;
  font-weight: 800;
}

.product-snapshot-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px;
}

.product-snapshot-kpi {
  background: #fff;
  border: 1px solid var(--n200);
  border-radius: var(--radius-md);
  padding: 10px;
}

.product-snapshot-kpi strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
  line-height: 1;
}

.product-snapshot-kpi span {
  display: block;
  color: var(--n500);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 5px;
}

.product-snapshot-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) 72px;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid var(--n100);
  font-size: 12px;
}

.product-snapshot-row strong {
  color: var(--n900);
}

.product-snapshot-row span {
  color: var(--n600);
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.workflow-step {
  background: #fff;
  border: 1px solid var(--n200);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-lg);
  padding: 18px;
}

.workflow-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 10px;
}

.workflow-step h3 {
  color: var(--navy);
  font-size: 16px;
  margin-bottom: 6px;
}

.workflow-step p {
  color: var(--n600);
  font-size: 13.5px;
  line-height: 1.6;
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.related-links a {
  border: 1px solid var(--n200);
  border-radius: var(--radius-md);
  color: var(--navy);
  background: #fff;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.related-links a:hover {
  border-color: var(--orange);
}

.content-spaced-title {
  margin-bottom: 36px;
}

/* ---- RESPONSIVE OVERRIDES ---- */
@media (max-width: 1023px) {
  .navbar-links { display: none; }
  .navbar-cta   { display: none; }
  .navbar-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .content-hero .content-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .content-layout { grid-template-columns: 1fr; }
  .content-toc { position: static; }
  .content-card-grid { grid-template-columns: 1fr 1fr; }
  .workflow-list { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 639px) {
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .content-hero { padding: 54px 0 38px; }
  .content-lead { font-size: 16px; }
  .content-card-grid,
  .workflow-list,
  .product-snapshot-kpis { grid-template-columns: 1fr; }
  .product-snapshot-row { grid-template-columns: 1fr; gap: 3px; }
  .content-hero-actions .btn { width: 100%; justify-content: center; }
}
