:root {
  --tm-accent-100: #eef7ec;
  --tm-accent-200: #dcefd8;
  --tm-accent-300: #c3e2ba;
  --tm-accent-400: #a5d09b;
  --tm-accent-500: #89b388;
  --tm-accent-600: #6f9870;
  --tm-accent-700: #577a59;
  --tm-accent-800: #3f5a41;
  --tm-accent-900: #28392a;
  --tm-bg: #e7eaf4;
  --tm-surface: #f6f7fc;
  --tm-text: #292b31;
  --tm-divider: color-mix(in srgb, #292b31 13%, transparent);
  --tm-shadow-sm: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent);
  --tm-shadow-md: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent), 0 6px 18px color-mix(in srgb, #292b31 8%, transparent);
  --tm-shadow-lg: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent), 0 18px 44px color-mix(in srgb, #292b31 13%, transparent);
}

@keyframes tm-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}
@keyframes tm-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes tm-dialog-in {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes tm-backdrop-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes tm-grow-bar {
  from {
    transform: scaleY(0.15);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes tm-drift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(34px, -24px, 0) scale(1.1);
  }
}
body{
  margin: 0;
}
.tm__bg-decor {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.tm__bg-blob {
  position: absolute;
  filter: blur(38px);
  animation: tm-drift 36s ease-in-out infinite;
}
.tm__bg-blob--a {
  top: -22vh;
  left: -12vw;
  width: 66vw;
  height: 46vh;
  border-radius: 46% 54% 58% 42%;
  background: radial-gradient(closest-side, color-mix(in srgb, #a9c2ea 44%, transparent), transparent);
}
.tm__bg-blob--b {
  top: 46vh;
  right: -16vw;
  width: 56vw;
  height: 42vh;
  border-radius: 58% 42% 44% 56%;
  background: radial-gradient(closest-side, color-mix(in srgb, #bcd0ee 46%, transparent), transparent);
  animation-duration: 46s;
  animation-direction: reverse;
}
.tm__hero-dotgrid {
  position: absolute;
  left: 0;
  bottom: 6%;
  width: 132px;
  height: 132px;
  border-radius: 16px;
  background-image: radial-gradient(color-mix(in srgb, #7d9ac9 55%, transparent) 1.4px, transparent 1.5px);
  background-size: 14px 14px;
  z-index: -1;
}
html, body {
  background: #eef1f8;
}
.tm {
  position: relative;
  font-family: "Inter", system-ui, sans-serif;
  color: #292b31;
  background: #e7eaf4;
  overflow-x: clip;
}
.tm * {
  box-sizing: border-box;
}
.tm a {
  color: #577a59;
  text-decoration: none;
}
.tm a:hover {
  color: #6f9870;
}
.tm h1, .tm h2, .tm h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
}
.tm h2 {
  font-size: 30px;
  line-height: 1.2;
  color: #161c28;
}
/* Content blocks always render their optional fields now (even empty) so the
   admin canvas has a contenteditable target to click into; :empty hides them
   on the live site exactly like the old conditional-render did. */
.tm__eyebrow:empty,
.tm h2:empty,
.tm__hero-lede:empty,
.tm__btn:empty {
  display: none;
}
.tm__two-col h2 {
  font-size: 32px;
}
.tm__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #577a59;
  margin: 0 0 16px;
}
.tm__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: #89b388;
  display: block;
}
.tm__section {
  position: relative;
  padding: clamp(64px, 7vw, 96px) 0;
  background: #ffffff;
}
.tm__section--surface {
  background: linear-gradient(180deg, #ffffff, #f6f7fc);
}
.tm__section--surface-reverse {
  background: linear-gradient(180deg, #f6f7fc, #ffffff);
}
.tm__section--surface-flat {
  background: #f6f7fc;
}
.tm__hero + .tm__section {
  border-top: 1px solid color-mix(in srgb, #292b31 13%, transparent);
}
.tm__section--tint {
  background: linear-gradient(180deg, #ffffff, #eef1f8);
}
.tm__section--tint-reverse {
  background: linear-gradient(180deg, #eef1f8, #ffffff);
}
.tm__section--footer {
  background: #eef1f8;
  border-top: 1px solid color-mix(in srgb, #292b31 13%, transparent);
}
.tm__footer {
  padding: 0 0 36px;
  background: #eef1f8;
}
.tm__section--dark {
  background: linear-gradient(160deg, #28392a, #577a59);
}
.tm__section--dark .tm__eyebrow {
  color: #dcefd8;
}
.tm__section--dark .tm__eyebrow::before {
  background: #a5d09b;
}
.tm__section--dark h2 {
  color: #eef7ec;
}
.tm__wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.pb-image-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: var(--tm-shadow-md);
  padding: 16px;
}
.pb-image-card--no-shadow {
  box-shadow: none;
}
.tm__two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.tm__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15.5px;
  border: none;
  border-radius: 14px;
  padding: 16px 28px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s;
}
.tm__btn--primary {
  color: #fff;
  background: #577a59;
  box-shadow: 0 10px 26px color-mix(in srgb, #3f5a41 28%, transparent);
}
.tm__btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px color-mix(in srgb, #3f5a41 36%, transparent);
  background: #3f5a41;
}
.tm__btn--primary:active {
  transform: translateY(-1px);
}
.tm__btn--secondary {
  color: #292b31;
  background: #ffffff;
  border: 1px solid #d8dfec;
}
.tm__btn--secondary:hover {
  background: #fafbfe;
  border-color: #89b388;
  transform: translateY(-2px);
}
.tm__btn--secondary:active {
  transform: translateY(0);
}
.tm__btn--ghost {
  color: #292b31;
  background: transparent;
  border: 1px solid #d8dfec;
  padding: 12px 20px;
  font-size: 14px;
}
.tm__btn--ghost:hover {
  background: #fafbfe;
  border-color: #89b388;
}
/* `.tm a { color }` is more specific than a single `.tm__btn--*` class, so
   button-styled anchors need the tag added here to win the cascade. */
.tm a.tm__btn--primary {
  color: #fff;
}
.tm a.tm__btn--secondary,
.tm a.tm__btn--ghost {
  color: #292b31;
}
.tm__btn--block {
  width: 100%;
  margin-top: 24px;
}
.tm__nav {
  position: sticky;
  top: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: color-mix(in srgb, #f6f7fc 86%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid color-mix(in srgb, #292b31 13%, transparent);
  padding: 12px clamp(16px, 5vw, 64px);
}
.tm__nav-progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, #a5d09b, #577a59);
  border-radius: 0 2px 2px 0;
  pointer-events: none;
}
.tm__nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.tm__nav-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(145deg, #89b388, #3f5a41);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eef7ec;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  box-shadow: 0 4px 12px color-mix(in srgb, #3f5a41 28%, transparent);
}
.tm__nav-brand-text {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #3f5a41;
  letter-spacing: 0.04em;
}
.tm__nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
}
.tm__nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  color: #292b31;
  transition: border-color 0.2s, color 0.2s;
}
.tm__nav-links a:hover {
  border-bottom-color: #89b388;
  color: #292b31;
}
.tm__nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.tm__lang {
  position: relative;
}
.tm__lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: #292b31;
  background: #ffffff;
  border: 1px solid #d8dfec;
  border-radius: 12px;
  padding: 12px 16px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.tm__lang-toggle:hover {
  border-color: #89b388;
  background: #fafbfe;
}
.tm__lang-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.2s;
}
.tm__lang-toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.tm__lang-toggle:hover {
  border-color: #89b388;
  background: #eef7ec;
}
.tm__lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 190px;
  background: #f6f7fc;
  border-radius: 14px;
  box-shadow: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent), 0 18px 44px color-mix(in srgb, #292b31 13%, transparent);
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 70;
  animation: tm-rise 0.18s ease-out both;
}
.tm__lang-menu[hidden] {
  display: none;
}
.tm__lang-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  border: none;
  background: transparent;
  color: #292b31;
  font-size: 13.5px;
  font-family: "Inter", system-ui, sans-serif;
  cursor: pointer;
  text-align: left;
  transition: background 0.16s;
}
.tm__lang-menu button:hover {
  background: #eef7ec;
}
.tm__lang-menu button .tm-lang-check {
  color: #577a59;
  width: 14px;
  height: 14px;
  visibility: hidden;
}
.tm__lang-menu button[aria-current=true] .tm-lang-check {
  visibility: visible;
}
.tm__hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f6f7fc);
}
.tm__hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 100px) clamp(20px, 5vw, 64px) clamp(64px, 7vw, 96px);
}
.tm__hero-copy {
  animation: tm-rise 0.8s ease-out both;
}
.tm__hero h1 {
  font-size: clamp(38px, 5.2vw, 62px);
  line-height: 1.07;
}
.tm__hero-lede {
  font-size: 17px;
  line-height: 1.65;
  color: color-mix(in srgb, #292b31 76%, transparent);
  max-width: 52ch;
  margin: 24px 0 0;
}
.tm__hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.tm__hero-tags {
  display: flex;
  gap: 22px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.tm__hero-tags span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #292b31;
}
.tm__hero-tags > span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: #6f9870;
  display: inline-block;
  flex-shrink: 0;
}
.tm__hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 380px;
  overflow: hidden;
}
.tm__hero-card {
  position: relative;
  width: 308px;
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent), 0 18px 44px color-mix(in srgb, #292b31 13%, transparent);
  animation: tm-float 6s ease-in-out infinite;
  will-change: transform;
}
.tm__hero-card-kicker {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: color-mix(in srgb, #292b31 56%, transparent);
  margin: 0 0 16px;
}
.tm__hero-card-row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  margin: 0 0 8px;
}
.tm__hero-card-row span:first-child {
  color: color-mix(in srgb, #292b31 66%, transparent);
}
.tm__hero-card-row span:last-child {
  font-variant-numeric: tabular-nums;
}
.tm__hero-card-rule {
  height: 1px;
  background: color-mix(in srgb, #292b31 13%, transparent);
  margin: 10px 0 18px;
}
.tm__hero-card-label {
  font-size: 13px;
  color: color-mix(in srgb, #292b31 62%, transparent);
  margin: 0 0 4px;
}
.tm__hero-card-figure {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 44px;
  margin: 0;
  color: #577a59;
  font-variant-numeric: tabular-nums;
}
.tm__hero-card-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: color-mix(in srgb, #292b31 58%, transparent);
  margin: 14px 0 0;
}
.tm__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 34px;
  max-width: 470px;
}
.tm__stats > div {
  padding: 20px 22px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: var(--tm-shadow-sm);
  border-left: 2px solid #89b388;
  transition: transform 0.22s;
}
.tm__stats > div:hover {
  transform: translateY(-3px);
}
.tm__stats--plain {
  gap: 20px 32px;
  max-width: 440px;
}
.tm__stats--plain > div {
  padding: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  border-left: none;
  transition: none;
}
.tm__stats--plain > div:hover {
  transform: none;
}
.tm__stats--plain .tm__stats-num {
  font-size: 22px;
  margin-bottom: 4px;
}
.tm__stats--plain .tm__stats-label {
  margin-top: 0;
}
.tm__stats-num {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 28px;
  margin: 0;
  color: #577a59;
}
.tm__stats-label {
  font-size: 13px;
  color: color-mix(in srgb, #292b31 62%, transparent);
  margin: 4px 0 0;
}
.tm__photo {
  position: relative;
  display: flex;
  justify-content: center;
}
.tm__photo-back {
  position: absolute;
  top: 16px;
  left: 50%;
  width: min(300px, 84%);
  height: 88%;
  border-radius: 14px;
  background: color-mix(in srgb, #f6f7fc 70%, transparent);
  box-shadow: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent);
  transform: translateX(-50%) rotate(-5deg);
  will-change: transform;
}
.tm__photo-card {
  position: relative;
  width: min(340px, 94%);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent), 0 6px 18px color-mix(in srgb, #292b31 8%, transparent);
  background: #f6f7fc;
}
.tm__photo-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.tm__photo-card-caption {
  padding: 18px 20px;
}
.tm__photo-card-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  margin: 0 0 4px;
}
.tm__photo-card-sub {
  font-size: 13px;
  color: color-mix(in srgb, #292b31 62%, transparent);
  margin: 0;
}
.tm__checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.tm__checklist-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--tm-shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tm__checklist-item:hover {
  transform: translateX(4px);
  box-shadow: var(--tm-shadow-md);
}
.tm__checklist-item p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}
.tm__checklist-mark {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #f6f7fc;
  color: #577a59;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tm__checklist-mark svg {
  width: 13px;
  height: 13px;
}
.tm__checklist--list {
  display: flex;
  flex-direction: column;
}
.tm__checklist--list .tm__checklist-item {
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}
.tm__checklist--list .tm__checklist-item:hover {
  transform: none;
  box-shadow: none;
}
.tm__checklist--no-shadow .tm__checklist-item,
.tm__checklist--no-shadow .tm__checklist-item:hover {
  box-shadow: none;
}
.tm__fee-split-bar {
  display: flex;
  height: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #dee7f5;
}
.tm__fee-split-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.tm__fee-split-legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: color-mix(in srgb, #292b31 62%, transparent);
}
.tm__fee-split-legend-dot {
  width: 9px;
  height: 9px;
  border-radius: 3px;
  display: block;
}
.tm__fee-split-table-wrap {
  background: #f6f7fc;
  box-shadow: var(--tm-shadow-md);
  border-radius: 20px;
  padding: 14px 22px;
  overflow-x: auto;
}
.tm__fee-split-table {
  width: 100%;
  min-width: 440px;
  border-collapse: collapse;
}
.tm__fee-split-table th,
.tm__fee-split-table td {
  padding: 10px 8px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid color-mix(in srgb, #292b31 10%, transparent);
}
.tm__fee-split-table th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: color-mix(in srgb, #292b31 55%, transparent);
}
.tm__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tm__steps-card {
  padding: 32px 28px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--tm-shadow-sm);
  border-top: 2px solid #89b388;
  transition: transform 0.22s, box-shadow 0.22s;
}
.tm__steps-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--tm-shadow-lg);
}
.tm__steps-num {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: #eef7ec;
  border: 1px solid color-mix(in srgb, #89b388 45%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: #3f5a41;
  margin: 0 0 18px;
}
.tm__steps h3 {
  font-size: 20px;
  margin: 0 0 8px;
}
.tm__steps p {
  font-size: 14.5px;
  line-height: 1.65;
  color: color-mix(in srgb, #292b31 76%, transparent);
  margin: 0;
}
.tm__why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: color-mix(in srgb, #292b31 13%, transparent);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--tm-shadow-md);
}
.tm__why-grid-item {
  padding: 30px 26px;
  background: #ffffff;
  transition: background 0.3s;
}
.tm__why-grid-item:hover {
  background: #fafbfe;
}
.tm__why-grid-item-bar {
  width: 28px;
  height: 2px;
  background: #89b388;
  border-radius: 2px;
  margin: 0 0 16px;
}
.tm__why-grid-item h3 {
  font-size: 17px;
  margin: 0 0 8px;
}
.tm__why-grid-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: color-mix(in srgb, #292b31 74%, transparent);
}
.tm__fee-bars {
  display: flex;
  align-items: flex-end;
  gap: 14px;
}
.tm__fee-bars-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.tm__fee-bars-bar {
  width: 100%;
  border-radius: 10px 10px 0 0;
  transform-origin: bottom;
  animation: tm-grow-bar 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.tm__fee-bars-label {
  font-size: 12px;
  color: color-mix(in srgb, #292b31 62%, transparent);
}
.tm__fee-table {
  padding: 14px 22px;
  border-radius: 18px;
  background: #f6f7fc;
  box-shadow: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent), 0 6px 18px color-mix(in srgb, #292b31 8%, transparent);
  overflow-x: auto;
}
.tm__fee-table table {
  width: 100%;
  min-width: 440px;
  border-collapse: collapse;
  font-size: 14px;
}
.tm__fee-table th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: color-mix(in srgb, #292b31 60%, transparent);
  padding: 8px;
}
.tm__fee-table td {
  padding: 8px;
  border-top: 1px solid color-mix(in srgb, #292b31 13%, transparent);
}
.tm__fee-table tr:last-child td {
  color: #577a59;
  font-weight: 600;
}
.tm__calc {
  padding: 40px;
  border-radius: 24px;
  background: color-mix(in srgb, #ffffff 78%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: var(--tm-shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.tm__calc-metrics {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.tm__calc-field-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 10px;
  font-size: 13px;
  color: color-mix(in srgb, #292b31 64%, transparent);
}
.tm__calc-field-row strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  color: #41567a;
  font-weight: 500;
}
.tm__calc-field input[type="range"] {
  width: 100%;
  accent-color: #6f9870;
  cursor: pointer;
}
.tm__calc-note {
  font-size: 13px;
  line-height: 1.6;
  color: color-mix(in srgb, #292b31 58%, transparent);
  margin: 0;
}
.tm__calc-result {
  text-align: center;
  padding: 34px 28px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: var(--tm-shadow-md);
}
.tm__calc-result-kicker {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: color-mix(in srgb, #292b31 58%, transparent);
  margin: 0 0 8px;
}
.tm__calc-result-figure {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 48px;
  color: #577a59;
  margin: 0;
  font-variant-numeric: tabular-nums;
}
.tm__calc-result .tm__btn {
  margin: 26px auto 0;
  display: flex;
}
.tm__partners {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.tm__partners-card {
  padding: 16px 22px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: var(--tm-shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.tm__partners-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--tm-shadow-md);
}
.tm__partners-card img {
  height: 38px;
  border-radius: 4px;
}
.tm__contact-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.tm__contact-cta {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(160deg, #3f5a41, #6f9870);
  box-shadow: 0 0 0 1px color-mix(in srgb, #292b31 6%, transparent), 0 18px 44px color-mix(in srgb, #292b31 13%, transparent);
}
.tm__contact-cta h3 {
  font-size: 20px;
  color: #eef7ec;
  margin: 0 0 8px;
}
.tm__contact-cta p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, #eef7ec 78%, transparent);
  margin: 0 0 22px;
}
.tm__contact-cta .tm__btn--primary {
  width: 100%;
}
.tm__contact-cta-secondary {
  width: 100%;
  margin-top: 10px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14.5px;
  color: #eef7ec;
  background: transparent;
  border: 1px solid color-mix(in srgb, #dcefd8 55%, transparent);
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  transition: background 0.2s;
}
.tm__contact-cta-secondary:hover {
  background: color-mix(in srgb, #eef7ec 12%, transparent);
}

.tm__foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: color-mix(in srgb, #292b31 58%, transparent);
}
.tm__foot-bottom-links {
  display: flex;
  gap: 16px;
}

.tm-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
  background: color-mix(in srgb, #292b31 45%, transparent);
  backdrop-filter: blur(6px);
  animation: tm-backdrop-in 0.2s ease-out both;
}
.tm-modal[hidden] {
  display: none;
}
.tm-modal__dialog {
  position: relative;
  width: 100%;
  max-width: 400px;
  max-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  background: #f6f7fc;
  box-shadow: 0 30px 70px color-mix(in srgb, #292b31 35%, transparent);
  animation: tm-dialog-in 0.28s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.tm-modal__head {
  position: relative;
  flex-shrink: 0;
  padding: 28px 30px 22px;
  background: linear-gradient(150deg, #3f5a41, #6f9870);
  overflow: hidden;
}
.tm-modal__head::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -50px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, #dcefd8 35%, transparent), transparent 65%);
}
.tm-modal__head-brand {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 16px;
}
.tm-modal__head-brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  background: color-mix(in srgb, #eef7ec 22%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  color: #eef7ec;
}
.tm-modal__head-brand span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, #eef7ec 80%, transparent);
}
.tm-modal__head h2 {
  position: relative;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: #eef7ec;
  margin: 0 0 6px;
}
.tm-modal__head-sub {
  position: relative;
  font-size: 13.5px;
  line-height: 1.55;
  color: color-mix(in srgb, #eef7ec 76%, transparent);
  margin: 0;
}
.tm-modal__body {
  padding: 26px 30px 30px;
  overflow-y: auto;
  min-height: 0;
}
.tm-modal__tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border-radius: 999px;
  background: color-mix(in srgb, #292b31 6%, transparent);
  margin: 0 0 22px;
}
.tm-modal__tabs button {
  flex: 1;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13.5px;
  padding: 10px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  background: transparent;
  color: color-mix(in srgb, #292b31 60%, transparent);
}
.tm-modal__tabs button[aria-selected=true] {
  background: #f6f7fc;
  color: #3f5a41;
  box-shadow: 0 2px 8px color-mix(in srgb, #292b31 12%, transparent);
}
.tm-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tm-modal__field {
  display: block;
}
.tm-modal__field span {
  display: block;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: color-mix(in srgb, #292b31 60%, transparent);
  margin: 0 0 7px;
}
.tm-modal__field input {
  width: 100%;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14.5px;
  color: #292b31;
  background: color-mix(in srgb, #292b31 4%, transparent);
  border: 1px solid color-mix(in srgb, #292b31 13%, transparent);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.tm-modal__field input:focus {
  border-color: #89b388;
  background: #eef7ec;
}
.tm-modal__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  font-size: 13px;
}
.tm-modal__foot button {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 13px;
  color: color-mix(in srgb, #292b31 60%, transparent);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.tm-modal__foot button:hover {
  color: #292b31;
}

@media (max-width: 1100px) {
  .tm__nav-links {
    display: none !important;
  }
}
@media (max-width: 900px) {
  .tm__nav-actions {
    gap: 6px !important;
  }
  .tm__nav-brand-text {
    display: none !important;
  }
  .tm__hero-grid {
    grid-template-columns: 1fr !important;
  }
  .tm__why-grid, .tm__columns {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 760px) {
  .tm__two-col, .tm__calc {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .pb-columns-grid, .pb-stat-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .pb-hide-mobile {
    display: none !important;
  }
  .tm__section {
    padding: 40px 0;
  }
}
@media (max-width: 600px) {
  .tm__why-grid, .tm__steps, .tm__checklist, .tm__columns {
    grid-template-columns: 1fr !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tm *, .tm-modal * {
    animation: none !important;
  }
}
