:root {
  --mc-navy: #061834;
  --mc-navy-2: #0b254d;
  --mc-blue: #075fbe;
  --mc-blue-soft: #eaf3ff;
  --mc-orange: #bd4700;
  --mc-orange-hover: #9f3b00;
  --mc-ink: #10233f;
  --mc-muted: #53667e;
  --mc-line: #d8e2ee;
  --mc-surface: #ffffff;
  --mc-background: #f4f7fb;
  --mc-green: #16836f;
}

.mc-page,
.mc-page * {
  box-sizing: border-box;
}

.mc-page {
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  background: var(--mc-background);
  color: var(--mc-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.mc-page a {
  color: inherit;
  text-decoration: none;
}

.mc-page main {
  display: block;
}

.mc-page h1,
.mc-page h2,
.mc-page h3,
.mc-page p,
.mc-page figure,
.mc-page ol,
.mc-page ul,
.mc-page dl,
.mc-page dd {
  margin-top: 0;
}

.mc-page h1,
.mc-page h2,
.mc-page h3 {
  color: var(--mc-navy);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.mc-page a:focus-visible,
.mc-page button:focus-visible,
.mc-page summary:focus-visible,
.mc-page video:focus-visible,
.mc-page [tabindex]:focus-visible {
  outline: 3px solid #5daeff;
  outline-offset: 4px;
}

#contenido,
#flujo,
#plataforma,
#funciones {
  scroll-margin-top: 90px;
}

.mc-skip {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 20px;
  padding: 10px 15px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--mc-navy) !important;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(6, 24, 52, 0.18);
}

.mc-skip:focus {
  top: 14px;
}

.mc-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 220px minmax(360px, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 10px max(24px, calc((100vw - 1360px) / 2));
  background: rgba(6, 24, 52, 0.98);
  color: #e9f2ff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 10px 28px rgba(6, 24, 52, 0.12);
}

.mc-brand,
.mc-footer-brand {
  display: block;
  line-height: 0;
}

.mc-brand img {
  display: block;
  width: 205px;
  height: auto;
}

.mc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
  font-weight: 720;
}

.mc-nav a {
  color: #d8e5f6;
  transition: color 160ms ease;
}

.mc-nav a:hover,
.mc-nav a[aria-current="page"] {
  color: #ffffff;
}

.mc-nav a[aria-current="page"] {
  text-decoration: underline;
  text-decoration-color: var(--mc-orange);
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
}

.mc-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  white-space: nowrap;
}

.mc-login {
  color: #e9f2ff !important;
  font-size: 14px;
  font-weight: 750;
}

.mc-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: fit-content;
  padding: 13px 23px;
  border: 1px solid var(--mc-orange);
  border-radius: 8px;
  background: var(--mc-orange);
  color: #ffffff !important;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 820;
  box-shadow: 0 12px 24px rgba(232, 93, 4, 0.19);
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.mc-button:hover {
  border-color: var(--mc-orange-hover);
  background: var(--mc-orange-hover);
  transform: translateY(-1px);
}

.mc-button-small {
  min-height: 43px;
  padding: 10px 17px;
  font-size: 14px;
}

.mc-button-secondary {
  border-color: #a9bad0;
  background: #ffffff;
  color: var(--mc-navy) !important;
  box-shadow: none;
}

.mc-button-secondary:hover {
  border-color: var(--mc-navy);
  background: #f8fafc;
}

.mc-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(560px, 1.12fr);
  align-items: center;
  gap: clamp(36px, 5vw, 76px);
  width: min(1360px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto;
  padding: clamp(70px, 8vw, 112px) 0 78px;
}

.mc-home-hero {
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  gap: clamp(30px, 3vw, 46px);
  min-height: 620px;
  padding: 46px 0 54px;
}

.mc-workshop-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(32px, 3vw, 48px);
}

.mc-workshop-hero .mc-product-shot {
  width: min(920px, 58vw);
  justify-self: start;
}

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

.mc-hero.mc-home-hero h1 {
  max-width: 660px;
  margin-bottom: 20px;
  font-size: clamp(52px, 4.45vw, 68px);
  line-height: 1.02;
}

.mc-home-hero .mc-lead {
  max-width: 650px;
  margin-bottom: 25px;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.48;
}

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

.mc-eyebrow {
  margin-bottom: 15px;
  color: var(--mc-blue);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.mc-hero h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.25vw, 75px);
}

.mc-workshop-hero h1 {
  font-size: clamp(43px, 4.7vw, 67px);
}

.mc-lead {
  max-width: 670px;
  margin-bottom: 30px;
  color: var(--mc-muted);
  font-size: clamp(18px, 1.55vw, 22px);
  line-height: 1.56;
}

.mc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 23px;
}

.mc-context-line {
  margin-bottom: 0;
  color: var(--mc-muted);
  font-size: 14px;
  font-weight: 650;
}

.mc-home-product {
  min-width: 0;
  margin: 0;
}

.mc-home-product-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid #183e68;
  border-radius: 22px;
  background: #071a34;
  box-shadow: 0 28px 62px rgba(6, 24, 52, 0.2);
}

.mc-home-platform-shot {
  display: block;
  width: 100%;
  height: auto;
}

.mc-home-product figcaption {
  padding: 11px 4px 0;
  color: var(--mc-muted);
  font-size: 11px;
  font-weight: 700;
}

.mc-platform-overview {
  max-width: 1120px;
  margin-bottom: 36px;
}

.mc-product-shot {
  margin-bottom: 0;
}

.mc-product-shot-frame {
  overflow: hidden;
  padding: 9px;
  border: 1px solid #b9c9dc;
  border-radius: 15px;
  background: #e8eff7;
  box-shadow: 0 28px 65px rgba(6, 24, 52, 0.17);
}

.mc-product-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 9px;
}

.mc-product-shot figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 4px 0;
  color: var(--mc-muted);
  font-size: 11px;
}

.mc-product-shot figcaption strong {
  color: var(--mc-green);
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mc-circuit-section,
.mc-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 104px 0;
}

.mc-circuit-section {
  padding-top: 74px;
}

.mc-section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.mc-section-heading h2,
.mc-demo-section h2,
.mc-workshop-fit h2,
.mc-final-cta h2,
.mc-problem h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.8vw, 54px);
}

.mc-section-heading > p:last-child,
.mc-section-heading-inline > p,
.mc-demo-section > div > p,
.mc-workshop-fit p,
.mc-final-cta > p,
.mc-problem-copy p {
  color: var(--mc-muted);
  font-size: 17px;
}

.mc-section-heading-inline {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: end;
  gap: 58px;
  max-width: none;
}

.mc-section-heading-inline h2 {
  margin-bottom: 0;
}

.mc-section-heading-inline > p {
  margin-bottom: 4px;
}

.mc-circuit {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  border-top: 1px solid #a9bad0;
}

.mc-circuit li {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 142px;
  padding: 25px 20px 18px 0;
  border-right: 1px solid var(--mc-line);
}

.mc-circuit li:last-child {
  border-right: 0;
}

.mc-circuit li::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--mc-orange);
}

.mc-circuit span {
  color: var(--mc-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 800;
}

.mc-circuit strong {
  margin-top: 17px;
  color: var(--mc-navy);
  font-size: 18px;
}

.mc-circuit small {
  max-width: 150px;
  margin-top: 5px;
  color: var(--mc-muted);
  font-size: 12px;
  line-height: 1.45;
}

.mc-context-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 60px);
  padding: 22px max(24px, calc((100vw - 1280px) / 2));
  background: #e5edf7;
  border-block: 1px solid #cfdae7;
  color: #476078;
  font-size: 13px;
  font-weight: 720;
}

.mc-context-strip strong {
  color: var(--mc-navy);
  font-size: 14px;
}

.mc-story {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: clamp(50px, 8vw, 112px);
  align-items: center;
  padding: 72px 0;
  border-top: 1px solid var(--mc-line);
}

.mc-story-reverse .mc-story-copy {
  order: 2;
}

.mc-story-reverse .mc-data-panel {
  order: 1;
}

.mc-story-number {
  margin-bottom: 12px;
  color: var(--mc-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mc-story-copy h3,
.mc-capability h3 {
  margin-bottom: 18px;
  font-size: clamp(29px, 3vw, 43px);
}

.mc-story-copy > p:not(.mc-story-number),
.mc-capability-copy > p:not(.mc-story-number) {
  color: var(--mc-muted);
  font-size: 17px;
}

.mc-check-list,
.mc-compact-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.mc-check-list li,
.mc-compact-list li {
  position: relative;
  padding-left: 25px;
  color: #263e59;
  font-weight: 680;
}

.mc-check-list li::before,
.mc-compact-list li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 9px;
  height: 3px;
  background: var(--mc-orange);
}

.mc-text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin-top: 17px;
  color: var(--mc-blue) !important;
  font-weight: 820;
  text-decoration: underline !important;
  text-underline-offset: 5px;
}

.mc-data-panel {
  padding: clamp(26px, 4vw, 44px);
  background: #ffffff;
  border: 1px solid #cfdbe8;
  border-left: 5px solid var(--mc-blue);
  box-shadow: 0 22px 50px rgba(18, 46, 79, 0.08);
}

.mc-data-panel > p {
  margin-bottom: 28px;
  color: var(--mc-blue);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-data-panel dl {
  margin-bottom: 0;
}

.mc-data-panel dl > div {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 18px;
  padding: 15px 0;
  border-bottom: 1px solid var(--mc-line);
}

.mc-data-panel dl > div:last-child {
  border-bottom: 0;
}

.mc-data-panel dt {
  color: var(--mc-muted);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.mc-data-panel dd {
  margin-bottom: 0;
  color: var(--mc-navy);
  font-weight: 800;
}

.mc-data-panel-dark {
  background: var(--mc-navy);
  border-color: #173965;
  border-left-color: var(--mc-orange);
}

.mc-data-panel-dark > p {
  color: #7cc1ff;
}

.mc-mini-flow {
  display: grid;
  gap: 0;
  padding: 0;
  margin-bottom: 0;
  list-style: none;
}

.mc-mini-flow li {
  display: flex;
  flex-direction: column;
  padding: 14px 0 14px 24px;
  border-left: 1px solid #466486;
}

.mc-mini-flow span {
  position: relative;
  color: #ffffff;
  font-weight: 820;
}

.mc-mini-flow span::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: -28px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mc-orange);
}

.mc-mini-flow small {
  color: #aec0d7;
}

.mc-workflow {
  padding: 96px max(24px, calc((100vw - 1280px) / 2));
  background: var(--mc-navy);
  color: #ffffff;
}

.mc-section-heading-light h2,
.mc-section-heading-light p {
  color: #ffffff !important;
}

.mc-section-heading-light .mc-eyebrow {
  color: #74bcff !important;
}

.mc-workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  border-top: 1px solid #385576;
  border-bottom: 1px solid #385576;
}

.mc-workflow-grid li {
  min-height: 210px;
  padding: 30px 28px;
  border-right: 1px solid #385576;
}

.mc-workflow-grid li:last-child {
  border-right: 0;
}

.mc-workflow-grid span {
  display: block;
  margin-bottom: 26px;
  color: #74bcff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-workflow-grid strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 24px;
}

.mc-workflow-grid p {
  margin-bottom: 0;
  color: #b7c8db;
  font-size: 14px;
}

.mc-workflow-grid-five {
  grid-template-columns: repeat(5, 1fr);
}

.mc-workflow-grid-five li {
  padding-inline: 20px;
}

.mc-sector-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  border-top: 1px solid var(--mc-line);
}

.mc-sector-list li {
  padding: 22px 18px 22px 0;
  border-right: 1px solid var(--mc-line);
  border-bottom: 1px solid var(--mc-line);
  color: var(--mc-navy);
  font-size: 17px;
  font-weight: 780;
}

.mc-sector-list li:nth-child(3n) {
  border-right: 0;
  padding-left: 24px;
}

.mc-sector-list li:nth-child(3n + 2) {
  padding-left: 24px;
}

.mc-demo-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(430px, 0.85fr);
  gap: clamp(54px, 8vw, 110px);
  align-items: center;
  padding: 100px max(24px, calc((100vw - 1280px) / 2));
  background: #e8eef6;
  border-block: 1px solid #d3deea;
}

.mc-demo-section > div > p:not(.mc-eyebrow) {
  max-width: 650px;
  margin-bottom: 27px;
}

.mc-demo-section ol {
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  border-top: 1px solid #9eb0c4;
}

.mc-demo-section li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 0 15px;
  padding: 19px 0;
  border-bottom: 1px solid #c5d1df;
}

.mc-demo-section li span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--mc-blue);
  border-radius: 50%;
  color: var(--mc-blue);
  font-weight: 850;
}

.mc-demo-section li strong {
  color: var(--mc-navy);
}

.mc-demo-section li p {
  margin-bottom: 0;
  color: var(--mc-muted);
  font-size: 13px;
}

.mc-lite-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: 82px auto;
  padding: 34px 38px;
  background: #ffffff;
  border: 1px solid #cad7e5;
  border-left: 5px solid var(--mc-green);
}

.mc-lite-section h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3vw, 38px);
}

.mc-lite-section p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--mc-muted);
}

.mc-faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(500px, 1.32fr);
  gap: clamp(50px, 8vw, 110px);
}

.mc-faq-list {
  border-top: 1px solid #adbdcf;
}

.mc-faq-list details {
  border-bottom: 1px solid #cbd7e4;
}

.mc-faq-list summary {
  position: relative;
  padding: 22px 50px 22px 0;
  color: var(--mc-navy);
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.mc-faq-list summary::-webkit-details-marker {
  display: none;
}

.mc-faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 5px;
  color: var(--mc-blue);
  font-size: 26px;
  font-weight: 500;
}

.mc-faq-list details[open] summary::after {
  content: "−";
}

.mc-faq-list details p {
  padding: 0 50px 23px 0;
  margin-bottom: 0;
  color: var(--mc-muted);
}

.mc-final-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 24px;
  background: #ffffff;
  border-top: 1px solid var(--mc-line);
  text-align: center;
}

.mc-final-cta h2 {
  max-width: 850px;
}

.mc-final-cta > p:not(.mc-eyebrow) {
  max-width: 690px;
  margin-bottom: 29px;
}

.mc-footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: end;
  gap: 50px;
  padding: 48px max(24px, calc((100vw - 1280px) / 2));
  background: var(--mc-navy);
  color: #cfdaea;
  border-top: 1px solid #294666;
}

.mc-footer-brand img {
  display: block;
  width: 175px;
  height: auto;
}

.mc-footer-main p {
  margin: 13px 0 0;
  color: #9fb2ca;
  font-size: 13px;
}

.mc-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
  font-size: 13px;
  font-weight: 700;
}

.mc-footer nav a:hover {
  color: #ffffff;
}

.mc-footer small {
  color: #899eb7;
  white-space: nowrap;
}

/* Página de taller */
.mc-problem {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(500px, 1.18fr);
  gap: clamp(50px, 8vw, 120px);
  padding: 94px max(24px, calc((100vw - 1280px) / 2));
  background: #ffffff;
  border-block: 1px solid var(--mc-line);
}

.mc-problem h2 {
  margin-bottom: 0;
}

.mc-problem-copy {
  columns: 2;
  column-gap: 42px;
}

.mc-problem-copy p {
  break-inside: avoid;
}

.mc-step-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin-bottom: 0;
  list-style: none;
  border-top: 1px solid #a9bad0;
  border-left: 1px solid #d4deea;
}

.mc-step-flow li {
  min-height: 190px;
  padding: 25px;
  border-right: 1px solid #d4deea;
  border-bottom: 1px solid #d4deea;
  background: rgba(255, 255, 255, 0.48);
}

.mc-step-flow span,
.mc-capability-index {
  color: var(--mc-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px;
  font-weight: 850;
}

.mc-step-flow strong {
  display: block;
  margin-top: 33px;
  color: var(--mc-navy);
  font-size: 20px;
}

.mc-step-flow p {
  margin: 8px 0 0;
  color: var(--mc-muted);
  font-size: 13px;
}

.mc-capabilities {
  padding-top: 80px;
}

.mc-capability {
  display: grid;
  grid-template-columns: 80px minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
  padding: 55px 0;
  border-top: 1px solid var(--mc-line);
}

.mc-capability-index {
  padding-top: 7px;
}

.mc-compact-list {
  margin-top: 8px;
  padding: 24px;
  background: #ffffff;
  border-top: 3px solid var(--mc-blue);
  box-shadow: 0 14px 34px rgba(18, 46, 79, 0.06);
}

.mc-compact-list li {
  font-size: 14px;
}

.mc-workshop-fit {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: center;
  padding: 100px max(24px, calc((100vw - 1280px) / 2));
  background: #ffffff;
  border-block: 1px solid var(--mc-line);
}

.mc-workshop-fit aside {
  padding: 34px;
  background: #f4f7fb;
  border: 1px solid #cbd7e4;
  border-top: 5px solid var(--mc-orange);
}

.mc-workshop-fit aside strong {
  display: block;
  margin-bottom: 12px;
  color: var(--mc-navy);
  font-size: 18px;
}

.mc-workshop-fit aside p {
  margin-bottom: 0;
  font-size: 15px;
}

@media (max-width: 1120px) {
  .mc-header {
    grid-template-columns: 190px 1fr auto;
    gap: 16px;
  }
  .mc-brand img { width: 180px; }
  .mc-nav { gap: 18px; }
  .mc-hero {
    grid-template-columns: 1fr;
    min-height: 0;
    padding-top: 72px;
  }
  .mc-home-hero {
    gap: 48px;
    padding: 58px 0 66px;
  }
  .mc-hero-copy { max-width: 820px; }
  .mc-product-shot { max-width: 900px; }
  .mc-workshop-hero .mc-product-shot { width: 100%; }
  .mc-home-product { width: 100%; max-width: 900px; }
  .mc-circuit { grid-template-columns: repeat(3, 1fr); }
  .mc-circuit li:nth-child(3) { border-right: 0; }
  .mc-circuit li:nth-child(n + 4) { border-top: 1px solid var(--mc-line); }
  .mc-story { gap: 55px; }
  .mc-workflow-grid-five { grid-template-columns: repeat(3, 1fr); }
  .mc-workflow-grid-five li:nth-child(3) { border-right: 0; }
  .mc-workflow-grid-five li:nth-child(n + 4) { border-top: 1px solid #385576; }
}

@media (max-width: 920px) {
  .mc-header {
    grid-template-columns: 1fr auto;
  }
  .mc-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 2px 0 7px;
    scrollbar-width: thin;
  }
  .mc-story,
  .mc-demo-section,
  .mc-faq,
  .mc-problem,
  .mc-workshop-fit {
    grid-template-columns: 1fr;
  }
  .mc-story-reverse .mc-story-copy,
  .mc-story-reverse .mc-data-panel { order: initial; }
  .mc-data-panel { max-width: 670px; }
  .mc-workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .mc-workflow-grid li:nth-child(2) { border-right: 0; }
  .mc-workflow-grid li:nth-child(n + 3) { border-top: 1px solid #385576; }
  .mc-workflow-grid-five { grid-template-columns: repeat(2, 1fr); }
  .mc-workflow-grid-five li:nth-child(3) { border-right: 1px solid #385576; }
  .mc-workflow-grid-five li:nth-child(even) { border-right: 0; }
  .mc-sector-list { grid-template-columns: repeat(2, 1fr); }
  .mc-sector-list li:nth-child(3n),
  .mc-sector-list li:nth-child(3n + 2) { padding-left: 0; }
  .mc-sector-list li:nth-child(3n) { border-right: 1px solid var(--mc-line); }
  .mc-sector-list li:nth-child(even) { padding-left: 20px; border-right: 0; }
  .mc-demo-section { gap: 55px; }
  .mc-faq { gap: 25px; }
  .mc-lite-section { grid-template-columns: 1fr; }
  .mc-capability { grid-template-columns: 60px 1fr; }
  .mc-capability .mc-compact-list { grid-column: 2; }
  .mc-step-flow { grid-template-columns: repeat(2, 1fr); }
  .mc-problem-copy { columns: initial; }
  .mc-footer { grid-template-columns: 1fr; align-items: start; gap: 28px; }
  .mc-footer nav { justify-content: flex-start; }
}

@media (max-width: 680px) {
  .mc-page { font-size: 15px; }
  .mc-header {
    min-height: 64px;
    padding: 9px 18px;
  }
  .mc-brand img { width: 155px; }
  .mc-header-actions { gap: 8px; }
  .mc-header-actions .mc-button { min-height: 39px; padding: 9px 12px; font-size: 12px; }
  .mc-nav { gap: 20px; font-size: 12px; }
  .mc-hero,
  .mc-circuit-section,
  .mc-section,
  .mc-lite-section {
    width: min(100% - 32px, 1280px);
  }
  .mc-hero { gap: 42px; padding: 56px 0; }
  .mc-home-hero { gap: 36px; padding: 40px 0 54px; }
  .mc-hero h1,
  .mc-workshop-hero h1 { font-size: clamp(38px, 12vw, 52px); }
  .mc-hero.mc-home-hero h1 {
    margin-bottom: 18px;
    font-size: clamp(36px, 10.5vw, 44px);
    line-height: 1.04;
  }
  .mc-lead { font-size: 17px; }
  .mc-home-hero .mc-lead { margin-bottom: 22px; font-size: 17px; }
  .mc-actions { flex-direction: column; }
  .mc-home-hero .mc-actions { margin-bottom: 18px; }
  .mc-actions .mc-button { width: 100%; }
  .mc-home-hero .mc-context-line { font-size: 12px; line-height: 1.65; }
  .mc-home-product-stage { border-radius: 18px; }
  .mc-home-product figcaption { padding-top: 9px; }
  .mc-product-shot figcaption { flex-direction: column; gap: 2px; }
  .mc-section,
  .mc-circuit-section { padding-block: 72px; }
  .mc-section-heading-inline { grid-template-columns: 1fr; gap: 20px; }
  .mc-section-heading h2,
  .mc-demo-section h2,
  .mc-workshop-fit h2,
  .mc-final-cta h2,
  .mc-problem h2 { font-size: 35px; }
  .mc-circuit { grid-template-columns: repeat(2, 1fr); }
  .mc-circuit li { min-height: 130px; }
  .mc-circuit li:nth-child(3) { border-right: 1px solid var(--mc-line); }
  .mc-circuit li:nth-child(even) { border-right: 0; }
  .mc-circuit li:nth-child(n + 3) { border-top: 1px solid var(--mc-line); }
  .mc-context-strip {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 18px;
    white-space: nowrap;
  }
  .mc-story { grid-template-columns: 1fr; gap: 30px; padding: 54px 0; }
  .mc-data-panel { padding: 25px; }
  .mc-workflow,
  .mc-demo-section,
  .mc-problem,
  .mc-workshop-fit { padding: 72px 18px; }
  .mc-workflow-grid,
  .mc-workflow-grid-five { grid-template-columns: 1fr; }
  .mc-workflow-grid li,
  .mc-workflow-grid-five li { min-height: 0; border-right: 0 !important; border-top: 1px solid #385576; }
  .mc-workflow-grid li:first-child { border-top: 0; }
  .mc-sector-list { grid-template-columns: 1fr; }
  .mc-sector-list li,
  .mc-sector-list li:nth-child(even),
  .mc-sector-list li:nth-child(3n) { padding-left: 0; border-right: 0; }
  .mc-lite-section { margin-block: 54px; padding: 27px 24px; }
  .mc-faq-list summary { padding-right: 40px; font-size: 16px; }
  .mc-faq-list details p { padding-right: 10px; }
  .mc-final-cta { padding: 75px 18px; }
  .mc-step-flow { grid-template-columns: 1fr; }
  .mc-step-flow li { min-height: 150px; }
  .mc-capability { grid-template-columns: 1fr; gap: 13px; padding: 45px 0; }
  .mc-capability .mc-compact-list { grid-column: auto; }
  .mc-footer { padding: 42px 18px; }
}

@media (max-width: 400px) {
  .mc-header { gap: 8px; padding-inline: 12px; }
  .mc-brand img { width: 112px; }
  .mc-header-actions { gap: 7px; }
  .mc-login { font-size: 12px; }
  .mc-header-actions .mc-button { padding-inline: 8px; font-size: 11px; }
  .mc-header-actions .mc-button span { display: none; }
  .mc-hero,
  .mc-circuit-section,
  .mc-section,
  .mc-lite-section { width: min(100% - 26px, 1280px); }
  .mc-hero h1,
  .mc-workshop-hero h1 { font-size: 36px; }
  .mc-hero.mc-home-hero h1 { font-size: 34px; }
  .mc-section-heading h2,
  .mc-demo-section h2,
  .mc-workshop-fit h2,
  .mc-final-cta h2,
  .mc-problem h2 { font-size: 31px; }
  .mc-circuit strong { font-size: 16px; }
  .mc-circuit small { font-size: 11px; }
}

@media (prefers-reduced-motion: reduce) {
  .mc-page { scroll-behavior: auto; }
  .mc-page *,
  .mc-page *::before,
  .mc-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Solicitud de demostracion */
.mc-demo-page {
  background:
    linear-gradient(180deg, #e9f0f8 0, #f7f9fc 820px, #f4f7fb 100%);
}

.mc-demo-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 72px;
  padding: 10px max(24px, calc((100vw - 1380px) / 2));
  background: rgba(6, 24, 52, 0.98);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(6, 24, 52, 0.14);
}

.mc-demo-header .mc-brand img {
  width: 202px;
}

.mc-demo-header nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #dce8f6;
  font-size: 14px;
  font-weight: 760;
}

.mc-demo-header nav a:hover {
  color: #ffffff;
}

.mc-demo-login {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 8px;
  color: #ffffff !important;
}

.mc-demo-hero {
  position: relative;
  display: grid;
  grid-template-areas:
    "intro form"
    "proof form";
  grid-template-columns: minmax(0, 1fr) minmax(510px, 0.82fr);
  align-items: start;
  gap: 36px 54px;
  width: min(1380px, calc(100% - 48px));
  margin: 28px auto 0;
  padding: clamp(40px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid #1c3b61;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 12%, rgba(11, 117, 210, 0.25), transparent 35%),
    linear-gradient(145deg, #061834 0%, #092349 58%, #0b1d39 100%);
  box-shadow: 0 30px 76px rgba(6, 24, 52, 0.2);
}

.mc-demo-hero::before,
.mc-demo-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mc-demo-hero::before {
  top: 28px;
  right: 30%;
  width: 220px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(90, 179, 255, 0.52), transparent);
}

.mc-demo-hero::after {
  bottom: 0;
  left: 9%;
  width: 1px;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(90, 179, 255, 0.34));
}

.mc-demo-intro {
  grid-area: intro;
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.mc-demo-intro .mc-eyebrow,
.mc-demo-process .mc-eyebrow {
  color: #7fc5ff;
}

.mc-demo-intro h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: clamp(42px, 4.55vw, 66px);
}

.mc-demo-lead {
  max-width: 680px;
  margin-bottom: 0;
  color: #c8d9ed;
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.58;
}

.mc-demo-proof {
  grid-area: proof;
  position: relative;
  z-index: 1;
  min-width: 0;
}

.mc-demo-proof-list {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 0 0 28px;
  color: #edf5ff;
  list-style: none;
  font-size: 14px;
  font-weight: 720;
}

.mc-demo-proof-list li {
  position: relative;
  padding-left: 26px;
}

.mc-demo-proof-list li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 12px;
  height: 4px;
  border-radius: 3px;
  background: #ff7a1a;
}

.mc-demo-composition {
  position: relative;
  min-height: 325px;
  margin: 0;
  padding-bottom: 34px;
}

.mc-demo-web-shot,
.mc-demo-tablet-shot {
  overflow: hidden;
  border: 1px solid rgba(183, 212, 242, 0.54);
  background: #e9f0f7;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.mc-demo-web-shot {
  width: 89%;
  padding: 7px;
  border-radius: 14px;
}

.mc-demo-web-shot span,
.mc-demo-tablet-shot span {
  display: block;
  padding: 2px 5px 7px;
  color: #47637e;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-demo-web-shot img,
.mc-demo-tablet-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.mc-demo-tablet-shot {
  position: absolute;
  right: 0;
  bottom: 16px;
  width: 48%;
  padding: 8px;
  border: 6px solid #18324f;
  border-radius: 18px;
}

.mc-demo-tablet-shot img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: left center;
}

.mc-demo-composition figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #9fb8d3;
  font-size: 11px;
  font-weight: 740;
}

.mc-demo-form-card {
  grid-area: form;
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  border: 1px solid #c9d7e7;
  border-top: 5px solid var(--mc-orange);
  border-radius: 15px;
  background: #ffffff;
  color: var(--mc-ink);
  box-shadow: 0 24px 60px rgba(0, 8, 24, 0.3);
}

.mc-demo-form-heading {
  margin-bottom: 16px;
}

.mc-demo-form-heading .mc-eyebrow {
  margin-bottom: 8px;
}

.mc-demo-form-heading h2,
.mc-demo-success h2 {
  margin-bottom: 9px;
  color: var(--mc-navy);
  font-size: clamp(27px, 2.3vw, 35px);
}

.mc-demo-form-heading > p:last-child,
.mc-demo-success > p:not(.mc-eyebrow) {
  margin-bottom: 0;
  color: var(--mc-muted);
  font-size: 14px;
}

.mc-demo-form-card form {
  display: grid;
  gap: 10px;
}

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

.mc-demo-field {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
}

.mc-demo-field label {
  color: #1e3551;
  font-size: 12px;
  font-weight: 820;
}

.mc-demo-field label span {
  color: #5c6f84;
  font-weight: 600;
}

.mc-demo-field input,
.mc-demo-field select,
.mc-demo-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 9px 11px;
  border: 1px solid #7890ab;
  border-radius: 7px;
  outline: 0;
  background: #ffffff;
  color: #10233f;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.mc-demo-field select {
  cursor: pointer;
}

.mc-demo-field textarea {
  min-height: 72px;
  resize: vertical;
}

.mc-demo-field input:focus,
.mc-demo-field select:focus,
.mc-demo-field textarea:focus {
  border-color: var(--mc-blue);
  box-shadow: 0 0 0 3px rgba(7, 95, 190, 0.15);
}

.mc-demo-field input[aria-invalid="true"],
.mc-demo-field select[aria-invalid="true"],
.mc-demo-field textarea[aria-invalid="true"] {
  border-color: #b42318;
}

.mc-demo-field-error {
  color: #a02219;
  font-size: 11px;
  font-weight: 700;
}

.mc-demo-field-help {
  color: #5c6f84;
  font-size: 11px;
}

.mc-demo-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.mc-demo-privacy,
.mc-demo-email-option {
  margin-bottom: 0;
  color: #60738a;
  font-size: 11px;
  line-height: 1.5;
}

.mc-demo-privacy a,
.mc-demo-email-option a {
  color: var(--mc-blue) !important;
  font-weight: 790;
  text-decoration: underline !important;
  text-underline-offset: 3px;
}

.mc-demo-submit-status {
  min-height: 0;
}

.mc-demo-submit-status p {
  margin: 0;
  color: #a02219;
  font-size: 12px;
  font-weight: 720;
}

.mc-demo-submit {
  width: 100%;
  min-height: 52px;
  cursor: pointer;
}

.mc-demo-submit:disabled {
  cursor: wait;
  opacity: 0.66;
  transform: none;
}

.mc-demo-email-option {
  text-align: center;
}

.mc-demo-success {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 600px;
}

.mc-demo-success-mark {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: #ddf5ed;
  color: #08725d;
  font-size: 27px;
  font-weight: 900;
}

.mc-demo-success-actions {
  display: grid;
  gap: 11px;
  margin-top: 28px;
}

.mc-demo-success-actions .mc-button {
  width: 100%;
}

.mc-demo-areas {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 112px 0 86px;
}

.mc-demo-section-heading {
  max-width: 780px;
  margin-bottom: 54px;
}

.mc-demo-section-heading h2,
.mc-demo-faq h2,
.mc-demo-lite h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 3.8vw, 54px);
}

.mc-demo-section-heading > p:last-child,
.mc-demo-lite p {
  color: var(--mc-muted);
  font-size: 17px;
}

.mc-demo-area {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(520px, 1.3fr);
  align-items: center;
  gap: clamp(44px, 7vw, 96px);
  padding: 65px 0;
  border-top: 1px solid #c8d5e4;
}

.mc-demo-area-reverse .mc-demo-area-copy {
  order: 2;
}

.mc-demo-area-reverse figure {
  order: 1;
}

.mc-demo-area-taller {
  grid-template-columns: minmax(620px, 1.45fr) minmax(280px, 0.55fr);
}

.mc-demo-area-operacion {
  grid-template-columns: minmax(260px, 0.55fr) minmax(620px, 1.45fr);
}

.mc-demo-area-gallery {
  display: grid;
  min-width: 0;
  gap: 28px;
}

.mc-demo-area-copy > span,
.mc-demo-process li > span {
  color: var(--mc-blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mc-demo-area-copy h3 {
  margin: 13px 0 16px;
  font-size: clamp(28px, 3vw, 42px);
}

.mc-demo-area-copy > p {
  color: var(--mc-muted);
}

.mc-demo-area-copy ul {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 23px 0 0;
  list-style: none;
}

.mc-demo-area-copy li {
  position: relative;
  padding-left: 24px;
  color: #29445f;
  font-size: 14px;
  font-weight: 700;
}

.mc-demo-area-copy li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 10px;
  height: 3px;
  background: var(--mc-orange);
}

.mc-demo-area figure {
  min-width: 0;
  margin: 0;
}

.mc-demo-area figure img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 470px;
  object-fit: cover;
  border: 8px solid #e7edf5;
  border-radius: 13px;
  box-shadow: 0 22px 52px rgba(6, 24, 52, 0.15);
}

.mc-demo-area figure figcaption {
  margin-top: 12px;
  color: #596d84;
  font-size: 11px;
  font-weight: 740;
}

.mc-demo-process {
  padding: 94px max(24px, calc((100vw - 1280px) / 2));
  background:
    linear-gradient(90deg, rgba(13, 67, 119, 0.25) 1px, transparent 1px) 0 0 / 120px 100%,
    var(--mc-navy);
  color: #dce9f7;
}

.mc-demo-process .mc-demo-section-heading {
  margin-bottom: 42px;
}

.mc-demo-process h2 {
  margin-bottom: 0;
  color: #ffffff;
}

.mc-demo-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  border-top: 1px solid #46627f;
  border-left: 1px solid #365572;
  list-style: none;
}

.mc-demo-process li {
  min-height: 235px;
  padding: 28px;
  border-right: 1px solid #365572;
  border-bottom: 1px solid #365572;
  background: rgba(4, 20, 43, 0.36);
}

.mc-demo-process li > span {
  color: #7fc5ff;
}

.mc-demo-process li h3 {
  margin: 42px 0 10px;
  color: #ffffff;
  font-size: 22px;
}

.mc-demo-process li p {
  margin-bottom: 0;
  color: #b9cce0;
  font-size: 14px;
}

.mc-demo-faq {
  padding-block: 108px;
}

.mc-demo-lite {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 50px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 90px;
  padding: 42px 46px;
  border: 1px solid #c8d6e5;
  border-left: 5px solid var(--mc-green);
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(6, 24, 52, 0.08);
}

.mc-demo-lite h2 {
  margin-bottom: 12px;
  font-size: clamp(29px, 3.2vw, 43px);
}

.mc-demo-lite p:last-child {
  max-width: 820px;
  margin-bottom: 0;
  font-size: 15px;
}

.mc-demo-lite .mc-button {
  white-space: nowrap;
}

.mc-demo-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  padding: 40px max(24px, calc((100vw - 1280px) / 2));
  background: var(--mc-navy);
  color: #cbd9e9;
}

.mc-demo-footer .mc-footer-brand img {
  width: 175px;
}

.mc-demo-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 25px;
  font-size: 13px;
  font-weight: 720;
}

.mc-demo-footer nav a:hover {
  color: #ffffff;
}

@media (max-width: 1120px) {
  .mc-demo-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(455px, 1.1fr);
    gap: 34px;
    padding: 44px;
  }

  .mc-demo-intro h1 {
    font-size: clamp(40px, 5vw, 56px);
  }

  .mc-demo-composition {
    min-height: 270px;
  }

  .mc-demo-area {
    grid-template-columns: minmax(260px, 0.78fr) minmax(430px, 1.22fr);
    gap: 44px;
  }

  .mc-demo-area-taller {
    grid-template-columns: minmax(540px, 1.4fr) minmax(260px, 0.6fr);
  }

  .mc-demo-area-operacion {
    grid-template-columns: minmax(250px, 0.6fr) minmax(540px, 1.4fr);
  }
}

@media (max-width: 920px) {
  .mc-demo-hero {
    grid-template-areas:
      "intro"
      "form"
      "proof";
    grid-template-columns: minmax(0, 1fr);
    gap: 38px;
    padding: 52px;
  }

  .mc-demo-intro,
  .mc-demo-proof,
  .mc-demo-form-card {
    max-width: 720px;
  }

  .mc-demo-form-card {
    justify-self: stretch;
  }

  .mc-demo-composition {
    min-height: 380px;
  }

  .mc-demo-area,
  .mc-demo-area-reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mc-demo-area-reverse .mc-demo-area-copy,
  .mc-demo-area-reverse figure {
    order: initial;
  }

  .mc-demo-area-copy {
    max-width: 700px;
  }

  .mc-demo-lite {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .mc-demo-lite .mc-button {
    white-space: normal;
  }
}

@media (max-width: 680px) {
  .mc-demo-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 10px 18px 12px;
  }

  .mc-demo-header .mc-brand img {
    width: 164px;
  }

  .mc-demo-header nav {
    justify-content: space-between;
    gap: 14px;
    font-size: 12px;
  }

  .mc-demo-login {
    min-height: 40px;
    padding: 7px 13px;
  }

  .mc-demo-hero {
    width: calc(100% - 26px);
    margin-top: 13px;
    padding: 31px 23px;
    border-radius: 17px;
  }

  .mc-demo-intro h1 {
    font-size: clamp(35px, 10.6vw, 46px);
  }

  .mc-demo-lead {
    font-size: 16px;
  }

  .mc-demo-form-card {
    padding: 23px 19px;
  }

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

  .mc-demo-composition {
    min-height: 0;
    padding-bottom: 0;
  }

  .mc-demo-web-shot {
    width: 100%;
  }

  .mc-demo-tablet-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: 72%;
    margin: -18px 0 34px auto;
  }

  .mc-demo-composition figcaption {
    position: static;
    margin-top: 9px;
  }

  .mc-demo-success {
    min-height: 500px;
  }

  .mc-demo-areas {
    width: calc(100% - 32px);
    padding: 78px 0 58px;
  }

  .mc-demo-section-heading h2,
  .mc-demo-faq h2,
  .mc-demo-lite h2 {
    font-size: 34px;
  }

  .mc-demo-area {
    padding: 48px 0;
  }

  .mc-demo-area figure img {
    border-width: 5px;
  }

  .mc-demo-process {
    padding: 72px 18px;
  }

  .mc-demo-process ol {
    grid-template-columns: 1fr;
  }

  .mc-demo-process li {
    min-height: 185px;
  }

  .mc-demo-process li h3 {
    margin-top: 28px;
  }

  .mc-demo-faq {
    padding-block: 76px;
  }

  .mc-demo-lite {
    width: calc(100% - 32px);
    margin-bottom: 58px;
    padding: 30px 25px;
  }

  .mc-demo-lite .mc-button {
    width: 100%;
  }

  .mc-demo-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 38px 18px;
  }

  .mc-demo-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 400px) {
  .mc-demo-hero {
    width: calc(100% - 20px);
    padding-inline: 19px;
  }

  .mc-demo-intro h1 {
    font-size: 35px;
  }

  .mc-demo-form-card {
    padding-inline: 16px;
  }

  .mc-demo-tablet-shot {
    width: 82%;
  }
}
