/* ==========================================================================
   Octelligence - Marketing Site Design System
   Premium governance + corporate records. Clean editorial style with a
   corporate-seal palette (navy + gold).
   ========================================================================== */

/* --- Design tokens --- */
:root {
  --font-sans: "Manrope", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Source Serif 4", "Georgia", serif;

  --ink-900: #0b1220;
  --ink-800: #101a2d;
  --ink-700: #18243b;
  --steel-500: #4a5877;
  --steel-400: #64718c;
  --steel-300: #8693ab;

  --surface: #ffffff;
  --surface-elevated: #fcfdff;
  --app-bg: #f4f6fb;

  --text: #0b1220;
  --text-secondary: #475569;
  --muted: #7a879a;

  --border: #e2e8f0;
  --border-light: #edf2f7;

  --shadow-sm: 0 1px 2px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 16px 40px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 30px 70px rgba(11, 18, 32, 0.14);

  --radius-sm: 0.45rem;
  --radius-md: 0.65rem;
  --radius-lg: 0.9rem;
  --radius-xl: 1.2rem;

  /* Minute Book brand accents */
  --accent-primary: #1e40af;
  --accent-strong:  #1e3a8a;
  --accent-soft:    #e3ebfb;
  --accent-blue:    #1d4ed8;
  --accent-indigo:  #4f46e5;
  --accent-amber:   #b97f1c;
  --accent-amber-soft: #fbead0;
  --accent-emerald: #0e9e6e;

  --navy-dark: #0b1220;
  --navy-mid:  #111a2a;
  --navy-light: #1b2a43;
  --topbar: #0b1220;

  --container-max: 1200px;
  --section-pad: 6rem;
}

/* --- Base --- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--app-bg);
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.015em;
  color: var(--text);
}

@media (min-width: 1400px) {
  .container { max-width: var(--container-max); }
}

/* ==========================================================================
   Navbar
   ========================================================================== */
.site-nav {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: none;
  backdrop-filter: blur(10px);
  padding-top: .55rem;
  padding-bottom: .55rem;
}
.site-nav .navbar-brand img { height: 40px; }
.site-nav .nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.9rem;
  transition: color 0.15s ease;
}
.site-nav .nav-link:hover,
.site-nav .nav-link:focus { color: var(--text); }
.site-nav .nav-link.active { color: var(--text); font-weight: 600; }
.site-nav .navbar-toggler { border-color: rgba(11, 18, 32, 0.2); }

.site-nav .btn-cta-login {
  border: 1px solid rgba(11, 18, 32, 0.2);
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  background: transparent;
}
.site-nav .btn-cta-login:hover {
  background: rgba(11, 18, 32, 0.05);
  border-color: rgba(11, 18, 32, 0.35);
  color: var(--text);
}
.site-nav .btn-cta-register {
  background: var(--ink-900);
  color: #ffffff;
  border: 1px solid var(--ink-900);
  font-size: 0.9rem;
  font-weight: 600;
}
.site-nav .btn-cta-register:hover {
  background: #0a101c;
  border-color: #0a101c;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(11, 18, 32, 0.18);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn { font-weight: 600; border-radius: var(--radius-md); }
.btn-primary {
  background-color: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.12);
}
.btn-primary:hover {
  background-color: #0a101c;
  border-color: #0a101c;
  box-shadow: 0 12px 28px rgba(11, 18, 32, 0.16);
}
.btn-outline-primary {
  color: var(--ink-900);
  border-color: rgba(11, 18, 32, 0.3);
  background: transparent;
}
.btn-outline-primary:hover {
  background-color: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}
.btn-light {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--ink-900);
}

/* ==========================================================================
   MBC product hero (light)
   ========================================================================== */
.mbc-hero {
  background: #ffffff;
  padding: 5.5rem 0 5rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}
.mbc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 45% at 105% 0%, rgba(30,64,175,.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at -5% 105%, rgba(185,127,28,.06) 0%, transparent 55%);
  pointer-events: none;
}
.mbc-hero__inner { position: relative; z-index: 1; }

.mbc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgb(98 170 182 / 8%);
  border: 1px solid rgb(80 149 173 / 18%);
  color: #08759e;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .36rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}
.mbc-eyebrow--amber {
  background: rgba(185,127,28,.1);
  border-color: rgba(185,127,28,.22);
  color: #8a5c10;
}
.mbc-eyebrow--teal {
  background: rgba(14,158,110,.1);
  border-color: rgba(14,158,110,.22);
  color: #0b7a55;
}

.mbc-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.7rem, 5.2vw, 4.2rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
}
.mbc-hero__title em {
  font-style: normal;
  color: #08759e;
}
.mbc-hero__sub {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 500px;
  margin-bottom: 2.25rem;
}
.mbc-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1.9rem;
}
.mbc-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.4rem;
  color: var(--muted);
  font-size: .82rem;
}
.mbc-hero__trust span { display: inline-flex; align-items: center; gap: .4rem; }
.mbc-hero__trust i { color: var(--accent-emerald); font-size: .78rem; }

.mbc-cta-dark {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--ink-900);
  color: #ffffff !important;
  font-weight: 700;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  text-decoration: none !important;
  transition: all .18s ease;
  border: 1px solid var(--ink-900);
  letter-spacing: -0.01em;
}
.mbc-cta-dark:hover {
  background: #0a101c;
  border-color: #0a101c;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(11,18,32,.2);
  color: #ffffff !important;
}
.mbc-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--text-secondary) !important;
  font-weight: 600;
  padding: .85rem 1.6rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  border: 1px solid rgba(11,18,32,.16);
  text-decoration: none !important;
  transition: all .18s ease;
  background: transparent;
}
.mbc-cta-ghost:hover {
  border-color: rgba(11,18,32,.3);
  color: var(--text) !important;
  background: rgba(11,18,32,.03);
}
.mbc-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: #08759e;
  color: #fff !important;
  font-weight: 700;
  padding: .85rem 1.85rem;
  border-radius: var(--radius-md);
  font-size: .95rem;
  text-decoration: none !important;
  transition: all .18s ease;
  border: 1px solid #08759e;
}
.mbc-cta-primary:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(30,64,175,.25);
}

/* ==========================================================================
   Device frame (screenshot wrapper)
   ========================================================================== */
.mbc-device {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  background: #0d1521;
  box-shadow:
    0 0 0 1px rgba(13,21,33,.05),
    0 24px 60px rgba(13,21,33,.12),
    0 4px 12px rgba(13,21,33,.06);
  display: block;
}
.mbc-device img { display: block; width: 100%; height: auto; }
.mbc-device--hero {
  border-radius: 14px;
  box-shadow:
    0 0 0 1px rgba(13,21,33,.06),
    0 40px 100px rgba(13,21,33,.16),
    0 6px 20px rgba(13,21,33,.08);
}
.mbc-device--showcase {
  border-radius: 16px 16px 0 0;
  box-shadow:
    0 0 0 1px rgba(13,21,33,.05),
    0 -20px 80px rgba(13,21,33,.18);
}

/* --- Zoomable screenshot (click/keyboard to open lightbox) --- */
.mbc-device--zoomable {
  position: relative;
  cursor: zoom-in;
  transition: transform .18s ease, box-shadow .18s ease;
}
.mbc-device--zoomable::after {
  content: 'Expand';
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: .45rem .75rem;
  border-radius: 999px;
  background: rgba(11, 18, 32, .82);
  color: #ffffff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
}
.mbc-device--zoomable:hover,
.mbc-device--zoomable:focus-visible {
  transform: translateY(-2px);
}
.mbc-device--zoomable:hover::after,
.mbc-device--zoomable:focus-visible::after,
.mbc-device--zoomable:focus-within::after {
  opacity: 1;
  transform: translateY(0);
}
.mbc-device--zoomable:focus-visible {
  outline: 3px solid rgba(30, 64, 175, .35);
  outline-offset: 6px;
}

/* --- Lightbox modal --- */
body.mbc-lightbox-open { overflow: hidden; }

.mbc-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.mbc-lightbox[hidden] { display: none !important; }
.mbc-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 12, 20, .82);
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity .18s ease;
}
.mbc-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(2000px, 100%);
  opacity: 0;
  transform: translateY(14px) scale(.98);
  transition: opacity .18s ease, transform .18s ease;
}
.mbc-lightbox.is-open .mbc-lightbox__backdrop,
.mbc-lightbox.is-open .mbc-lightbox__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.mbc-lightbox__toolbar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: .85rem;
}
.mbc-lightbox__close {
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(11, 18, 32, .7);
  color: #ffffff;
  border-radius: 999px;
  padding: .6rem .95rem;
  font-size: .88rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
}
.mbc-lightbox__close:hover,
.mbc-lightbox__close:focus-visible {
  background: rgba(11, 18, 32, .92);
  border-color: rgba(255, 255, 255, .34);
  color: #ffffff;
}
.mbc-lightbox__figure {
  margin: 0;
  background: rgba(13, 21, 33, .96);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
}
.mbc-lightbox__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100vh - 8rem);
  object-fit: contain;
  background: #0d1521;
}
.mbc-lightbox__caption {
  margin: 0;
  padding: .95rem 1.1rem 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .72);
  font-size: .95rem;
  line-height: 1.5;
}

@media (max-width: 767.98px) {
  .mbc-device--zoomable::after {
    opacity: 1;
    transform: translateY(0);
    right: .75rem;
    bottom: .75rem;
  }
  .mbc-lightbox { padding: .85rem; }
  .mbc-lightbox__toolbar { margin-bottom: .65rem; }
  .mbc-lightbox__image { max-height: calc(100vh - 6.75rem); }
}

@media (prefers-reduced-motion: reduce) {
  .mbc-device--zoomable,
  .mbc-device--zoomable::after,
  .mbc-lightbox__backdrop,
  .mbc-lightbox__dialog {
    transition: none;
  }
}

/* ==========================================================================
   Module chip strip
   ========================================================================== */
.mbc-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  padding: 1.6rem 0;
}
.mbc-strip__label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  margin-right: .75rem;
  white-space: nowrap;
}
.mbc-chip {
  display: inline-flex;
  align-items: center;
  gap: .38rem;
  background: var(--app-bg);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .32rem .85rem;
  font-size: .8rem;
  color: var(--text-secondary);
  font-weight: 500;
  white-space: nowrap;
}
.mbc-chip i { font-size: .72rem; color: var(--accent-primary); }

/* ==========================================================================
   Feature sections
   ========================================================================== */
.mbc-feat {
  padding: 6.5rem 0;
  background: var(--surface);
}
.mbc-feat--gray {
  background: #f6f9fb;
  border-top: 1px solid #edf1f7;
  border-bottom: 1px solid #edf1f7;
}
.mbc-feat__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  margin-bottom: .85rem;
  padding: .26rem .72rem;
  border-radius: 999px;
}
.mbc-feat__eyebrow--blue   { background: rgb(98 170 182 / 8%); border: 1px solid rgb(80 149 173 / 18%); color: #08759e; }
.mbc-feat__eyebrow--amber  { background: rgba(185,127,28,.1);   color: #8a5c10; }
.mbc-feat__eyebrow--teal   { background: rgba(14,158,110,.1);   color: #0b7a55; }
.mbc-feat__eyebrow--purple { background: rgba(79,70,229,.09);   color: #4f46e5; }

.mbc-feat__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: .9rem;
}
.mbc-feat__sub {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.6rem;
  max-width: 440px;
}
.mbc-feat__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.mbc-feat__list li {
  display: flex;
  align-items: flex-start;
  gap: .62rem;
  font-size: 1.04rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.5;
}
.mbc-feat__list li i {
  color: #08759e;
  margin-top: .12rem;
  flex-shrink: 0;
}
.mbc-feat__cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 1.5px solid rgba(11,18,32,.2);
  padding-bottom: 1px;
  transition: border-color .15s ease, gap .15s ease;
}
.mbc-feat__cta:hover {
  border-color: var(--ink-900);
  gap: .65rem;
  color: var(--ink-900);
}

/* ==========================================================================
   Showpiece & Dark sections
   ========================================================================== */
.mbc-showpiece {
  background: #0c1f3a;
  background-image:
    radial-gradient(ellipse 60% 50% at 50% -5%, rgba(79,70,229,.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 35% at 85% 90%, rgba(185,127,28,.11) 0%, transparent 55%);
  padding: 6.5rem 0 0;
  position: relative;
  overflow: hidden;
}
.mbc-showpiece .container { position: relative; z-index: 1; }
.mbc-showpiece__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(185,127,28,.14);
  border: 1px solid rgba(185,127,28,.28);
  color: #f0c77e;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .32rem .85rem;
  border-radius: 999px;
  margin-bottom: .85rem;
}
.mbc-showpiece__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.1rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.022em;
  margin-bottom: 1rem;
}
.mbc-showpiece__sub {
  font-size: 1.2rem;
  color: rgba(255,255,255,.62);
  line-height: 1.5;
  max-width: 620px;
  margin: 0 auto 3rem;
}

.mbc-dark-section {
  background: #0c1f3a;
  background-image:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(30,64,175,.18) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 10% 20%, rgba(185,127,28,.1) 0%, transparent 60%);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.mbc-dark-section .container { position: relative; z-index: 1; }
.mbc-section-eyebrow-light {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: rgba(240,199,126,.85);
  margin-bottom: .65rem;
}
.mbc-section-title-light {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.13;
  letter-spacing: -0.018em;
  margin-bottom: 1rem;
}
.mbc-section-sub-light {
  font-size: 1.18rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  max-width: 600px;
}

.mbc-trust-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  height: 100%;
  transition: border-color .2s ease;
}
.mbc-trust-card:hover { border-color: rgba(255,255,255,.16); }
.mbc-trust-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.mbc-trust-card__icon--blue  { background: rgba(147,197,253,.14); color: #93c5fd; }
.mbc-trust-card__icon--amber { background: rgba(252,211,77,.14);  color: #fcd34d; }
.mbc-trust-card__icon--teal  { background: rgba(52,211,153,.14);  color: #34d399; }
.mbc-trust-card__icon--purple{ background: rgba(196,181,253,.14); color: #c4b5fd; }
.mbc-trust-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .45rem;
}
.mbc-trust-card__text {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
  margin: 0;
}

/* ==========================================================================
   CTA banner
   ========================================================================== */
.cta-section {
  background: linear-gradient(135deg, #0b1220 0%, #142b55 55%, #1e3a8a 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 55%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(185,127,28,.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.6vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.15;
}
.cta-section__subtitle {
  font-size: 1.18rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 0;
}

/* ==========================================================================
   Shared site-section / cards
   ========================================================================== */
.site-section { padding: var(--section-pad) 0; }
.site-section--alt {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.site-section__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-primary);
  margin-bottom: 0.6rem;
}
.site-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw, 2.55rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.65rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.site-section__subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 700px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,64,175,.22);
}
.feature-card__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  flex-shrink: 0;
}
.feature-card__icon--blue    { background: rgba(30,64,175,.12);  color: #1e40af; }
.feature-card__icon--green   { background: rgba(14,158,110,.12); color: #0b7a55; }
.feature-card__icon--amber   { background: rgba(185,127,28,.14); color: #8a5c10; }
.feature-card__icon--teal    { background: rgba(14,158,110,.12); color: #0b7a55; }
.feature-card__icon--purple  { background: rgba(79,70,229,.12);  color: #4f46e5; }
.feature-card__icon--slate   { background: rgba(132,148,171,.12);color: #526079; }
.feature-card__icon--red     { background: rgba(220,60,60,.1);   color: #c0392b; }
.feature-card__title {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.feature-card__text {
  font-size: 0.97rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  height: 100%;
}
.step-card__number {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: var(--ink-900);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.step-card__title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.step-card__text {
  font-size: 0.94rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.info-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
}
.info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(30,64,175,.12);
  color: #1e40af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Pricing
   ========================================================================== */
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  height: 100%;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(30,64,175,.25);
}
.plan-card--featured {
  border-color: rgba(30,64,175,.55);
  border-width: 1.5px;
  box-shadow: 0 18px 40px rgba(30,64,175,.14);
}
.plan-card__badge {
  display: inline-block;
  background: rgba(30,64,175,.1);
  color: var(--accent-primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}
.plan-card__audience {
  background: var(--app-bg);
  border-radius: var(--radius-lg);
  padding: 0.7rem 0.9rem;
  margin: -0.5rem -0.5rem 1rem -0.5rem;
}
.plan-card__audience-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin: 0;
}
.plan-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.45rem;
}
.plan-card__price {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.plan-card__price span {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-secondary);
}
.plan-card__billing {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}
.plan-card__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}
.plan-card__fit-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: .75rem 0 .4rem;
}
.plan-card__fit {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
}
.plan-card__fit li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.45;
  padding: .22rem 0;
}
.plan-card__fit li::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-primary);
  margin-top: .42em;
}
.plan-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.3rem;
}
.plan-card__features li {
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
}
.plan-card__features li i {
  color: #08759e;
  margin-right: 0.5rem;
}
.plan-card__footer {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.8rem;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.billing-toggle .badge { font-size: 0.7rem; font-weight: 700; }
.billing-toggle .btn-check:checked + .btn-primary,
.billing-toggle .btn-check:checked + .btn-primary:hover,
.billing-toggle .btn-check:checked + .btn-primary:focus {
  background-color: #08759e;
  border-color: #08759e;
  color: #fff;
  box-shadow: 0 8px 20px rgba(8, 117, 158, 0.16);
}

.compare-section {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 5rem 0;
}
.compare-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.compare-table .table { margin: 0; }
.compare-table .table th,
.compare-table .table td {
  padding: .7rem 1.1rem;
  font-size: .88rem;
  vertical-align: middle;
  border-color: var(--border-light);
}
.compare-table .table thead th {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--muted);
  background: var(--app-bg);
  border-bottom: 1px solid var(--border);
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.compare-table .table thead th:first-child { color: var(--text-secondary); }
.compare-table .table .section-row th {
  background: #f8fafc;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  padding: .55rem 1.1rem;
  border-top: 1px solid var(--border-light);
}
.compare-table .table .text-check { color: #08759e; }
.compare-table .table .text-dash { color: var(--border); }

.pricing-compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
}
.pricing-compare-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}
.pricing-compare-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .38rem 0;
  border-bottom: 1px solid var(--border-light);
  font-size: .88rem;
}
.pricing-compare-row:last-of-type { border-bottom: none; }

/* ==========================================================================
   Contact form card
   ========================================================================== */
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.contact-card__info {
  background: var(--app-bg);
  padding: 2rem;
}
.contact-card__form { padding: 2rem; }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-control, .form-select {
  border-color: var(--border);
  border-radius: var(--radius-md);
  padding: 0.6rem 0.9rem;
  font-size: 0.95rem;
  color: var(--text);
  background-color: #fff;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(30,64,175,.5);
  box-shadow: 0 0 0 0.2rem rgba(30,64,175,.18);
}
.form-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 0.3rem;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.site-faq .accordion-item,
.pricing-faq .accordion-item {
  border-color: var(--border);
}
.site-faq .accordion-button,
.pricing-faq .accordion-button {
  font-weight: 600;
  font-size: .98rem;
  color: var(--text);
  background: var(--surface);
}
.site-faq .accordion-button:not(.collapsed),
.pricing-faq .accordion-button:not(.collapsed) {
  color: var(--accent-primary);
  background: rgba(30,64,175,.04);
  box-shadow: none;
}
.site-faq .accordion-button:focus,
.pricing-faq .accordion-button:focus {
  border-color: rgba(30,64,175,.35);
  box-shadow: 0 0 0 0.2rem rgba(30,64,175,.12);
}
.site-faq .accordion-body,
.pricing-faq .accordion-body {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.6;
}
.pricing-faq { padding: 5rem 0; background: var(--app-bg); }

/* ==========================================================================
   Solution pages
   ========================================================================== */
.solution-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  padding: 5.75rem 0 4.5rem;
  border-bottom: 1px solid var(--border-light);
}
.solution-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 52% 46% at 100% 0%, rgba(30,64,175,.09) 0%, transparent 56%),
    radial-gradient(ellipse 48% 40% at 0% 100%, rgba(185,127,28,.07) 0%, transparent 58%);
  pointer-events: none;
}
.solution-hero .container { position: relative; z-index: 1; }
.solution-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgb(98 170 182 / 8%);
  border: 1px solid rgb(80 149 173 / 18%);
  color: #08759e;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .36rem .9rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.solution-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1.1rem;
  color: var(--text);
  max-width: 18ch;
}
.solution-hero__sub {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 590px;
  margin-bottom: 1.8rem;
}
.solution-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
  margin-bottom: 1rem;
}
.solution-hero__support { font-size: .9rem; color: var(--muted); }

.sol-panel {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 2rem 2rem;
  position: relative;
  overflow: hidden;
}
.sol-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1e40af 0%, #b97f1c 100%);
}
.sol-panel__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  margin-bottom: 1.5rem;
  padding-top: .5rem;
}
.sol-panel__items { display: flex; flex-direction: column; }
.sol-panel__item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-light);
}
.sol-panel__item:first-child { padding-top: 0; }
.sol-panel__item:last-child { border-bottom: none; padding-bottom: 0; }
.sol-panel__item-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  background: rgba(30,64,175,.1);
  color: var(--accent-primary);
  margin-top: .1rem;
}
.sol-panel__item-icon--amber  { background: rgba(185,127,28,.12); color: #8a5c10; }
.sol-panel__item-icon--purple { background: rgba(79,70,229,.12);  color: #4f46e5; }
.sol-panel__item-icon--teal   { background: rgba(14,158,110,.12); color: #0b7a55; }
.sol-panel__item-title {
  font-size: .93rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .2rem;
  line-height: 1.3;
}
.sol-panel__item-text {
  font-size: .84rem;
  line-height: 1.5;
  color: var(--text-secondary);
  margin: 0;
}

.drift-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  padding: 1.5rem;
}
.drift-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}
.drift-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .9rem;
}
.drift-card__list li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: .9rem;
  align-items: start;
}
.drift-card__dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #1e40af 0%, #b97f1c 100%);
  box-shadow: 0 0 0 5px rgba(30,64,175,.08);
  margin-top: .35rem;
}
.drift-card__title {
  font-size: .96rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .18rem;
}
.drift-card__text {
  font-size: .91rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

.solution-card__link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  margin-top: 1rem;
  color: var(--ink-900);
  font-size: .94rem;
  font-weight: 700;
  text-decoration: none;
  transition: gap .16s ease, color .16s ease;
}
.solution-card__link:hover { gap: .65rem; color: var(--ink-900); }
.solution-copy {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-secondary);
}
.solution-copy p:last-child { margin-bottom: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: #0b1220;
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer__brand {
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.0rem;
  max-width: 320px;
  font-weight: bold;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.15s;
}
.site-footer a:hover { color: rgba(255, 255, 255, 0.96); }
.site-footer__copy {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
.site-footer__utility {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 14px;
}
.site-footer__utility-link {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  padding: 2px 0;
}
.site-footer__utility-link:hover { color: #fff; text-decoration: underline; }
.site-footer__utility-link--primary { color: #fff; font-weight: 700; }
.site-footer__sep { color: rgba(255,255,255,.35); }
.site-footer__social { display: flex; align-items: center; gap: 1rem; }
.site-footer__social-link {
  color: rgba(255,255,255,.55);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color .2s ease, transform .15s ease;
}
.site-footer__social-link:hover { color: #fff; transform: translateY(-1px); }

/* ==========================================================================
   Lead-magnet CTA — reusable inline card surfacing a downloadable
   resource (e.g. share certificate template). Used on blog posts and
   solutions pages.
   ========================================================================== */
.blog-lead-magnet {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: linear-gradient(135deg, #fdf6e8 0%, #fbead0 100%);
  border: 1px solid rgba(185, 127, 28, 0.22);
  border-radius: 16px;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.blog-lead-magnet__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(185, 127, 28, 0.14);
  color: var(--accent-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.blog-lead-magnet__body { flex: 1; min-width: 0; }
.blog-lead-magnet__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8a5c10;
  margin-bottom: 0.35rem;
}
.blog-lead-magnet__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.4rem;
  line-height: 1.25;
}
.blog-lead-magnet__sub {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 0.85rem;
}
.blog-lead-magnet__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: #8a5c10;
  text-decoration: none;
  border-bottom: 1.5px solid rgba(185, 127, 28, 0.3);
  padding-bottom: 0.15rem;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.blog-lead-magnet__cta:hover {
  color: #6e4810;
  border-bottom-color: var(--accent-amber);
}
@media (max-width: 575.98px) {
  .blog-lead-magnet {
    flex-direction: column;
    padding: 1.25rem;
    gap: 1rem;
  }
}

/* ==========================================================================
   Legacy / compatibility (old pages still need to render)
   ========================================================================== */
.site-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 5rem;
  border-bottom: 1px solid var(--border-light);
  color: var(--text);
}
.site-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px circle at 95% 0%, rgba(30,64,175,.1), transparent 55%),
    radial-gradient(700px circle at 0% 100%, rgba(185,127,28,.07), transparent 55%);
  pointer-events: none;
}
.site-hero > .container { position: relative; z-index: 1; }

/* Dark hero variant (for landing pages, trust pages, etc.) */
.site-hero--landing,
.site-hero--contact {
  background:
    radial-gradient(1200px circle at 0% 0%, rgba(30, 64, 175, 0.26), transparent 45%),
    radial-gradient(900px circle at 100% 100%, rgba(185, 127, 28, 0.22), transparent 45%),
    linear-gradient(135deg, #0b1220 0%, #142b55 52%, #1e3a8a 100%);
  color: #ffffff;
  border-bottom: none;
}
.site-hero--landing::before,
.site-hero--contact::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 136px 136px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
}
.site-hero--landing .site-hero__eyebrow,
.site-hero--contact .site-hero__eyebrow {
  color: rgba(255, 255, 255, 0.72);
}
.site-hero--landing .site-hero__title,
.site-hero--contact .site-hero__title {
  color: #ffffff;
}
.site-hero--landing .site-hero__subtitle,
.site-hero--contact .site-hero__subtitle {
  color: rgba(255, 255, 255, 0.86);
}
.site-hero--landing .site-hero__trust,
.site-hero--contact .site-hero__trust {
  color: rgba(255, 255, 255, 0.72);
}
.site-hero--landing .site-hero__trust i,
.site-hero--contact .site-hero__trust i {
  color: rgba(52, 211, 153, 0.9);
}
/* Card inside dark hero */
.site-hero--landing .site-hero__card,
.site-hero--contact .site-hero__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
}
.site-hero--landing .site-hero__card h3,
.site-hero--contact .site-hero__card h3 {
  color: #ffffff;
}
.site-hero--landing .site-hero__card .text-secondary,
.site-hero--contact .site-hero__card .text-secondary {
  color: rgba(255, 255, 255, 0.78) !important;
}
/* Buttons on dark hero */
.site-hero--landing .btn-light,
.site-hero--contact .btn-light {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink-900) !important;
}
.site-hero--landing .btn-light:hover,
.site-hero--contact .btn-light:hover {
  background: #eef4ff;
  border-color: #eef4ff;
  color: var(--ink-900) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}
.site-hero--landing .btn-outline-light,
.site-hero--contact .btn-outline-light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: transparent;
}
.site-hero--landing .btn-outline-light:hover,
.site-hero--contact .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.site-hero__eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent-primary);
  margin-bottom: .65rem;
}
.site-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.site-hero__subtitle {
  font-size: 1.18rem;
  color: var(--text-secondary);
  line-height: 1.55;
  max-width: 620px;
}
.site-hero__trust { font-size: .88rem; color: var(--muted); }
.site-hero__trust i { margin-right: .5rem; color: #08759e; }
.site-hero__card {
  background: rgba(255,255,255,.98);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.site-hero__card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
}
.site-hero .btn-light {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff !important;
}
.site-hero .btn-light:hover {
  background: #0a101c;
  border-color: #0a101c;
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(11,18,32,.18);
}
.site-hero .btn-outline-light {
  color: var(--text);
  border-color: rgba(11,18,32,.25);
  background: transparent;
}
.site-hero .btn-outline-light:hover {
  background: var(--ink-900);
  border-color: var(--ink-900);
  color: #fff;
}

.pricing-diff {
  max-width: 980px;
  margin: 0 auto;
  padding: 1rem 1.35rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
}
.pricing-diff-item { color: var(--text); font-size: .92rem; font-weight: 500; }
.pricing-diff-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-primary);
  color: #fff;
  flex: 0 0 34px;
  font-size: .9rem;
}

/* Partners page old-school table compat */
.partners-hero, .hero-partners { background: #ffffff; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991.98px) {
  .site-hero { padding: 5rem 0 4rem; }
  .site-section { padding: 4.5rem 0; }
  .cta-section { padding: 4rem 0; }
  .mbc-hero { padding: 4.5rem 0 4rem; }
  .mbc-hero__title { font-size: 2.4rem; }
  .mbc-hero__sub { max-width: 100%; }
  .mbc-feat { padding: 4.5rem 0; }
  .mbc-feat__sub { max-width: 100%; }
  .mbc-showpiece { padding: 5rem 0 0; }
  .mbc-dark-section { padding: 4.5rem 0; }
}
@media (max-width: 767.98px) {
  .site-hero__title { font-size: 2rem; }
  .mbc-hero { padding: 3.5rem 0 3rem; }
  .mbc-hero__title { font-size: 1.95rem; }
  .mbc-hero__ctas { flex-direction: column; align-items: stretch; }
  .mbc-cta-dark, .mbc-cta-ghost, .mbc-cta-primary { justify-content: center; }
  .mbc-feat { padding: 3.5rem 0; }
  .mbc-showpiece { padding: 4rem 0 0; }
  .feature-card { padding: 1.4rem; }
  .plan-card__price { font-size: 2rem; }
}

/* Utilities */
.text-amber { color: var(--accent-amber) !important; }
.text-brand { color: var(--accent-primary) !important; }
.bg-brand   { background: var(--accent-primary) !important; color: #fff !important; }

/* Focus */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid rgba(30,64,175,.45);
  outline-offset: 2px;
}

/* Language switcher */
.lang-switcher__toggle,
.lang-switcher__toggle:focus,
.lang-switcher__toggle:active {
  color: #08759e;
  box-shadow: none;
}
.lang-switcher__toggle:hover {
  color: #065e80;
}
.lang-switcher .dropdown-item.active,
.lang-switcher .dropdown-item:active {
  background-color: #08759e;
  color: #fff;
}
@media (max-width: 991.98px) {
  .lang-switcher .dropdown-menu {
    right: auto;
    left: 0;
  }
}

/* Image lightbox: French label */
:lang(fr) .mbc-device--zoomable::after {
  content: 'Agrandir';
}
