/*
 * Lukas Teissl – responsive webinar & appointment pages
 * Mobile-first, isolated component styles. Version: 2026-07-19.4
 */
:root {
  --ltx-ink: #0b1220;
  --ltx-ink-soft: #253044;
  --ltx-muted: #5f6b7a;
  --ltx-green: #3a8b03;
  --ltx-green-dark: #286500;
  --ltx-green-soft: #edf7e8;
  --ltx-green-pale: #f6fbf3;
  --ltx-line: rgba(15, 23, 42, .10);
  --ltx-white: #ffffff;
  --ltx-shadow: 0 18px 55px rgba(15, 23, 42, .10);
  --ltx-shadow-strong: 0 26px 80px rgba(15, 23, 42, .15);
}

html.ltx-active,
html.ltx-active body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Keep the existing compact header backdrop in the document flow.
 * The site navigation is positioned absolutely above this area. */
html.ltx-active .page-title-area {
  display: block !important;
  height: 105px !important;
  min-height: 105px !important;
}

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

.ltx-page {
  width: 100%;
  max-width: 100%;
  overflow: clip;
  color: var(--ltx-ink);
  background: var(--ltx-white);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.ltx-page img,
.ltx-page svg {
  display: block;
  max-width: 100%;
}

.ltx-page h1,
.ltx-page h2,
.ltx-page h3,
.ltx-page p,
.ltx-page ul {
  margin-top: 0;
}

.ltx-page h1,
.ltx-page h2,
.ltx-page h3 {
  max-width: 100%;
  color: var(--ltx-ink);
  font-family: inherit;
  font-weight: 800;
  letter-spacing: -.028em;
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.ltx-page p,
.ltx-page li,
.ltx-page a,
.ltx-page span {
  word-break: normal;
  overflow-wrap: break-word;
}

.ltx-container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.ltx-section {
  padding: 54px 0;
}

.ltx-section--soft {
  background: #f7f9f6;
}

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

.ltx-section-heading {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.ltx-section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.ltx-section-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(1.65rem, 7vw, 2.22rem);
  line-height: 1.14;
}

.ltx-section-heading p {
  margin-bottom: 0;
  color: var(--ltx-muted);
  font-size: .96rem;
  line-height: 1.65;
}

.ltx-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 13px;
  padding: 7px 11px;
  border: 1px solid rgba(58, 139, 3, .18);
  border-radius: 999px;
  color: var(--ltx-green-dark);
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 8px 24px rgba(58, 139, 3, .08);
  font-size: .72rem;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.ltx-eyebrow svg {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

/* Hero – one column by default. Desktop columns exist only in min-width query. */
.ltx-hero {
  position: relative;
  isolation: isolate;
  padding: 44px 0 48px;
  background:
    radial-gradient(circle at 92% 14%, rgba(58, 139, 3, .14), transparent 31%),
    radial-gradient(circle at 8% 90%, rgba(159, 211, 124, .18), transparent 34%),
    linear-gradient(135deg, #f8fcf5 0%, #edf6e8 58%, #f7faf5 100%);
}

.ltx-hero::before,
.ltx-hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  pointer-events: none;
}

.ltx-hero::before {
  top: -110px;
  right: -145px;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(58, 139, 3, .10);
  border-radius: 50%;
}

.ltx-hero::after {
  bottom: -120px;
  left: -145px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(58, 139, 3, .09);
  border-radius: 50%;
}

.ltx-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  width: 100%;
}

.ltx-hero__copy,
.ltx-hero__visual {
  min-width: 0;
  width: 100%;
  max-width: 100%;
}

.ltx-hero h1 {
  width: 100%;
  margin-bottom: 15px;
  font-size: clamp(2.05rem, 9vw, 3rem);
  line-height: 1.045;
  letter-spacing: -.045em;
}

.ltx-hero__lead {
  max-width: 720px;
  margin-bottom: 19px;
  color: var(--ltx-ink-soft);
  font-size: .98rem;
  line-height: 1.67;
}

.ltx-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 21px;
}

.ltx-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  padding: 7px 10px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 999px;
  color: #273044;
  background: rgba(255, 255, 255, .78);
  font-size: .79rem;
  font-weight: 720;
  line-height: 1.2;
}

.ltx-chip svg {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  color: var(--ltx-green);
}

.ltx-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.ltx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 50px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: .93rem;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none !important;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.ltx-btn:hover,
.ltx-btn:focus-visible {
  transform: translateY(-2px);
  text-decoration: none !important;
}

.ltx-btn:focus-visible {
  outline: 3px solid rgba(58, 139, 3, .24);
  outline-offset: 3px;
}

.ltx-btn--primary {
  color: #fff !important;
  background: linear-gradient(135deg, #3f9805 0%, #2f7700 100%);
  box-shadow: 0 14px 30px rgba(58, 139, 3, .24);
}

.ltx-btn--primary:hover,
.ltx-btn--primary:focus-visible {
  color: #fff !important;
  box-shadow: 0 18px 38px rgba(58, 139, 3, .31);
}

.ltx-btn--secondary {
  color: var(--ltx-ink) !important;
  border-color: rgba(15, 23, 42, .13);
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06);
}

.ltx-btn--secondary:hover,
.ltx-btn--secondary:focus-visible {
  color: var(--ltx-green-dark) !important;
  border-color: rgba(58, 139, 3, .25);
  background: #fff;
}

.ltx-btn svg {
  flex: 0 0 17px;
  width: 17px;
  height: 17px;
}

.ltx-microcopy {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin: 12px 0 0;
  color: var(--ltx-muted);
  font-size: .78rem;
  line-height: 1.45;
}

.ltx-microcopy svg {
  flex: 0 0 14px;
  width: 14px;
  height: 14px;
  margin-top: 2px;
  color: var(--ltx-green);
}

/* CSS-built visual: no fragile image sizing on phones. */
.ltx-hub-card {
  width: min(100%, 520px);
  margin-inline: auto;
  padding: 17px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 22px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--ltx-shadow);
  backdrop-filter: blur(12px);
}

.ltx-hub-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(15, 23, 42, .08);
}

.ltx-hub-card__title {
  min-width: 0;
}

.ltx-hub-card__title strong,
.ltx-hub-card__title span {
  display: block;
}

.ltx-hub-card__title strong {
  color: var(--ltx-ink);
  font-size: .93rem;
  line-height: 1.25;
}

.ltx-hub-card__title span {
  margin-top: 3px;
  color: var(--ltx-muted);
  font-size: .73rem;
  line-height: 1.35;
}

.ltx-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--ltx-green-dark);
  background: var(--ltx-green-soft);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ltx-live-badge::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #46a80a;
  box-shadow: 0 0 0 4px rgba(70, 168, 10, .13);
  content: "";
}

.ltx-hub-list {
  display: grid;
  gap: 9px;
}

.ltx-hub-item {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 16px;
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 15px;
  background: #fff;
}

.ltx-hub-item__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--ltx-green-dark);
  background: var(--ltx-green-soft);
}

.ltx-hub-item__icon svg {
  width: 19px;
  height: 19px;
}

.ltx-hub-item__copy {
  min-width: 0;
}

.ltx-hub-item__copy strong,
.ltx-hub-item__copy span {
  display: block;
}

.ltx-hub-item__copy strong {
  margin-bottom: 2px;
  color: var(--ltx-ink);
  font-size: .86rem;
  line-height: 1.25;
}

.ltx-hub-item__copy span {
  color: var(--ltx-muted);
  font-size: .73rem;
  line-height: 1.35;
}

.ltx-hub-item__arrow {
  width: 16px;
  height: 16px;
  color: #85909f;
}

/* Cards */
.ltx-card-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  width: 100%;
}

.ltx-card {
  min-width: 0;
  padding: 19px 17px;
  border: 1px solid var(--ltx-line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .055);
}

.ltx-card__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
  border-radius: 14px;
  color: var(--ltx-green-dark);
  background: var(--ltx-green-soft);
}

.ltx-card__icon svg {
  width: 20px;
  height: 20px;
}

.ltx-card h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
  line-height: 1.25;
}

.ltx-card p {
  margin-bottom: 0;
  color: var(--ltx-muted);
  font-size: .89rem;
  line-height: 1.57;
}

.ltx-step-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 13px;
  counter-reset: ltx-step;
}

.ltx-step {
  position: relative;
  min-width: 0;
  padding: 20px 17px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .05);
  counter-increment: ltx-step;
}

.ltx-step::before {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 13px;
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(135deg, #449f08, #2c7100);
  box-shadow: 0 10px 22px rgba(58, 139, 3, .20);
  content: counter(ltx-step, decimal-leading-zero);
  font-size: .76rem;
  font-weight: 850;
}

.ltx-step h3 {
  margin-bottom: 7px;
  font-size: 1.03rem;
  line-height: 1.28;
}

.ltx-step p {
  margin-bottom: 0;
  color: var(--ltx-muted);
  font-size: .89rem;
  line-height: 1.57;
}

.ltx-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.ltx-panel {
  min-width: 0;
  padding: 22px 18px;
  border: 1px solid rgba(58, 139, 3, .14);
  border-radius: 21px;
  background: linear-gradient(145deg, #f9fdf7, #edf7e8);
}

.ltx-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 6.5vw, 2.1rem);
  line-height: 1.16;
}

.ltx-panel > p {
  margin-bottom: 17px;
  color: var(--ltx-muted);
  font-size: .92rem;
  line-height: 1.62;
}

.ltx-checklist {
  display: grid;
  gap: 9px;
  margin: 0 0 19px;
  padding: 0;
  list-style: none;
}

.ltx-checklist li {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: var(--ltx-ink-soft);
  font-size: .89rem;
  line-height: 1.48;
}

.ltx-checklist svg {
  width: 20px;
  height: 20px;
  color: var(--ltx-green);
}

.ltx-info-stack {
  display: grid;
  gap: 11px;
}

.ltx-info-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--ltx-line);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 9px 26px rgba(15, 23, 42, .05);
}

.ltx-info-row__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--ltx-green-dark);
  background: var(--ltx-green-soft);
}

.ltx-info-row__icon svg {
  width: 19px;
  height: 19px;
}

.ltx-info-row h3 {
  margin-bottom: 3px;
  font-size: .96rem;
  line-height: 1.25;
}

.ltx-info-row p {
  margin-bottom: 0;
  color: var(--ltx-muted);
  font-size: .82rem;
  line-height: 1.45;
}

.ltx-final {
  padding: 0 0 58px;
  background: #fff;
}

.ltx-final__card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 17px;
  align-items: center;
  padding: 23px 18px;
  border-radius: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 92% 5%, rgba(255, 255, 255, .16), transparent 29%),
    linear-gradient(135deg, #337d02 0%, #245d00 100%);
  box-shadow: 0 22px 55px rgba(43, 111, 0, .24);
}

.ltx-final h2 {
  margin-bottom: 7px;
  color: #fff;
  font-size: clamp(1.5rem, 6.3vw, 2rem);
  line-height: 1.16;
}

.ltx-final p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, .86);
  font-size: .91rem;
  line-height: 1.58;
}

.ltx-final .ltx-btn--secondary {
  border-color: rgba(255, 255, 255, .24);
  background: #fff;
}

/* Appointment page */
.ltx-stat-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  margin-top: 23px;
}

.ltx-stat {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 12px;
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 16px;
  background: rgba(255, 255, 255, .78);
}

.ltx-stat__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  color: var(--ltx-green-dark);
  background: var(--ltx-green-soft);
}

.ltx-stat__icon svg {
  width: 19px;
  height: 19px;
}

.ltx-stat strong,
.ltx-stat span {
  display: block;
}

.ltx-stat strong {
  margin-bottom: 2px;
  color: var(--ltx-ink);
  font-size: .91rem;
  line-height: 1.25;
}

.ltx-stat span {
  color: var(--ltx-muted);
  font-size: .76rem;
  line-height: 1.38;
}

.ltx-booking-shell {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 10px;
  border: 1px solid rgba(15, 23, 42, .09);
  border-radius: 21px;
  background: #fff;
  box-shadow: var(--ltx-shadow);
  overflow: hidden;
  isolation: isolate;
}

.ltx-booking-shell__bar {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 7px 7px 13px;
}

.ltx-booking-shell__bar strong {
  display: block;
  color: var(--ltx-ink);
  font-size: .94rem;
  line-height: 1.3;
}

.ltx-booking-shell__bar span {
  display: block;
  margin-top: 3px;
  color: var(--ltx-muted);
  font-size: .77rem;
  line-height: 1.4;
}

.ltx-booking-shell__direct {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ltx-green-dark) !important;
  font-size: .8rem;
  font-weight: 800;
  text-decoration: none !important;
}

.ltx-booking-shell__direct svg {
  width: 14px;
  height: 14px;
}

.ltx-calendly-widget,
.ltx-calendly-widget.calendly-inline-widget {
  display: block;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 720px !important;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.ltx-calendly-widget iframe,
.ltx-calendly-widget.calendly-inline-widget iframe {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  border: 0 !important;
}

.ltx-calendly-fallback {
  margin: 0;
  padding: 18px;
  text-align: center;
}

.ltx-calendly-fallback a {
  color: var(--ltx-green-dark);
  font-weight: 800;
}

.ltx-more-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-width: 0;
  padding: 22px 18px;
  border: 1px solid rgba(58, 139, 3, .18);
  border-radius: 22px;
  background:
    radial-gradient(circle at 100% 0%, rgba(58, 139, 3, .12), transparent 31%),
    linear-gradient(145deg, #f9fdf7, #edf7e8);
  box-shadow: 0 17px 46px rgba(15, 23, 42, .08);
}

.ltx-more-card h2 {
  margin-bottom: 9px;
  font-size: clamp(1.48rem, 6.3vw, 2rem);
  line-height: 1.15;
}

.ltx-more-card p {
  margin-bottom: 16px;
  color: var(--ltx-muted);
  font-size: .91rem;
  line-height: 1.6;
}

.ltx-mini-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.ltx-mini-feature {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(58, 139, 3, .14);
  border-radius: 999px;
  color: var(--ltx-green-dark);
  background: rgba(255, 255, 255, .74);
  font-size: .78rem;
  font-weight: 760;
}

.ltx-mini-feature svg {
  width: 14px;
  height: 14px;
}

.ltx-more-card__visual {
  display: grid;
  gap: 9px;
}

.ltx-more-card__tile {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
  min-width: 0;
  padding: 11px;
  border: 1px solid rgba(15, 23, 42, .07);
  border-radius: 15px;
  background: rgba(255, 255, 255, .88);
}

.ltx-more-card__tile-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  color: var(--ltx-green-dark);
  background: var(--ltx-green-soft);
}

.ltx-more-card__tile-icon svg {
  width: 18px;
  height: 18px;
}

.ltx-more-card__tile strong,
.ltx-more-card__tile span {
  display: block;
}

.ltx-more-card__tile strong {
  color: var(--ltx-ink);
  font-size: .86rem;
  line-height: 1.25;
}

.ltx-more-card__tile span {
  margin-top: 2px;
  color: var(--ltx-muted);
  font-size: .72rem;
  line-height: 1.35;
}

/* Small phones */
@media (max-width: 359px) {
  .ltx-container {
    width: min(100%, calc(100% - 24px));
  }

  .ltx-hero {
    padding-top: 36px;
  }

  .ltx-hero h1 {
    font-size: 1.92rem;
  }

  .ltx-section-heading h2,
  .ltx-panel h2,
  .ltx-more-card h2 {
    font-size: 1.48rem;
  }

  .ltx-btn {
    padding-inline: 13px;
    font-size: .88rem;
  }

  .ltx-hub-card {
    padding: 13px;
    border-radius: 18px;
  }

  .ltx-hub-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .ltx-page .ltx-hub-item__arrow {
    display: none !important;
  }

  .ltx-hub-item__icon {
    width: 38px;
    height: 38px;
  }
}

/* Medium phones and small tablets */
@media (min-width: 560px) {
  .ltx-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .ltx-btn {
    width: auto;
  }

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

  .ltx-stat {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .ltx-stat__icon {
    width: 38px;
    height: 38px;
  }

  .ltx-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ltx-booking-shell__bar {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* Tablets */
@media (min-width: 760px) {
  .ltx-container {
    width: min(1120px, calc(100% - 48px));
  }

  .ltx-section {
    padding: 68px 0;
  }

  .ltx-hero {
    padding: 58px 0 64px;
  }

  .ltx-hero h1 {
    font-size: clamp(3rem, 6.4vw, 4rem);
  }

  .ltx-hero__lead {
    font-size: 1.06rem;
  }

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

  .ltx-final {
    padding-bottom: 72px;
  }

  .ltx-final__card {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    padding: 29px 30px;
  }

  .ltx-more-card {
    padding: 28px;
  }

  .ltx-calendly-widget,
  .ltx-calendly-widget.calendly-inline-widget {
    height: 730px !important;
  }
}

/* Desktop: only here do we introduce multi-column hero/split layouts. */
@media (min-width: 960px) {
  .ltx-section {
    padding: 78px 0;
  }

  .ltx-hero {
    padding: 68px 0 74px;
  }

  .ltx-hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: clamp(42px, 5vw, 70px);
  }

  .ltx-hero h1 {
    max-width: 18ch;
    font-size: clamp(3rem, 3.8vw, 3.65rem);
  }

  .ltx-hero__lead {
    font-size: 1.08rem;
  }

  .ltx-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ltx-split {
    grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
    gap: clamp(34px, 5vw, 64px);
  }

  .ltx-panel {
    padding: 31px;
  }

  .ltx-more-card {
    grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
    gap: 38px;
    padding: 32px;
  }
}

/* Critical safety net: no desktop columns or narrow text at mobile widths. */
@media (max-width: 959px) {
  .ltx-page .ltx-hero__grid,
  .ltx-page .ltx-split,
  .ltx-page .ltx-more-card,
  .ltx-page .ltx-final__card {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .ltx-page .ltx-hero__copy,
  .ltx-page .ltx-hero__visual,
  .ltx-page .ltx-panel,
  .ltx-page .ltx-info-stack,
  .ltx-page .ltx-more-card > div {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .ltx-page .ltx-hero h1 {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Calendly uses a 320px internal minimum. Give it the full phone viewport safely. */
@media (max-width: 430px) {
  .ltx-booking-section .ltx-container {
    width: 100%;
  }

  .ltx-booking-section .ltx-section-heading {
    width: calc(100% - 32px);
    margin-inline: auto;
  }

  .ltx-booking-shell {
    width: 100%;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    padding: 6px 0;
  }

  .ltx-booking-shell__bar {
    padding: 9px 16px 13px;
  }

  .ltx-calendly-widget,
  .ltx-calendly-widget.calendly-inline-widget {
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 320px !important;
    height: 690px !important;
    border-radius: 0;
  }
}

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