:root {
  --ink: #10233f;
  --ink-soft: #42526a;
  --paper: #f6f7f2;
  --white: #ffffff;
  --line: #dce2e8;
  --primary: #155eef;
  --primary-dark: #0f45b8;
  --accent: #f4b740;
  --mint: #dff7ed;
  --mint-ink: #0f6b4f;
  --rose: #fff0eb;
  --rose-ink: #a23d22;
  --sky: #eaf2ff;
  --shadow: 0 18px 50px rgba(16, 35, 63, 0.11);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 30px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: var(--primary-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-thickness: 2px;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
}

.skip-link:focus {
  left: 12px;
}

.disclosure-bar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
}

.disclosure-bar .wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 7px 18px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(220, 226, 232, 0.9);
  background: rgba(246, 247, 242, 0.9);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 850;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 13px;
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 9px 20px rgba(21, 94, 239, 0.22);
}

.brand-mark svg {
  width: 23px;
  height: 23px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--primary);
}

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.container {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 74px;
}

.hero::before {
  position: absolute;
  inset: -150px auto auto 58%;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(21, 94, 239, 0.16), rgba(21, 94, 239, 0));
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid #cbdcfb;
  border-radius: 999px;
  color: var(--primary-dark);
  background: var(--sky);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 830px;
  margin-bottom: 23px;
  font-size: clamp(2.7rem, 6vw, 5.4rem);
  font-weight: 900;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 880;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.32rem;
  font-weight: 820;
}

.lead {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-weight: 780;
  text-decoration: none;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.btn:hover {
  transform: translateY(-1px);
  text-decoration: none;
}

.btn-primary {
  color: var(--white);
  background: var(--primary);
  box-shadow: 0 12px 25px rgba(21, 94, 239, 0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  border-color: #b8c4d1;
  background: var(--white);
}

.btn-ghost {
  color: var(--ink-soft);
  border-color: transparent;
  background: transparent;
}

.btn-small {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 11px;
  font-size: 0.92rem;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 22px;
  margin: 28px 0 0;
  padding: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
  list-style: none;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.hero-points li::before {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--mint-ink);
  background: var(--mint);
  font-size: 0.72rem;
  font-weight: 900;
  content: "✓";
}

.hero-visual {
  position: relative;
}

.diagnostic-preview {
  position: relative;
  padding: 27px;
  border: 1px solid rgba(220, 226, 232, 0.9);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.diagnostic-preview::after {
  position: absolute;
  right: -18px;
  bottom: -18px;
  z-index: -1;
  width: 110px;
  height: 110px;
  border-radius: 32px;
  background: var(--accent);
  content: "";
  transform: rotate(10deg);
}

.preview-kicker {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.preview-row:first-of-type {
  border-top: 0;
}

.preview-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  color: var(--primary-dark);
  background: var(--sky);
  font-weight: 850;
}

.preview-label strong,
.preview-label span {
  display: block;
}

.preview-label span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.status-pill {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--mint-ink);
  background: var(--mint);
  font-size: 0.76rem;
  font-weight: 800;
}

.preview-alert {
  display: flex;
  gap: 11px;
  margin-top: 17px;
  padding: 14px;
  border: 1px solid #ffd7ca;
  border-radius: 14px;
  color: var(--rose-ink);
  background: var(--rose);
  font-size: 0.88rem;
}

.trust-band {
  padding: 18px 0;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item {
  text-align: center;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 1rem;
}

.trust-item span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.section {
  padding: 90px 0;
}

.section-tight {
  padding: 64px 0;
}

.section-white {
  background: var(--white);
}

.section-dark {
  color: var(--white);
  background: var(--ink);
}

.section-dark .lead,
.section-dark .muted {
  color: rgba(255, 255, 255, 0.74);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 36px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
}

.cards-3,
.cards-4,
.strategy-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

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

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.card-elevated {
  box-shadow: 0 12px 34px rgba(16, 35, 63, 0.07);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--primary-dark);
  background: var(--sky);
  font-weight: 900;
}

.card p:last-child {
  margin-bottom: 0;
}

.muted {
  color: var(--ink-soft);
}

.check-list,
.cross-list,
.plain-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.cross-list li {
  position: relative;
  margin: 9px 0;
  padding-left: 28px;
}

.check-list li::before,
.cross-list li::before {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.check-list li::before {
  color: var(--mint-ink);
  background: var(--mint);
  content: "✓";
}

.cross-list li::before {
  color: var(--rose-ink);
  background: var(--rose);
  content: "!";
}

.callout {
  padding: 22px;
  border: 1px solid #bfd2f8;
  border-radius: var(--radius);
  background: var(--sky);
}

.callout-warn {
  border-color: #f3d48a;
  background: #fff8e6;
}

.callout-success {
  border-color: #bfe5d7;
  background: var(--mint);
}

.callout p:last-child {
  margin-bottom: 0;
}

/* Diagnostic wizard */
.diagnostic-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 28px;
  align-items: start;
}

.wizard {
  min-height: 550px;
  padding: clamp(24px, 4vw, 43px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.progress-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 700;
}

.progress-track {
  overflow: hidden;
  height: 8px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: #e9edf2;
}

.progress-bar {
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--primary);
  transition: width 0.25s ease;
}

.wizard-step {
  display: none;
  animation: fade 0.2s ease;
}

.wizard-step.is-active {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(3px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-question {
  margin-bottom: 24px;
}

.wizard-question h3 {
  max-width: 700px;
  margin-bottom: 9px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.wizard-question p {
  margin: 0;
  color: var(--ink-soft);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.option {
  position: relative;
}

.option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option label {
  display: block;
  min-height: 108px;
  padding: 18px;
  border: 1.5px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  cursor: pointer;
  transition: border 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.option label:hover {
  border-color: #a9bddc;
  background: #fbfcff;
}

.option input:focus-visible + label {
  outline: 3px solid rgba(21, 94, 239, 0.2);
  outline-offset: 2px;
}

.option input:checked + label {
  border-color: var(--primary);
  background: var(--sky);
  box-shadow: 0 0 0 3px rgba(21, 94, 239, 0.08);
}

.option-title,
.option-desc {
  display: block;
}

.option-title {
  margin-bottom: 5px;
  font-weight: 820;
}

.option-desc {
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.45;
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 28px;
}

.validation-message {
  min-height: 24px;
  margin: 13px 0 0;
  color: var(--rose-ink);
  font-size: 0.9rem;
  font-weight: 700;
}

.diagnostic-aside {
  position: sticky;
  top: 106px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

.diagnostic-aside h3 {
  font-size: 1.05rem;
}

.aside-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.aside-stat strong {
  color: var(--ink);
}

.result {
  display: none;
  padding: 0;
}

.result.is-active {
  display: block;
}

.result-header {
  margin-bottom: 26px;
  padding: 28px;
  border-radius: 22px;
  background: var(--ink);
  color: var(--white);
}

.result-kicker {
  margin-bottom: 9px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.result-header h3 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.result-header p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.77);
}

.result-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.result-panel {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfcfd;
}

.result-panel h4 {
  margin-bottom: 11px;
  font-size: 1.08rem;
}

.result-next {
  margin-top: 20px;
  padding: 22px;
  border-radius: 18px;
  background: var(--sky);
}

.result-score {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 22px 0 0;
}

.score-item {
  padding: 11px 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  text-align: center;
}

.score-item strong,
.score-item span {
  display: block;
}

.score-item strong {
  font-size: 1.08rem;
}

.score-item span {
  color: var(--ink-soft);
  font-size: 0.72rem;
}

/* Strategy cards / comparison */
.strategy-grid {
  grid-template-columns: repeat(2, 1fr);
}

.strategy-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
}

.strategy-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.strategy-number {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  color: var(--white);
  background: var(--primary);
  font-weight: 900;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--ink-soft);
  background: #edf0f3;
  font-size: 0.76rem;
  font-weight: 750;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

th,
td {
  min-width: 145px;
  padding: 15px 17px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  background: #f7f9fb;
  font-size: 0.82rem;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.table-note {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.83rem;
}

/* Article pages */
.page-hero {
  padding: 72px 0 50px;
}

.page-hero h1 {
  max-width: 930px;
  font-size: clamp(2.55rem, 5vw, 4.7rem);
}

.breadcrumbs {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.breadcrumbs a {
  color: inherit;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 260px;
  justify-content: space-between;
  gap: 50px;
  align-items: start;
}

.article h2 {
  margin-top: 62px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.article h3 {
  margin-top: 32px;
}

.article p,
.article li {
  color: #34445a;
}

.article p {
  margin: 0 0 18px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.article-aside {
  position: sticky;
  top: 108px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.article-aside h3 {
  font-size: 1rem;
}

.article-aside a {
  display: block;
  margin: 9px 0;
  color: var(--ink-soft);
  font-size: 0.87rem;
  text-decoration: none;
}

.article-aside a:hover {
  color: var(--primary-dark);
}

.source-list {
  padding-left: 20px;
  font-size: 0.9rem;
}

.source-list li {
  margin: 9px 0;
}

/* Checklist */
.checklist-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

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

.checklist-progress strong {
  font-size: 1.25rem;
}

.checklist-section {
  margin-bottom: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
}

.checklist-section h2 {
  font-size: 1.5rem;
}

.check-item {
  display: grid;
  grid-template-columns: 25px 1fr;
  gap: 12px;
  padding: 13px 0;
  border-top: 1px solid var(--line);
}

.check-item:first-of-type {
  border-top: 0;
}

.check-item input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--primary);
}

.check-item label {
  cursor: pointer;
}

.check-item strong,
.check-item span {
  display: block;
}

.check-item span {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--white);
}

summary {
  padding: 18px 21px;
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  float: right;
  color: var(--primary);
  content: "+";
}

details[open] summary::after {
  content: "−";
}

details > div {
  padding: 0 21px 20px;
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  padding: 58px 0 28px;
  color: rgba(255, 255, 255, 0.74);
  background: #0a172a;
}

.footer-grid {
  grid-template-columns: 1.5fr repeat(3, 1fr);
  margin-bottom: 40px;
}

.footer-brand p {
  max-width: 380px;
  margin-top: 16px;
}

.footer-column h3 {
  color: var(--white);
  font-size: 0.93rem;
  letter-spacing: 0;
}

.footer-column a {
  display: block;
  margin: 8px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
}

.notice-placeholder {
  padding: 18px;
  border: 2px dashed #d9a12f;
  border-radius: 15px;
  background: #fff8e6;
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.kpi {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
}

.kpi strong,
.kpi span {
  display: block;
}

.kpi strong {
  margin-bottom: 4px;
  font-size: 1.7rem;
}

.kpi span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.text-center {
  text-align: center;
}

.max-760 {
  max-width: 760px;
}

.mx-auto {
  margin-inline: auto;
}

.hidden {
  display: none !important;
}

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

  .hero-visual {
    max-width: 680px;
  }

  .diagnostic-aside,
  .article-aside {
    position: static;
  }

  .cards-4,
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .footer-column:last-child {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 30px, var(--max));
  }

  .nav {
    min-height: 64px;
    padding: 0 15px;
  }

  .mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 15px;
    right: 15px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 10px 11px;
  }

  .nav-cta {
    border-radius: 10px;
  }

  .hero {
    padding: 58px 0 54px;
  }

  .hero-grid {
    gap: 42px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .section {
    padding: 68px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 15px;
  }

  .cards-3,
  .cards-4,
  .strategy-grid,
  .result-columns,
  .kpi-row {
    grid-template-columns: 1fr;
  }

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

  .option label {
    min-height: 0;
  }

  .wizard {
    min-height: 0;
    padding: 23px 18px;
    border-radius: 22px;
  }

  .result-score {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  .footer-column:last-child,
  .footer-brand {
    grid-column: auto;
  }

  .hero-actions .btn,
  .button-row .btn {
    width: 100%;
  }

  .wizard-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .wizard-actions .btn {
    width: 100%;
  }
}

@media print {
  .disclosure-bar,
  .site-header,
  .site-footer,
  .hero-actions,
  .button-row,
  .checklist-toolbar .button-row,
  .article-aside {
    display: none !important;
  }

  body {
    background: #fff;
    font-size: 11pt;
  }

  .container {
    width: 100%;
  }

  .page-hero,
  .section {
    padding: 20px 0;
  }

  .checklist-section,
  .card,
  .callout {
    break-inside: avoid;
    box-shadow: none;
  }

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

/* ========================================================================== 
   Homepage v2 — RFE -> gains de temps -> contrôle et pilotage
   ========================================================================== */
.home-v2 {
  --mc-navy: #0d2342;
  --mc-navy-2: #132e52;
  --mc-teal: #078f86;
  --mc-teal-dark: #05746d;
  --mc-teal-soft: #eaf8f6;
  --mc-blue-soft: #edf4ff;
  --mc-red-soft: #fff4f2;
  --mc-red: #db5e55;
  --mc-text: #17304f;
  --mc-muted: #5a6b7f;
  --mc-border: #dce5ec;
  --mc-bg: #f8fafb;
  color: var(--mc-text);
  background: #fff;
}

.home-v2 .site-header {
  border-bottom-color: rgba(220, 229, 236, 0.86);
  background: rgba(255, 255, 255, 0.94);
}

.home-v2 .brand-mark {
  background: linear-gradient(145deg, var(--primary), #1a77f2);
}

.home-v2 .nav-links {
  gap: 21px;
}

.home-v2 .nav-links a {
  color: #4e6176;
  font-size: 0.92rem;
}

.home-v2 .nav-links a:hover {
  color: var(--mc-navy);
}

.home-v2 .nav-cta {
  color: #fff !important;
  background: var(--mc-navy);
}

.mc-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 84px;
  background:
    radial-gradient(circle at 86% 13%, rgba(7, 143, 134, 0.11), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfd 100%);
}

.mc-hero::before {
  position: absolute;
  top: 55px;
  right: max(2vw, 20px);
  width: 240px;
  height: 240px;
  opacity: 0.28;
  background-image: radial-gradient(circle, #79bdb7 1.2px, transparent 1.2px);
  background-size: 16px 16px;
  content: "";
  pointer-events: none;
}

.mc-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.94fr);
  align-items: center;
  gap: 68px;
}

.mc-hero-copy {
  position: relative;
  z-index: 2;
}

.mc-kicker,
.mc-overline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--mc-teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mc-kicker {
  margin-bottom: 19px;
  padding: 8px 12px;
  border: 1px solid #b9ddd9;
  border-radius: 999px;
  background: var(--mc-teal-soft);
}

.mc-kicker span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mc-teal);
  box-shadow: 0 0 0 5px rgba(7, 143, 134, 0.09);
}

.home-v2 h1 {
  max-width: 730px;
  margin-bottom: 23px;
  color: var(--mc-navy);
  font-size: clamp(3.05rem, 5.5vw, 5.3rem);
  line-height: 1.01;
  letter-spacing: -0.055em;
}

.home-v2 h1 em {
  color: var(--mc-teal-dark);
  font-style: normal;
}

.mc-lead {
  max-width: 720px;
  margin: 0 0 30px;
  color: var(--mc-muted);
  font-size: clamp(1.08rem, 1.8vw, 1.24rem);
  line-height: 1.62;
}

.mc-proof {
  margin: 19px 0 0;
  color: #738296;
  font-size: 0.88rem;
  font-weight: 650;
}

.mc-flow-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 50px 0.88fr 50px 0.92fr;
  align-items: stretch;
  min-height: 430px;
  padding: 64px 27px 27px;
  border: 1px solid #dce8eb;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(17, 54, 75, 0.13);
}

.mc-flow-title {
  position: absolute;
  top: 23px;
  left: 28px;
  color: var(--mc-navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.mc-flow-stage {
  position: relative;
  min-width: 0;
  padding: 20px;
  border-radius: 22px;
}

.mc-stage-label {
  margin-bottom: 18px;
  color: #74869a;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-flow-inputs {
  border: 1px solid #e1e7ed;
  background: #fbfcfd;
}

.mc-input-list {
  display: grid;
  gap: 11px;
}

.mc-input-list > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 2px 10px;
  align-items: center;
  padding: 11px;
  border: 1px solid #e4e9ee;
  border-radius: 13px;
  background: #fff;
}

.mc-mini-icon {
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  color: var(--mc-red);
  background: var(--mc-red-soft);
  font-size: 0.7rem;
  font-weight: 900;
}

.mc-input-list strong,
.mc-input-list small {
  display: block;
}

.mc-input-list strong {
  color: var(--mc-navy);
  font-size: 0.82rem;
}

.mc-input-list small {
  color: #7b8999;
  font-size: 0.67rem;
  line-height: 1.25;
}

.mc-flow-engine {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid #bfe4df;
  color: var(--mc-teal-dark);
  background: linear-gradient(165deg, #f5fcfb, #e8f8f6);
}

.mc-engine-core {
  text-align: center;
}

.mc-engine-core svg {
  display: block;
  width: 68px;
  margin: 0 auto 16px;
}

.mc-engine-core strong {
  display: block;
  color: var(--mc-navy);
  font-size: 0.88rem;
  line-height: 1.35;
}

.mc-flow-arrow {
  display: grid;
  place-items: center;
  color: var(--mc-teal);
}

.mc-flow-arrow span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid #c5e4e0;
  border-radius: 50%;
  background: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(16, 80, 80, 0.08);
}

.mc-flow-output {
  border: 1px solid #cadbef;
  background: linear-gradient(165deg, #fbfdff, #edf5ff);
}

.mc-output-list {
  display: grid;
  gap: 14px;
}

.mc-output-list > div {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 11px;
  border-bottom: 1px solid #d9e6f4;
}

.mc-output-list > div:last-child {
  border-bottom: 0;
}

.mc-output-list span {
  color: #7a91ad;
  font-size: 0.68rem;
  font-weight: 900;
}

.mc-output-list strong {
  color: var(--mc-navy);
  font-size: 0.96rem;
}

.mc-time-badge {
  margin-top: 24px;
  padding: 11px 12px;
  border-radius: 12px;
  color: #fff;
  background: var(--mc-navy);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.mc-intro-line {
  border-top: 1px solid #e7ecef;
  border-bottom: 1px solid #e7ecef;
  background: #fbfcfc;
}

.mc-intro-line .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #5f7083;
  text-align: center;
}

.mc-intro-line strong {
  color: var(--mc-navy);
}

.mc-section {
  padding: 100px 0;
}

.mc-section-soft {
  background: var(--mc-bg);
}

.mc-heading {
  max-width: 800px;
  margin-bottom: 44px;
}

.mc-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.mc-overline {
  margin-bottom: 13px;
}

.mc-heading h2,
.mc-final-inner h2 {
  margin-bottom: 17px;
  color: var(--mc-navy);
  font-size: clamp(2.25rem, 4.4vw, 4.05rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.mc-heading p {
  max-width: 720px;
  margin: 0;
  color: var(--mc-muted);
  font-size: 1.08rem;
}

.mc-heading-center p {
  margin-right: auto;
  margin-left: auto;
}

.mc-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.mc-path {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 22px;
  min-height: 420px;
  padding: 34px;
  border: 1px solid var(--mc-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(20, 49, 76, 0.08);
  overflow: hidden;
}

.mc-path::after {
  position: absolute;
  right: -65px;
  bottom: -70px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.mc-path-blue::after {
  background: rgba(21, 94, 239, 0.06);
}

.mc-path-teal::after {
  background: rgba(7, 143, 134, 0.07);
}

.mc-path-icon {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  border-radius: 22px;
}

.mc-path-icon svg {
  width: 45px;
}

.mc-path-blue .mc-path-icon {
  color: var(--primary);
  background: var(--mc-blue-soft);
}

.mc-path-teal .mc-path-icon {
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
}

.mc-path-number {
  display: block;
  margin-bottom: 10px;
  color: #94a1b0;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.mc-path h3 {
  margin-bottom: 14px;
  color: var(--mc-navy);
  font-size: clamp(1.55rem, 2.3vw, 2.1rem);
  line-height: 1.12;
}

.mc-path p {
  margin: 0 0 18px;
  color: var(--mc-muted);
}

.mc-path ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-path li {
  position: relative;
  padding-left: 23px;
  color: #3d526b;
  font-size: 0.91rem;
}

.mc-path li::before {
  position: absolute;
  top: 0.52em;
  left: 2px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mc-teal);
  content: "";
}

.mc-path-blue li::before {
  background: var(--primary);
}

.mc-path-link {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #e2e8ed;
  color: var(--mc-navy);
  font-weight: 820;
  text-decoration: none;
}

.mc-path-link span {
  font-size: 1.25rem;
}

.mc-switch-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 84px 1fr;
  align-items: stretch;
  overflow: hidden;
  border: 1px solid var(--mc-border);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(20, 49, 76, 0.08);
}

.mc-switch-side {
  padding: 42px;
}

.mc-before {
  background: linear-gradient(145deg, #fff, var(--mc-red-soft));
}

.mc-after {
  background: linear-gradient(145deg, #fff, var(--mc-teal-soft));
}

.mc-switch-label {
  display: inline-flex;
  margin-bottom: 19px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mc-before .mc-switch-label {
  color: #b54841;
  background: #ffe3df;
}

.mc-after .mc-switch-label {
  color: var(--mc-teal-dark);
  background: #d4f0ec;
}

.mc-switch-side h3 {
  margin-bottom: 26px;
  color: var(--mc-navy);
  font-size: clamp(1.55rem, 2.3vw, 2.15rem);
}

.mc-task {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 11px;
  align-items: start;
  padding: 13px 0;
  border-top: 1px solid rgba(141, 159, 176, 0.22);
}

.mc-task span {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  border-radius: 50%;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 900;
}

.mc-before .mc-task span {
  background: var(--mc-red);
}

.mc-after .mc-task span {
  background: var(--mc-teal);
}

.mc-task p {
  margin: 0;
  color: #52647a;
  font-size: 0.96rem;
}

.mc-task strong {
  color: var(--mc-navy);
}

.mc-switch-arrow {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  color: var(--mc-navy);
  background: #fff;
}

.mc-switch-arrow::before,
.mc-switch-arrow::after {
  position: absolute;
  left: 50%;
  width: 1px;
  height: calc(50% - 36px);
  background: #dfe6eb;
  content: "";
}

.mc-switch-arrow::before { top: 0; }
.mc-switch-arrow::after { bottom: 0; }

.mc-switch-arrow svg {
  width: 56px;
  filter: drop-shadow(0 9px 18px rgba(13, 35, 66, 0.2));
}

.mc-processes {
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 24px 27px;
  border: 1px solid var(--mc-border);
  border-radius: 22px;
  background: #fff;
}

.mc-process {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mc-process-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
  font-size: 0.66rem;
  font-weight: 900;
}

.mc-process strong,
.mc-process small {
  display: block;
}

.mc-process strong {
  color: var(--mc-navy);
  font-size: 0.9rem;
}

.mc-process small {
  margin-top: 2px;
  color: #718196;
  font-size: 0.72rem;
}

.mc-process-separator {
  color: #b3c0cd;
  font-size: 1.35rem;
  font-weight: 600;
  text-align: center;
}

.mc-conviction {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 20px;
  max-width: 930px;
  margin: 58px auto 0;
  padding: 30px 34px;
  border: 0;
  border-radius: 25px;
  color: #fff;
  background: var(--mc-navy);
  box-shadow: 0 20px 45px rgba(13, 35, 66, 0.18);
}

.mc-conviction > span {
  color: #67d6cc;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.8;
}

.mc-conviction p {
  margin: 0 0 10px;
  font-size: clamp(1.16rem, 2.3vw, 1.55rem);
  font-weight: 760;
  line-height: 1.42;
}

.mc-conviction cite {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-style: normal;
}

.mc-diagnostic-container {
  max-width: 1010px;
}

.mc-wizard {
  min-height: 0;
  padding: 38px;
  border-color: #d9e4ea;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(20, 49, 76, 0.1);
}

.home-v2 .progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--mc-teal));
}

.home-v2 .option-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-v2 .option-grid .option:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

.home-v2 .option label {
  min-height: 112px;
  border-color: #dce5eb;
  background: #fff;
}

.home-v2 .option label:hover {
  border-color: #99c9c4;
  background: #fbfefe;
}

.home-v2 .option input:checked + label {
  border-color: var(--mc-teal);
  background: var(--mc-teal-soft);
  box-shadow: 0 0 0 3px rgba(7, 143, 134, 0.08);
}

.mc-result-hero {
  margin-bottom: 22px;
  padding: 31px;
  border-radius: 23px;
  color: #fff;
  background: linear-gradient(130deg, var(--mc-navy), var(--mc-navy-2));
}

.mc-result-hero h3 {
  margin-bottom: 12px;
  color: #fff;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.mc-result-hero p {
  max-width: 820px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.mc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mc-result-panel,
.mc-solutions-line {
  border: 1px solid #dce5eb;
  border-radius: 19px;
  background: #fbfcfd;
}

.mc-result-panel {
  padding: 23px;
}

.mc-result-index {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 13px;
  border-radius: 10px;
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
  font-size: 0.69rem;
  font-weight: 900;
}

.mc-result-panel h4,
.mc-solutions-line h4 {
  margin-bottom: 12px;
  color: var(--mc-navy);
  font-size: 1.05rem;
}

.mc-result-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mc-result-list li {
  position: relative;
  padding-left: 21px;
  color: #53667b;
  font-size: 0.91rem;
}

.mc-result-list li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mc-teal);
  content: "";
}

.mc-solutions-line {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  margin-top: 16px;
  padding: 22px;
}

.mc-solutions-line .mc-result-index {
  margin: 0;
}

.mc-solutions-line p {
  margin: 0;
  color: #53667b;
}

.mc-result-actions {
  margin-top: 18px;
}

.mc-final-cta {
  padding: 74px 0;
  color: #fff;
  background: linear-gradient(125deg, #087f79, #075e65 52%, #0d2342);
}

.mc-final-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
}

.mc-final-inner .mc-overline {
  color: #a8eee7;
}

.mc-final-inner h2 {
  max-width: 850px;
  margin: 9px 0 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.btn-light {
  flex: 0 0 auto;
  color: var(--mc-navy);
  background: #fff;
  box-shadow: 0 14px 32px rgba(3, 39, 46, 0.2);
}

.mc-footer {
  padding-top: 48px;
}

.mc-footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}

.mc-footer-links {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 11px 34px;
}

.mc-footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  text-decoration: none;
}

.mc-footer-links a:hover {
  color: #fff;
}

@media (max-width: 1080px) {
  .mc-hero-grid {
    grid-template-columns: 1fr;
  }

  .mc-flow-visual {
    max-width: 770px;
  }

  .mc-path {
    grid-template-columns: 66px 1fr;
    padding: 28px;
  }

  .mc-path-icon {
    width: 62px;
    height: 62px;
  }

  .mc-processes {
    grid-template-columns: 1fr;
  }

  .mc-process-separator {
    display: none;
  }
}

@media (max-width: 820px) {
  .mc-hero {
    padding: 66px 0 60px;
  }

  .home-v2 h1 {
    font-size: clamp(2.7rem, 10vw, 4.3rem);
  }

  .mc-flow-visual {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
    padding: 60px 20px 20px;
  }

  .mc-flow-arrow span {
    transform: rotate(90deg);
  }

  .mc-flow-stage {
    padding: 18px;
  }

  .mc-engine-core svg {
    width: 53px;
  }

  .mc-paths,
  .mc-result-grid {
    grid-template-columns: 1fr;
  }

  .mc-path {
    min-height: 0;
  }

  .mc-switch-panel {
    grid-template-columns: 1fr;
  }

  .mc-switch-arrow {
    min-height: 72px;
  }

  .mc-switch-arrow::before,
  .mc-switch-arrow::after {
    display: none;
  }

  .mc-switch-arrow svg {
    transform: rotate(90deg);
  }

  .mc-processes {
    padding: 20px;
  }

  .mc-conviction {
    grid-template-columns: 1fr;
  }

  .mc-conviction > span {
    height: 34px;
  }

  .mc-final-inner,
  .mc-footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .mc-footer-links {
    grid-template-columns: repeat(2, auto);
  }
}

@media (max-width: 760px) {
  .home-v2 .nav-links {
    gap: 4px;
  }

  .mc-intro-line .container {
    align-items: flex-start;
    flex-direction: column;
    text-align: left;
  }

  .mc-section {
    padding: 76px 0;
  }

  .mc-heading {
    margin-bottom: 32px;
  }

  .mc-path {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 24px;
    border-radius: 23px;
  }

  .mc-path-link {
    grid-column: auto;
  }

  .mc-switch-side {
    padding: 27px 23px;
  }

  .mc-conviction {
    margin-top: 38px;
    padding: 26px 24px;
  }

  .mc-wizard {
    padding: 24px 18px;
    border-radius: 22px;
  }

  .home-v2 .option-grid {
    grid-template-columns: 1fr;
  }

  .home-v2 .option-grid .option:last-child:nth-child(odd) {
    grid-column: auto;
  }

  .home-v2 .option label {
    min-height: 0;
  }

  .mc-solutions-line {
    grid-template-columns: 1fr;
  }

  .mc-final-cta {
    padding: 58px 0;
  }

  .mc-footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .mc-hero::before {
    display: none;
  }

  .mc-hero-grid {
    gap: 44px;
  }

  .home-v2 h1 {
    font-size: clamp(2.45rem, 12.5vw, 3.45rem);
  }

  .mc-lead {
    font-size: 1.02rem;
  }

  .mc-flow-visual {
    border-radius: 23px;
  }

  .mc-flow-title {
    left: 20px;
  }

  .mc-heading h2,
  .mc-final-inner h2 {
    font-size: clamp(2.05rem, 10vw, 3rem);
  }

  .mc-process {
    align-items: flex-start;
  }

  .mc-footer-top {
    gap: 28px;
  }
}

/* --------------------------------------------------------------------------
   Homepage v2 — RFE as a finance-performance lever
   -------------------------------------------------------------------------- */
.home-page {
  --mc-teal: #087f78;
  --mc-teal-dark: #08645f;
  --mc-teal-soft: #e7f7f4;
  --mc-navy: #0b2341;
  --mc-blue-soft: #eef4ff;
  --mc-coral: #e46c56;
  background: #f5f8fb;
}

.home-page .mc-header {
  background: rgba(255, 255, 255, 0.92);
}

.home-page .mc-header .nav {
  min-height: 76px;
}

.home-page .mc-header .nav-links {
  gap: 21px;
}

.mc-hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 76px;
  background:
    radial-gradient(circle at 82% 12%, rgba(21, 94, 239, 0.12), transparent 28%),
    radial-gradient(circle at 76% 88%, rgba(8, 127, 120, 0.12), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.mc-hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(21, 94, 239, 0.16) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.22;
  mask-image: linear-gradient(90deg, transparent 0 58%, #000 75%, transparent 100%);
  content: "";
  pointer-events: none;
}

.mc-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(540px, 1.08fr);
  align-items: center;
  gap: 56px;
}

.mc-kicker,
.mc-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--mc-teal-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.085em;
  text-transform: uppercase;
}

.mc-kicker {
  margin-bottom: 18px;
  padding: 7px 11px;
  border: 1px solid #bce4de;
  border-radius: 999px;
  background: rgba(231, 247, 244, 0.78);
}

.mc-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  color: var(--mc-navy);
  font-size: clamp(2.9rem, 4.75vw, 4.65rem);
  line-height: 1.01;
}

.mc-hero h1 span {
  display: block;
  color: var(--mc-teal);
}

.mc-hero-lead {
  max-width: 690px;
  margin: 0 0 30px;
  color: #4b5d73;
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.62;
}

.mc-hero-promises {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 19px;
  margin-top: 24px;
  color: #31465f;
  font-size: 0.9rem;
  font-weight: 720;
}

.mc-hero-promises span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.mc-hero-promises i {
  display: grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
}

.mc-hero-visual {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(194, 207, 220, 0.85);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 28px 70px rgba(11, 35, 65, 0.14);
  backdrop-filter: blur(12px);
}

.mc-hero-visual::after {
  position: absolute;
  right: -17px;
  bottom: -17px;
  z-index: -1;
  width: 120px;
  height: 120px;
  border-radius: 31px;
  background: linear-gradient(145deg, #c9f2ea, #75d2c8);
  content: "";
  transform: rotate(9deg);
}

.mc-visual-topline,
.mc-output-header,
.mc-deadline-grid,
.mc-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mc-visual-topline {
  margin-bottom: 19px;
  color: #66768a;
  font-size: 0.76rem;
  font-weight: 790;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mc-live-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
  font-size: 0.68rem;
  letter-spacing: 0.03em;
}

.mc-live-dot::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #12aa91;
  box-shadow: 0 0 0 4px rgba(18, 170, 145, 0.12);
  content: "";
}

.mc-flow-stage {
  display: grid;
  grid-template-columns: minmax(145px, 0.9fr) 104px minmax(220px, 1.25fr);
  align-items: center;
  gap: 15px;
}

.mc-flow-inputs {
  display: grid;
  gap: 10px;
}

.mc-doc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 68px;
  padding: 12px;
  border: 1px solid #dbe3eb;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(11, 35, 65, 0.06);
}

.mc-doc-card:nth-child(2) {
  transform: translateX(11px);
}

.mc-doc-card svg {
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  color: var(--primary);
}

.mc-doc-expense svg {
  color: var(--mc-teal);
}

.mc-doc-bank svg {
  color: #7667c7;
}

.mc-doc-card strong,
.mc-doc-card small,
.mc-output-header strong,
.mc-output-header small {
  display: block;
}

.mc-doc-card strong {
  color: #142a45;
  font-size: 0.79rem;
}

.mc-doc-card small {
  margin-top: 1px;
  color: #738195;
  font-size: 0.65rem;
  line-height: 1.3;
}

.mc-automation-core {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 154px;
  padding: 17px 8px;
  color: var(--mc-teal-dark);
  text-align: center;
}

.mc-automation-core::before,
.mc-automation-core::after {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, rgba(8, 127, 120, 0.12), rgba(8, 127, 120, 0.8));
  content: "";
}

.mc-automation-core::before {
  left: -10px;
}

.mc-automation-core::after {
  right: -10px;
  transform: rotate(180deg);
}

.mc-core-ring {
  position: absolute;
  inset: 13px;
  border: 1px dashed rgba(8, 127, 120, 0.35);
  border-radius: 50%;
  animation: mc-spin 18s linear infinite;
}

.mc-core-ring span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mc-teal);
}

.mc-core-ring span:nth-child(1) { left: 14%; top: 15%; }
.mc-core-ring span:nth-child(2) { right: 3%; top: 47%; }
.mc-core-ring span:nth-child(3) { left: 31%; bottom: 1%; }

@keyframes mc-spin {
  to { transform: rotate(360deg); }
}

.mc-automation-core > svg {
  position: relative;
  width: 43px;
  height: 43px;
  margin-bottom: -12px;
}

.mc-automation-core strong {
  position: relative;
  font-size: 0.76rem;
}

.mc-automation-core small {
  position: relative;
  max-width: 88px;
  color: #6b7f91;
  font-size: 0.59rem;
  line-height: 1.3;
}

.mc-flow-output {
  overflow: hidden;
  border: 1px solid #cfdae6;
  border-radius: 20px;
  background: #fdfefe;
  box-shadow: 0 12px 24px rgba(11, 35, 65, 0.08);
}

.mc-output-header {
  padding: 15px 16px 10px;
}

.mc-output-header small {
  color: #778699;
  font-size: 0.63rem;
  text-transform: uppercase;
}

.mc-output-header strong {
  margin-top: 2px;
  font-size: 0.94rem;
}

.mc-output-header > span {
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
  font-size: 0.61rem;
  font-weight: 800;
}

.mc-chart {
  position: relative;
  height: 122px;
  margin: 0 14px;
  border-radius: 12px;
  background:
    linear-gradient(#e9eef3 1px, transparent 1px),
    linear-gradient(90deg, #e9eef3 1px, transparent 1px),
    linear-gradient(180deg, rgba(238, 244, 255, 0.35), rgba(231, 247, 244, 0.3));
  background-size: 100% 30px, 48px 100%, 100% 100%;
}

.mc-chart svg {
  position: absolute;
  inset: 12px 8px 13px;
  width: calc(100% - 16px);
  height: calc(100% - 25px);
  overflow: visible;
  color: var(--primary);
}

.mc-chart svg circle {
  fill: var(--primary);
}

.mc-chart-bars {
  position: absolute;
  inset: 29px 14px 13px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  gap: 12px;
  opacity: 0.16;
}

.mc-chart-bars i {
  flex: 1;
  max-width: 17px;
  border-radius: 5px 5px 0 0;
  background: var(--mc-teal);
}

.mc-chart-bars i:nth-child(1) { height: 35%; }
.mc-chart-bars i:nth-child(2) { height: 52%; }
.mc-chart-bars i:nth-child(3) { height: 43%; }
.mc-chart-bars i:nth-child(4) { height: 68%; }
.mc-chart-bars i:nth-child(5) { height: 60%; }
.mc-chart-bars i:nth-child(6) { height: 82%; }

.mc-output-metrics {
  display: grid;
  gap: 5px;
  padding: 12px 16px 15px;
  color: #42586e;
  font-size: 0.65rem;
  font-weight: 700;
}

.mc-output-metrics span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mc-output-metrics i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mc-teal);
}

.mc-visual-message {
  margin-top: 17px;
  padding: 13px 15px;
  border-radius: 14px;
  color: #3f556d;
  background: linear-gradient(90deg, var(--mc-blue-soft), var(--mc-teal-soft));
  font-size: 0.78rem;
  line-height: 1.5;
}

.mc-visual-message strong {
  color: var(--mc-navy);
}

.mc-deadlines {
  padding: 20px 0;
  border-block: 1px solid #dbe3eb;
  background: #fff;
}

.mc-deadline-grid {
  gap: 26px;
}

.mc-deadline-grid > div {
  min-width: 0;
}

.mc-deadline-grid strong,
.mc-deadline-grid span {
  display: block;
}

.mc-deadline-grid strong {
  color: var(--mc-navy);
  font-size: 0.88rem;
}

.mc-deadline-grid span {
  margin-top: 2px;
  color: #617187;
  font-size: 0.78rem;
}

.mc-deadline-grid a {
  flex: 0 0 auto;
  font-size: 0.83rem;
  font-weight: 780;
  text-decoration: none;
}

.mc-section {
  padding: 100px 0;
}

.mc-section-white {
  background: #fff;
}

.mc-section-intro {
  max-width: 790px;
  margin-bottom: 44px;
}

.mc-section-intro-center {
  margin-inline: auto;
  text-align: center;
}

.mc-section-intro h2,
.mc-transform-copy h2,
.mc-final-cta h2 {
  margin: 12px 0 17px;
  color: var(--mc-navy);
  font-size: clamp(2.25rem, 4vw, 3.65rem);
}

.mc-section-intro p,
.mc-transform-copy > p {
  margin: 0;
  color: #5c6d82;
  font-size: 1.06rem;
  line-height: 1.7;
}

.mc-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid #e0e7ee;
}

.mc-value-item {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 18px;
  padding: 32px 34px;
  border-left: 1px solid #e0e7ee;
}

.mc-value-item:first-child {
  border-left: 0;
}

.mc-icon-orbit {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 20px;
  color: var(--mc-teal);
  background: var(--mc-teal-soft);
}

.mc-value-item:nth-child(2) .mc-icon-orbit {
  color: var(--primary);
  background: var(--mc-blue-soft);
}

.mc-value-item:nth-child(3) .mc-icon-orbit {
  color: #7657bd;
  background: #f2effb;
}

.mc-icon-orbit svg {
  width: 34px;
  height: 34px;
}

.mc-value-item h3 {
  margin-bottom: 9px;
  color: var(--mc-navy);
  font-size: 1.28rem;
}

.mc-value-item p {
  margin: 0;
  color: #627286;
  font-size: 0.91rem;
  line-height: 1.58;
}

.mc-org-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mc-org-card {
  position: relative;
  display: grid;
  grid-template-columns: 185px 1fr;
  align-items: center;
  gap: 25px;
  min-height: 302px;
  padding: 34px;
  border: 1px solid #cfdbe8;
  border-radius: 26px;
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 35, 65, 0.07);
  text-align: left;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.mc-org-card::after {
  position: absolute;
  inset: auto 24px 22px auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.08;
  content: "";
}

.mc-org-card:hover {
  transform: translateY(-3px);
  border-color: currentColor;
  box-shadow: 0 22px 48px rgba(11, 35, 65, 0.11);
}

.mc-org-internal {
  color: var(--mc-teal-dark);
}

.mc-org-illustration {
  display: grid;
  place-items: center;
  height: 210px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(238, 244, 255, 0.95), rgba(255, 255, 255, 0.8));
}

.mc-org-internal .mc-org-illustration {
  background: linear-gradient(145deg, rgba(231, 247, 244, 0.96), rgba(255, 255, 255, 0.84));
}

.mc-org-illustration svg {
  width: 156px;
  height: 132px;
}

.mc-org-content {
  display: block;
}

.mc-org-content small,
.mc-org-content strong,
.mc-org-content span,
.mc-org-content em {
  display: block;
}

.mc-org-content small {
  margin-bottom: 9px;
  color: currentColor;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.mc-org-content strong {
  max-width: 390px;
  color: var(--mc-navy);
  font-size: clamp(1.45rem, 2.3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.mc-org-content > span {
  margin-top: 13px;
  color: #5b6c81;
  font-size: 0.92rem;
  line-height: 1.58;
}

.mc-org-content em {
  margin-top: 21px;
  color: currentColor;
  font-size: 0.84rem;
  font-style: normal;
  font-weight: 820;
}

.mc-org-content b {
  margin-left: 6px;
}

.mc-org-note {
  margin: 22px 0 0;
  color: #68788b;
  font-size: 0.88rem;
  text-align: center;
}

.mc-transform-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: 60px;
}

.mc-transform-copy h2 {
  margin-top: 12px;
}

.mc-quote {
  position: relative;
  margin-top: 31px;
  padding: 25px 25px 25px 72px;
  border-left: 4px solid var(--mc-teal);
  border-radius: 0 18px 18px 0;
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
}

.mc-quote svg {
  position: absolute;
  left: 23px;
  top: 25px;
  width: 30px;
  height: 30px;
  opacity: 0.5;
}

.mc-quote p {
  margin: 0;
  color: #2c5a59;
  font-size: 0.94rem;
  font-weight: 690;
  line-height: 1.62;
}

.mc-before-after {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 42px minmax(0, 1fr);
  gap: 10px 12px;
  padding: 25px;
  border: 1px solid #d7e1ea;
  border-radius: 27px;
  background: #f9fbfd;
  box-shadow: 0 18px 45px rgba(11, 35, 65, 0.08);
}

.mc-ba-head {
  padding: 17px 18px;
  border-radius: 16px;
}

.mc-ba-head span,
.mc-ba-head strong {
  display: block;
}

.mc-ba-head span {
  margin-bottom: 3px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-ba-head strong {
  color: var(--mc-navy);
  font-size: 1.04rem;
}

.mc-ba-before {
  grid-column: 1;
  color: #a24a3b;
  background: #fff1ed;
}

.mc-ba-after {
  grid-column: 3;
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
}

.mc-ba-row {
  display: contents;
}

.mc-ba-row > div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 13px;
  border: 1px solid #e0e7ee;
  border-radius: 15px;
  background: #fff;
}

.mc-ba-row > div:first-child {
  grid-column: 1;
}

.mc-ba-row > div:last-child {
  grid-column: 3;
}

.mc-ba-row span strong,
.mc-ba-row span small {
  display: block;
}

.mc-ba-row span strong {
  color: #20364e;
  font-size: 0.82rem;
}

.mc-ba-row span small {
  margin-top: 2px;
  color: #778597;
  font-size: 0.68rem;
  line-height: 1.35;
}

.mc-ba-icon,
.mc-ba-check {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 31px;
  height: 31px;
  border-radius: 10px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 880;
}

.mc-ba-icon {
  color: #af5242;
  background: #fff1ed;
}

.mc-ba-check {
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
  font-size: 0.82rem;
}

.mc-ba-arrow {
  grid-column: 2;
  align-self: center;
  color: #8da0b5;
  font-size: 1.25rem;
  font-weight: 900;
  text-align: center;
}

.mc-paths-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 19px;
}

.mc-path-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 19px;
  min-height: 214px;
  padding: 28px;
  border: 1px solid #d7e1ea;
  border-radius: 22px;
  background: #fff;
}

.mc-path-highlight {
  border-color: #a9ded7;
  background: linear-gradient(145deg, #fff, #effaf8);
  box-shadow: 0 14px 36px rgba(8, 127, 120, 0.1);
}

.mc-path-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: var(--primary-dark);
  background: var(--mc-blue-soft);
  font-size: 0.78rem;
  font-weight: 900;
}

.mc-path-highlight .mc-path-number {
  color: var(--mc-teal-dark);
  background: var(--mc-teal-soft);
}

.mc-path-card small {
  display: block;
  margin-bottom: 7px;
  color: #738196;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.mc-path-card h3 {
  margin-bottom: 11px;
  color: var(--mc-navy);
  font-size: 1.38rem;
}

.mc-path-card p {
  margin: 0;
  color: #5c6d82;
  font-size: 0.9rem;
  line-height: 1.6;
}

.mc-diagnostic-section {
  background:
    radial-gradient(circle at 7% 12%, rgba(21, 94, 239, 0.08), transparent 23%),
    radial-gradient(circle at 92% 83%, rgba(8, 127, 120, 0.1), transparent 23%),
    #eef3f8;
}

.mc-wizard-wrap {
  max-width: 980px;
  margin: 0 auto;
}

.mc-wizard {
  min-height: 0;
  border-color: #cfdae6;
  box-shadow: 0 24px 62px rgba(11, 35, 65, 0.12);
}

.mc-wizard .progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--mc-teal));
}

.mc-wizard .option label {
  min-height: 116px;
}

.mc-wizard .option input:checked + label {
  border-color: var(--mc-teal);
  background: var(--mc-teal-soft);
  box-shadow: 0 0 0 3px rgba(8, 127, 120, 0.09);
}

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

.mc-result-header {
  background: linear-gradient(135deg, var(--mc-navy), #0d5b64);
}

.mc-result-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mc-watch-list {
  margin-top: 14px;
  counter-reset: mc-watch;
}

.mc-watch-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 31px;
  color: #4e6076;
}

.mc-watch-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  color: var(--primary-dark);
  background: var(--mc-blue-soft);
  content: "?";
  font-size: 0.72rem;
  font-weight: 900;
}

.mc-result-solutions {
  margin-top: 18px;
  padding: 20px 22px;
  border: 1px solid #bfe2dc;
  border-radius: 18px;
  background: var(--mc-teal-soft);
}

.mc-result-solutions span {
  display: block;
  margin-bottom: 6px;
  color: var(--mc-teal-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.mc-result-solutions p {
  margin: 0;
  color: #315b59;
  font-weight: 650;
}

.mc-final-cta {
  padding: 72px 0;
  color: #fff;
  background: linear-gradient(120deg, #0b2341, #086f6a);
}

.mc-final-cta-inner {
  gap: 35px;
}

.mc-final-cta span {
  color: #9ce1d8;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-final-cta h2 {
  max-width: 760px;
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(2rem, 3.3vw, 3.25rem);
}

.mc-btn-light {
  flex: 0 0 auto;
  color: var(--mc-navy);
  background: #fff;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.mc-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.72);
}

@media (prefers-reduced-motion: reduce) {
  .mc-core-ring {
    animation: none;
  }
}

@media (max-width: 1120px) {
  .mc-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
  }

  .mc-flow-stage {
    grid-template-columns: minmax(125px, 0.85fr) 88px minmax(190px, 1.15fr);
    gap: 10px;
  }

  .mc-org-card {
    grid-template-columns: 145px 1fr;
    padding: 27px;
  }

  .mc-org-illustration {
    height: 185px;
  }

  .mc-transform-layout {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 38px;
  }
}

@media (max-width: 980px) {
  .mc-hero {
    padding-top: 66px;
  }

  .mc-hero-grid,
  .mc-transform-layout {
    grid-template-columns: 1fr;
  }

  .mc-hero-copy {
    max-width: 790px;
  }

  .mc-hero-visual {
    max-width: 760px;
  }

  .mc-value-grid {
    grid-template-columns: 1fr;
  }

  .mc-value-item,
  .mc-value-item:first-child {
    border-left: 0;
    border-top: 1px solid #e0e7ee;
  }

  .mc-value-item:first-child {
    border-top: 0;
  }

  .mc-org-grid {
    grid-template-columns: 1fr;
  }

  .mc-transform-copy {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  .home-page .mc-header .nav {
    min-height: 66px;
  }

  .mc-hero {
    padding: 54px 0 48px;
  }

  .mc-hero::before {
    display: none;
  }

  .mc-hero h1 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .mc-hero h1 span {
    display: inline;
  }

  .mc-hero-promises {
    display: grid;
    gap: 10px;
  }

  .mc-hero-visual {
    padding: 16px;
    border-radius: 23px;
  }

  .mc-flow-stage {
    grid-template-columns: 1fr;
  }

  .mc-flow-inputs {
    grid-template-columns: repeat(3, 1fr);
  }

  .mc-doc-card,
  .mc-doc-card:nth-child(2) {
    align-items: start;
    flex-direction: column;
    min-height: 112px;
    transform: none;
  }

  .mc-doc-card {
    display: flex;
  }

  .mc-automation-core {
    min-height: 105px;
  }

  .mc-automation-core::before,
  .mc-automation-core::after {
    display: none;
  }

  .mc-core-ring {
    inset: 6px calc(50% - 51px);
  }

  .mc-deadline-grid {
    align-items: start;
    flex-direction: column;
    gap: 13px;
  }

  .mc-section {
    padding: 72px 0;
  }

  .mc-section-intro {
    margin-bottom: 32px;
  }

  .mc-section-intro h2,
  .mc-transform-copy h2 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .mc-value-item {
    grid-template-columns: 54px 1fr;
    padding: 25px 10px;
  }

  .mc-icon-orbit {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .mc-org-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 22px;
  }

  .mc-org-illustration {
    height: 160px;
  }

  .mc-org-illustration svg {
    width: 138px;
    height: 118px;
  }

  .mc-before-after {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 17px;
  }

  .mc-ba-head,
  .mc-ba-before,
  .mc-ba-after,
  .mc-ba-row > div:first-child,
  .mc-ba-row > div:last-child,
  .mc-ba-arrow {
    grid-column: 1;
  }

  .mc-ba-after {
    margin-top: 15px;
  }

  .mc-ba-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mc-ba-arrow {
    transform: rotate(90deg);
  }

  .mc-paths-grid,
  .mc-result-grid,
  .mc-option-grid-3 {
    grid-template-columns: 1fr;
  }

  .mc-path-card {
    min-height: 0;
    padding: 23px;
  }

  .mc-wizard .option label {
    min-height: 0;
  }

  .mc-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 470px) {
  .mc-kicker {
    align-items: flex-start;
    border-radius: 14px;
    line-height: 1.35;
  }

  .mc-hero-actions .btn,
  .mc-final-cta .btn {
    width: 100%;
  }

  .mc-flow-inputs {
    grid-template-columns: 1fr;
  }

  .mc-doc-card {
    align-items: center;
    flex-direction: row;
    min-height: 66px;
  }

  .mc-visual-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mc-value-item {
    grid-template-columns: 1fr;
  }

  .mc-path-card {
    grid-template-columns: 44px 1fr;
    gap: 14px;
  }

  .mc-path-number {
    width: 42px;
    height: 42px;
  }
}

@media print {
  .home-page .mc-hero,
  .home-page .mc-deadlines,
  .home-page #opportunite,
  .home-page #organisation,
  .home-page #transformation,
  .home-page #trajectoires,
  .home-page .mc-final-cta,
  .home-page .mc-section-intro,
  .home-page .progress-meta,
  .home-page .progress-track,
  .home-page .wizard-step,
  .home-page [data-result-actions] {
    display: none !important;
  }

  .home-page #diagnostic {
    padding: 0;
    background: #fff;
  }

  .home-page .mc-wizard {
    border: 0;
    box-shadow: none;
  }

  .home-page .mc-result {
    display: block !important;
  }
}

.home-page section[id],
.home-page .mc-result {
  scroll-margin-top: 96px;
}

/* Prevent wide comparison tables from forcing the mobile layout wider. */
.article-layout > *,
.article {
  min-width: 0;
}

.table-wrap {
  width: 100%;
  max-width: 100%;
}
