/* ── Scroll fade-in ── */
[data-tm-fade] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 540ms ease, transform 540ms ease;
}
[data-tm-fade].is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  [data-tm-fade] { opacity: 1; transform: none; transition: none; }
}

/* ── Hero entrance animations ── */
@keyframes tm-hero-rise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes tm-hero-slide-in {
  from { opacity: 0; transform: translateX(42px) scale(0.97); }
  to   { opacity: 1; transform: translateX(0) scale(1); }
}

.tm-v2-hero__copy > * {
  opacity: 0;
  animation: tm-hero-rise 0.65s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.tm-v2-hero .tm-v2-eyebrow          { animation-delay: 0.05s; }
.tm-v2-hero .tm-v2-hero__title      { animation-delay: 0.18s; }
.tm-v2-hero .tm-v2-hero__description{ animation-delay: 0.32s; }
.tm-v2-hero .tm-v2-hero__actions    { animation-delay: 0.44s; }
.tm-v2-hero .tm-v2-hero__note       { animation-delay: 0.44s; }
.tm-v2-hero .tm-v2-hero__trust      { animation-delay: 0.56s; }

/* Trust cards stagger inside the grid */
.tm-v2-hero__trust-card {
  opacity: 0;
  animation: tm-hero-rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.tm-v2-hero__trust-card:nth-child(1) { animation-delay: 0.62s; }
.tm-v2-hero__trust-card:nth-child(2) { animation-delay: 0.74s; }
.tm-v2-hero__trust-card:nth-child(3) { animation-delay: 0.86s; }

/* Override parent opacity so trust container doesn't double-hide cards */
.tm-v2-hero .tm-v2-hero__trust {
  opacity: 1 !important;
  animation: none;
}

/* Visual panel slides in from right */
.tm-v2-hero__visual {
  opacity: 0;
  animation: tm-hero-slide-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .tm-v2-hero__copy > *,
  .tm-v2-hero__trust-card,
  .tm-v2-hero__visual {
    opacity: 1 !important;
    animation: none !important;
  }
}

.tm-v2-page {
  --tm-v2-container: 1440px;
  --tm-v2-nav-x: clamp(16px, 3.5vw, 56px);
  --tm-v2-page-x: clamp(32px, 7vw, 100px);

  min-height: calc(100vh - var(--tm-nav-h, 90px));
  background: var(--tm-cream);
  color: var(--tm-ink-700);
}

.tm-v2-section-shell,
.tm-v2-hero {
  width: 100%;
  max-width: var(--tm-v2-container);
  margin: 0 auto;
  padding-left: var(--tm-v2-page-x);
  padding-right: var(--tm-v2-page-x);
}

.tm-v2-eyebrow {
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--tm-emerald);
}

.tm-v2-eyebrow--gold {
  color: var(--tm-gold);
}

.tm-v2-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(390px, 0.94fr);
  align-items: start;
  gap: clamp(30px, 4.2vw, 58px);
  min-height: calc(100svh - var(--tm-nav-h, 74px));
  padding-top: clamp(56px, 8vh, 88px);
  padding-bottom: clamp(24px, 3.2vh, 38px);
  padding-left: var(--tm-v2-nav-x);
  padding-right: var(--tm-v2-nav-x);
}

.tm-v2-hero__copy {
  align-self: start;
  max-width: 680px;
}

.tm-v2-hero__title {
  margin: 16px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.72rem, 3.65vw, 4.05rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.03;
  color: var(--tm-navy);
}

.tm-v2-hero__title span {
  display: block;
  color: var(--tm-emerald);
  font-style: italic;
  font-weight: 400;
}

.tm-v2-hero__description {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--tm-ink-700);
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.5;
}

.tm-v2-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
}

.tm-v2-hero__note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 0;
  color: var(--tm-ink-500);
  font-family: var(--tm-font-body);
  font-size: 0.88rem;
  line-height: 1.45;
}

.tm-v2-hero__note i {
  color: var(--tm-emerald);
  font-size: 1rem;
  line-height: 1;
}

.tm-v2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 8px;
  border: 1px solid var(--tm-navy);
  font-family: var(--tm-font-body);
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  color: var(--tm-navy);
  background: transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.tm-v2-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(10, 31, 61, 0.1);
}

.tm-v2-button--primary {
  border-color: var(--tm-emerald);
  background: var(--tm-emerald);
  color: #FFFFFF;
}

.tm-v2-button--primary:hover {
  background: var(--tm-emerald-deep);
}

.tm-v2-hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 650px;
  margin-top: 22px;
  color: var(--tm-navy);
  font-size: 0.8rem;
  line-height: 1.28;
}

.tm-v2-hero__trust-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 10px 12px;
  border: 1px solid var(--tm-line-200);
  border-radius: var(--tm-radius-lg);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--tm-shadow-micro);
}

.tm-v2-hero__trust-card strong {
  font-weight: 800;
}

.tm-v2-hero__trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border: 2px solid currentColor;
  border-radius: var(--tm-radius-pill);
  color: var(--tm-emerald);
  font-size: 0.95rem;
  line-height: 1;
}

.tm-v2-hero__trust-icon--solid {
  border: 0;
  color: #17A244;
  font-size: 1.75rem;
}

.tm-v2-hero__visual {
  align-self: start;
  height: clamp(470px, calc(100svh - var(--tm-nav-h, 74px) - 92px), 650px);
  min-height: 0;
  border-radius: var(--tm-radius-xl);
  overflow: hidden;
  background: var(--tm-warm);
}

.tm-v2-hero__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 981px) and (max-height: 860px) {
  .tm-v2-hero {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .tm-v2-hero__title {
    font-size: clamp(2.45rem, 3.25vw, 3.65rem);
  }

  .tm-v2-hero__description {
    margin-top: 14px;
    line-height: 1.42;
  }

  .tm-v2-hero__actions {
    margin-top: 18px;
  }

  .tm-v2-hero__note,
  .tm-v2-hero__trust {
    margin-top: 14px;
  }

  .tm-v2-hero__visual {
    height: clamp(430px, calc(100svh - var(--tm-nav-h, 74px) - 64px), 580px);
  }
}

/* ───────────────────────────────────────────
   Hero — SMB Bookkeeper Panel (Today's Activity)
   ─────────────────────────────────────────── */
.tm-v2-hero__panel {
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(24px, 2.4vw, 32px);
  border-radius: var(--tm-radius-xl);
  background: var(--tm-navy);
  color: #FFFFFF;
  box-shadow: var(--tm-shadow-hero);
  position: relative;
  overflow: hidden;
}

.tm-v2-hero__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(620px 320px at 100% 0%, rgba(15, 157, 110, 0.14), transparent 60%);
  pointer-events: none;
}

.tm-v2-hero-panel__label {
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.tm-v2-hero-panel__profile {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.tm-v2-hero-panel__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: var(--tm-radius-pill);
  background: linear-gradient(135deg, var(--tm-gold), #8B6F3D);
  color: #FFFFFF;
  font-family: var(--tm-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
}

.tm-v2-hero-panel__identity {
  min-width: 0;
}

.tm-v2-hero-panel__name {
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

.tm-v2-hero-panel__role {
  margin: 2px 0 0;
  font-family: var(--tm-font-body);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.58);
}

.tm-v2-hero-panel__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--tm-font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
}

.tm-v2-hero-panel__status-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--tm-radius-pill);
  background: var(--tm-emerald);
  box-shadow: 0 0 0 3px rgba(15, 157, 110, 0.22);
}

.tm-v2-hero-panel__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.tm-v2-hero-panel__stat {
  padding: 14px;
  border-radius: var(--tm-radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.tm-v2-hero-panel__stat-label {
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.tm-v2-hero-panel__stat-value {
  margin: 6px 0 0;
  font-family: var(--tm-font-display);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}

.tm-v2-hero-panel__stat-value--emerald {
  color: var(--tm-emerald);
}

.tm-v2-hero-panel__report {
  padding: 14px 16px;
  border-radius: var(--tm-radius-md);
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--tm-emerald);
  position: relative;
  z-index: 1;
}

.tm-v2-hero-panel__report-head {
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

.tm-v2-hero-panel__report-body {
  margin: 4px 0 0;
  font-family: var(--tm-font-body);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.74);
}

/* ───────────────────────────────────────────
   Trust Bar — Dark Logo Wall
   ─────────────────────────────────────────── */
.tm-v2-trust {
  position: relative;
  z-index: 2;
  margin-top: clamp(-80px, -7vh, -56px);
  padding: 0 0 clamp(60px, 8vh, 96px);
  background: transparent;
}

/* Match the navbar's horizontal gutter, not the wider page gutter */
.tm-v2-trust .tm-v2-section-shell {
  padding-left: var(--tm-v2-nav-x);
  padding-right: var(--tm-v2-nav-x);
}

.tm-v2-trust-card {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(48px, 7vh, 80px) clamp(28px, 5vw, 60px);
  border-radius: var(--tm-radius-xl);
  background:
    radial-gradient(900px 380px at 50% -20%, rgba(15, 157, 110, 0.10), transparent 55%),
    linear-gradient(180deg, var(--tm-navy-2) 0%, var(--tm-navy) 100%);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    var(--tm-shadow-hero);
  text-align: center;
  overflow: hidden;
}

.tm-v2-trust__label-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 24px);
  max-width: 560px;
  margin: 0 auto clamp(36px, 4.8vh, 48px);
}

.tm-v2-trust__label-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(15, 157, 110, 0), rgba(15, 157, 110, 0.55));
}

.tm-v2-trust__label-rule:last-child {
  background: linear-gradient(90deg, rgba(15, 157, 110, 0.55), rgba(15, 157, 110, 0));
}

.tm-v2-trust__label {
  flex: 0 0 auto;
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--tm-emerald);
  white-space: nowrap;
}

.tm-v2-trust__logos {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 36px 32px;
  align-items: center;
  justify-items: center;
}

/* Row 1: items 1–4 span 3 cols each (cols 1,4,7,10) — four across
   Row 2: items 5–7 span 4 cols each (cols 1,5,9)    — three centered */
.tm-v2-trust__logos > :nth-child(1) { grid-column: 1 / span 3; }
.tm-v2-trust__logos > :nth-child(2) { grid-column: 4 / span 3; }
.tm-v2-trust__logos > :nth-child(3) { grid-column: 7 / span 3; }
.tm-v2-trust__logos > :nth-child(4) { grid-column: 10 / span 3; }
.tm-v2-trust__logos > :nth-child(5) { grid-column: 1 / span 4; }
.tm-v2-trust__logos > :nth-child(6) { grid-column: 5 / span 4; }
.tm-v2-trust__logos > :nth-child(7) { grid-column: 9 / span 4; }

.tm-v2-trust-logo {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 72px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}

.tm-v2-trust-logo:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
}

.tm-v2-trust-logo__img {
  height: 56px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  opacity: 0.92;
  transition: opacity 200ms ease;
}

.tm-v2-trust-logo:hover .tm-v2-trust-logo__img {
  opacity: 1;
}

.tm-v2-trust-logo__caption {
  font-family: var(--tm-font-display);
  font-size: clamp(1.4rem, 1.85vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
  color: inherit;
}

.tm-v2-crisis {
  padding: clamp(54px, 7vh, 82px) 0 clamp(50px, 6.5vh, 76px);
  border-top: 1px solid var(--tm-line-200);
  background: var(--tm-cream);
}

.tm-v2-crisis .tm-v2-section-shell {
  padding-left: var(--tm-v2-nav-x);
  padding-right: var(--tm-v2-nav-x);
}

.tm-v2-crisis__header {
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.tm-v2-crisis__title {
  margin: 14px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.35rem, 3.55vw, 3.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.02;
  color: var(--tm-navy);
}

.tm-v2-crisis__intro {
  max-width: 760px;
  margin: 18px auto 0;
  font-size: clamp(0.96rem, 1.08vw, 1.08rem);
  line-height: 1.48;
  color: var(--tm-ink-700);
}

.tm-v2-crisis__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 22px);
  margin-top: clamp(32px, 4vh, 44px);
}

.tm-v2-crisis-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: clamp(24px, 2.45vw, 30px);
  border: 1px solid var(--tm-line-200);
  border-radius: var(--tm-radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.72)),
    var(--tm-cream);
  box-shadow: 0 24px 60px -46px rgba(10, 31, 61, 0.35);
}

.tm-v2-crisis-card::after {
  content: '';
  display: block;
  width: 56px;
  height: 2px;
  margin-top: auto;
  align-self: center;
  background: var(--tm-emerald);
}

.tm-v2-crisis-card__stat {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.tm-v2-crisis-card__stat i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: var(--tm-radius-pill);
  background: rgba(15, 157, 110, 0.10);
  color: var(--tm-emerald);
  font-size: 1.28rem;
  line-height: 1;
}

.tm-v2-crisis-card strong {
  display: block;
  font-family: var(--tm-font-display);
  font-size: clamp(2.45rem, 3.25vw, 3.25rem);
  font-weight: 600;
  line-height: 0.95;
  color: var(--tm-navy);
}

.tm-v2-crisis-card strong span {
  color: var(--tm-emerald);
}

.tm-v2-crisis-card p {
  margin: 0;
  font-size: clamp(0.94rem, 1vw, 1rem);
  line-height: 1.46;
  color: var(--tm-ink-700);
}

/* SMB variant — icon-only stat block + card heading instead of big number */
.tm-v2-crisis--smb .tm-v2-crisis-card__stat {
  margin-bottom: 6px;
}

.tm-v2-crisis--smb .tm-v2-crisis-card__stat i {
  font-size: 1.18rem;
}

.tm-v2-crisis-card__title {
  margin: 0 0 12px;
  font-family: var(--tm-font-display);
  font-size: clamp(1.18rem, 1.45vw, 1.36rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.18;
  color: var(--tm-navy);
}

.tm-v2-crisis__quote {
  max-width: 820px;
  margin: clamp(42px, 5vh, 56px) auto 0;
  font-family: var(--tm-font-display);
  font-size: clamp(1.08rem, 1.45vw, 1.34rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.38;
  text-align: center;
  color: var(--tm-navy);
}

.tm-v2-calculator {
  position: relative;
  overflow: hidden;
  padding: clamp(58px, 7vh, 82px) 0 clamp(62px, 7vh, 88px);
  background: var(--tm-navy);
  color: #FFFFFF;
}

.tm-v2-calculator::before {
  content: '';
  position: absolute;
  top: -220px;
  right: -180px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(15, 157, 110, 0.18) 0%, rgba(15, 157, 110, 0) 70%);
  pointer-events: none;
}

.tm-v2-calculator__header,
.tm-v2-calculator__panel {
  position: relative;
  z-index: 1;
}

.tm-v2-calculator__header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tm-v2-calculator__title {
  margin: 18px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.25rem, 3.5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
  color: #FFFFFF;
}

.tm-v2-calculator__intro {
  max-width: 730px;
  margin: 22px auto 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.14vw, 1.12rem);
  line-height: 1.5;
}

.tm-v2-calculator__panel {
  max-width: 980px;
  margin: clamp(42px, 5vh, 58px) auto 0;
  padding: 32px 40px 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.tm-v2-calculator__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 40px;
  align-items: start;
}

.tm-v2-calculator__inputs h3 {
  margin: 0 0 24px;
  font-family: var(--tm-font-display);
  font-size: 1.4rem;
  line-height: 1.1;
  color: #FFFFFF;
}

.tm-v2-calc-field {
  margin-bottom: 26px;
}

.tm-v2-calc-field label,
.tm-v2-calc-small-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tm-v2-calc-select {
  width: 100%;
  min-height: 48px;
  padding: 0 46px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  appearance: none;
  background-color: rgba(255, 255, 255, 0.065);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff99' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-position: right 14px center;
  background-repeat: no-repeat;
  background-size: 18px;
  color: #FFFFFF;
  font-family: var(--tm-font-body);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.tm-v2-calc-select option {
  background: #122A4D;
  color: #FFFFFF;
}

.tm-v2-calc-slider-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tm-v2-calc-slider {
  flex: 1;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.tm-v2-calc-slider::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: var(--tm-emerald);
  box-shadow: 0 4px 14px rgba(15, 157, 110, 0.5);
  cursor: pointer;
  -webkit-appearance: none;
}

.tm-v2-calc-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border: 3px solid #FFFFFF;
  border-radius: 50%;
  background: var(--tm-emerald);
  box-shadow: 0 4px 14px rgba(15, 157, 110, 0.5);
  cursor: pointer;
}

.tm-v2-calc-seats-display {
  min-width: 50px;
  padding: 8px 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  font-weight: 800;
  text-align: center;
}

.tm-v2-calculator__output {
  padding: 28px 32px;
  border: 1px solid rgba(15, 157, 110, 0.32);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(15, 157, 110, 0.12), rgba(15, 157, 110, 0.04));
}

.tm-v2-calc-big-num {
  display: block;
  margin-top: 6px;
  font-family: var(--tm-font-display);
  font-size: clamp(3rem, 4.4vw, 4.15rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  color: var(--tm-emerald);
  font-variant-numeric: tabular-nums;
}

.tm-v2-calc-sub-label {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  font-weight: 700;
}

.tm-v2-calc-breakdown {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.tm-v2-calc-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 7px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
}

.tm-v2-calc-row strong {
  flex-shrink: 0;
  color: #FFFFFF;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.tm-v2-calc-row--total strong {
  color: var(--tm-emerald);
  font-size: 1.05rem;
}

.tm-v2-calculator__cta {
  margin-top: 24px;
  text-align: center;
}

.tm-v2-calculator__cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 8px;
  background: #FFFFFF;
  color: var(--tm-navy);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.tm-v2-calculator__cta a:hover {
  transform: translateY(-1px);
  background: var(--tm-cream);
}

.tm-v2-calculator__disclaimer {
  max-width: 720px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

/* ───────────────────────────────────────────
   Time Recovery Calculator (SMB variant additions)
   Reuses .tm-v2-calculator__* shell. Adds:
   - Inline label with live-value pill
   - Gold hours-reclaimed callout row
   - Footnote under the inputs column
   ─────────────────────────────────────────── */
.tm-v2-calc-field__label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tm-v2-calc-live {
  padding: 3px 11px;
  border-radius: var(--tm-radius-sm);
  background: rgba(15, 157, 110, 0.15);
  color: var(--tm-emerald);
  font-family: var(--tm-font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: none;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.tm-v2-calc-footnote {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--tm-font-body);
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.tm-v2-calc-hours-row {
  padding: 14px 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(201, 169, 97, 0.28);
  border-radius: var(--tm-radius-md);
  background: rgba(201, 169, 97, 0.08);
  color: var(--tm-gold-soft);
}

.tm-v2-calc-hours-row__label {
  display: block;
  font-family: var(--tm-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.tm-v2-calc-hours-row__value {
  display: block;
  margin-top: 4px;
  font-family: var(--tm-font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.1;
  color: var(--tm-gold);
  font-variant-numeric: tabular-nums;
}

/* ───────────────────────────────────────────
   How It Works
   ─────────────────────────────────────────── */
.tm-v2-how {
  padding: clamp(72px, 9vh, var(--tm-space-section)) 0 clamp(78px, 9vh, 118px);
  background: var(--tm-warm);
  border-top: 1px solid var(--tm-line-200);
}

.tm-v2-how__header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tm-v2-how__title {
  margin: 18px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.35rem, 3.85vw, 3.9rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--tm-navy);
}

.tm-v2-how__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(48px, 6vh, 68px);
  align-items: start;
}

/* Horizontal line connecting all node circles */
.tm-v2-how__steps::before {
  content: '';
  position: absolute;
  top: 34px;
  left: calc(12.5% - 10px);
  right: calc(12.5% - 10px);
  height: 1px;
  background: #d1d5db;
  z-index: 0;
}

.tm-v2-how-step {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tm-v2-how-step__node {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(209, 213, 219, 0.9);
  background: var(--tm-warm);
  z-index: 1;
  flex-shrink: 0;
}

.tm-v2-how-step__num {
  font-family: var(--tm-font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  color: var(--tm-emerald);
}

.tm-v2-how-step__vline {
  width: 1px;
  height: 26px;
  background: #d1d5db;
  flex-shrink: 0;
}

.tm-v2-how-card {
  width: 100%;
  padding: clamp(24px, 2.5vw, 30px);
  border: 1px solid rgba(229, 231, 235, 0.82);
  border-radius: var(--tm-radius-md);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--tm-shadow-micro);
}

.tm-v2-how-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 157, 110, 0.08);
  color: var(--tm-emerald);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.tm-v2-how-card h3 {
  margin: 0 0 10px;
  font-family: var(--tm-font-display);
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  color: var(--tm-navy);
}

.tm-v2-how-card p {
  margin: 0;
  color: var(--tm-ink-700);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ───────────────────────────────────────────
   Operator Success System — Pillars
   ─────────────────────────────────────────── */
.tm-v2-pillars {
  position: relative;
  padding: clamp(64px, 9vh, 110px) 0 clamp(68px, 9vh, 116px);
  background: #F2EFE6;
  background:
    radial-gradient(1100px 480px at 50% -40%, rgba(15, 157, 110, 0.05), transparent 60%),
    #F2EFE6;
}

.tm-v2-pillars__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tm-v2-pillars__title {
  margin: 14px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.04;
  color: var(--tm-navy);
}

.tm-v2-pillars__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--tm-navy);
  opacity: 0.92;
}

.tm-v2-pillars__intro {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.55;
  color: var(--tm-ink-700);
}

.tm-v2-pillars__see-more {
  display: none;
}

/* Row layout */
.tm-v2-pillars__rows {
  margin-top: clamp(44px, 5vh, 60px);
  border-top: 1px solid var(--tm-line-300);
}

.tm-v2-pillar-row {
  display: grid;
  grid-template-columns: 96px 1fr 1fr;
  gap: 0 48px;
  align-items: start;
  padding: clamp(32px, 4vh, 52px) 0;
  border-bottom: 1px solid var(--tm-line-300);
}

/* Guarantee row — dark navy panel */
.tm-v2-pillar-row--guarantee {
  background: var(--tm-navy);
  border-radius: 14px;
  border-bottom: none;
  padding: clamp(36px, 4.5vh, 56px) 0;
  margin-top: 8px;
}

.tm-v2-pillar-row__num {
  font-family: var(--tm-font-display);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--tm-emerald);
  padding-top: 4px;
  padding-left: clamp(24px, 3vw, 40px);
}

.tm-v2-pillar-row--guarantee .tm-v2-pillar-row__num {
  color: rgba(15, 157, 110, 0.7);
}

.tm-v2-pillar-row__tag {
  margin: 0 0 10px;
  font-family: var(--tm-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--tm-emerald);
}

.tm-v2-pillar-row__heading {
  margin: 0 0 14px;
  font-family: var(--tm-font-display);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--tm-navy);
}

.tm-v2-pillar-row--guarantee .tm-v2-pillar-row__heading {
  color: var(--tm-cream);
}

.tm-v2-pillar-row__heading span {
  color: var(--tm-ink-500);
  font-weight: 500;
}

.tm-v2-pillar-row--guarantee .tm-v2-pillar-row__heading span {
  color: rgba(250, 250, 245, 0.5);
}

.tm-v2-pillar-row__copy {
  margin: 0;
  font-size: 0.97rem;
  line-height: 1.6;
  color: var(--tm-ink-700);
}

.tm-v2-pillar-row--guarantee .tm-v2-pillar-row__copy {
  color: rgba(250, 250, 245, 0.72);
}

.tm-v2-pillar-row__list {
  margin: 0;
  padding: 0;
  padding-right: clamp(24px, 3vw, 40px);
  list-style: none;
  align-self: center;
}

.tm-v2-pillar-row__list li {
  position: relative;
  padding: 8px 0 8px 22px;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--tm-ink-700);
  border-bottom: 1px solid var(--tm-line-200);
}

.tm-v2-pillar-row__list li:first-child {
  border-top: 1px solid var(--tm-line-200);
}

.tm-v2-pillar-row--guarantee .tm-v2-pillar-row__list li {
  color: rgba(250, 250, 245, 0.8);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.tm-v2-pillar-row--guarantee .tm-v2-pillar-row__list li:first-child {
  border-top-color: rgba(255, 255, 255, 0.1);
}

.tm-v2-pillar-row__list li::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--tm-emerald);
}

.tm-v2-pillar-row--guarantee .tm-v2-pillar-row__list li::before {
  background: rgba(15, 157, 110, 0.7);
}


/* ───────────────────────────────────────────
   Specialty Roles
   ─────────────────────────────────────────── */
.tm-v2-roles {
  position: relative;
  padding: clamp(64px, 9vh, 110px) 0 clamp(68px, 9vh, 116px);
  background: var(--tm-cream);
  border-top: 1px solid var(--tm-line-200);
}

.tm-v2-roles__header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tm-v2-roles__title {
  margin: 14px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.04;
  color: var(--tm-navy);
}

.tm-v2-roles__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  opacity: 0.92;
}

.tm-v2-roles__intro {
  max-width: 660px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.55;
  color: var(--tm-ink-700);
}

.tm-v2-roles__nav,
.tm-v2-roles__dots {
  display: none;
}

.tm-v2-roles__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(44px, 5vh, 60px);
}

.tm-v2-role {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 248px;
  padding: 8px;
  background: #FFFFFF;
  border: 1px solid rgba(12, 34, 58, 0.08);
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.tm-v2-role__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(22px, 2.4vw, 30px);
  background: #EAF4EE;
  border-radius: 8px;
}

.tm-v2-role__title {
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: clamp(1.35rem, 1.65vw, 1.72rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
  color: #111827;
}

.tm-v2-role__copy {
  margin: 12px 0 0;
  max-width: 29ch;
  font-size: 0.96rem;
  line-height: 1.35;
  color: #243141;
}

.tm-v2-role__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 28px;
}

.tm-v2-role__badges span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(32, 120, 91, 0.09);
  color: #315B4C;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/* Custom role — clickable inverted navy card */
.tm-v2-role--custom {
  background: #FFFFFF;
  border-color: rgba(12, 34, 58, 0.12);
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease, background-color 200ms ease;
}

.tm-v2-role--custom::before {
  content: none;
}

.tm-v2-role--custom .tm-v2-role__body {
  background: var(--tm-navy);
}

.tm-v2-role--custom .tm-v2-role__title {
  color: #FFFFFF;
}

.tm-v2-role--custom .tm-v2-role__copy {
  color: rgba(255, 255, 255, 0.76);
}

.tm-v2-role--custom .tm-v2-role__badges span {
  background: rgba(201, 169, 97, 0.18);
  color: #F0D99B;
}

.tm-v2-role--custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--tm-shadow-hover);
}

.tm-v2-role--custom:focus-visible {
  outline: 2px solid var(--tm-gold);
  outline-offset: 3px;
}

.tm-v2-role__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 14px;
  background: #111827;
  border-radius: 6px;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

.tm-v2-role--custom .tm-v2-role__icon {
  background: rgba(201, 169, 97, 0.22);
  color: #F0D99B;
}

.tm-v2-role__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 8px;
}

.tm-v2-role__explore {
  font-size: 1rem;
  font-weight: 600;
  color: #111827;
}

.tm-v2-role__explore-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #EBEBEB;
  border-radius: 6px;
  font-size: 1rem;
  color: #111827;
}

/* ───────────────────────────────────────────
   Productized Engagements — Packages
   ─────────────────────────────────────────── */
.tm-v2-packages {
  position: relative;
  padding: clamp(64px, 9vh, 110px) 0 clamp(68px, 9vh, 116px);
  background: #FFFFFF;
  border-top: 1px solid var(--tm-line-200);
}

.tm-v2-packages__header {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.tm-v2-packages__title {
  margin: 14px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.1rem, 3.4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.04;
  color: var(--tm-navy);
}

.tm-v2-packages__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  opacity: 0.92;
}

.tm-v2-packages__intro {
  max-width: 660px;
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.55;
  color: var(--tm-ink-700);
}

.tm-v2-packages__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  margin-top: clamp(44px, 5vh, 60px);
}

.tm-v2-package {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 34px 32px 32px;
  background: var(--tm-warm);
  border: 1px solid var(--tm-line-200);
  border-radius: var(--tm-radius-lg);
  overflow: hidden;
}

.tm-v2-package__tag {
  align-self: flex-start;
  padding: 5px 11px;
  border-radius: 6px;
  background: rgba(15, 157, 110, 0.1);
  color: var(--tm-emerald);
  font-family: var(--tm-font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
}

.tm-v2-package__title {
  margin: 18px 0 0;
  font-family: var(--tm-font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.15;
  color: var(--tm-navy);
}

.tm-v2-package__desc {
  margin: 12px 0 22px;
  font-size: 0.96rem;
  line-height: 1.55;
  color: var(--tm-ink-700);
}

.tm-v2-package__list {
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.tm-v2-package__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.93rem;
  line-height: 1.45;
  color: var(--tm-ink-700);
}

.tm-v2-package__list li i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--tm-emerald);
}

.tm-v2-package__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
  min-height: 46px;
  padding: 0 22px;
  border: 1px solid var(--tm-navy);
  border-radius: 8px;
  background: transparent;
  color: var(--tm-navy);
  font-family: var(--tm-font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.tm-v2-package__cta i {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.tm-v2-package__cta:hover {
  background: var(--tm-navy);
  color: #FFFFFF;
}

.tm-v2-package__cta:hover i {
  transform: translateX(3px);
}

/* Featured (navy, "Most Popular") — slightly larger via grid (1.08fr) + Hero Lift shadow */
.tm-v2-package--featured {
  margin: -16px 0;
  padding: 54px 36px 52px;
  background: var(--tm-navy);
  border-color: var(--tm-navy);
  border-radius: var(--tm-radius-xl);
  color: #FFFFFF;
  box-shadow: var(--tm-shadow-hero);
}

.tm-v2-package--featured::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--tm-gold), rgba(201, 169, 97, 0));
}

.tm-v2-package--featured .tm-v2-package__tag {
  background: rgba(201, 169, 97, 0.18);
  color: var(--tm-gold);
}

.tm-v2-package--featured .tm-v2-package__title {
  color: #FFFFFF;
  font-size: 1.7rem;
}

.tm-v2-package--featured .tm-v2-package__desc {
  color: rgba(255, 255, 255, 0.78);
}

.tm-v2-package--featured .tm-v2-package__list li {
  color: rgba(255, 255, 255, 0.88);
}

.tm-v2-package--featured .tm-v2-package__list li i {
  color: var(--tm-gold);
}

.tm-v2-package--featured .tm-v2-package__cta {
  background: var(--tm-gold);
  border-color: var(--tm-gold);
  color: var(--tm-navy);
}

.tm-v2-package--featured .tm-v2-package__cta:hover {
  background: var(--tm-gold-soft);
  border-color: var(--tm-gold-soft);
  color: var(--tm-navy);
}

/* ───────────────────────────────────────────
   FAQ
   ─────────────────────────────────────────── */
.tm-v2-faq {
  padding: clamp(72px, 9vh, var(--tm-space-section)) 0;
  background: var(--tm-cream);
}

.tm-v2-faq__header {
  max-width: 760px;
  margin: 0 auto clamp(48px, 6vh, 62px);
  text-align: center;
}

.tm-v2-faq__title {
  margin: 18px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.45rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  color: var(--tm-navy);
}

.tm-v2-faq__list {
  max-width: 840px;
  margin: 0 auto;
  border-top: 1px solid rgba(12, 34, 58, 0.12);
}

.tm-v2-faq-item {
  border-bottom: 1px solid rgba(12, 34, 58, 0.12);
}

.tm-v2-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
}

.tm-v2-faq-item summary::-webkit-details-marker {
  display: none;
}

.tm-v2-faq-item__question {
  font-family: var(--tm-font-display);
  font-size: clamp(1rem, 1.3vw, 1.12rem);
  font-weight: 600;
  color: var(--tm-navy);
  line-height: 1.3;
}

.tm-v2-faq-item__icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--tm-emerald);
  font-family: var(--tm-font-body);
  transition: transform 220ms ease;
}

.tm-v2-faq-item[open] .tm-v2-faq-item__icon {
  transform: rotate(45deg);
}

.tm-v2-faq-item__answer {
  overflow: hidden;
  transition: height 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.tm-v2-faq-item__answer p {
  margin: 0;
  padding-bottom: 22px;
  color: var(--tm-ink-700);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* ───────────────────────────────────────────
   Guarantee CTA
   ─────────────────────────────────────────── */
.tm-v2-guarantee {
  position: relative;
  padding: clamp(62px, 8vh, 104px) 0;
  background: var(--tm-emerald);
  overflow: hidden;
}

.tm-v2-guarantee__content {
  position: relative;
  max-width: 620px;
  z-index: 1;
}

.tm-v2-guarantee__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-family: var(--tm-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tm-v2-guarantee__title {
  margin: 18px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.1rem, 3.15vw, 3.35rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.06;
  color: #FFFFFF;
}

.tm-v2-guarantee__copy {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1.05vw, 1rem);
  font-weight: 400;
  line-height: 1.54;
}

.tm-v2-guarantee__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  min-height: 52px;
  min-width: 204px;
  padding: 8px 58px 8px 8px;
  border-radius: 100px;
  background: #FFFFFF;
  color: var(--tm-emerald-deep);
  font-family: var(--tm-font-body);
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color 260ms ease, box-shadow 180ms ease, transform 180ms ease;
}

/* Green capsule — starts at zero width (invisible), grows to fill interior on hover */
.tm-v2-guarantee__button::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: 36px;
  border-radius: 100px;
  background: var(--tm-emerald-deep);
  transition: width 360ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.tm-v2-guarantee__button:hover::before {
  width: calc(100% - 16px);
}

.tm-v2-guarantee__button:hover {
  color: #FFFFFF;
  box-shadow: 0 14px 30px rgba(4, 79, 56, 0.22);
  transform: translateY(-1px);
}

/* Left icon — has its own background so circle is always visible at rest */
.tm-v2-guarantee__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--tm-emerald-deep);
  color: #FFFFFF;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.tm-v2-guarantee__button:hover .tm-v2-guarantee__btn-icon {
  opacity: 0;
  transform: scale(0.86);
}

.tm-v2-guarantee__btn-text {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}

/* Right arrow — hidden at rest, fades in at far right after fill completes */
.tm-v2-guarantee__btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--tm-emerald-deep);
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) translateX(6px) scale(0.92);
  z-index: 2;
  opacity: 0;
  transition: opacity 180ms ease 170ms, transform 220ms ease 170ms;
}

.tm-v2-guarantee__button:hover .tm-v2-guarantee__btn-arrow {
  opacity: 1;
  transform: translateY(-50%) translateX(0) scale(1);
}

/* ───────────────────────────────────────────
   Final CTA
   ─────────────────────────────────────────── */
.tm-v2-final-cta {
  position: relative;
  padding: clamp(78px, 10vh, 118px) 0 clamp(82px, 10vh, 122px);
  background: var(--tm-navy);
  color: #FFFFFF;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.tm-v2-final-cta__dots {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.56) 42%, #000 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.56) 42%, #000 100%);
}

.tm-v2-final-cta__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.tm-v2-final-cta__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tm-v2-final-cta__eyebrow {
  margin: 0;
  color: var(--tm-gold);
  font-family: var(--tm-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.tm-v2-final-cta__title {
  margin: 18px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.2rem, 3.6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.08;
  color: #FFFFFF;
}

.tm-v2-final-cta__copy {
  margin: 22px 0 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.74);
  font-family: var(--tm-font-body);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  font-weight: 400;
  line-height: 1.55;
}

.tm-v2-final-cta__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  margin-top: 34px;
  padding: 0 28px;
  border-radius: var(--tm-radius-sm);
  background: var(--tm-emerald);
  color: #FFFFFF;
  font-family: var(--tm-font-body);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 150ms ease,
    box-shadow       150ms ease,
    transform        100ms ease;
  -webkit-tap-highlight-color: transparent;
}

.tm-v2-final-cta__button:hover {
  background: transparent;
  box-shadow: 0 4px 18px rgba(15, 157, 110, 0.28);
}

.tm-v2-final-cta__button:active {
  transform: scale(0.99);
}

.tm-v2-final-cta__btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.tm-v2-final-cta__email {
  margin: 26px 0 0;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--tm-font-body);
  font-size: 0.92rem;
  font-weight: 500;
}

.tm-v2-final-cta__email a {
  color: var(--tm-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 180ms ease;
}

.tm-v2-final-cta__email a:hover {
  color: var(--tm-gold-soft);
}

@media (max-width: 860px) {
  .tm-v2-final-cta__grid {
    grid-template-columns: 1fr;
  }

  .tm-v2-final-cta__dots {
    opacity: 0.42;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 42%, transparent 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 42%, transparent 100%);
  }
}

/* ───────────────────────────────────────────
   Meet The Team — editorial split: navy team panel / cream story panel
   ─────────────────────────────────────────── */
.tm-v2-team {
  background: var(--tm-cream);
  border-top: 1px solid var(--tm-line-200);
  border-bottom: 1px solid var(--tm-line-200);
}

.tm-v2-team__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 720px;
}

.tm-v2-team__panel {
  position: relative;
  display: flex;
  align-items: center;
}

.tm-v2-team__panel--team {
  background: var(--tm-navy);
  color: #FFFFFF;
  overflow: hidden;
}

.tm-v2-team__panel--team::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 380px at 10% 0%, rgba(15, 157, 110, 0.10), transparent 55%);
  pointer-events: none;
}

.tm-v2-team__panel--story {
  background: var(--tm-warm);
}

.tm-v2-team__panel-inner {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: clamp(72px, 9vh, 104px) clamp(32px, 5vw, 64px);
  position: relative;
  z-index: 1;
}

/* Team-side issue label */
.tm-v2-team__vol {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--tm-radius-pill);
  font-family: var(--tm-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.tm-v2-team__vol > span:nth-child(2) {
  color: var(--tm-emerald);
  font-weight: 400;
}

.tm-v2-team__title {
  margin: 22px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.02;
  color: #FFFFFF;
}

.tm-v2-team__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--tm-emerald);
}

.tm-v2-team__subtitle {
  max-width: 420px;
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: var(--tm-font-body);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

/* Founders */
.tm-v2-team__founders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: clamp(36px, 4.5vh, 48px);
}

.tm-v2-founder {
  margin: 0;
}

.tm-v2-founder__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: var(--tm-radius-md);
  overflow: hidden;
  background: var(--tm-navy-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--tm-shadow-micro);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.tm-v2-founder__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(8%);
  transition: filter 220ms ease, transform 320ms ease;
}

.tm-v2-founder:hover .tm-v2-founder__frame {
  transform: translateY(-2px);
  box-shadow: var(--tm-shadow-hover);
}

.tm-v2-founder:hover .tm-v2-founder__frame img {
  filter: grayscale(0%);
  transform: scale(1.02);
}

.tm-v2-founder__caption {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 12px;
  font-family: var(--tm-font-body);
}

.tm-v2-founder__name {
  font-family: var(--tm-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.2;
  color: #FFFFFF;
}

.tm-v2-founder__role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tm-emerald);
}

.tm-v2-founder__role::before {
  content: '·';
  margin-right: 6px;
  color: rgba(255, 255, 255, 0.32);
}

/* Story side */
.tm-v2-team__story-title {
  margin: 14px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.6rem, 4.4vw, 4.4rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.02;
  color: var(--tm-navy);
}

.tm-v2-team__story-title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--tm-navy);
  opacity: 0.92;
}

.tm-v2-team__story-copy {
  max-width: 480px;
  margin: 28px 0 0;
  padding-top: 22px;
  border-top: 2px solid var(--tm-emerald);
  font-family: var(--tm-font-body);
  font-size: clamp(1rem, 1.18vw, 1.12rem);
  line-height: 1.65;
  color: var(--tm-ink-700);
}

.tm-v2-team__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--tm-navy);
  border-radius: var(--tm-radius-sm);
  background: transparent;
  color: var(--tm-navy);
  font-family: var(--tm-font-body);
  font-size: 0.96rem;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tm-v2-team__cta i {
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.tm-v2-team__cta:hover {
  background: var(--tm-navy);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.tm-v2-team__cta:hover i {
  transform: translateX(3px);
}

.tm-v2-team__cta:focus-visible {
  outline: 2px solid var(--tm-emerald);
  outline-offset: 3px;
}

/* ───────────────────────────────────────────
   Testimonials — manual carousel (no 3D, no autoplay)
   Active card centered; prev/next cards peek at the sides at reduced
   opacity + scale. Click ghost cards to jump. Arrow keys + swipe supported.
   ─────────────────────────────────────────── */
.tm-v2-testimonials {
  padding: clamp(74px, 9vh, var(--tm-space-section)) 0 clamp(78px, 9vh, 118px);
  background: var(--tm-warm);
  border-top: 1px solid var(--tm-line-200);
  border-bottom: 1px solid var(--tm-line-200);
  overflow: hidden;
}

.tm-v2-testimonials__header {
  max-width: 780px;
  margin: 0 auto clamp(48px, 6vh, 64px);
  text-align: center;
}

.tm-v2-testimonials__title {
  margin: 14px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.35rem, 3.85vw, 3.9rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.06;
  color: var(--tm-navy);
}

.tm-v2-testimonials__title span {
  font-style: italic;
  font-weight: 400;
  color: var(--tm-emerald);
}

.tm-v2-testimonials__intro {
  max-width: 620px;
  margin: 18px auto 0;
  font-family: var(--tm-font-body);
  font-size: clamp(1rem, 1.12vw, 1.1rem);
  line-height: 1.55;
  color: var(--tm-ink-700);
}

/* Carousel stage */
.tm-v2-testimonials__carousel {
  position: relative;
}

.tm-v2-testimonials__track {
  position: relative;
  height: 360px;
  perspective: none;
}

.tm-v2-testimonial-card {
  position: absolute;
  top: 0;
  left: 50%;
  width: clamp(300px, 48vw, 520px);
  max-width: 92%;
  height: 100%;
  padding: clamp(24px, 2.4vw, 32px);
  background: #FFFFFF;
  border: 1px solid var(--tm-line-200);
  border-radius: var(--tm-radius-lg);
  box-shadow: var(--tm-shadow-micro);
  display: flex;
  flex-direction: column;
  gap: 22px;
  transform: translate(-50%, 0) scale(1);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition:
    transform 380ms ease,
    opacity 380ms ease,
    visibility 0s linear 380ms;
}

.tm-v2-testimonial-card.is-active {
  z-index: 3;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
  visibility: visible;
  transition:
    transform 380ms ease,
    opacity 380ms ease,
    visibility 0s linear 0s;
}

.tm-v2-testimonial-card.is-prev {
  z-index: 2;
  opacity: 0.45;
  transform: translate(calc(-50% - clamp(240px, 32vw, 360px)), 0) scale(0.88);
  pointer-events: auto;
  visibility: visible;
  cursor: pointer;
  filter: saturate(0.7);
  transition:
    transform 380ms ease,
    opacity 380ms ease,
    visibility 0s linear 0s;
}

.tm-v2-testimonial-card.is-next {
  z-index: 2;
  opacity: 0.45;
  transform: translate(calc(-50% + clamp(240px, 32vw, 360px)), 0) scale(0.88);
  pointer-events: auto;
  visibility: visible;
  cursor: pointer;
  filter: saturate(0.7);
  transition:
    transform 380ms ease,
    opacity 380ms ease,
    visibility 0s linear 0s;
}

.tm-v2-testimonial-card.is-prev:hover,
.tm-v2-testimonial-card.is-next:hover {
  opacity: 0.6;
}

.tm-v2-testimonial-card.is-hidden {
  z-index: 1;
  opacity: 0;
  transform: translate(-50%, 0) scale(1);
}

/* Card content */
.tm-v2-testimonial-card__qmark {
  font-family: var(--tm-font-display);
  font-weight: 600;
  font-size: 1.4em;
  color: var(--tm-emerald);
  opacity: 0.5;
  vertical-align: -0.15em;
}

.tm-v2-testimonial-card__qmark--open  { margin-right: 2px; }
.tm-v2-testimonial-card__qmark--close { margin-left: 2px; }

.tm-v2-testimonial-card__body {
  margin: 0;
  flex: 1;
  display: grid;
  align-content: center;
  font-family: var(--tm-font-display);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--tm-navy);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 157, 110, 0.32) transparent;
}

.tm-v2-testimonial-card__body::-webkit-scrollbar {
  width: 4px;
}

.tm-v2-testimonial-card__body::-webkit-scrollbar-thumb {
  background: rgba(15, 157, 110, 0.32);
  border-radius: var(--tm-radius-pill);
}

.tm-v2-testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--tm-line-200);
}

.tm-v2-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.tm-v2-testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--tm-radius-pill);
  background: rgba(15, 157, 110, 0.12);
  color: var(--tm-navy);
  font-family: var(--tm-font-display);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  overflow: hidden;
}

.tm-v2-testimonial-card__avatar--photo {
  background: var(--tm-line-200);
  padding: 0;
}

.tm-v2-testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tm-v2-testimonial-card__identity {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.tm-v2-testimonial-card__name {
  font-family: var(--tm-font-body);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--tm-navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tm-v2-testimonial-card__role {
  font-family: var(--tm-font-body);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--tm-ink-500);
}

.tm-v2-testimonial-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  color: var(--tm-emerald);
  font-size: 0.95rem;
  line-height: 1;
}

/* Nav controls */
.tm-v2-testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 32px);
  margin-top: clamp(28px, 4vh, 42px);
}

.tm-v2-testimonials__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--tm-line-300);
  border-radius: var(--tm-radius-pill);
  background: #FFFFFF;
  color: var(--tm-navy);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.tm-v2-testimonials__btn:hover {
  background: var(--tm-navy);
  border-color: var(--tm-navy);
  color: #FFFFFF;
  transform: translateY(-1px);
}

.tm-v2-testimonials__btn:focus-visible {
  outline: 2px solid var(--tm-emerald);
  outline-offset: 3px;
}

.tm-v2-testimonials__dots {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tm-v2-testimonials__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: var(--tm-radius-pill);
  background: rgba(10, 31, 61, 0.22);
  cursor: pointer;
  transition: background-color 180ms ease, width 220ms ease;
}

.tm-v2-testimonials__dot:hover {
  background: rgba(10, 31, 61, 0.42);
}

.tm-v2-testimonials__dot.is-active {
  width: 24px;
  background: var(--tm-emerald);
}

.tm-v2-testimonials__dot:focus-visible {
  outline: 2px solid var(--tm-emerald);
  outline-offset: 3px;
}

/* Reduced motion */
.tm-v2-testimonials--reduce-motion .tm-v2-testimonial-card,
.tm-v2-testimonials--reduce-motion .tm-v2-testimonial-card.is-active,
.tm-v2-testimonials--reduce-motion .tm-v2-testimonial-card.is-prev,
.tm-v2-testimonials--reduce-motion .tm-v2-testimonial-card.is-next,
.tm-v2-testimonials--reduce-motion .tm-v2-testimonial-card.is-hidden {
  transition: opacity 200ms ease, visibility 0s linear 0s;
  transform: translate(-50%, 0);
}

.tm-v2-testimonials--reduce-motion .tm-v2-testimonial-card.is-prev,
.tm-v2-testimonials--reduce-motion .tm-v2-testimonial-card.is-next {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Mobile slide-in keyframes (used inside @media, direction-driven) */
@keyframes ctp-slide-in-right {
  from { opacity: 0; transform: translate(calc(-50% + 110%), 0) scale(1); }
  to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes ctp-slide-in-left {
  from { opacity: 0; transform: translate(calc(-50% - 110%), 0) scale(1); }
  to   { opacity: 1; transform: translate(-50%, 0) scale(1); }
}

/* ───────────────────────────────────────────
   Get In Touch — Quiet Ledger contact section
   Split-panel: cream left, pure white right, divided by a 1px border.
   ─────────────────────────────────────────── */
.tm-v2-get-in-touch {
  background: var(--tm-cream);
  border-top: 1px solid var(--tm-line-200);
  overflow: hidden;
}

/* Full-bleed split — no shell wrapper, panels fill to edge */
.tm-v2-get-in-touch__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100%;
}

/* Left panel — cream, constrained content with padding */
.tm-v2-get-in-touch__left {
  background: var(--tm-cream);
  display: flex;
  align-items: flex-start;
  padding: clamp(74px, 9vh, 110px) clamp(32px, 5vw, 80px) clamp(74px, 9vh, 110px) max(32px, calc((100vw - 1200px) / 2 + 40px));
  border-right: 1px solid var(--tm-line-200);
}

/* Right panel — pure white, full height */
.tm-v2-get-in-touch__right {
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  padding: clamp(74px, 9vh, 110px) max(32px, calc((100vw - 1200px) / 2 + 40px)) clamp(74px, 9vh, 110px) clamp(32px, 5vw, 80px);
}

.tm-v2-get-in-touch__form-col {
  width: 100%;
  max-width: 520px;
}

/* Left intro */
.tm-v2-get-in-touch__intro {
  width: 100%;
  max-width: 480px;
}

.tm-v2-get-in-touch__title {
  margin: 14px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(2.45rem, 4vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.04;
  color: var(--tm-navy);
}

.tm-v2-get-in-touch__title span {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--tm-navy);
  opacity: 0.92;
}

.tm-v2-get-in-touch__copy {
  max-width: 460px;
  margin: 20px 0 clamp(36px, 4.5vh, 48px);
  font-family: var(--tm-font-body);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.55;
  color: var(--tm-ink-700);
}

.tm-v2-get-in-touch__info {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.tm-v2-get-in-touch__info-item {
  padding: clamp(18px, 2.4vh, 24px) 0;
  border-top: 1px solid var(--tm-line-200);
}

.tm-v2-get-in-touch__info-item:last-child {
  border-bottom: 1px solid var(--tm-line-200);
}

.tm-v2-get-in-touch__info-item dt {
  margin: 0 0 6px;
  font-family: var(--tm-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--tm-emerald);
}

.tm-v2-get-in-touch__info-item dd {
  margin: 0;
  font-family: var(--tm-font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--tm-ink-700);
}

.tm-v2-get-in-touch__info-item dd a {
  color: var(--tm-navy);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(15, 157, 110, 0.45);
  font-weight: 600;
  transition: text-decoration-color 180ms ease, color 180ms ease;
}

.tm-v2-get-in-touch__info-item dd a:hover {
  color: var(--tm-emerald);
  text-decoration-color: var(--tm-emerald);
}


.tm-v2-get-in-touch__form-title {
  margin: 12px 0 0;
  font-family: var(--tm-font-display);
  font-size: clamp(1.5rem, 2vw, 1.9rem);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.15;
  color: var(--tm-navy);
}

.tm-v2-get-in-touch__form-copy {
  margin: 10px 0 24px;
  font-family: var(--tm-font-body);
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--tm-ink-700);
}

/* Form fields */
.tm-v2-contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tm-v2-contact-form__row {
  display: grid;
  gap: 18px;
}

.tm-v2-contact-form__row--two {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.tm-v2-contact-field {
  display: flex;
  flex-direction: column;
}

.tm-v2-contact-field__label {
  margin-bottom: 6px;
  font-family: var(--tm-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--tm-ink-500);
}

.tm-v2-contact-field__input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  background: var(--tm-cream);
  border: 1px solid var(--tm-line-200);
  border-radius: var(--tm-radius-sm);
  font-family: var(--tm-font-body);
  font-size: 0.96rem;
  line-height: 1.5;
  color: var(--tm-navy);
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.tm-v2-contact-field__input::placeholder {
  color: var(--tm-ink-500);
  opacity: 0.78;
}

.tm-v2-contact-field__input:hover {
  border-color: var(--tm-line-300);
}

.tm-v2-contact-field__input:focus {
  outline: none;
  background: #FFFFFF;
  border-color: var(--tm-emerald);
  box-shadow: 0 0 0 3px rgba(15, 157, 110, 0.14);
}

.tm-v2-contact-field__input--textarea {
  min-height: 132px;
  resize: vertical;
  padding-top: 12px;
}

/* reCAPTCHA */
.tm-v2-contact-form__recaptcha {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

.tm-v2-contact-form__recaptcha-error {
  display: none;
  margin: 6px 0 0;
  font-family: var(--tm-font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: #B91C1C;
}

.tm-v2-contact-form__recaptcha-error.is-visible {
  display: block;
}

/* Status messages */
.tm-v2-contact-form__status {
  display: none;
  margin: 4px 0 0;
  padding: 12px 14px;
  border-radius: var(--tm-radius-sm);
  font-family: var(--tm-font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.45;
}

.tm-v2-contact-form__status.is-visible {
  display: block;
}

.tm-v2-contact-form__status--loading {
  background: rgba(15, 157, 110, 0.08);
  color: var(--tm-emerald-deep);
}

.tm-v2-contact-form__status--error {
  background: rgba(185, 28, 28, 0.06);
  color: #B91C1C;
  border: 1px solid rgba(185, 28, 28, 0.18);
}

.tm-v2-contact-form__status--success {
  background: rgba(15, 157, 110, 0.10);
  color: var(--tm-emerald-deep);
  border: 1px solid rgba(15, 157, 110, 0.28);
}

/* Submit button */
.tm-v2-contact-form__submit {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  margin-top: 8px;
  padding: 0 28px;
  border: 1px solid var(--tm-emerald);
  border-radius: var(--tm-radius-sm);
  background: var(--tm-emerald);
  color: #FFFFFF;
  font-family: var(--tm-font-body);
  font-size: 0.96rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tm-v2-contact-form__submit i {
  font-size: 1rem;
  line-height: 1;
  transition: transform 180ms ease;
}

.tm-v2-contact-form__submit:hover {
  background: var(--tm-emerald-deep);
  border-color: var(--tm-emerald-deep);
  transform: translateY(-1px);
}

.tm-v2-contact-form__submit:hover i {
  transform: translateX(3px);
}

.tm-v2-contact-form__submit:focus-visible {
  outline: 2px solid var(--tm-gold);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .tm-v2-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .tm-v2-hero__copy {
    max-width: 760px;
  }

  .tm-v2-hero__visual {
    height: 520px;
  }

  .tm-v2-crisis__stats {
    grid-template-columns: 1fr;
  }

  .tm-v2-crisis-card {
    min-height: auto;
  }

  .tm-v2-crisis__quote {
    max-width: 100%;
  }

  .tm-v2-calculator__grid {
    grid-template-columns: 1fr;
  }

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

  .tm-v2-how__steps::before {
    display: none;
  }

  .tm-v2-team__grid {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .tm-v2-testimonials__track {
    height: 380px;
  }

  /* Clip cards that slide out of frame */
  .tm-v2-testimonials__track { overflow: hidden; }

  /* Card width fills the track on mobile */
  .tm-v2-testimonial-card { width: 92%; }

  /* Non-active cards: hidden off-screen by default */
  .tm-v2-testimonial-card.is-prev,
  .tm-v2-testimonial-card.is-next {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 0) scale(1);
    transition:
      transform 380ms ease,
      opacity 380ms ease,
      visibility 0s linear 380ms;
  }

  /* Outgoing card: animates out — direction-specific rules win via higher specificity */
  [data-dir="next"] .tm-v2-testimonial-card.is-prev,
  [data-dir="prev"] .tm-v2-testimonial-card.is-next {
    visibility: visible;
  }
  [data-dir="next"] .tm-v2-testimonial-card.is-prev {
    transform: translate(calc(-50% - 110%), 0) scale(1);
  }
  [data-dir="prev"] .tm-v2-testimonial-card.is-next {
    transform: translate(calc(-50% + 110%), 0) scale(1);
  }

  /* Incoming active card: enter from the right when going forward,
     from the left when going backward.
     Disable transition so the keyframe controls everything. */
  [data-dir="next"] .tm-v2-testimonial-card.is-active,
  [data-dir="prev"] .tm-v2-testimonial-card.is-active {
    transition: none;
    visibility: visible;
    pointer-events: auto;
  }
  [data-dir="next"] .tm-v2-testimonial-card.is-active {
    animation: ctp-slide-in-right 380ms ease forwards;
  }
  [data-dir="prev"] .tm-v2-testimonial-card.is-active {
    animation: ctp-slide-in-left 380ms ease forwards;
  }

  .tm-v2-team__panel-inner {
    max-width: 720px;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .tm-v2-get-in-touch__split {
    grid-template-columns: 1fr;
  }

  .tm-v2-get-in-touch__left {
    padding: clamp(56px, 8vh, 80px) clamp(24px, 6vw, 48px);
    border-right: none;
    border-bottom: 1px solid var(--tm-line-200);
  }

  .tm-v2-get-in-touch__right {
    padding: clamp(48px, 7vh, 72px) clamp(24px, 6vw, 48px);
  }

  .tm-v2-get-in-touch__intro {
    max-width: 100%;
  }

  .tm-v2-get-in-touch__form-col {
    max-width: 100%;
  }

  .tm-v2-contact-form__row--two {
    grid-template-columns: 1fr;
  }


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

  .tm-v2-packages__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .tm-v2-package--featured {
    margin: 0;
    padding: 38px 28px 36px;
  }

  .tm-v2-trust__logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 28px;
  }

  .tm-v2-trust__logos > :nth-child(n) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .tm-v2-page {
    --tm-v2-page-x: 16px;
  }

  .tm-v2-hero {
    padding-top: 46px;
    padding-bottom: 56px;
  }

  .tm-v2-hero__title {
    font-size: clamp(2.32rem, 12vw, 3.75rem);
  }

  .tm-v2-hero__note {
    align-items: flex-start;
  }

  .tm-v2-hero__actions,
  .tm-v2-button {
    width: 100%;
  }

  .tm-v2-hero__trust {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .tm-v2-hero__visual {
    display: none;
  }

  .tm-v2-crisis {
    padding-top: 48px;
  }

  .tm-v2-crisis__header {
    text-align: left;
  }

  .tm-v2-crisis__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .tm-v2-crisis__intro {
    margin-top: 18px;
  }

  .tm-v2-crisis__stats {
    gap: 16px;
    margin-top: 30px;
  }

  .tm-v2-crisis-card {
    padding: 24px 22px;
  }

  .tm-v2-crisis-card__stat {
    gap: 14px;
    margin-bottom: 18px;
  }

  .tm-v2-crisis-card__stat i {
    width: 48px;
    height: 48px;
    font-size: 1.28rem;
  }

  .tm-v2-crisis-card strong {
    font-size: clamp(2.35rem, 12vw, 3.2rem);
  }

  .tm-v2-crisis__quote {
    margin-top: 34px;
    text-align: left;
  }


  .tm-v2-calculator {
    padding-top: 54px;
  }

  .tm-v2-calculator__header {
    text-align: left;
  }

  .tm-v2-calculator__panel {
    padding: 24px 18px 26px;
  }

  .tm-v2-calculator__grid {
    gap: 28px;
  }

  .tm-v2-calculator__output {
    padding: 24px 20px;
  }

  .tm-v2-calc-breakdown {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 12px;
  }

  .tm-v2-calc-row {
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.78rem;
  }

  .tm-v2-calc-row strong {
    flex-shrink: unset;
    font-size: 1rem;
  }

  .tm-v2-calc-row--total {
    background: rgba(15, 157, 110, 0.12);
    border: 1px solid rgba(15, 157, 110, 0.28);
  }

  .tm-v2-calc-row--total strong {
    font-size: 1.2rem;
  }

  .tm-v2-calculator__cta a {
    width: 100%;
  }

  .tm-v2-how {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .tm-v2-how__header {
    text-align: left;
  }

  .tm-v2-how__title {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .tm-v2-how__steps {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 34px;
  }

  .tm-v2-how__steps::before {
    display: none;
  }

  .tm-v2-how-card {
    padding: 22px 20px;
  }

  .tm-v2-guarantee {
    padding-top: 54px;
    padding-bottom: 58px;
  }

  .tm-v2-guarantee__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .tm-v2-guarantee__copy {
    margin-top: 16px;
  }

  .tm-v2-guarantee__button {
    margin-top: 26px;
  }


  .tm-v2-faq {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .tm-v2-faq__header {
    margin-bottom: 34px;
    text-align: left;
  }

  .tm-v2-faq__title {
    font-size: clamp(2.05rem, 9vw, 3rem);
  }

  .tm-v2-faq-item summary {
    padding: 16px 16px;
    gap: 12px;
  }

  .tm-v2-faq-item__icon {
    width: 34px;
    height: 34px;
  }

  .tm-v2-faq-item p {
    margin: 4px 16px 18px calc(34px + 12px + 16px);
    padding-left: 12px;
  }

  .tm-v2-pillars {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .tm-v2-pillars__header {
    text-align: left;
    padding-left: 22px;
    padding-right: 22px;
  }

  .tm-v2-pillars__intro[data-pillars-intro] {
    max-height: 3.4em;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .tm-v2-pillars__intro[data-pillars-intro].is-expanded {
    max-height: 20em;
  }

  .tm-v2-pillars__see-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 6px;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--tm-emerald);
    cursor: pointer;
    letter-spacing: 0.01em;
  }

  .tm-v2-pillars__see-more::after {
    content: '↓';
    font-size: 0.8em;
    transition: transform 0.2s;
  }

  .tm-v2-pillars__see-more[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }

  .tm-v2-pillars__rows {
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .tm-v2-pillar-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 22px 20px;
    background: #fff;
    border-radius: 14px;
    border-bottom: none;
  }

  .tm-v2-pillar-row__num {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--tm-emerald);
    padding: 0;
    margin-bottom: 10px;
    line-height: 1;
    grid-row: unset;
  }

  .tm-v2-pillar-row__num::before {
    content: 'STEP ';
  }

  .tm-v2-pillar-row__body {
    margin-bottom: 16px;
  }

  .tm-v2-pillar-row__list {
    grid-column: unset;
    margin-top: 0;
    padding-right: 0;
    border-top: 1px solid var(--tm-line-200);
    padding-top: 4px;
  }

  .tm-v2-pillar-row__list li {
    font-size: 0.85rem;
  }

  .tm-v2-pillar-row--guarantee {
    padding: 22px 20px;
    background: var(--tm-navy);
  }

  .tm-v2-pillar-row--guarantee .tm-v2-pillar-row__list {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .tm-v2-roles {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .tm-v2-roles__header {
    text-align: left;
  }

  .tm-v2-roles__carousel {
    position: static;
  }

  .tm-v2-roles__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
  }

  .tm-v2-roles__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 14px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    grid-template-columns: unset;
    padding: 8px 12px 8px;
  }

  .tm-v2-roles__grid::-webkit-scrollbar {
    display: none;
  }

  .tm-v2-roles__grid .tm-v2-role {
    flex: 0 0 80vw;
    max-width: 300px;
    scroll-snap-align: center;
  }

  .tm-v2-roles__nav {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #fff;
    color: var(--tm-navy);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .tm-v2-roles__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  .tm-v2-roles__dot {
    width: 7px;
    height: 7px;
    border-radius: 99px;
    background: rgba(0,0,0,0.18);
    cursor: pointer;
    transition: width 0.3s ease, background 0.3s ease;
  }

  .tm-v2-roles__dot.is-active {
    width: 22px;
    background: var(--tm-emerald);
  }

  .tm-v2-packages {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .tm-v2-packages__header {
    text-align: left;
  }

  .tm-v2-package {
    padding: 28px 24px 26px;
  }

  .tm-v2-trust {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .tm-v2-trust-card {
    padding: 36px 22px;
    border-radius: var(--tm-radius-lg);
  }

  .tm-v2-trust__label-row {
    margin-bottom: 28px;
    gap: 12px;
  }

  .tm-v2-trust__logos {
    grid-template-columns: repeat(2, max-content);
    justify-content: center;
    justify-items: start;
    gap: 24px clamp(28px, 9vw, 44px);
  }

  .tm-v2-trust__logos > :nth-child(n) {
    grid-column: auto;
  }

  /* Center the lone last item when 7 logos produce an odd row */
  .tm-v2-trust__logos > :nth-child(7):last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: none;
    width: auto;
  }

  .tm-v2-trust-logo {
    justify-content: flex-start;
    gap: 10px;
    min-height: 50px;
    width: auto;
  }

  .tm-v2-trust-logo__img {
    height: 36px;
  }

  .tm-v2-trust-logo__caption {
    font-size: 1.05rem;
  }
}

@media (max-width: 480px) {
  .tm-v2-page {
    --tm-v2-page-x: 14px;
  }

  .tm-v2-hero {
    padding-top: 34px;
    padding-bottom: 46px;
  }

  .tm-v2-hero__title,
  .tm-v2-crisis__title,
  .tm-v2-calculator__title,
  .tm-v2-pillars__title,
  .tm-v2-roles__title,
  .tm-v2-packages__title,
  .tm-v2-faq__title,
  .tm-v2-testimonials__title,
  .tm-v2-final-cta__title,
  .tm-v2-get-in-touch__title {
    overflow-wrap: anywhere;
  }

  .tm-v2-hero__visual {
    height: 320px;
  }

  .tm-v2-calculator__panel,
  .tm-v2-calculator__output,
  .tm-v2-package,
  .tm-v2-testimonial-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .tm-v2-testimonials__track {
    height: 320px;
  }

  .tm-v2-testimonial-card__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .tm-v2-contact-form__submit,
  .tm-v2-final-cta__button {
    width: 100%;
    justify-content: center;
  }

  .tm-v2-contact-form__recaptcha {
    transform: scale(0.92);
    transform-origin: left top;
    margin-bottom: -8px;
  }
}
