/* EasyBooks MTD page — matches Figma Desktop-1 (1440) + iPhone (402) */

.mtd {
  --mtd-green: #3ee65c;
  --mtd-teal: #06adc7;
  --mtd-teal-deep: #0291ab;
  --mtd-teal-mid: #35a3b8;
  --mtd-teal-dark: #065260;
  --mtd-text: #000;
  --mtd-muted: #4a4a4a;
  --mtd-bg-soft: #f2feff;
  --mtd-bg-gray: #fafafa;
  --mtd-border: #ededed;
  --mtd-font: 'Noway-Round-Regular', Noway-Round-Regular, sans-serif;
  --mtd-max: 1440px;
  --mtd-pad: 72px;
  font-family: var(--mtd-font);
  color: var(--mtd-text);
  background: #fff;
  overflow-x: hidden;
}

/* Override global theme h1–h6 { color:#028ca6 } */
.mtd h1,
.mtd h2,
.mtd h3,
.mtd h4,
.mtd h5,
.mtd h6 {
  color: inherit;
  font-weight: 400;
}

.mtd *,
.mtd *::before,
.mtd *::after {
  box-sizing: border-box;
}

.mtd img {
  max-width: 100%;
  height: auto;
  display: block;
}

.mtd a {
  text-decoration: none;
}

.mtd-wrap {
  width: 100%;
  max-width: var(--mtd-max);
  margin: 0 auto;
  padding-left: var(--mtd-pad);
  padding-right: var(--mtd-pad);
}

/* Buttons */
.mtd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-radius: 999px;
  font-family: var(--mtd-font);
  font-size: 18px;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  transition: opacity .15s ease, background-color .15s ease, color .15s ease;
}

.mtd-btn:hover {
  opacity: .92;
}

.mtd-btn--fill {
  background: var(--mtd-green);
  color: #fff;
}

.mtd-btn--outline {
  background: transparent;
  color: var(--mtd-green);
  border-color: var(--mtd-green);
}

.mtd-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* ========== HERO ========== */
.mtd-hero {
  --mtd-nav-h: 100px; /* matches .c-header / .body-container-wrapper */
  padding-top: 40px;
  text-align: center;
  background-color: #FAFAFA;
}

.mtd-hero__copy {
  max-width: 862px;
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 0;
}


@media (min-width: 1200px) {
  .mtd-hero__copy {
    margin: 32px auto;
  }
}

.mtd-hero__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 862px;
}

.mtd-hero__title {
  margin: 0;
  width: 100%;
  max-width: 862px;
  font-family: var(--mtd-font);
  font-size: 52px;
  line-height: 1.24;
  font-weight: 400;
  color: #000;
}

.mtd-hero__sub {
  margin: 0;
  max-width: 490px;
  font-size: 18px;
  line-height: 1.64;
  color: var(--mtd-muted);
}

/*
  Hero visual — single Figma export via <picture>, full-bleed edge-to-edge.
  Desktop asset @3x (4320×1267) stays sharp through ≥1920 CSS px.
*/
.mtd-hero__visual {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  margin-top: 24px;
  margin-left: calc(50% - 50vw);
  line-height: 0;
}

.mtd-hero__visual picture {
  display: block;
  width: 100%;
}

.mtd img.mtd-hero__visual-img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  pointer-events: none;
}

/* ========== INTRO ========== */
/* Figma: intro text ends ~1062, platforms at y=1089 → ~27px gap (not full 94 bottom pad) */
.mtd-intro {
  padding: 94px 0 0;
  text-align: center;
}

.mtd-intro__inner {
  max-width: 862px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mtd-h2 {
  margin: 0;
  font-family: var(--mtd-font);
  font-size: 44px;
  line-height: 1.24;
  font-weight: 400;
  color: #000;
  width: 100%;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.mtd-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.64;
  color: var(--mtd-muted);
}

.mtd-platforms {
  display: flex;
  justify-content: center;
  padding: 27px 0 37px;
}

/* ========== AUDIENCE ========== */
.mtd-audience {
  background: linear-gradient(180deg, #06adc7 0%, #0291ab 100%);
  padding: 94px var(--mtd-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.mtd-audience .mtd-h2 {
  color: #fff;
  text-align: center;
  max-width: 614px;
}

.mtd-audience__grid {
  width: 100%;
  max-width: 1296px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mtd-audience__row {
  display: flex;
  gap: 24px;
  width: 100%;
}

.mtd-card {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  min-width: 0;
}

.mtd-card__icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 90px;
  overflow: hidden;
}

.mtd-card__icon img {
  width: 44px;
  height: 44px;
  object-fit: cover;
}

.mtd-card__text {
  flex: 1;
  margin: 0;
  font-size: 16px;
  line-height: 1.44;
  color: #000;
  position: relative;
}

.mtd-card__text .mtd-q {
  display: block;
  width: 24px;
  height: 24px;
  margin: 0;
}

.mtd-tooltip {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  margin-left: 6px;
}

.mtd-tooltip__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: 0;
  background: transparent;
  cursor: help;
  line-height: 0;
}

.mtd-tooltip__bubble {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%);
  z-index: 20;
  width: min(320px, 70vw);
  padding: 12px 14px;
  border-radius: 12px;
  background: #065260;
  color: #fff;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 400;
  text-align: left;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .15s ease, visibility .15s ease;
}

.mtd-tooltip__bubble strong,
.mtd-tooltip__bubble b {
  font-weight: 700;
}

.mtd-tooltip__bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: #065260;
}

.mtd-tooltip:hover .mtd-tooltip__bubble,
.mtd-tooltip:focus-within .mtd-tooltip__bubble,
.mtd-tooltip.is-open .mtd-tooltip__bubble {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========== STEPS ========== */
.mtd-steps {
  padding: 94px 0;
}

.mtd-steps__heading {
  /* Figma title block = 614px; don’t put horizontal padding inside max-width (border-box) */
  width: calc(100% - 2 * var(--mtd-pad));
  max-width: 614px;
  margin: 0 auto;
  text-align: center;
  padding: 0;
}

.mtd-step {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 64px 182px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.mtd-step--reverse {
  flex-direction: row-reverse;
}

.mtd-step__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 64px;
}

.mtd-step__title-row {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.mtd-step__num {
  width: 44px;
  height: 44px;
  border-radius: 11.264px;
  background: var(--mtd-teal-mid);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19.36px;
  line-height: 1;
  flex-shrink: 0;
}

.mtd-step__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.24;
  font-weight: 400;
  color: #000;
}

.mtd-step__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mtd-step__block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mtd-step__block h4 {
  margin: 0;
  font-size: 24px;
  line-height: 1.24;
  font-weight: 400;
  color: #000;
}

.mtd-step__block p {
  margin: 0;
  font-size: 16px;
  line-height: 1.64;
  color: var(--mtd-muted);
}

/* Figma 1:1293 Frame 25 — 513×72, bg #d2f9d9, pl12 pr24 py16, gap16
   Icon Info/Med 40×40 @ (12,16); text 20/1.24 @ (68,16) w421 h39 */
.mtd-step__callout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px 16px 12px;
  background: #d2f9d9;
  width: 100%;
  box-sizing: border-box;
}

.mtd-step__callout-icon,
.mtd img.mtd-step__callout-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  display: block;
  max-width: none;
}

.mtd-step__callout p {
  margin: 0;
  flex: 1 1 0;
  min-width: 0;
  font-family: var(--mtd-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.24;
  color: #000;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.mtd-step__media {
  flex: 0 0 371px;
  width: 371px;
  height: 440px;
  border-radius: 32px;
  border: 1px solid var(--mtd-border);
  background: var(--mtd-bg-gray);
  overflow: hidden;
}

.mtd-step__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== DOWNLOAD CTA ========== */
/* Figma 1:786 — 1074×524; left col 64+406; image 580 at x=494; buttons row 356 */
.mtd-download {
  padding: 0 var(--mtd-pad) 94px;
}

.mtd-download__box {
  max-width: 1074px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  background: #fafafa;
  border-radius: 44px;
  overflow: hidden;
  min-height: 524px;
  box-sizing: border-box;
}

.mtd-download__copy {
  flex: 0 0 470px;
  width: 470px;
  max-width: 470px;
  box-sizing: border-box;
  padding: 64px 0 64px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.mtd-download__copy .mtd-h2 {
  margin: 0;
  font-size: 44px;
  line-height: 1.24;
  width: 406px;
  max-width: 100%;
}

.mtd-download__copy .mtd-lead {
  margin: 0;
  width: 406px;
  max-width: 100%;
}

.mtd-download__copy .mtd-btn-row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 8px;
  width: 406px;
  max-width: 100%;
  margin-top: 8px; /* Frame 20: text 152 + buttons at y=176 → ~24px after text block feel */
}

.mtd-download__copy .mtd-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.mtd-download__media {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  overflow: hidden;
}

.mtd-download__media img {
  width: 580px;
  max-width: 100%;
  height: 524px;
  object-fit: cover;
  object-position: left center;
}

/* ========== QUOTE ========== */
/* Figma text block 860px — centered horizontally */
.mtd-quote {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 94px var(--mtd-pad);
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

.mtd-quote__inner {
  position: relative;
  max-width: 860px;
  width: 100%;
}

.mtd-quote__mark {
  position: absolute;
  left: 0;
  top: 4px;
  width: 378px;
  max-width: 100%;
  height: 44px;
  background: #f2feff;
  z-index: 0;
  pointer-events: none;
}

.mtd-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--mtd-font);
  font-size: 44px;
  line-height: 1.24;
  font-weight: 400;
  color: #000;
  text-align: left;
}

/* ========== CHECKLIST ========== */
.mtd-gives {
  padding: 0 var(--mtd-pad) 94px;
}

.mtd-gives__box {
  max-width: 1074px;
  margin: 0 auto;
  background: var(--mtd-bg-soft);
  border-radius: 44px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
}

.mtd-gives__box .mtd-h2 {
  text-align: center;
  width: 100%;
}

.mtd-gives__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 856px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mtd-gives__list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mtd-gives__list li img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 3px;
}

.mtd-gives__list li span {
  font-size: 18px;
  line-height: 1.64;
  color: var(--mtd-muted);
}

/* ========== FEEDBACK ========== */
.mtd-feedback {
  background: linear-gradient(180deg, #06adc7 0%, #0291ab 100%);
  padding: 94px var(--mtd-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
  color: #fff;
}

.mtd-feedback .mtd-h2,
.mtd-feedback .mtd-lead {
  color: #fff;
  max-width: 614px;
}

.mtd-feedback__avatars {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mtd-feedback__avatars img {
  width: 124px;
  height: 124px;
  border-radius: 50%;
  border: 4px solid #fff;
  object-fit: cover;
  object-position: left;
  margin-right: -16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
  background: #0291ab;
}

.mtd-feedback__avatars img:last-child {
  margin-right: 0;
}

/* ========== PRICING (uses shared /pricing/ markup + pricing.js) ========== */
.mtd-pricing {
  padding: 94px var(--mtd-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}

.mtd-pricing__intro {
  max-width: 614px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mtd-pricing__component {
  width: 100%;
}

/* On /pricing/ labels are white (dark section). On MTD page force readable color. */
.mtd-pricing .toggle-wrapper .annual-pricing,
.mtd-pricing .toggle-wrapper .monthly-pricing {
  color: #4a4a4a;
}

.mtd-pricing .toggle-wrapper {
  margin-top: 0;
  margin-bottom: 0;
}

.mtd-pricing .c-price-box {
  text-align: left;
  margin-top: 120px;
}

/* ========== FAQ ========== */
.mtd-faq {
  background: var(--mtd-bg-gray);
  padding: 94px var(--mtd-pad);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 44px;
  text-align: center;
}

.mtd-faq__intro {
  max-width: 635px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.mtd-faq__reviewed {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--mtd-muted);
}

.mtd-faq__list {
  width: 100%;
  max-width: 858px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.mtd-faq__item {
  background: #fff;
  border: 1px solid var(--mtd-border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
  padding: 24px;
}

.mtd-faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--mtd-font);
  font-size: 20px;
  line-height: 1.44;
  color: #000;
}

/* Figma Dropdown arrow: 24×24, chevron #0B8FA6; open = rotate 90deg */
.mtd-faq__arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.mtd-faq__arrow img {
  width: 24px;
  height: 24px;
  display: block;
  transition: transform .2s ease;
}

.mtd-faq__item.is-open .mtd-faq__arrow img {
  transform: rotate(90deg);
}

.mtd-faq__a {
  display: none;
  margin: 8px 0 0;
  padding-left: 36px;
  font-size: 16px;
  line-height: 1.64;
  color: var(--mtd-muted);
}

.mtd-faq__item.is-open .mtd-faq__a {
  display: block;
}

/* Mobile copy helpers */
.mtd-desktop-copy { display: inline; }
.mtd-mobile-copy { display: none; }

.mtd a.mtd-only-mobile { display: none; }


/* ========== RESPONSIVE: tablet ========== */
@media (max-width: 1200px) {
  .mtd {
    --mtd-pad: 40px;
  }

  .mtd-hero__title {
    font-size: 40px;
  }

  .mtd-h2,
  .mtd-quote p,
  .mtd-download__copy .mtd-h2 {
    font-size: 36px;
  }

  .mtd-step {
    padding: 48px 40px;
    gap: 32px;
  }

  .mtd-step__content {
    padding: 0;
  }

  .mtd-quote {
    padding: 72px var(--mtd-pad);
  }

  .mtd-quote__mark {
    width: 280px;
    height: 36px;
    top: 2px;
  }

  .mtd-download__box {
    flex-direction: column;
    min-height: 0;
  }

  .mtd-download__copy {
    flex: none;
    width: 100%;
    max-width: none;
    padding: 48px 40px 24px;
  }

  .mtd-download__copy .mtd-h2,
  .mtd-download__copy .mtd-lead,
  .mtd-download__copy .mtd-btn-row {
    width: 100%;
  }

  .mtd-download__copy .mtd-btn-row {
    flex-wrap: wrap;
  }

  .mtd-download__media {
    justify-content: center;
    padding: 0 24px 40px;
  }

  .mtd-download__media img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .mtd-audience__row {
    flex-wrap: wrap;
  }

  .mtd-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* ========== RESPONSIVE: mobile (Figma 402) ========== */
@media (max-width: 767px) {
  .mtd {
    --mtd-pad: 16px;
  }

  .mtd-desktop-copy { display: none; }
  .mtd-mobile-copy { display: inline; }

  .mtd a.mtd-only-desktop { display: none; }
  .mtd a.mtd-only-mobile { display: inline-flex; }

  .mtd-hero {
    padding-top: 47px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .mtd-hero__copy {
    max-width: 370px;
    gap: 30px;
  }

  .mtd-hero__titles {
    max-width: 370px;
  }

  .mtd-hero__title {
    max-width: 370px;
    font-size: 32px;
    line-height: 1.24;
  }

  .mtd-hero__sub {
    max-width: 370px;
    font-size: 18px;
  }

  .mtd-btn {
    width: auto;
    max-width: 100%;
  }

  .mtd-hero__visual {
    width: 100vw;
    max-width: 100vw;
    margin: 24px 0 0;
    margin-left: calc(50% - 50vw);
  }

  .mtd-intro {
    padding: 44px 16px 0;
  }

  .mtd-intro__inner {
    max-width: 370px;
  }

  .mtd-h2 {
    font-size: 32px;
  }

  .mtd-platforms {
    padding: 24px 16px 44px;
  }

  .mtd-btn-row {
    justify-content: center;
    width: 100%;
  }

  .mtd-btn-row .mtd-btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .mtd-audience {
    padding: 44px 16px;
    gap: 24px;
  }

  .mtd-audience__row {
    flex-direction: column;
    gap: 16px;
  }

  .mtd-card {
    flex: none;
    width: 100%;
    align-items: flex-start;
  }

  .mtd-steps {
    padding: 44px 0;
  }

  .mtd-step,
  .mtd-step--reverse {
    flex-direction: column;
    padding: 32px 16px;
    gap: 24px;
  }

  .mtd-step__content {
    width: 100%;
    padding: 0;
    order: 1;
  }

  .mtd-step__media {
    order: 2;
    width: 100%;
    max-width: 371px;
    flex: none;
    height: auto;
    aspect-ratio: 371 / 440;
  }

  .mtd-step__title {
    font-size: 28px;
  }

  .mtd-step__block h4 {
    font-size: 20px;
  }

  .mtd-step__callout p {
    font-size: 16px;
  }

  .mtd-download {
    padding: 0 16px 44px;
  }

  .mtd-download__copy {
    padding: 40px 24px 24px;
  }

  .mtd-download__copy .mtd-h2 {
    font-size: 32px;
  }

  .mtd-download__copy .mtd-btn-row {
    flex-wrap: wrap;
  }

  .mtd-download__media {
    padding: 0 16px 32px;
  }

  .mtd-quote {
    padding: 44px 16px;
  }

  .mtd-quote__mark {
    width: 200px;
    height: 28px;
    top: 2px;
  }

  .mtd-quote p {
    font-size: 28px;
  }

  .mtd-gives {
    padding: 0 16px 44px;
  }

  .mtd-gives__box {
    padding: 32px 20px;
    border-radius: 28px;
    gap: 28px;
  }

  .mtd-gives__list li span {
    font-size: 16px;
  }

  .mtd-feedback {
    padding: 44px 16px;
  }

  .mtd-feedback__avatars {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 340px;
  }

  .mtd-feedback__avatars img {
    width: 72px;
    height: 72px;
    margin-right: -12px;
  }

  .mtd-pricing,
  .mtd-faq {
    padding: 44px 16px;
  }

  .mtd-pricing .toggle-wrapper {
    margin-bottom: 28px;
  }

  .mtd-faq__list {
    max-width: 100%;
  }

  .mtd-faq__q {
    font-size: 18px;
  }

  .mtd-faq__a {
    padding-left: 0;
  }
}

/*
  Desktop (≥1024px) + viewport height 800–1050px: fit hero into the first screen.
  Otherwise keep the default/natural hero layout.
*/
@media (min-width: 1024px) and (min-height: 800px) and (max-height: 1080px) {
  .mtd-hero {
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    height: calc(100vh - var(--mtd-nav-h));
    height: calc(100dvh - var(--mtd-nav-h));
    max-height: calc(100vh - var(--mtd-nav-h));
    max-height: calc(100dvh - var(--mtd-nav-h));
    padding-top: clamp(16px, 4.2vh, 44px);
  }

  .mtd-hero__copy {
    flex: 0 0 auto;
    gap: clamp(12px, 2.8vh, 30px);
  }

  .mtd-hero__titles {
    gap: clamp(8px, 1.6vh, 16px);
  }

  .mtd-hero__title {
    font-size: clamp(32px, 5.4vh, 52px);
  }

  .mtd-hero__sub {
    font-size: clamp(15px, 1.9vh, 18px);
    line-height: 1.5;
  }

  .mtd-hero .mtd-btn {
    padding-top: clamp(12px, 2vh, 20px);
    padding-bottom: clamp(12px, 2vh, 20px);
    font-size: clamp(15px, 1.9vh, 18px);
    margin-bottom: 10px;
  }

  .mtd-hero__visual {
    margin-top: auto;
  }

  .mtd img.mtd-hero__visual-img {
    width: 100%;
    height: auto;
  }
}

.eche {}
