:root {
  --font-display: "Sora", sans-serif;
  --font-body: "Manrope", sans-serif;

  --color-primary: #345995;
  --color-primary-strong: #20375f;
  --color-secondary: #0f6b4f;
  --color-accent: #f39237;

  --ink-strong: #0f1b30;
  --ink: #1d2d48;
  --muted: #5f7193;

  --surface: rgba(255, 255, 255, 0.9);
  --surface-solid: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.72);
  --line: rgba(52, 89, 149, 0.18);
  --line-strong: rgba(52, 89, 149, 0.3);

  --shadow-soft: 0 14px 34px rgba(15, 17, 21, 0.1);
  --shadow-md: 0 22px 60px rgba(15, 17, 21, 0.14);

  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;

  --sector-generic: #345995;
  --sector-caf: #146c43;
  --sector-condo: #ba5b1e;
  --sector-study: #8a6b08;
}

@font-face {
  font-display: block;
  font-family: Roboto;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/7529907e9eaf8ebb5220c5f9850e3811.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/normal/normal/25c678feafdc175a70922a116c9be3e7.woff)
      format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 600;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/6e9caeeafb1f3491be3e32744bc30440.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/medium/normal/71501f0d8d5aa95960f6475d5487d4c2.woff)
      format("woff");
}

@font-face {
  font-display: fallback;
  font-family: Roboto;
  font-weight: 700;
  src:
    url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/3ef7cf158f310cf752d5ad08cd0e7e60.woff2)
      format("woff2"),
    url(https://assets.brevo.com/font/Roboto/Latin/bold/normal/ece3a1d82f18b60bcce0211725c476aa.woff)
      format("woff");
}

#sib-container input:-ms-input-placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}

#sib-container input::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}

#sib-container textarea::placeholder {
  text-align: left;
  font-family: Helvetica, sans-serif;
  color: #c0ccda;
}

#sib-container a {
  text-decoration: underline;
  color: #2bb2fc;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  min-height: 100vh;
  background:
    radial-gradient(circle at 8% -10%, rgba(243, 146, 55, 0.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(52, 89, 149, 0.2), transparent 32%),
    linear-gradient(128deg, #fcebdc 0%, #e8effb 45%, #dce8f8 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.brevo-popup-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--ink-strong);
}

p {
  color: var(--muted);
}

.container {
  width: min(1180px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.grid-lines {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(52, 89, 149, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(52, 89, 149, 0.075) 1px, transparent 1px);
  background-size: 130px 130px;
  opacity: 0.2;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
  transform-origin: left center;
  transform: scaleX(0);
  z-index: 60;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.76);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  height: 35px;
  width: auto;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.header-links > a {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 750;
  padding: 0.64rem 1.05rem;
  border: 1px solid transparent;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-primary {
  color: #111820;
  background: linear-gradient(135deg, var(--color-accent), #f7b572);
  box-shadow: 0 10px 22px rgba(243, 146, 55, 0.34);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(243, 146, 55, 0.4);
}

.btn-outline {
  border-color: var(--line-strong);
  background: #fff;
  color: var(--color-primary-strong);
}

.btn-outline:hover {
  border-color: rgba(52, 89, 149, 0.48);
}

main {
  overflow: hidden;
}

.section {
  padding: clamp(2.2rem, 5.5vw, 4.4rem) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
}

.section-intro {
  margin-top: 0.72rem;
  max-width: 74ch;
  font-size: 1.02rem;
}

.hero {
  padding: clamp(2.8rem, 6vw, 4.5rem) 0 2.2rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(1.2rem, 3vw, 2rem);
  align-items: stretch;
}

.hero-copy {
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.9) 0%, rgba(247, 250, 255, 0.78) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.1rem, 3vw, 2rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.34rem 0.78rem;
  background: rgba(52, 89, 149, 0.12);
  border: 1px solid rgba(52, 89, 149, 0.22);
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin-top: 0.95rem;
  font-size: clamp(2rem, 4.1vw, 3.25rem);
}

.hero-subhead {
  margin-top: 0.9rem;
  font-size: 1.07rem;
  max-width: 62ch;
}

.hero-note {
  margin-top: 0.82rem;
  font-size: 0.98rem;
  color: #46618f;
}

.hero-actions {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.hero-meta {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(52, 89, 149, 0.2);
  background: rgba(255, 255, 255, 0.78);
  color: #395986;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 0.26rem 0.62rem;
}

.hero-ui {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}

.ui-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.95rem;
}

.ui-main {
  min-height: 250px;
}

.ui-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.ui-card-head strong {
  color: var(--ink-strong);
  font-size: 0.98rem;
}

.ui-state {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.21rem 0.56rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.ui-state.is-live {
  color: #075a41;
  background: rgba(15, 107, 79, 0.15);
  border: 1px solid rgba(15, 107, 79, 0.24);
}

.ui-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  padding: 0.46rem 0;
  border-bottom: 1px dashed rgba(52, 89, 149, 0.2);
}

.ui-row:last-of-type {
  border-bottom: 0;
}

.ui-row span {
  color: var(--muted);
  font-size: 0.92rem;
}

.ui-row strong {
  color: #1f3359;
}

.ui-bars {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.45rem;
}

.ui-bars span {
  display: block;
  height: 9px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 89, 149, 0.92), rgba(243, 146, 55, 0.92));
}

.ui-side ul {
  display: grid;
  gap: 0.48rem;
  list-style: none;
}

.ui-side li {
  display: flex;
  align-items: center;
  gap: 0.48rem;
  color: #2b4676;
  font-size: 0.92rem;
  font-weight: 650;
}

.sector-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.sector-dot.is-generic {
  background: var(--sector-generic);
}

.sector-dot.is-caf {
  background: var(--sector-caf);
}

.sector-dot.is-condo {
  background: var(--sector-condo);
}

.sector-dot.is-study {
  background: var(--sector-study);
}

.trust-strip {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.trust-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.78rem;
}

.trust-item strong {
  color: var(--ink-strong);
  font-family: var(--font-display);
  font-size: 1rem;
}

.trust-item span {
  display: block;
  margin-top: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.feature-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.feature-card {
  position: relative;
  background: linear-gradient(152deg, rgba(255, 255, 255, 0.92), rgba(248, 251, 255, 0.8));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(52, 89, 149, 0.38);
}

.feature-primary {
  grid-column: 1 / -1;
}

.feature-media {
  margin: -1rem -1rem 0.84rem;
  border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 12px 12px;
  overflow: hidden;
  border-bottom: 1px solid rgba(52, 89, 149, 0.18);
  background: #dce6f7;
}

.feature-media img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 0.34s ease;
}

.feature-primary .feature-media img {
  height: 260px;
}

.feature-card:hover .feature-media img {
  transform: scale(1.06);
}

.feature-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-size: 0.83rem;
  color: var(--muted);
}

.category {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.2rem 0.58rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.category.is-generic {
  color: #1f4f98;
  border-color: rgba(52, 89, 149, 0.32);
  background: rgba(52, 89, 149, 0.1);
}

.category.is-caf {
  color: #0c5b39;
  border-color: rgba(15, 107, 79, 0.28);
  background: rgba(15, 107, 79, 0.11);
}

.category.is-condo {
  color: #995014;
  border-color: rgba(186, 91, 30, 0.3);
  background: rgba(186, 91, 30, 0.11);
}

.category.is-study {
  color: #795d05;
  border-color: rgba(138, 107, 8, 0.3);
  background: rgba(138, 107, 8, 0.12);
}

.feature-card h3 {
  margin-top: 0.58rem;
  font-size: clamp(1.16rem, 2.15vw, 1.5rem);
}

.feature-card p {
  margin-top: 0.68rem;
}

.card-hook {
  margin-top: 0.75rem;
  padding-top: 0.72rem;
  border-top: 1px solid rgba(52, 89, 149, 0.17);
  color: #304f83;
  font-weight: 650;
}

.card-link {
  margin-top: 0.72rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-primary-strong);
}

.card-link::after {
  content: "->";
  transition: transform 0.2s ease;
}

.feature-card:hover .card-link::after {
  transform: translateX(3px);
}

.cluster-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
}

.cluster-tabs {
  position: sticky;
  top: 106px;
  display: grid;
  gap: 0.46rem;
}

.cluster-tab {
  text-align: left;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 0.72rem 0.8rem;
  font-size: 0.92rem;
  font-weight: 720;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cluster-tab:hover {
  transform: translateX(2px);
  border-color: rgba(52, 89, 149, 0.42);
}

.cluster-tab.is-active {
  border-color: rgba(52, 89, 149, 0.5);
  background: rgba(52, 89, 149, 0.12);
  color: #18345f;
}

.cluster-panel {
  display: none;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.cluster-panel.is-active {
  display: block;
}

.cluster-panel h3 {
  margin-top: 0.62rem;
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
}

.cluster-panel p {
  margin-top: 0.7rem;
}

.cluster-panel ul {
  margin-top: 0.75rem;
  padding-left: 1.1rem;
  color: var(--muted);
}

.cluster-panel li + li {
  margin-top: 0.35rem;
}

.inline-link {
  margin-top: 0.85rem;
  display: inline-flex;
  color: var(--color-primary-strong);
  font-weight: 740;
  border-bottom: 1px solid rgba(52, 89, 149, 0.42);
}

.cluster-links {
  margin-top: 0.85rem;
  display: grid;
  gap: 0.36rem;
}

.cluster-links .inline-link {
  margin-top: 0;
  width: fit-content;
}

.final-cta {
  padding-top: clamp(2.4rem, 6vw, 4.8rem);
}

.cta-shell {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1rem;
  background:
    radial-gradient(circle at 2% 0%, rgba(243, 146, 55, 0.25), transparent 22%),
    radial-gradient(circle at 96% 8%, rgba(52, 89, 149, 0.26), transparent 25%),
    linear-gradient(145deg, #fefefe, #f3f7ff);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: clamp(1rem, 3vw, 1.7rem);
}

.cta-copy h2 {
  font-size: clamp(1.55rem, 3vw, 2.45rem);
}

.cta-copy p {
  margin-top: 0.72rem;
}

.cta-checklist {
  margin-top: 0.82rem;
  display: grid;
  gap: 0.46rem;
  list-style: none;
}

.cta-checklist li {
  position: relative;
  padding-left: 1.02rem;
  color: #355583;
  font-weight: 600;
}

.cta-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.cta-proof {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.92rem;
  display: grid;
  gap: 0.78rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.52rem;
}

.proof-grid article {
  border: 1px dashed rgba(52, 89, 149, 0.32);
  border-radius: 10px;
  padding: 0.6rem;
  background: rgba(255, 255, 255, 0.82);
}

.proof-label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 780;
  color: #4a6998;
}

.proof-grid strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.95rem;
  color: var(--ink-strong);
}

.cta-proof blockquote {
  margin: 0;
  border-left: 3px solid rgba(52, 89, 149, 0.36);
  padding: 0.55rem 0.68rem;
  color: #355583;
  font-size: 0.92rem;
  background: rgba(52, 89, 149, 0.06);
  border-radius: 10px;
}

.proof-mini-ui {
  display: grid;
  gap: 0.45rem;
}

.proof-mini-ui span {
  display: block;
  height: 10px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(52, 89, 149, 0.92), rgba(15, 107, 79, 0.86));
}

.footer {
  padding: 2rem 0 5rem;
}

.footer-inner {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  text-align: center;
  padding: 0.9rem;
}

.footer-inner p + p {
  margin-top: 0.3rem;
}

.sticky-demo-rail {
  position: fixed;
  right: 14px;
  top: 52%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right top;
  z-index: 45;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(135deg, var(--color-accent), #f7b572);
  border: 1px solid rgba(243, 146, 55, 0.48);
  color: #111820;
  padding: 0.56rem 0.88rem;
  font-size: 0.82rem;
  font-weight: 780;
  box-shadow: 0 14px 26px rgba(243, 146, 55, 0.28);
}

.mobile-demo-cta {
  position: fixed;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 50;
  border-radius: 999px;
  text-align: center;
  padding: 0.78rem 1rem;
  font-size: 0.95rem;
  font-weight: 780;
  color: #111820;
  background: linear-gradient(135deg, var(--color-accent), #f7b572);
  box-shadow: 0 14px 30px rgba(243, 146, 55, 0.35);
  border: 1px solid rgba(243, 146, 55, 0.5);
  display: none;
}

.brevo-popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(15, 17, 21, 0.68);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.brevo-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.brevo-popup-dialog {
  position: relative;
  width: min(760px, 100%);
  max-height: calc(100vh - 2rem);
  border-radius: 20px;
  border: 1px solid rgba(52, 89, 149, 0.3);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36);
  overflow: hidden;
}

.brevo-popup-close {
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(15, 17, 21, 0.78);
  color: #fff;
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  z-index: 1;
}

.brevo-popup-content {
  width: 100%;
  max-height: calc(100vh - 2rem);
  overflow: auto;
  padding: 2.6rem 1rem 1rem;
  background: #eff2f7;
}

.brevo-popup-content #sib-form-container,
.brevo-popup-content #sib-container,
.brevo-popup-content .sib-form-message-panel {
  max-width: 100% !important;
}

.brevo-popup-content .sib-form {
  background-color: transparent !important;
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.breadcrumb span {
  opacity: 0.85;
}

.article-page .container {
  width: min(1220px, calc(100% - 2.4rem));
}

.article-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.article-side {
  position: sticky;
  top: 108px;
  align-self: start;
  display: grid;
  gap: 0.72rem;
}

.side-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 0.86rem;
}

.side-card h3 {
  font-size: 1rem;
  color: var(--ink-strong);
}

.side-card p {
  margin-top: 0.55rem;
  font-size: 0.92rem;
}

.side-toc {
  margin-top: 0.65rem;
  list-style: none;
  display: grid;
  gap: 0.43rem;
}

.side-toc li {
  border-left: 2px solid rgba(52, 89, 149, 0.2);
  padding-left: 0.5rem;
}

.side-toc a {
  color: #2d4d7d;
  font-weight: 650;
  font-size: 0.9rem;
}

.side-toc a:hover {
  color: #173963;
}

.side-cta .btn {
  margin-top: 0.72rem;
  width: 100%;
}

.article {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 2rem);
}

.article-enhanced {
  min-width: 0;
}

.article-head {
  margin-bottom: 0.9rem;
}

.article-lead {
  margin-top: 0.78rem;
  font-size: 1.05rem;
  color: #3d5b89;
}

.article-cover {
  margin-top: 0.82rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(52, 89, 149, 0.22);
  box-shadow: 0 14px 28px rgba(15, 17, 21, 0.14);
}

.article-cover img {
  width: 100%;
  height: min(360px, 40vw);
  min-height: 220px;
  object-fit: cover;
}

.article-kpis {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.56rem;
}

.article-kpis article {
  background: rgba(52, 89, 149, 0.07);
  border: 1px solid rgba(52, 89, 149, 0.2);
  border-radius: 10px;
  padding: 0.54rem;
}

.article-kpis strong {
  display: block;
  color: var(--ink-strong);
  font-size: 0.92rem;
}

.article-kpis span {
  display: block;
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.84rem;
}

.insight-box {
  margin: 0.95rem 0 1.25rem;
  border: 1px solid rgba(15, 107, 79, 0.26);
  border-radius: 12px;
  padding: 0.82rem;
  background: linear-gradient(145deg, rgba(15, 107, 79, 0.09), rgba(52, 89, 149, 0.06));
}

.insight-title {
  margin: 0;
  font-size: 1.15rem;
}

.insight-box ul {
  margin-top: 0.6rem;
}

.article p + p,
.article p + ul,
.article p + ol,
.article ul + p,
.article ol + p,
.article h2,
.article h3 {
  margin-top: 1rem;
}

.article ul,
.article ol {
  padding-left: 1.2rem;
  color: var(--muted);
}

.article h1 {
  margin-top: 0.6rem;
  font-size: clamp(1.6rem, 3.4vw, 2.5rem);
}

.article h2 {
  font-size: clamp(1.28rem, 2.5vw, 1.9rem);
}

.article h3 {
  font-size: 1.15rem;
}

.article h2[id] {
  scroll-margin-top: 108px;
}

.article-cta {
  margin-top: 1.3rem;
  padding: 0.95rem;
  border: 1px solid rgba(52, 89, 149, 0.26);
  border-radius: var(--radius-sm);
  background: linear-gradient(145deg, rgba(52, 89, 149, 0.08), rgba(15, 107, 79, 0.07));
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(52, 89, 149, 0.2);
}

th,
td {
  text-align: left;
  padding: 0.62rem 0.7rem;
  border-bottom: 1px solid rgba(52, 89, 149, 0.12);
  font-size: 0.95rem;
}

th {
  background: rgba(52, 89, 149, 0.08);
  font-family: var(--font-display);
  color: #1f3255;
}

.note {
  margin-top: 0.8rem;
  font-size: 0.9rem;
}

@media (max-width: 1180px) {
  .sticky-demo-rail {
    display: none;
  }
}

@media (max-width: 1020px) {
  .hero-layout,
  .cta-shell {
    grid-template-columns: 1fr;
  }

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

  .article-shell {
    grid-template-columns: 1fr;
  }

  .article-side {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cluster-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .feature-grid,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .feature-primary {
    grid-column: auto;
  }

  .section-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .header-links {
    gap: 0.55rem;
  }

  .header-links > a {
    font-size: 0.9rem;
  }

  .btn {
    padding: 0.58rem 0.88rem;
  }

  .proof-grid {
    grid-template-columns: 1fr;
  }

  .feature-primary .feature-media img {
    height: 210px;
  }

  .article-kpis {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: 72px;
  }

  .header-links > a:not(.btn) {
    display: none;
  }

  .cluster-tabs {
    grid-template-columns: 1fr;
  }

  .article-side {
    grid-template-columns: 1fr;
  }

  .mobile-demo-cta {
    display: block;
  }

  .brevo-popup-overlay {
    padding: 0.55rem;
  }

  .brevo-popup-dialog {
    width: 100%;
    max-height: calc(100vh - 1.1rem);
    border-radius: 16px;
  }

  .brevo-popup-content {
    max-height: calc(100vh - 1.1rem);
    padding: 2.4rem 0.6rem 0.7rem;
  }

  main {
    padding-bottom: 5.8rem;
  }

  .footer {
    padding-bottom: 6.2rem;
  }
}
