/* ===== tmd-pricing.css ===== */
/* Pricing / Custom Work landing page */
.tmd-pricing-page {
  color: var(--tmd-navy, #042C53);
  overflow-x: hidden;
}

.tmd-pricing-hero {
  background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
  padding: 64px 0 56px;
  text-align: center;
}

.tmd-pricing-eyebrow {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--tmd-gold, #E8C468);
  margin: 0 0 14px;
}

.tmd-pricing-hero-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 600;
  color: #fff;
  max-width: 760px;
  margin: 0 auto 16px;
  line-height: 1.15;
}

.tmd-pricing-hero-desc {
  font-size: 15px;
  color: #fff;
  max-width: 620px;
  margin: 0 auto 28px;
  line-height: 1.65;
}

.tmd-pricing-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
}

.tmd-pricing-trust {
  background: var(--tmd-bg-soft, #FAFCFF);
  border-top: 1px solid var(--tmd-border, #E4EAF1);
  border-bottom: 1px solid var(--tmd-border, #E4EAF1);
  padding: 16px 0;
}

.tmd-pricing-trust-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.tmd-pricing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: var(--tmd-muted, #5C6B7A);
}

.tmd-pricing-trust-item i {
  font-size: 17px;
  color: var(--tmd-blue, #33ccff);
}

.tmd-pricing-trust-item strong {
  color: var(--tmd-navy, #042C53);
}

.tmd-pricing-how,
.tmd-pricing-why {
  padding: 56px 0 48px;
}

.tmd-pricing-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--tmd-blue, #33ccff);
  margin: 0 0 10px;
}

.tmd-pricing-section-title {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 600;
  margin: 0 0 32px;
  color: var(--tmd-navy, #042C53);
}

.tmd-pricing-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.tmd-pricing-step-card {
  border: 1px solid var(--tmd-border, #E4EAF1);
  border-radius: 12px;
  padding: 22px;
  background: #fff;
}

.tmd-pricing-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--tmd-blue-light, #E6F1FB);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--tmd-blue, #33ccff);
  margin-bottom: 14px;
}

.tmd-pricing-step-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 6px;
}

.tmd-pricing-step-card p {
  font-size: 12px;
  color: var(--tmd-muted, #5C6B7A);
  margin: 0;
  line-height: 1.6;
}

.tmd-pricing-services {
  background: var(--tmd-bg-soft, #FAFCFF);
  border-top: 1px solid var(--tmd-border, #E4EAF1);
  padding: 56px 0 48px;
}

.tmd-pricing-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tmd-pricing-svc-card {
  background: #fff;
  border: 1px solid var(--tmd-border, #E4EAF1);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  height: 100%;
}

.tmd-pricing-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px -12px rgba(4, 44, 83, .2);
  border-color: var(--tmd-blue-border, #85B7EB);
}

.tmd-pricing-svc-card.is-featured {
  border: 1.5px solid var(--tmd-blue, #33ccff);
}

.tmd-pricing-svc-card.is-focus {
  border: 2px solid var(--tmd-blue, #33ccff);
  box-shadow: 0 14px 30px -16px rgba(4, 44, 83, .35);
}

.tmd-pricing-svc-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tmd-pricing-svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--tmd-blue-light, #E6F1FB);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.tmd-pricing-svc-icon i {
  font-size: 20px;
  color: var(--tmd-blue, #33ccff);
}

.tmd-pricing-svc-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tmd-pricing-svc-icon.is-gold {
  background: #FDF6E3;
}

.tmd-pricing-svc-icon.is-gold i {
  color: var(--tmd-gold-text, #92700A);
}

.tmd-pricing-svc-icon.is-green {
  background: #E8F6EF;
}

.tmd-pricing-svc-icon.is-green i {
  color: #1E8C60;
}

.tmd-pricing-svc-head-text {
  flex: 1;
  min-width: 0;
}

.tmd-pricing-svc-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 2px 8px;
  border-radius: 20px;
  margin-bottom: 6px;
}

.tmd-pricing-svc-tag.is-popular {
  background: #FDF6E3;
  color: var(--tmd-gold-text, #92700A);
}

.tmd-pricing-svc-tag.is-free {
  background: #E8F6EF;
  color: #1E8C60;
}

.tmd-pricing-svc-tag.is-focus {
  background: rgba(51, 204, 255, .14);
  color: #0b4a7f;
}

.tmd-pricing-svc-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  margin: 0;
  line-height: 1.35;
}

.tmd-pricing-svc-brief {
  font-size: 12.5px;
  color: var(--tmd-muted, #5C6B7A);
  margin: 0;
  line-height: 1.6;
}

.tmd-pricing-svc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.tmd-pricing-svc-list li {
  font-size: 12px;
  color: var(--tmd-muted, #5C6B7A);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}

.tmd-pricing-svc-list li:before {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tmd-blue, #33ccff);
  margin-top: 6px;
  flex-shrink: 0;
}

.tmd-pricing-svc-divider {
  border: 0;
  border-top: 1px solid var(--tmd-border, #E4EAF1);
  margin: auto 0 0;
}

.tmd-pricing-svc-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tmd-pricing-quote-label {
  font-size: 11px;
  color: var(--tmd-muted, #5C6B7A);
}

.tmd-pricing-quote-label strong {
  display: block;
  font-size: 14px;
  color: var(--tmd-navy, #042C53);
  font-weight: 700;
  margin-top: 2px;
}

.tmd-pricing-old {
  text-decoration: line-through;
  color: var(--tmd-muted, #5C6B7A);
  font-weight: 400;
  font-size: 12px;
  margin-right: 6px;
}

.tmd-pricing-svc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tmd-pricing-btn-quote,
.tmd-pricing-btn-cart {
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 7px;
}

.tmd-pricing-btn-outline {
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 7px;
  border: 1.5px solid var(--tmd-blue-border, #85B7EB);
  color: var(--tmd-blue, #33ccff);
  background: #fff;
}

.tmd-pricing-btn-outline:hover {
  background: var(--tmd-blue-light, #E6F1FB);
  border-color: var(--tmd-blue, #33ccff);
  color: var(--tmd-navy, #042C53);
}

.tmd-pricing-empty {
  font-size: 14px;
  color: var(--tmd-muted, #5C6B7A);
  padding: 24px 0;
}

.tmd-pricing-estimate {
  padding: 24px 0 8px;
}

.tmd-pricing-estimate-inner {
  border: 1.5px solid var(--tmd-blue-border, #85B7EB);
  border-radius: 14px;
  background: var(--tmd-blue-light, #E6F1FB);
  padding: 28px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.tmd-pricing-estimate-icon {
  font-size: 36px;
  color: var(--tmd-blue, #33ccff);
  flex-shrink: 0;
}

.tmd-pricing-estimate-text {
  flex: 1;
  min-width: 220px;
}

.tmd-pricing-estimate-text h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 6px;
}

.tmd-pricing-estimate-text p {
  font-size: 12.5px;
  color: var(--tmd-muted, #5C6B7A);
  margin: 0;
  line-height: 1.6;
}

.tmd-pricing-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.tmd-pricing-why-item {
  padding: 20px;
  border: 1px solid var(--tmd-border, #E4EAF1);
  border-radius: 12px;
  background: #fff;
}

.tmd-pricing-why-item i {
  font-size: 22px;
  color: var(--tmd-blue, #33ccff);
  margin-bottom: 10px;
  display: block;
}

.tmd-pricing-why-item h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px;
}

.tmd-pricing-why-item p {
  font-size: 12px;
  color: var(--tmd-muted, #5C6B7A);
  margin: 0;
  line-height: 1.6;
}

.tmd-pricing-notes {
  background: var(--tmd-bg-soft, #FAFCFF);
  border-top: 1px solid var(--tmd-border, #E4EAF1);
  padding: 40px 0;
}

.tmd-pricing-notes h2 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
}

.tmd-pricing-notes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tmd-pricing-note-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12.5px;
  color: var(--tmd-muted, #5C6B7A);
  line-height: 1.55;
}

.tmd-pricing-note-row i {
  font-size: 15px;
  color: var(--tmd-blue, #33ccff);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 991px) {
  .tmd-pricing-services-grid,
  .tmd-pricing-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tmd-pricing-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .tmd-pricing-services-grid,
  .tmd-pricing-why-grid,
  .tmd-pricing-steps {
    grid-template-columns: 1fr;
  }

  .tmd-pricing-hero {
    padding: 48px 0 40px;
  }

  .tmd-pricing-svc-actions {
    flex-direction: column;
  }

  .tmd-pricing-svc-actions .btn {
    width: 100%;
    text-align: center;
  }

  .tmd-pricing-estimate-inner {
    padding: 22px 18px;
  }
}

/* ===== tmd-story.css ===== */
.tmd-story-page {
	--tmd-story-navy: #042C53;
	--tmd-story-blue: #33ccff;
	--tmd-story-blue-bright: #29ABE2;
	--tmd-story-gold: #E8C468;
	--tmd-story-gold-text: #8A6206;
	--tmd-story-teal: #12A594;
	--tmd-story-coral: #F0654A;
	--tmd-story-border: #E4EAF1;
	--tmd-story-muted: #5C6B7A;
	--tmd-story-road: #C2D2E4;
	color: var(--tmd-story-navy);
	background: #F7FAFD;
	line-height: 1.5;
	overflow-x: hidden;
}
.tmd-story-page a {
	text-decoration: none;
	color: inherit;
}
.tmd-story-page h1,
.tmd-story-page h2,
.tmd-story-page h3 {
	margin: 0;
	letter-spacing: -0.01em;
}
.tmd-story-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.tmd-story-page.tmd-reveal-ready .tmd-story-reveal:not(.in) {
	opacity: 0;
	transform: translateY(24px);
}
.tmd-story-reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tmd-story-reveal {
		opacity: 1;
		transform: none;
	}
}

.tmd-story-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 96px 32px 88px;
	text-align: center;
	position: relative;
}
.tmd-story-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 8%, rgba(41, 171, 226, 0.30), transparent 55%);
	pointer-events: none;
}
.tmd-story-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 820px;
	margin: 0 auto;
}
.tmd-story-hero .tmd-story-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 22px;
}
.tmd-story-hero h1 {
	/* Capped at 60px so the headline never outgrows the 820px hero column,
	   which is what forced "More Than 12 Years." onto a second line. */
	font-size: clamp(22px, 6.6vw, 60px);
	font-weight: 800;
	line-height: 1.0;
	text-transform: uppercase;
	letter-spacing: 0.01em;
	margin-bottom: 24px;
	color: #fff;
}
.tmd-story-hero h1 .tmd-story-hero-line {
	display: block;
	white-space: nowrap;
}
.tmd-story-hero h1 em {
	display: block;
	margin-top: 10px;
	font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
	font-style: italic;
	font-weight: 500;
	font-size: 1.05em;
	letter-spacing: 0;
	text-transform: none;
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-story-tagline {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: clamp(15px, 2.4vw, 21px);
	font-weight: 600;
	letter-spacing: 0.02em;
	text-transform: uppercase;
	color: #DCEBF8;
	padding: 12px 26px;
	border-radius: 40px;
	background: rgba(255, 255, 255, 0.08);
	border: 1px solid rgba(255, 255, 255, 0.18);
}
.tmd-story-tagline i {
	color: var(--tmd-story-blue-bright);
	font-size: 20px;
}

.tmd-story-roadmap {
	max-width: 1040px;
	margin: 0 auto;
	padding: 70px 32px 40px;
	position: relative;
}
.tmd-story-road-label {
	text-align: center;
	margin-bottom: 56px;
}
.tmd-story-road-label .tmd-story-k {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--tmd-story-blue);
}
.tmd-story-road-label h2 {
	font-size: clamp(22px, 3.4vw, 32px);
	font-weight: 800;
	margin-top: 8px;
	text-transform: uppercase;
	color: var(--tmd-story-navy);
}
.tmd-story-road-svg {
	position: absolute;
	left: 50%;
	top: 150px;
	transform: translateX(-50%);
	width: 120px;
	height: calc(100% - 150px);
	z-index: 0;
	color: var(--tmd-story-road);
}
.tmd-story-stops {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 46px;
}
.tmd-story-stop {
	display: grid;
	grid-template-columns: 1fr 120px 1fr;
	align-items: center;
}
.tmd-story-stop .tmd-story-node {
	grid-column: 2;
	justify-self: center;
}
.tmd-story-stop .tmd-story-card {
	max-width: 420px;
}
.tmd-story-stop.left .tmd-story-card {
	grid-column: 1;
	justify-self: end;
	text-align: right;
}
.tmd-story-stop.left .tmd-story-card .tmd-story-card-head {
	flex-direction: row-reverse;
}
.tmd-story-stop.right .tmd-story-card {
	grid-column: 3;
	justify-self: start;
	text-align: left;
}
.tmd-story-node {
	width: 56px;
	height: 56px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	box-shadow: 0 10px 24px -8px rgba(0, 0, 0, 0.35);
	border: 4px solid #F7FAFD;
	position: relative;
}
.tmd-story-step-badge {
	position: absolute;
	top: -10px;
	right: -10px;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	color: var(--tmd-story-navy);
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.tmd-story-card {
	background: #fff;
	border: 1px solid var(--tmd-story-border);
	border-radius: 18px;
	padding: 22px 24px;
	box-shadow: 0 12px 30px -16px rgba(4, 44, 83, 0.25);
}
.tmd-story-card-head {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
}
.tmd-story-card .tmd-story-k {
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 11px;
	border-radius: 20px;
}
.tmd-story-card h3 {
	font-size: clamp(20px, 2.8vw, 26px);
	font-weight: 800;
	line-height: 1.08;
	margin-bottom: 10px;
}
.tmd-story-hl {
	font-size: 13.5px;
	font-weight: 600;
	line-height: 1.5;
	margin: 0;
}
.tmd-story-hl em {
	font-style: italic;
}

.tmd-story-stop.t-coral .tmd-story-node { background: linear-gradient(150deg, #F0654A, #D8452B); }
.tmd-story-stop.t-coral .tmd-story-k { background: rgba(240, 101, 74, 0.14); color: var(--tmd-story-coral); }
.tmd-story-stop.t-coral h3 { color: #7A2A18; }
.tmd-story-stop.t-coral .tmd-story-hl { color: var(--tmd-story-coral); }

.tmd-story-stop.t-navy .tmd-story-node { background: linear-gradient(150deg, #33ccff, #042C53); }
.tmd-story-stop.t-navy .tmd-story-k { background: rgba(24, 95, 165, 0.12); color: var(--tmd-story-blue); }
.tmd-story-stop.t-navy h3 { color: var(--tmd-story-navy); }
.tmd-story-stop.t-navy .tmd-story-hl { color: var(--tmd-story-blue); }

.tmd-story-stop.t-blue .tmd-story-node { background: linear-gradient(150deg, #29ABE2, #12518F); }
.tmd-story-stop.t-blue .tmd-story-k { background: rgba(41, 171, 226, 0.16); color: var(--tmd-story-blue); }
.tmd-story-stop.t-blue h3 { color: #0A3D6E; }
.tmd-story-stop.t-blue .tmd-story-hl { color: var(--tmd-story-blue); }

.tmd-story-stop.t-gold .tmd-story-node { background: linear-gradient(150deg, #E8C468, #B8902E); }
.tmd-story-stop.t-gold .tmd-story-k { background: rgba(184, 144, 46, 0.16); color: var(--tmd-story-gold-text); }
.tmd-story-stop.t-gold h3 { color: var(--tmd-story-gold-text); }
.tmd-story-stop.t-gold .tmd-story-hl { color: var(--tmd-story-gold-text); }
.tmd-story-stop.t-gold .tmd-story-card {
	background: linear-gradient(120deg, #FFFDF6, #FCF4DE);
	border-color: #EED89A;
}

.tmd-story-stop.t-teal .tmd-story-node { background: linear-gradient(150deg, #12A594, #0B7D70); }
.tmd-story-stop.t-teal .tmd-story-k { background: rgba(18, 165, 148, 0.14); color: var(--tmd-story-teal); }
.tmd-story-stop.t-teal h3 { color: #0A5B51; }
.tmd-story-stop.t-teal .tmd-story-hl { color: var(--tmd-story-teal); }

/* The stats sit in the empty half of the stop they belong to, so they read as
   part of that chapter instead of as a separate band further down the road. */
.tmd-story-stats-band {
	background: linear-gradient(150deg, #33ccff, #0e8ec6);
	border-radius: 18px;
	padding: 22px 18px;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	max-width: 420px;
	width: 100%;
	box-shadow: 0 16px 40px -18px rgba(4, 44, 83, 0.5);
}
.tmd-story-stop.right .tmd-story-stats-band {
	grid-column: 1;
	justify-self: end;
}
.tmd-story-stop.left .tmd-story-stats-band {
	grid-column: 3;
	justify-self: start;
}
.tmd-story-num {
	font-size: clamp(24px, 3.2vw, 32px);
	font-weight: 800;
	line-height: 1;
	text-align: center;
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-story-lbl {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.9);
	text-align: center;
	margin-top: 7px;
}

.tmd-story-destination {
	max-width: 1040px;
	margin: 24px auto 72px;
	padding: 0 32px;
	position: relative;
	z-index: 2;
}
.tmd-story-estorra-card {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	border-radius: 26px;
	padding: 56px 40px;
	text-align: center;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.tmd-story-estorra-card::before {
	content: "";
	position: absolute;
	top: -25%;
	right: -8%;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.28), transparent 65%);
}
.tmd-story-estorra-card::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -8%;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
}
.tmd-story-estorra-inner {
	position: relative;
	z-index: 2;
}
.tmd-story-flag {
	width: 64px;
	height: 64px;
	border-radius: 20px;
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 30px;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	box-shadow: 0 14px 34px -12px rgba(4, 44, 83, 0.45);
}
.tmd-story-estorra-card > .tmd-story-estorra-inner > .tmd-story-k,
.tmd-story-estorra-inner > .tmd-story-k {
	display: inline-block;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #fff;
	background: rgba(255, 255, 255, 0.18);
	border: 1px solid rgba(255, 255, 255, 0.35);
	padding: 6px 14px;
	border-radius: 20px;
	margin-bottom: 18px;
}
.tmd-story-estorra-card h2 {
	font-size: clamp(38px, 7vw, 68px);
	font-weight: 800;
	line-height: 0.98;
	margin-bottom: 18px;
	text-transform: uppercase;
	color: #fff;
}
.tmd-story-estorra-card h2 span {
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-story-feats {
	display: flex;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
	margin: 0 0 30px;
}
.tmd-story-feats span {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.95);
	background: rgba(255, 255, 255, 0.14);
	border: 1px solid rgba(255, 255, 255, 0.28);
	padding: 9px 18px;
	border-radius: 30px;
}
/* Scoped to the page so it outranks ".tmd-story-page a { color: inherit }",
   which would otherwise render the label white on the white pill. */
.tmd-story-page .tmd-story-estorra-cta {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 16px 36px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 40px;
	background: #fff;
	color: #0b76ad;
	border: none;
	cursor: pointer;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tmd-story-page .tmd-story-estorra-cta:hover {
	transform: translateY(-3px);
	box-shadow: 0 16px 36px -12px rgba(4, 44, 83, 0.55);
	color: #0b76ad;
}

@media (max-width: 760px) {
	.tmd-story-road-svg {
		left: 34px;
		transform: none;
	}
	.tmd-story-stop {
		grid-template-columns: 70px 1fr;
		row-gap: 16px;
	}
	.tmd-story-stop .tmd-story-node {
		grid-column: 1;
		justify-self: center;
	}
	.tmd-story-stop.left .tmd-story-card,
	.tmd-story-stop.right .tmd-story-card {
		grid-column: 2;
		justify-self: start;
		text-align: left;
		max-width: none;
	}
	.tmd-story-stop.left .tmd-story-stats-band,
	.tmd-story-stop.right .tmd-story-stats-band {
		grid-column: 2;
		justify-self: stretch;
	}
	.tmd-story-stop.left .tmd-story-card .tmd-story-card-head {
		flex-direction: row;
	}
	.tmd-story-hero,
	.tmd-story-roadmap,
	.tmd-story-destination {
		padding-left: 16px;
		padding-right: 16px;
	}
	.tmd-story-destination {
		margin-bottom: 48px;
	}
	.tmd-story-estorra-card {
		padding: 40px 22px;
	}
	.tmd-story-stats-band {
		max-width: none;
		padding: 18px 12px;
	}
}

/* ===== tmd-careers.css ===== */
.tmd-careers-page {
	--tmd-careers-navy: #042C53;
	--tmd-careers-blue: #33ccff;
	--tmd-careers-blue-bright: #29ABE2;
	--tmd-careers-blue-light: #E6F1FB;
	--tmd-careers-blue-border: #85B7EB;
	--tmd-careers-gold-text: #8A6206;
	--tmd-careers-gold-bg: #FDF6E3;
	--tmd-careers-green: #1E8C60;
	--tmd-careers-green-bg: #E8F6EF;
	--tmd-careers-border: #E4EAF1;
	--tmd-careers-muted: #5C6B7A;
	--tmd-careers-bg-soft: #FAFCFF;
	color: var(--tmd-careers-navy);
	background: #fff;
	line-height: 1.55;
}
.tmd-careers-page a {
	text-decoration: none;
	color: inherit;
}
.tmd-careers-page h1,
.tmd-careers-page h2,
.tmd-careers-page h3,
.tmd-careers-page h4 {
	margin: 0;
	letter-spacing: -0.01em;
}
.tmd-careers-wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 40px;
}
.tmd-careers-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.tmd-careers-page.tmd-reveal-ready .tmd-careers-reveal:not(.in) {
	opacity: 0;
	transform: translateY(22px);
}
.tmd-careers-reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tmd-careers-reveal {
		opacity: 1;
		transform: none;
	}
}
.tmd-careers-section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--tmd-careers-blue);
	margin-bottom: 10px;
}
.tmd-careers-section-title {
	font-size: clamp(22px, 3.4vw, 34px);
	font-weight: 800;
	color: var(--tmd-careers-navy);
}
.tmd-careers-section-sub {
	font-size: 14.5px;
	color: var(--tmd-careers-muted);
	max-width: 560px;
	margin-top: 12px;
}

.tmd-careers-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 84px 32px 76px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-careers-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 8%, rgba(41, 171, 226, 0.28), transparent 55%);
}
.tmd-careers-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 720px;
	margin: 0 auto;
}
.tmd-careers-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 20px;
}
.tmd-careers-hero h1 {
	font-size: clamp(34px, 6vw, 58px);
	font-weight: 800;
	line-height: 1.03;
	margin-bottom: 18px;
	text-transform: uppercase;
	color: #fff;
}
.tmd-careers-hero h1 em {
	font-style: normal;
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-careers-hero p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 500px;
	margin: 0 auto 30px;
}
.tmd-careers-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 40px;
	background: #fff;
	color: var(--tmd-careers-blue) !important;
	border: none;
	cursor: pointer;
}
.tmd-careers-hero-cta:hover {
	background: var(--tmd-careers-blue-light);
	color: var(--tmd-careers-blue) !important;
}

.tmd-careers-perks {
	padding: 64px 0 20px;
}
.tmd-careers-perk-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 36px;
}
.tmd-careers-perk {
	border: 1px solid var(--tmd-careers-border);
	border-radius: 14px;
	padding: 22px;
	background: #fff;
}
.tmd-careers-perk i {
	font-size: 24px;
	margin-bottom: 12px;
	display: block;
}
.tmd-careers-perk h4 {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 5px;
	color: var(--tmd-careers-navy);
}
.tmd-careers-perk p {
	font-size: 12.5px;
	color: var(--tmd-careers-muted);
	margin: 0;
	line-height: 1.6;
}

.tmd-careers-openings {
	background: var(--tmd-careers-bg-soft);
	border-top: 1px solid var(--tmd-careers-border);
	border-bottom: 1px solid var(--tmd-careers-border);
	padding: 64px 0;
	margin-top: 56px;
}
.tmd-careers-filter-bar {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
	margin: 30px 0 24px;
}
.tmd-careers-filter-btn {
	padding: 8px 16px;
	font-size: 12.5px;
	font-weight: 600;
	border-radius: 30px;
	border: 1px solid var(--tmd-careers-border);
	background: #fff;
	color: var(--tmd-careers-muted);
	cursor: pointer;
	transition: all 0.15s ease;
}
.tmd-careers-filter-btn:hover {
	border-color: var(--tmd-careers-blue-border);
	color: var(--tmd-careers-blue);
}
.tmd-careers-filter-btn.active {
	background: var(--tmd-careers-blue);
	border-color: var(--tmd-careers-blue);
	color: #fff;
}
.tmd-careers-job {
	background: #fff;
	border: 1px solid var(--tmd-careers-border);
	border-radius: 14px;
	padding: 22px 24px;
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: transform 0.14s ease, box-shadow 0.14s ease, border-color 0.14s ease;
}
.tmd-careers-job:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 30px -14px rgba(4, 44, 83, 0.22);
	border-color: var(--tmd-careers-blue-border);
}
.tmd-careers-job-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	color: #fff;
	flex-shrink: 0;
	background: linear-gradient(150deg, #29ABE2, #12518F);
}
.tmd-careers-job-main {
	flex: 1;
	min-width: 0;
}
.tmd-careers-job-main h3 {
	font-size: 15.5px;
	font-weight: 800;
	margin-bottom: 6px;
	color: var(--tmd-careers-navy);
}
.tmd-careers-job-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 6px 14px;
	font-size: 12px;
	color: var(--tmd-careers-muted);
}
.tmd-careers-job-meta span {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.tmd-careers-job-meta i {
	font-size: 14px;
	color: var(--tmd-careers-blue);
}
.tmd-careers-job-tag {
	font-size: 10px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 3px 9px;
	border-radius: 20px;
}
.tmd-careers-job-tag.ft {
	background: var(--tmd-careers-blue-light);
	color: var(--tmd-careers-blue);
}
.tmd-careers-job-tag.remote {
	background: var(--tmd-careers-green-bg);
	color: var(--tmd-careers-green);
}
.tmd-careers-job-tag.intern {
	background: var(--tmd-careers-gold-bg);
	color: var(--tmd-careers-gold-text);
}
.tmd-careers-job-apply {
	flex-shrink: 0;
	padding: 10px 20px;
	font-size: 12.5px;
	font-weight: 700;
	border-radius: 8px;
	background: var(--tmd-careers-blue);
	color: #fff !important;
	border: none;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease;
	display: inline-block;
	text-align: center;
}
.tmd-careers-job-apply:hover {
	background: #12518F;
	color: #fff !important;
}
.tmd-careers-no-role {
	text-align: center;
	padding: 26px;
	border: 1px dashed var(--tmd-careers-border);
	border-radius: 14px;
	margin-top: 16px;
}
.tmd-careers-open-app {
	margin-top: 20px;
}
.tmd-careers-no-role p {
	font-size: 13px;
	color: var(--tmd-careers-muted);
	margin: 0 0 12px;
}
.tmd-careers-btn-secondary {
	display: inline-block;
	padding: 8px 18px;
	font-size: 13px;
	border-radius: 8px;
	border: 1px solid var(--tmd-careers-blue-border);
	color: var(--tmd-careers-blue) !important;
	background: #fff;
	cursor: pointer;
	font-weight: 600;
}
.tmd-careers-btn-secondary:hover {
	border-color: var(--tmd-careers-blue);
}

.tmd-careers-process {
	padding: 64px 0;
}
.tmd-careers-steps {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 38px;
}
.tmd-careers-step {
	border: 1px solid var(--tmd-careers-border);
	border-radius: 14px;
	padding: 22px;
	position: relative;
	background: #fff;
}
.tmd-careers-step-n {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: var(--tmd-careers-blue-light);
	color: var(--tmd-careers-blue);
	font-size: 12px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.tmd-careers-step h4 {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 5px;
	color: var(--tmd-careers-navy);
}
.tmd-careers-step p {
	font-size: 12px;
	color: var(--tmd-careers-muted);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 820px) {
	.tmd-careers-perk-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.tmd-careers-steps {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 640px) {
	.tmd-careers-wrap {
		padding: 0 16px;
	}
	.tmd-careers-job {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}
	.tmd-careers-job-apply {
		width: 100%;
	}
}
@media (max-width: 520px) {
	.tmd-careers-perk-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 480px) {
	.tmd-careers-steps {
		grid-template-columns: 1fr;
	}
}

/* ===== tmd-team.css ===== */
.tmd-team-page {
	--tmd-team-navy: #042C53;
	--tmd-team-blue: #33ccff;
	--tmd-team-blue-bright: #29ABE2;
	--tmd-team-blue-light: #E6F1FB;
	--tmd-team-blue-border: #85B7EB;
	--tmd-team-gold-text: #8A6206;
	--tmd-team-teal: #12A594;
	--tmd-team-coral: #F0654A;
	--tmd-team-purple: #7C3AED;
	--tmd-team-border: #E4EAF1;
	--tmd-team-muted: #5C6B7A;
	--tmd-team-bg-soft: #FAFCFF;
	color: var(--tmd-team-navy);
	background: #fff;
	line-height: 1.55;
}
.tmd-team-page a {
	text-decoration: none;
	color: inherit;
}
.tmd-team-page h1,
.tmd-team-page h2,
.tmd-team-page h3,
.tmd-team-page h4 {
	margin: 0;
	letter-spacing: -0.01em;
}
.tmd-team-wrap {
	max-width: 1120px;
	margin: 0 auto;
	padding: 0 40px;
}
.tmd-team-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.tmd-team-page.tmd-reveal-ready .tmd-team-reveal:not(.in) {
	opacity: 0;
	transform: translateY(22px);
}
.tmd-team-reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tmd-team-reveal {
		opacity: 1;
		transform: none;
	}
}
.tmd-team-section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--tmd-team-blue);
	margin-bottom: 10px;
}
.tmd-team-section-title {
	font-size: clamp(22px, 3.4vw, 34px);
	font-weight: 800;
	color: var(--tmd-team-navy);
}
.tmd-team-section-sub {
	font-size: 14.5px;
	color: var(--tmd-team-muted);
	max-width: 560px;
	margin-top: 12px;
}
.tmd-team-empty {
	margin-top: 28px;
	color: var(--tmd-team-muted);
	font-size: 14px;
}

.tmd-team-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 84px 32px 76px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-team-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 8%, rgba(41, 171, 226, 0.28), transparent 55%);
}
.tmd-team-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 760px;
	margin: 0 auto;
}
.tmd-team-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 20px;
}
.tmd-team-hero h1 {
	font-size: clamp(34px, 6vw, 60px);
	font-weight: 800;
	line-height: 1.02;
	margin-bottom: 18px;
	text-transform: uppercase;
	color: #fff;
}
.tmd-team-hero h1 em {
	font-style: normal;
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-team-hero p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 520px;
	margin: 0 auto;
}

.tmd-team-stats {
	background: var(--tmd-team-bg-soft);
	border-bottom: 1px solid var(--tmd-team-border);
	padding: 34px 32px;
}
.tmd-team-stats-grid {
	max-width: 1000px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	text-align: center;
}
.tmd-team-num {
	font-size: clamp(26px, 4vw, 38px);
	font-weight: 800;
	color: var(--tmd-team-blue);
	line-height: 1;
}
.tmd-team-lbl {
	font-size: 12px;
	color: var(--tmd-team-muted);
	margin-top: 8px;
}

.tmd-team-lead-wrap {
	padding: 70px 0 20px;
}
.tmd-team-lead-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 22px;
	margin-top: 38px;
}
.tmd-team-lead-card {
	border: 1px solid var(--tmd-team-border);
	border-radius: 18px;
	overflow: hidden;
	background: #fff;
	transition: transform 0.16s ease, box-shadow 0.16s ease, border-color 0.16s ease;
}
.tmd-team-lead-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 38px -16px rgba(4, 44, 83, 0.28);
	border-color: var(--tmd-team-blue-border);
}
.tmd-team-lead-photo {
	height: 200px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
}
.tmd-team-avatar {
	width: 96px;
	height: 96px;
	border-radius: 50%;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	font-weight: 800;
	color: #fff;
	margin-bottom: -48px;
	border: 4px solid #fff;
	box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.25);
	position: relative;
	z-index: 2;
	overflow: hidden;
}
.tmd-team-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.tmd-team-lead-body {
	padding: 60px 24px 24px;
	text-align: center;
}
.tmd-team-lead-body h3 {
	font-size: 17px;
	font-weight: 800;
	margin-bottom: 3px;
	color: var(--tmd-team-navy);
}
.tmd-team-role {
	font-size: 12.5px;
	font-weight: 700;
	margin-bottom: 12px;
}
.tmd-team-lead-body p {
	font-size: 12.5px;
	color: var(--tmd-team-muted);
	margin: 0;
	line-height: 1.6;
}

.tmd-team-lead-card.a-blue .tmd-team-lead-photo { background: linear-gradient(150deg, #E8F4FD, #CFE6FA); }
.tmd-team-lead-card.a-blue .tmd-team-avatar { background: linear-gradient(150deg, #29ABE2, #12518F); }
.tmd-team-lead-card.a-blue .tmd-team-role { color: var(--tmd-team-blue); }

.tmd-team-lead-card.a-coral .tmd-team-lead-photo { background: linear-gradient(150deg, #FFF1EE, #FFE0D8); }
.tmd-team-lead-card.a-coral .tmd-team-avatar { background: linear-gradient(150deg, #F0654A, #D8452B); }
.tmd-team-lead-card.a-coral .tmd-team-role { color: var(--tmd-team-coral); }

.tmd-team-lead-card.a-teal .tmd-team-lead-photo { background: linear-gradient(150deg, #E5F8F4, #CBEFE8); }
.tmd-team-lead-card.a-teal .tmd-team-avatar { background: linear-gradient(150deg, #12A594, #0B7D70); }
.tmd-team-lead-card.a-teal .tmd-team-role { color: var(--tmd-team-teal); }

.tmd-team-lead-card.a-gold .tmd-team-lead-photo { background: linear-gradient(150deg, #FDF6E3, #F6E6B4); }
.tmd-team-lead-card.a-gold .tmd-team-avatar { background: linear-gradient(150deg, #E8C468, #B8912F); }
.tmd-team-lead-card.a-gold .tmd-team-role { color: var(--tmd-team-gold-text); }

.tmd-team-lead-card.a-purple .tmd-team-lead-photo { background: linear-gradient(150deg, #F1EBFD, #E0D2FB); }
.tmd-team-lead-card.a-purple .tmd-team-avatar { background: linear-gradient(150deg, #EC4899, #7C3AED); }
.tmd-team-lead-card.a-purple .tmd-team-role { color: var(--tmd-team-purple); }

.tmd-team-lead-card.a-pink .tmd-team-lead-photo { background: linear-gradient(150deg, #FDECF5, #FBD5E8); }
.tmd-team-lead-card.a-pink .tmd-team-avatar { background: linear-gradient(150deg, #EC4899, #C026A3); }
.tmd-team-lead-card.a-pink .tmd-team-role { color: #C026A3; }

.tmd-team-depts {
	background: var(--tmd-team-bg-soft);
	border-top: 1px solid var(--tmd-team-border);
	padding: 70px 0;
	margin-top: 60px;
}
.tmd-team-dept-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 38px;
}
.tmd-team-dept-card {
	background: #fff;
	border: 1px solid var(--tmd-team-border);
	border-radius: 16px;
	padding: 26px 24px;
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.tmd-team-dept-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 12px 30px -14px rgba(4, 44, 83, 0.22);
}
.tmd-team-dept-icon {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	margin-bottom: 16px;
	background: linear-gradient(150deg, #29ABE2, #12518F);
}
.tmd-team-dept-card h3 {
	font-size: 16px;
	font-weight: 800;
	margin-bottom: 4px;
	color: var(--tmd-team-navy);
}
.tmd-team-cnt {
	font-size: 11.5px;
	font-weight: 700;
	color: var(--tmd-team-muted);
	margin-bottom: 10px;
}
.tmd-team-dept-card p {
	font-size: 12.5px;
	color: var(--tmd-team-muted);
	margin: 0;
	line-height: 1.6;
}

.tmd-team-values {
	padding: 70px 0;
}
.tmd-team-val-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-top: 38px;
}
.tmd-team-val-card {
	border: 1px solid var(--tmd-team-border);
	border-radius: 14px;
	padding: 22px;
	background: #fff;
}
.tmd-team-val-card i {
	font-size: 24px;
	color: var(--tmd-team-blue);
	margin-bottom: 12px;
	display: block;
}
.tmd-team-val-card h4 {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 6px;
	color: var(--tmd-team-navy);
}
.tmd-team-val-card p {
	font-size: 12px;
	color: var(--tmd-team-muted);
	margin: 0;
	line-height: 1.6;
}

@media (max-width: 860px) {
	.tmd-team-lead-grid,
	.tmd-team-dept-grid {
		grid-template-columns: repeat(2, 1fr);
	}
	.tmd-team-val-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (max-width: 680px) {
	.tmd-team-stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 26px;
	}
	.tmd-team-wrap {
		padding: 0 16px;
	}
}
@media (max-width: 560px) {
	.tmd-team-lead-grid,
	.tmd-team-dept-grid {
		grid-template-columns: 1fr;
	}
}
@media (max-width: 480px) {
	.tmd-team-val-grid {
		grid-template-columns: 1fr;
	}
}

/* ===== contact ===== */
.tmd-contact-page {
	--tmd-contact-navy: #042C53;
	--tmd-contact-blue: #33ccff;
	--tmd-contact-blue-bright: #29ABE2;
	--tmd-contact-blue-light: #E6F1FB;
	--tmd-contact-blue-border: #85B7EB;
	--tmd-contact-gold-text: #8A6206;
	--tmd-contact-green: #1E8C60;
	--tmd-contact-border: #E4EAF1;
	--tmd-contact-muted: #5C6B7A;
	--tmd-contact-bg-soft: #FAFCFF;
	color: var(--tmd-contact-navy);
	background: #F7FAFD;
	line-height: 1.55;
	overflow-x: hidden;
}
.tmd-contact-page a { text-decoration: none; color: inherit; }
.tmd-contact-page h1,
.tmd-contact-page h2,
.tmd-contact-page h3 { margin: 0; letter-spacing: -0.01em; }
.tmd-contact-req { color: #D64545; }
.tmd-contact-opt { font-weight: 500; color: var(--tmd-contact-muted); font-size: 11px; }
.tmd-contact-error { color: #D64545; font-size: 12px; margin-top: 6px; }

.tmd-contact-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 66px 32px 120px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-contact-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 8%, rgba(41, 171, 226, 0.28), transparent 55%);
}
.tmd-contact-hero-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
.tmd-contact-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 18px;
}
.tmd-contact-hero h1 {
	font-size: clamp(30px, 5vw, 48px);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 14px;
	color: #fff;
}
.tmd-contact-hero p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 480px;
	margin: 0 auto;
}

.tmd-contact-shell {
	max-width: 1080px;
	margin: -80px auto 60px;
	padding: 0 32px;
	position: relative;
	z-index: 3;
}
.tmd-contact-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 24px;
	align-items: start;
}
.tmd-contact-form-card {
	background: #fff;
	border: 1px solid var(--tmd-contact-border);
	border-radius: 20px;
	padding: 34px;
	box-shadow: 0 24px 60px -30px rgba(4, 44, 83, 0.4);
}
.tmd-contact-form-card h2 {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 4px;
	color: var(--tmd-contact-navy);
}
.tmd-contact-sub {
	font-size: 13px;
	color: var(--tmd-contact-muted);
	margin-bottom: 26px;
}
.tmd-contact-field { margin-bottom: 18px; }
.tmd-contact-field label {
	display: block;
	font-size: 12.5px;
	font-weight: 700;
	margin-bottom: 7px;
	color: var(--tmd-contact-navy);
}
.tmd-contact-field input,
.tmd-contact-field textarea {
	width: 100%;
	padding: 12px 14px;
	font-size: 13.5px;
	border: 1.5px solid var(--tmd-contact-border);
	border-radius: 10px;
	background: var(--tmd-contact-bg-soft);
	color: var(--tmd-contact-navy);
	font-family: inherit;
	outline: none;
	transition: border-color 0.15s ease, background 0.15s ease;
	box-sizing: border-box;
}
.tmd-contact-field input:focus,
.tmd-contact-field textarea:focus {
	border-color: var(--tmd-contact-blue);
	background: #fff;
}
.tmd-contact-field textarea {
	resize: vertical;
	min-height: 110px;
}
.tmd-contact-row-2 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.tmd-contact-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin: 6px 0 22px;
}
.tmd-contact-consent input {
	width: 16px;
	height: 16px;
	margin-top: 2px;
	accent-color: var(--tmd-contact-blue);
	flex-shrink: 0;
}
.tmd-contact-consent label {
	font-size: 11.5px;
	color: var(--tmd-contact-muted);
	line-height: 1.55;
	font-weight: 400;
	margin: 0;
}
.tmd-contact-consent a {
	color: var(--tmd-contact-blue);
	font-weight: 600;
}
.tmd-contact-submit {
	width: 100%;
	padding: 15px;
	font-size: 15px;
	font-weight: 700;
	border-radius: 12px;
	background: var(--tmd-contact-blue);
	color: #fff;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background 0.15s ease;
}
.tmd-contact-submit:hover { background: #12518F; }
.tmd-contact-form-foot {
	text-align: center;
	font-size: 11.5px;
	color: var(--tmd-contact-muted);
	margin-top: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
}
.tmd-contact-form-foot i {
	color: var(--tmd-contact-green);
	font-size: 14px;
}

.tmd-contact-aside {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.tmd-contact-info-card {
	background: #fff;
	border: 1px solid var(--tmd-contact-border);
	border-radius: 16px;
	padding: 24px;
}
.tmd-contact-info-card h3 {
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 16px;
	color: var(--tmd-contact-navy);
}
.tmd-contact-info-row {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
}
.tmd-contact-info-row:last-child { margin-bottom: 0; }
.tmd-contact-ic {
	width: 38px;
	height: 38px;
	border-radius: 10px;
	background: var(--tmd-contact-blue-light);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}
.tmd-contact-ic i {
	font-size: 18px;
	color: var(--tmd-contact-blue);
}
.tmd-contact-t {
	font-size: 11px;
	color: var(--tmd-contact-muted);
	margin-bottom: 2px;
}
.tmd-contact-v {
	font-size: 13px;
	font-weight: 700;
	color: var(--tmd-contact-navy);
}
.tmd-contact-v a:hover { color: var(--tmd-contact-blue); }

.tmd-contact-assure-card {
	background: linear-gradient(150deg, #FDF6E3, #F6E6B4);
	border: 1px solid #EED89A;
	border-radius: 16px;
	padding: 22px 24px;
}
.tmd-contact-assure-card h3 {
	font-size: 14px;
	font-weight: 800;
	color: var(--tmd-contact-gold-text);
	margin-bottom: 12px;
	display: flex;
	align-items: center;
	gap: 8px;
}
.tmd-contact-assure-card h3 i { font-size: 18px; }
.tmd-contact-assure-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.tmd-contact-assure-list li {
	font-size: 12.5px;
	color: #7A5E1C;
	display: flex;
	align-items: flex-start;
	gap: 8px;
	line-height: 1.5;
}
.tmd-contact-assure-list li i {
	color: var(--tmd-contact-gold-text);
	font-size: 15px;
	margin-top: 1px;
	flex-shrink: 0;
}

.tmd-contact-resp-card {
	background: linear-gradient(150deg, #33ccff, #0e8ec6);
	border-radius: 16px;
	padding: 22px 24px;
	color: #fff;
	text-align: center;
}
.tmd-contact-big {
	font-size: 30px;
	font-weight: 800;
	color: #ffffff;
	line-height: 1;
	margin-bottom: 6px;
}
.tmd-contact-resp-card p {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
}

@media (max-width: 860px) {
	.tmd-contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
	.tmd-contact-row-2 { grid-template-columns: 1fr; }
	.tmd-contact-shell { padding: 0 16px; margin-bottom: 40px; }
	.tmd-contact-form-card { padding: 24px 18px; }
}

/* ===== ecommerce ===== */
.tmd-ecom-page {
	--tmd-ecom-navy: #042C53;
	--tmd-ecom-blue: #33ccff;
	--tmd-ecom-blue-bright: #29ABE2;
	--tmd-ecom-blue-light: #E6F1FB;
	--tmd-ecom-blue-border: #85B7EB;
	--tmd-ecom-gold: #E8C468;
	--tmd-ecom-gold-text: #8A6206;
	--tmd-ecom-gold-bg: #FDF6E3;
	--tmd-ecom-teal: #12A594;
	--tmd-ecom-coral: #F0654A;
	--tmd-ecom-purple: #7C3AED;
	--tmd-ecom-pink: #EC4899;
	--tmd-ecom-green: #1E8C60;
	--tmd-ecom-border: #E4EAF1;
	--tmd-ecom-muted: #5C6B7A;
	--tmd-ecom-bg-soft: #FAFCFF;
	color: var(--tmd-ecom-navy);
	line-height: 1.6;
}
.tmd-ecom-page a { text-decoration: none; color: inherit; }
.tmd-ecom-page h1,
.tmd-ecom-page h2,
.tmd-ecom-page h3,
.tmd-ecom-page h4 { margin: 0; letter-spacing: -0.01em; }
.tmd-ecom-wrap { max-width: 920px; margin: 0 auto; padding: 0 32px; }
.tmd-ecom-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.tmd-ecom-page.tmd-reveal-ready .tmd-ecom-reveal:not(.in) {
	opacity: 0;
	transform: translateY(20px);
}
.tmd-ecom-reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tmd-ecom-reveal { opacity: 1; transform: none; }
}

.tmd-ecom-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 76px 32px 66px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-ecom-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 8%, rgba(255,255,255,.2), transparent 55%);
}
.tmd-ecom-hero-inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.tmd-ecom-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 18px;
}
.tmd-ecom-hero h1 {
	font-size: clamp(30px, 5vw, 50px);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 16px;
}
.tmd-ecom-hero h1 em {
	font-style: normal;
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-ecom-hero p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 520px;
	margin: 0 auto;
}
.tmd-ecom-hero-meta {
	margin-top: 22px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	flex-wrap: wrap;
	font-size: 12px;
	color: #7FA6CE;
}
.tmd-ecom-hero-meta span { display: inline-flex; align-items: center; gap: 6px; }
.tmd-ecom-hero-meta i { font-size: 15px; color: var(--tmd-ecom-blue-bright); }

.tmd-ecom-quicknav {
	max-width: 920px;
	margin: -34px auto 0;
	padding: 0 32px;
	position: relative;
	z-index: 3;
}
.tmd-ecom-quicknav-inner {
	background: #fff;
	border: 1px solid var(--tmd-ecom-border);
	border-radius: 16px;
	padding: 20px 22px;
	box-shadow: 0 20px 46px -26px rgba(4,44,83,.35);
}
.tmd-ecom-qn-title {
	font-size: 11.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: var(--tmd-ecom-muted);
	margin-bottom: 12px;
}
.tmd-ecom-qn-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
}
@media (max-width: 760px) {
	.tmd-ecom-qn-grid { grid-template-columns: repeat(2, 1fr); }
}
.tmd-ecom-qn-item {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	font-weight: 600;
	padding: 9px 12px;
	border-radius: 10px;
	border: 1px solid var(--tmd-ecom-border);
	transition: all 0.15s ease;
}
.tmd-ecom-qn-item:hover {
	border-color: var(--tmd-ecom-blue-border);
	background: var(--tmd-ecom-blue-light);
	color: var(--tmd-ecom-blue);
}
.tmd-ecom-qn-n {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--tmd-ecom-blue-light);
	color: var(--tmd-ecom-blue);
	font-size: 10px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.tmd-ecom-intro { padding: 52px 0 8px; }
.tmd-ecom-intro p {
	font-size: 15.5px;
	color: var(--tmd-ecom-muted);
	margin: 0 0 14px;
}
.tmd-ecom-intro p strong { color: var(--tmd-ecom-navy); }

.tmd-ecom-req-list {
	display: flex;
	flex-direction: column;
	gap: 22px;
	padding: 28px 0 44px;
}
.tmd-ecom-req {
	position: relative;
	border-radius: 20px;
	padding: 32px 34px 30px;
	overflow: hidden;
	border: 1px solid transparent;
	transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.tmd-ecom-req:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 44px -22px rgba(4,44,83,.3);
}
.tmd-ecom-req::before {
	content: attr(data-n);
	position: absolute;
	top: -22px;
	right: 14px;
	font-size: 150px;
	font-weight: 800;
	line-height: 1;
	opacity: 0.10;
	letter-spacing: -0.04em;
	pointer-events: none;
}
.tmd-ecom-req.th-blue { background: linear-gradient(150deg,#F0F8FE,#E1F0FC); border-color: #C6E2F7; }
.tmd-ecom-req.th-blue::before { color: #33ccff; }
.tmd-ecom-req.th-teal { background: linear-gradient(150deg,#EEFAF7,#DCF3EE); border-color: #B8E5DB; }
.tmd-ecom-req.th-teal::before { color: #0B7D70; }
.tmd-ecom-req.th-coral { background: linear-gradient(150deg,#FEF3F0,#FCE5DF); border-color: #F5CCC1; }
.tmd-ecom-req.th-coral::before { color: #D8452B; }
.tmd-ecom-req.th-gold { background: linear-gradient(150deg,#FDF9EC,#F9EFD0); border-color: #EDDCA4; }
.tmd-ecom-req.th-gold::before { color: #B8912F; }
.tmd-ecom-req.th-pink { background: linear-gradient(150deg,#FDF1F7,#FBE1EF); border-color: #F3C4DD; }
.tmd-ecom-req.th-pink::before { color: #C026A3; }
.tmd-ecom-req.th-purple { background: linear-gradient(150deg,#F5F1FD,#EAE1FA); border-color: #D4C2F2; }
.tmd-ecom-req.th-purple::before { color: #5B21B6; }
.tmd-ecom-req.th-cyan { background: linear-gradient(150deg,#EEF9FC,#DBF1F7); border-color: #B5E0EC; }
.tmd-ecom-req.th-cyan::before { color: #155E75; }
.tmd-ecom-req.th-navy { background: linear-gradient(150deg,#EFF4FA,#DEE9F5); border-color: #BFD4EA; }
.tmd-ecom-req.th-navy::before { color: #042C53; }

.tmd-ecom-req-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 14px;
	position: relative;
	z-index: 2;
}
.tmd-ecom-req-num {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
	font-size: 20px;
	font-weight: 800;
	box-shadow: 0 10px 24px -8px rgba(0,0,0,.35);
}
.tmd-ecom-req-k {
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 2px;
}
.tmd-ecom-req-head h2 {
	font-size: clamp(19px, 2.8vw, 25px);
	font-weight: 800;
}
.tmd-ecom-req-body {
	font-size: 14.5px;
	color: #44566B;
	margin: 0 0 18px;
	max-width: 700px;
	position: relative;
	z-index: 2;
}
.tmd-ecom-req-body strong { color: var(--tmd-ecom-navy); }
.th-blue .tmd-ecom-req-k { color: #12518F; }
.th-teal .tmd-ecom-req-k { color: #0B7D70; }
.th-coral .tmd-ecom-req-k { color: #C4442E; }
.th-gold .tmd-ecom-req-k { color: #96751B; }
.th-pink .tmd-ecom-req-k { color: #C026A3; }
.th-purple .tmd-ecom-req-k { color: #5B21B6; }
.th-cyan .tmd-ecom-req-k { color: #155E75; }
.th-navy .tmd-ecom-req-k { color: #0A3D6E; }

.tmd-ecom-solve {
	display: flex;
	align-items: center;
	gap: 16px;
	background: #fff;
	border: 1px solid rgba(255,255,255,.9);
	border-radius: 14px;
	padding: 16px 18px;
	max-width: 700px;
	position: relative;
	z-index: 2;
	box-shadow: 0 8px 22px -12px rgba(4,44,83,.25);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tmd-ecom-solve:hover {
	transform: translateX(5px);
	box-shadow: 0 12px 28px -12px rgba(4,44,83,.35);
}
.tmd-ecom-solve-si {
	width: 44px;
	height: 44px;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #fff;
}
.tmd-ecom-solve-si i { font-size: 21px; }
.tmd-ecom-solve-st { flex: 1; min-width: 0; }
.tmd-ecom-solve-lbl {
	font-size: 10.5px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--tmd-ecom-green);
	margin-bottom: 2px;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.tmd-ecom-solve-lbl::before { content: "\2713"; font-weight: 800; }
.tmd-ecom-solve-st h4 {
	font-size: 13.5px;
	font-weight: 800;
	margin: 0 0 2px;
}
.tmd-ecom-solve-st p {
	font-size: 12px;
	color: var(--tmd-ecom-muted);
	margin: 0;
}
.tmd-ecom-solve-go {
	color: var(--tmd-ecom-blue);
	font-size: 18px;
	flex-shrink: 0;
	transition: transform 0.15s ease;
}
.tmd-ecom-solve:hover .tmd-ecom-solve-go { transform: translateX(3px); }
@media (max-width: 560px) {
	.tmd-ecom-req { padding: 26px 22px; }
	.tmd-ecom-req::before { font-size: 110px; }
}

.tmd-ecom-stages {
	background: var(--tmd-ecom-bg-soft);
	border-top: 1px solid var(--tmd-ecom-border);
	border-bottom: 1px solid var(--tmd-ecom-border);
	padding: 56px 0;
	margin-top: 20px;
}
.tmd-ecom-stages h2 {
	font-size: clamp(20px, 3vw, 28px);
	font-weight: 800;
	text-align: center;
	margin-bottom: 8px;
}
.tmd-ecom-stages-sub {
	font-size: 14px;
	color: var(--tmd-ecom-muted);
	text-align: center;
	max-width: 520px;
	margin: 0 auto 34px;
}
.tmd-ecom-stage-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
@media (max-width: 760px) {
	.tmd-ecom-stage-grid { grid-template-columns: 1fr; }
}
.tmd-ecom-stage {
	background: #fff;
	border: 1px solid var(--tmd-ecom-border);
	border-radius: 16px;
	padding: 24px;
}
.tmd-ecom-stage-tag {
	display: inline-block;
	font-size: 10.5px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 12px;
	border-radius: 20px;
	margin-bottom: 14px;
}
.tmd-ecom-stage h3 {
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 10px;
}
.tmd-ecom-stage ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.tmd-ecom-stage li {
	font-size: 12.5px;
	color: var(--tmd-ecom-muted);
	display: flex;
	gap: 8px;
}
.tmd-ecom-stage li i {
	color: var(--tmd-ecom-green);
	font-size: 15px;
	flex-shrink: 0;
	margin-top: 1px;
}

/* ===== payment ===== */
.tmd-pay-page {
	--tmd-pay-navy: #042C53;
	--tmd-pay-blue: #33ccff;
	--tmd-pay-blue-bright: #29ABE2;
	--tmd-pay-blue-light: #E6F1FB;
	--tmd-pay-blue-border: #85B7EB;
	--tmd-pay-gold-text: #8A6206;
	--tmd-pay-gold-bg: #FDF6E3;
	--tmd-pay-coral: #F0654A;
	--tmd-pay-purple: #7C3AED;
	--tmd-pay-green: #1E8C60;
	--tmd-pay-border: #E4EAF1;
	--tmd-pay-muted: #5C6B7A;
	--tmd-pay-bg-soft: #FAFCFF;
	color: var(--tmd-pay-navy);
	line-height: 1.55;
	overflow-x: hidden;
}
.tmd-pay-page a { text-decoration: none; color: inherit; }
.tmd-pay-page h1,
.tmd-pay-page h2,
.tmd-pay-page h3,
.tmd-pay-page h4 { margin: 0; letter-spacing: -0.01em; }
.tmd-pay-wrap { max-width: 1080px; margin: 0 auto; padding: 0 36px; }
.tmd-pay-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.tmd-pay-page.tmd-reveal-ready .tmd-pay-reveal:not(.in) {
	opacity: 0;
	transform: translateY(20px);
}
.tmd-pay-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.tmd-pay-reveal { opacity: 1; transform: none; }
}
.tmd-pay-lab {
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tmd-pay-blue);
	margin-bottom: 10px;
}
.tmd-pay-h2 {
	font-size: clamp(23px, 3.5vw, 36px);
	font-weight: 800;
	line-height: 1.12;
}
.tmd-pay-sub {
	font-size: 14.5px;
	color: var(--tmd-pay-muted);
	margin-top: 12px;
	max-width: 620px;
}

.tmd-pay-hero {
	background: linear-gradient(155deg, #33ccff 0%, #17a4dd 60%, #0b76ad 100%);
	color: #fff;
	padding: 88px 36px 78px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-pay-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 6%, rgba(255,255,255,.22), transparent 58%);
	pointer-events: none;
}
.tmd-pay-hero-inner { position: relative; z-index: 2; max-width: 760px; margin: 0 auto; }
.tmd-pay-eyebrow {
	font-size: 11.5px;
	font-weight: 800;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 20px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.tmd-pay-hero h1 {
	font-size: clamp(33px, 5.4vw, 56px);
	font-weight: 800;
	line-height: 1.03;
	margin-bottom: 20px;
}
.tmd-pay-hero h1 em {
	font-style: normal;
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-pay-lede {
	font-size: 16.5px;
	color: rgba(255, 255, 255, 0.92);
	margin: 0 auto 32px;
	max-width: 520px;
}
.tmd-pay-hero-btns {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	justify-content: center;
	margin-bottom: 46px;
}
.tmd-pay-btn-w {
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 10px;
	background: #fff;
	color: var(--tmd-pay-blue);
	display: inline-block;
}
.tmd-pay-btn-w:hover { background: var(--tmd-pay-blue-light); color: var(--tmd-pay-blue); }
.tmd-pay-btn-o {
	padding: 13px 26px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 10px;
	background: transparent;
	color: #fff;
	border: 1.5px solid rgba(255,255,255,.32);
	display: inline-block;
}
.tmd-pay-btn-o:hover { border-color: #fff; background: rgba(255,255,255,.07); color: #fff; }
.tmd-pay-hero-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
}
@media (max-width: 680px) {
	.tmd-pay-hero-strip { grid-template-columns: repeat(2, 1fr); }
}
.tmd-pay-hs {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.15);
	border-radius: 14px;
	padding: 18px 14px;
}
.tmd-pay-hs i {
	font-size: 21px;
	color: var(--tmd-pay-blue-bright);
	margin-bottom: 8px;
	display: block;
}
.tmd-pay-hs h4 {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 3px;
}
.tmd-pay-hs p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
}

.tmd-pay-done { padding: 76px 0 70px; }
.tmd-pay-check-list {
	margin-top: 34px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 30px;
}
@media (max-width: 780px) {
	.tmd-pay-check-list { grid-template-columns: 1fr; }
}
.tmd-pay-chk {
	display: flex;
	align-items: flex-start;
	gap: 13px;
	padding: 16px 0;
	border-bottom: 1px solid var(--tmd-pay-border);
}
.tmd-pay-chk i {
	font-size: 20px;
	color: var(--tmd-pay-green);
	flex-shrink: 0;
	margin-top: 1px;
}
.tmd-pay-ct {
	font-size: 13.5px;
	font-weight: 800;
	margin-bottom: 3px;
}
.tmd-pay-cd {
	font-size: 12.5px;
	color: var(--tmd-pay-muted);
	line-height: 1.55;
}
.tmd-pay-done-note {
	margin-top: 28px;
	display: flex;
	align-items: flex-start;
	gap: 13px;
	background: var(--tmd-pay-gold-bg);
	border: 1px solid #EED89A;
	border-radius: 14px;
	padding: 18px 20px;
}
.tmd-pay-done-note i {
	color: var(--tmd-pay-gold-text);
	font-size: 19px;
	flex-shrink: 0;
	margin-top: 1px;
}
.tmd-pay-done-note p {
	font-size: 13px;
	color: #7A5E1C;
	margin: 0;
	line-height: 1.65;
}
.tmd-pay-done-note strong { color: var(--tmd-pay-gold-text); }

.tmd-pay-paths {
	background: var(--tmd-pay-bg-soft);
	border-top: 1px solid var(--tmd-pay-border);
	border-bottom: 1px solid var(--tmd-pay-border);
	padding: 70px 0;
}
.tmd-pay-path-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 18px;
	margin-top: 34px;
}
@media (max-width: 780px) {
	.tmd-pay-path-grid { grid-template-columns: 1fr; }
}
.tmd-pay-path {
	background: #fff;
	border: 1px solid var(--tmd-pay-border);
	border-radius: 20px;
	padding: 30px;
	position: relative;
	overflow: hidden;
	transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.tmd-pay-path:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 44px -22px rgba(4,44,83,.3);
}
.tmd-pay-path::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}
.tmd-pay-path.ready::before { background: linear-gradient(90deg, #29ABE2, #12518F); }
.tmd-pay-path.custom::before { background: linear-gradient(90deg, #EC4899, #7C3AED); }
.tmd-pay-path-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: 4px 11px;
	border-radius: 20px;
	margin-bottom: 14px;
}
.tmd-pay-path.ready .tmd-pay-path-badge { background: var(--tmd-pay-blue-light); color: var(--tmd-pay-blue); }
.tmd-pay-path.custom .tmd-pay-path-badge { background: #F5EBFD; color: var(--tmd-pay-purple); }
.tmd-pay-path h3 {
	font-size: 19px;
	font-weight: 800;
	margin-bottom: 8px;
}
.tmd-pay-path > p {
	font-size: 13px;
	color: var(--tmd-pay-muted);
	margin: 0 0 18px;
	line-height: 1.6;
}
.tmd-pay-path ul {
	list-style: none;
	margin: 0 0 22px;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 9px;
}
.tmd-pay-path li {
	font-size: 12.5px;
	color: var(--tmd-pay-muted);
	display: flex;
	gap: 9px;
	align-items: flex-start;
	line-height: 1.5;
}
.tmd-pay-path li i {
	font-size: 15px;
	flex-shrink: 0;
	margin-top: 1px;
}
.tmd-pay-path.ready li i { color: var(--tmd-pay-blue); }
.tmd-pay-path.custom li i { color: var(--tmd-pay-purple); }
.tmd-pay-path-btn {
	display: block;
	text-align: center;
	padding: 12px;
	font-size: 13px;
	font-weight: 700;
	border-radius: 10px;
	width: 100%;
}
.tmd-pay-path.ready .tmd-pay-path-btn { background: var(--tmd-pay-blue); color: #fff; }
.tmd-pay-path.ready .tmd-pay-path-btn:hover { background: #12518F; color: #fff; }
.tmd-pay-path.custom .tmd-pay-path-btn { background: var(--tmd-pay-purple); color: #fff; }
.tmd-pay-path.custom .tmd-pay-path-btn:hover { background: #5B21B6; color: #fff; }

.tmd-pay-sec { padding: 70px 0; }
.tmd-pay-sec-wrap {
	background: linear-gradient(150deg, #33ccff, #0e8ec6);
	border-radius: 24px;
	padding: 46px 42px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.tmd-pay-sec-wrap::after {
	content: "";
	position: absolute;
	top: -40%;
	left: -8%;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(30,140,96,.3), transparent 65%);
}
.tmd-pay-sec-inner { position: relative; z-index: 2; }
.tmd-pay-sec-head { max-width: 560px; margin-bottom: 32px; }
.tmd-pay-sec-head .tmd-pay-lab { color: #7FD8FF; }
.tmd-pay-sec-head h2 {
	font-size: clamp(22px, 3.2vw, 32px);
	font-weight: 800;
	margin-bottom: 12px;
}
.tmd-pay-sec-head p {
	font-size: 14.5px;
	color: rgba(255, 255, 255, 0.92);
	margin: 0;
}
.tmd-pay-sec-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
@media (max-width: 820px) {
	.tmd-pay-sec-grid { grid-template-columns: repeat(2, 1fr); }
}
.tmd-pay-sec-item {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.14);
	border-radius: 14px;
	padding: 20px;
}
.tmd-pay-sec-item i {
	font-size: 22px;
	color: #7FD8FF;
	margin-bottom: 10px;
	display: block;
}
.tmd-pay-sec-item h4 {
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 5px;
}
.tmd-pay-sec-item p {
	font-size: 11.5px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.55;
}

.tmd-pay-signs {
	background: var(--tmd-pay-bg-soft);
	border-top: 1px solid var(--tmd-pay-border);
	border-bottom: 1px solid var(--tmd-pay-border);
	padding: 70px 0;
}
.tmd-pay-sign-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 34px;
}
@media (max-width: 900px) {
	.tmd-pay-sign-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
	.tmd-pay-sign-grid { grid-template-columns: 1fr; }
}
.tmd-pay-sign {
	background: #fff;
	border: 1px solid var(--tmd-pay-border);
	border-radius: 16px;
	padding: 24px;
	transition: transform 0.16s ease, border-color 0.16s ease;
}
.tmd-pay-sign:hover {
	transform: translateY(-3px);
	border-color: #F5CCC1;
}
.tmd-pay-sign-si {
	width: 42px;
	height: 42px;
	border-radius: 11px;
	background: #FEF0EC;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 14px;
}
.tmd-pay-sign-si i {
	font-size: 20px;
	color: var(--tmd-pay-coral);
}
.tmd-pay-sign h3 {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 6px;
}
.tmd-pay-sign p {
	font-size: 12.5px;
	color: var(--tmd-pay-muted);
	margin: 0;
	line-height: 1.6;
}
.tmd-pay-signs-cta {
	margin-top: 28px;
	text-align: center;
}
.tmd-pay-signs-cta p {
	font-size: 13.5px;
	color: var(--tmd-pay-muted);
	margin: 0 0 14px;
}

.tmd-pay-start { padding: 70px 0; }
.tmd-pay-start-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: start;
	margin-top: 30px;
}
@media (max-width: 820px) {
	.tmd-pay-start-grid { grid-template-columns: 1fr; gap: 28px; }
}
.tmd-pay-need-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.tmd-pay-need-list li {
	display: flex;
	align-items: flex-start;
	gap: 13px;
}
.tmd-pay-nn {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: var(--tmd-pay-blue-light);
	color: var(--tmd-pay-blue);
	font-size: 11px;
	font-weight: 800;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	margin-top: 1px;
}
.tmd-pay-nt {
	font-size: 13.5px;
	font-weight: 700;
	margin-bottom: 2px;
}
.tmd-pay-nd {
	font-size: 12.5px;
	color: var(--tmd-pay-muted);
	line-height: 1.55;
}
.tmd-pay-timeline-card {
	background: var(--tmd-pay-bg-soft);
	border: 1px solid var(--tmd-pay-border);
	border-radius: 18px;
	padding: 28px;
}
.tmd-pay-timeline-card h3 {
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 18px;
}
.tmd-pay-tl {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: tmd-pay-tl;
}
.tmd-pay-tl li {
	counter-increment: tmd-pay-tl;
	position: relative;
	padding: 0 0 20px 38px;
	border-left: 1px solid var(--tmd-pay-border);
	margin-left: 13px;
}
.tmd-pay-tl li:last-child {
	border-color: transparent;
	padding-bottom: 0;
}
.tmd-pay-tl li::before {
	content: counter(tmd-pay-tl);
	position: absolute;
	left: -14px;
	top: 0;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--tmd-pay-blue-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 11.5px;
	font-weight: 800;
	color: var(--tmd-pay-blue);
}
.tmd-pay-tt {
	font-size: 13px;
	font-weight: 800;
	margin-bottom: 2px;
}
.tmd-pay-td {
	font-size: 12px;
	color: var(--tmd-pay-muted);
	line-height: 1.55;
}

.tmd-pay-faq {
	background: var(--tmd-pay-bg-soft);
	border-top: 1px solid var(--tmd-pay-border);
	border-bottom: 1px solid var(--tmd-pay-border);
	padding: 70px 0;
}
.tmd-pay-faq-list {
	max-width: 800px;
	margin: 28px auto 0;
	padding: 0 36px;
}
.tmd-pay-faq-item {
	border: 1px solid var(--tmd-pay-border);
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
	background: #fff;
}
.tmd-pay-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 17px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 14px;
	font-weight: 700;
}
.tmd-pay-faq-item summary::-webkit-details-marker { display: none; }
.tmd-pay-plus {
	color: var(--tmd-pay-blue);
	font-size: 19px;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}
.tmd-pay-faq-item[open] summary .tmd-pay-plus { transform: rotate(45deg); }
.tmd-pay-faq-a {
	padding: 0 20px 17px;
	font-size: 12.5px;
	color: var(--tmd-pay-muted);
	line-height: 1.7;
}

.tmd-pay-btn-p {
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 10px;
	background: var(--tmd-pay-blue);
	color: #fff;
	display: inline-block;
}
.tmd-pay-btn-p:hover { background: #12518F; color: #fff; }

/* ===== api ===== */
.tmd-api-page {
	--tmd-api-navy: #042C53;
	--tmd-api-blue: #33ccff;
	--tmd-api-blue-bright: #29ABE2;
	--tmd-api-blue-light: #E6F1FB;
	--tmd-api-blue-border: #85B7EB;
	--tmd-api-purple: #7C3AED;
	--tmd-api-border: #E4EAF1;
	--tmd-api-muted: #5C6B7A;
	--tmd-api-bg-soft: #FAFCFF;
	color: var(--tmd-api-navy);
	line-height: 1.55;
	overflow-x: hidden;
}
.tmd-api-page a { text-decoration: none; color: inherit; }
.tmd-api-page h1,
.tmd-api-page h2,
.tmd-api-page h3,
.tmd-api-page h4 { margin: 0; letter-spacing: -0.01em; }
.tmd-api-wrap { max-width: 1120px; margin: 0 auto; padding: 0 40px; }
.tmd-api-reveal {
	opacity: 1;
	transform: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}
.tmd-api-page.tmd-reveal-ready .tmd-api-reveal:not(.in) {
	opacity: 0;
	transform: translateY(22px);
}
.tmd-api-reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.tmd-api-reveal { opacity: 1; transform: none; }
}
.tmd-api-section-label {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	color: var(--tmd-api-blue);
	margin-bottom: 10px;
}
.tmd-api-section-title {
	font-size: clamp(22px, 3.4vw, 34px);
	font-weight: 800;
}
.tmd-api-section-sub {
	font-size: 14.5px;
	color: var(--tmd-api-muted);
	max-width: 600px;
	margin-top: 12px;
}

.tmd-api-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 82px 32px 72px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-api-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 8%, rgba(255,255,255,.2), transparent 55%);
}
.tmd-api-hero-inner { position: relative; z-index: 2; max-width: 780px; margin: 0 auto; }
.tmd-api-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 20px;
}
.tmd-api-hero h1 {
	font-size: clamp(32px, 5.4vw, 54px);
	font-weight: 800;
	line-height: 1.04;
	margin-bottom: 16px;
}
.tmd-api-hero h1 em {
	font-style: normal;
	background: linear-gradient(100deg, #ffffff, #DFF8FF);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}
.tmd-api-hero p {
	font-size: 16px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 540px;
	margin: 0 auto 34px;
}
.tmd-api-hero-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 28px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 40px;
	background: #fff;
	color: var(--tmd-api-blue);
	margin-bottom: 40px;
}
.tmd-api-hero-cta:hover { background: var(--tmd-api-blue-light); color: var(--tmd-api-blue); }
.tmd-api-results {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px;
	margin-top: 6px;
}
@media (max-width: 680px) {
	.tmd-api-results { grid-template-columns: repeat(2, 1fr); }
}
.tmd-api-result {
	background: rgba(255,255,255,.07);
	border: 1px solid rgba(255,255,255,.16);
	border-radius: 14px;
	padding: 18px 14px;
}
.tmd-api-result i {
	font-size: 22px;
	color: var(--tmd-api-blue-bright);
	margin-bottom: 8px;
	display: block;
}
.tmd-api-result h4 {
	font-size: 13.5px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 3px;
}
.tmd-api-result p {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.9);
	margin: 0;
	line-height: 1.5;
}

.tmd-api-integrate {
	padding: 64px 0 40px;
	text-align: center;
	overflow: hidden;
}
.tmd-api-carousel {
	margin-top: 36px;
	position: relative;
	-webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
	mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tmd-api-track {
	display: flex;
	gap: 16px;
	width: max-content;
	animation: tmd-api-scroll 34s linear infinite;
}
.tmd-api-carousel:hover .tmd-api-track { animation-play-state: paused; }
@keyframes tmd-api-scroll {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.tmd-api-track {
		animation: none;
		flex-wrap: wrap;
		width: auto;
		justify-content: center;
	}
}
.tmd-api-int-card {
	width: 210px;
	flex-shrink: 0;
	border: 1px solid var(--tmd-api-border);
	border-radius: 16px;
	padding: 26px 22px;
	background: #fff;
	text-align: left;
	box-shadow: 0 8px 22px -14px rgba(4,44,83,.2);
}
.tmd-api-int-icon {
	width: 50px;
	height: 50px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	color: #fff;
	margin-bottom: 16px;
}
.tmd-api-int-card h3 {
	font-size: 15px;
	font-weight: 800;
	margin-bottom: 6px;
}
.tmd-api-int-card p {
	font-size: 12px;
	color: var(--tmd-api-muted);
	margin: 0;
	line-height: 1.55;
}

.tmd-api-custom { padding: 20px 0 64px; }
.tmd-api-custom-inner {
	border-radius: 22px;
	background: linear-gradient(150deg, #1B1338, #2D1B5E 55%, #4A2B8A);
	color: #fff;
	padding: 52px 44px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-api-custom-inner::before {
	content: "";
	position: absolute;
	top: -30%;
	right: -6%;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(236,72,153,.35), transparent 65%);
}
.tmd-api-custom-inner::after {
	content: "";
	position: absolute;
	bottom: -30%;
	left: -8%;
	width: 340px;
	height: 340px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(124,58,237,.5), transparent 65%);
}
.tmd-api-custom-body {
	position: relative;
	z-index: 2;
	max-width: 620px;
	margin: 0 auto;
}
.tmd-api-custom-icon {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: linear-gradient(150deg, #EC4899, #7C3AED);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	margin: 0 auto 20px;
}
.tmd-api-custom-inner h2 {
	font-size: clamp(24px, 3.6vw, 34px);
	font-weight: 800;
	margin-bottom: 14px;
}
.tmd-api-custom-inner p {
	font-size: 15px;
	color: #C9BCE8;
	margin: 0 auto 26px;
}
.tmd-api-custom-cta {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 14px 30px;
	font-size: 14px;
	font-weight: 700;
	border-radius: 40px;
	background: #fff;
	color: var(--tmd-api-purple);
	transition: transform 0.15s ease;
}
.tmd-api-custom-cta:hover {
	transform: translateY(-2px);
	color: var(--tmd-api-purple);
}

.tmd-api-process {
	background: var(--tmd-api-bg-soft);
	border-top: 1px solid var(--tmd-api-border);
	border-bottom: 1px solid var(--tmd-api-border);
	padding: 64px 0;
}
.tmd-api-process-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	align-items: center;
	margin-top: 20px;
}
@media (max-width: 820px) {
	.tmd-api-process-grid { grid-template-columns: 1fr; gap: 28px; }
}
.tmd-api-proc-steps {
	list-style: none;
	padding: 0;
	margin: 24px 0 0;
	counter-reset: tmd-api-pstep;
}
.tmd-api-proc-steps li {
	counter-increment: tmd-api-pstep;
	position: relative;
	padding: 0 0 22px 44px;
	border-left: 1px solid var(--tmd-api-border);
	margin-left: 14px;
}
.tmd-api-proc-steps li:last-child {
	border-color: transparent;
	padding-bottom: 0;
}
.tmd-api-proc-steps li::before {
	content: counter(tmd-api-pstep);
	position: absolute;
	left: -15px;
	top: 0;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	border: 1.5px solid var(--tmd-api-blue-border);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 800;
	color: var(--tmd-api-blue);
}
.tmd-api-proc-steps li h4 {
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 3px;
}
.tmd-api-proc-steps li p {
	font-size: 12.5px;
	color: var(--tmd-api-muted);
	margin: 0;
	line-height: 1.6;
}
.tmd-api-proc-image {
	border-radius: 20px;
	min-height: 320px;
	background: linear-gradient(150deg, #E8F4FD, #CFE6FA);
	border: 1px solid var(--tmd-api-blue-border);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	overflow: hidden;
}
.tmd-api-flow {
	display: flex;
	align-items: center;
	gap: 12px;
}
.tmd-api-node {
	width: 74px;
	height: 74px;
	border-radius: 18px;
	background: #fff;
	box-shadow: 0 10px 26px -10px rgba(4,44,83,.3);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
}
.tmd-api-node i {
	font-size: 26px;
	color: var(--tmd-api-blue);
}
.tmd-api-node span {
	font-size: 9px;
	font-weight: 700;
	color: var(--tmd-api-muted);
}
.tmd-api-conn {
	color: var(--tmd-api-blue-bright);
	font-size: 20px;
	animation: tmd-api-pulse 1.6s ease-in-out infinite;
}
@keyframes tmd-api-pulse {
	0%, 100% { opacity: 0.4; }
	50% { opacity: 1; }
}
.tmd-api-hint {
	position: absolute;
	bottom: 16px;
	font-size: 10.5px;
	color: var(--tmd-api-muted);
}

.tmd-api-faq { padding: 64px 0; }
.tmd-api-faq-list {
	max-width: 820px;
	margin: 30px auto 0;
	padding: 0 40px;
}
.tmd-api-faq-item {
	border: 1px solid var(--tmd-api-border);
	border-radius: 12px;
	margin-bottom: 10px;
	overflow: hidden;
}
.tmd-api-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 14.5px;
	font-weight: 700;
}
.tmd-api-faq-item summary::-webkit-details-marker { display: none; }
.tmd-api-plus {
	color: var(--tmd-api-blue);
	font-size: 20px;
	transition: transform 0.2s ease;
	flex-shrink: 0;
}
.tmd-api-faq-item[open] summary .tmd-api-plus { transform: rotate(45deg); }
.tmd-api-faq-a {
	padding: 0 20px 18px;
	font-size: 13px;
	color: var(--tmd-api-muted);
	line-height: 1.7;
}

/* ========== FAQ page ========== */
.tmd-faq-page {
	--tmd-faq-navy: #042C53;
	--tmd-faq-blue: #33ccff;
	--tmd-faq-accent: #33ccff;
	--tmd-faq-blue-bright: #29ABE2;
	--tmd-faq-blue-light: #E6F1FB;
	--tmd-faq-border: #E8EEF4;
	--tmd-faq-muted: #5C6B7A;
	--tmd-faq-answer: #555555;
	color: var(--tmd-faq-navy);
	background: #F7FAFD;
}
.tmd-faq-page a { text-decoration: none; color: inherit; }
.tmd-faq-page h1,
.tmd-faq-page h2,
.tmd-faq-page h3 { margin: 0; letter-spacing: -0.01em; }
.tmd-faq-reveal {
	opacity: 1;
	transform: none;
	transition: opacity .55s ease, transform .55s ease;
}
.tmd-faq-page.tmd-reveal-ready .tmd-faq-reveal:not(.in) {
	opacity: 0;
	transform: translateY(18px);
}
.tmd-faq-reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tmd-faq-reveal { opacity: 1; transform: none; }
}

.tmd-faq-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 56px 32px 72px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-faq-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.2), transparent 55%);
}
.tmd-faq-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
	margin: 0 auto;
}
.tmd-faq-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 14px;
}
.tmd-faq-hero h1 {
	font-size: clamp(28px, 4.5vw, 42px);
	font-weight: 800;
	line-height: 1.1;
	margin-bottom: 12px;
}
.tmd-faq-hero p {
	font-size: 15px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 480px;
	margin: 0 auto 22px;
	line-height: 1.55;
}
.tmd-faq-search { margin-top: 8px; }
.tmd-faq-search-box {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #fff;
	border-radius: 14px;
	padding: 8px 8px 8px 16px;
	box-shadow: 0 16px 40px -24px rgba(4,44,83,.45);
	max-width: 520px;
	margin: 0 auto;
}
.tmd-faq-search-box > i {
	color: var(--tmd-faq-blue);
	font-size: 18px;
	flex-shrink: 0;
}
.tmd-faq-search-box input {
	flex: 1;
	border: 0;
	outline: none;
	font-size: 14px;
	color: var(--tmd-faq-navy);
	background: transparent;
	min-width: 0;
	padding: 8px 0;
}
.tmd-faq-search-box input::placeholder { color: #8A9AAB; }
.tmd-faq-search-box button {
	border: 0;
	background: linear-gradient(135deg, #29ABE2, #33ccff);
	color: #fff;
	font-size: 13px;
	font-weight: 700;
	border-radius: 10px;
	padding: 10px 16px;
	cursor: pointer;
	white-space: nowrap;
}
.tmd-faq-search-box button:hover { filter: brightness(1.05); }

.tmd-faq-body {
	max-width: 820px;
	margin: -28px auto 48px;
	padding: 0 24px;
	position: relative;
	z-index: 3;
}
.tmd-faq-topics {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 22px;
	justify-content: center;
}
.tmd-faq-topic {
	border: 1px solid var(--tmd-faq-border);
	background: #fff;
	color: var(--tmd-faq-navy);
	font-size: 12.5px;
	font-weight: 700;
	border-radius: 999px;
	padding: 8px 14px;
	cursor: pointer;
	transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.tmd-faq-topic:hover {
	border-color: #85B7EB;
	color: var(--tmd-faq-blue);
}
.tmd-faq-topic.active {
	background: var(--tmd-faq-accent);
	border-color: var(--tmd-faq-accent);
	color: #042C53;
}
.tmd-faq-group { margin-bottom: 28px; }
.tmd-faq-group[hidden] { display: none !important; }
.tmd-faq-group-title {
	font-size: 13px;
	font-weight: 800;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--tmd-faq-blue);
	margin: 0 0 12px;
}
.tmd-faq-list { display: block; }
.tmd-faq-item {
	background: #fff;
	border: 1px solid var(--tmd-faq-border);
	border-radius: 14px;
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: 0 8px 24px -20px rgba(4,44,83,.25);
	transition: box-shadow .16s ease, border-color .16s ease;
}
.tmd-faq-item[open] {
	border-color: #C9DBEE;
	box-shadow: 0 14px 30px -22px rgba(4,44,83,.35);
}
.tmd-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 20px 22px;
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	user-select: none;
}
.tmd-faq-item summary::-webkit-details-marker { display: none; }
.tmd-faq-q {
	font-size: 15px;
	font-weight: 700;
	color: var(--tmd-faq-navy);
	line-height: 1.45;
	display: block;
}
.tmd-faq-cat-tag {
	display: inline-block;
	margin-top: 6px;
	font-style: normal;
	font-size: 11px;
	font-weight: 700;
	color: var(--tmd-faq-blue);
	background: var(--tmd-faq-blue-light);
	border-radius: 999px;
	padding: 3px 9px;
}
.tmd-faq-plus {
	color: var(--tmd-faq-accent);
	font-size: 22px;
	font-weight: 500;
	line-height: 1;
	transition: transform .2s ease;
	flex-shrink: 0;
	margin-top: 1px;
}
.tmd-faq-item[open] summary .tmd-faq-plus { transform: rotate(45deg); }
.tmd-faq-a {
	padding: 0 22px 20px;
	font-size: 14px;
	color: var(--tmd-faq-answer);
	line-height: 1.7;
}
.tmd-faq-a p { margin: 0 0 10px; }
.tmd-faq-a p:last-child { margin-bottom: 0; }
.tmd-faq-a a { color: var(--tmd-faq-blue); text-decoration: underline; }
.tmd-faq-a ul,
.tmd-faq-a ol { margin: 0 0 10px; padding-left: 18px; }

.tmd-faq-search-meta {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 16px;
	flex-wrap: wrap;
}
.tmd-faq-search-meta h2 {
	font-size: 16px;
	font-weight: 800;
}
.tmd-faq-search-meta span {
	font-size: 12.5px;
	color: var(--tmd-faq-muted);
	font-weight: 600;
}
.tmd-faq-empty {
	background: #fff;
	border: 1px dashed var(--tmd-faq-border);
	border-radius: 14px;
	padding: 28px 22px;
	text-align: center;
	color: var(--tmd-faq-muted);
	font-size: 14px;
}

.tmd-faq-view-body { margin-top: 8px; }
.tmd-faq-article {
	background: #fff;
	border: 1px solid var(--tmd-faq-border);
	border-radius: 18px;
	padding: 32px 30px;
	box-shadow: 0 12px 30px -24px rgba(4,44,83,.3);
}
.tmd-faq-article-cat {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
	color: var(--tmd-faq-blue);
	margin-bottom: 10px;
}
.tmd-faq-article h1 {
	font-size: clamp(24px, 3.5vw, 32px);
	font-weight: 800;
	margin-bottom: 16px;
	line-height: 1.2;
}
.tmd-faq-article-body {
	font-size: 15px;
	color: var(--tmd-faq-answer);
	line-height: 1.75;
}
.tmd-faq-article-body p { margin: 0 0 12px; }
.tmd-faq-article-actions {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
	margin-top: 24px;
	padding-top: 20px;
	border-top: 1px solid var(--tmd-faq-border);
}
.tmd-faq-btn-primary {
	padding: 11px 20px;
	font-size: 13.5px;
	font-weight: 700;
	border-radius: 40px;
	background: linear-gradient(135deg, #29ABE2, #33ccff);
	color: #fff !important;
	display: inline-block;
}
.tmd-faq-btn-ghost {
	padding: 10px 18px;
	font-size: 13.5px;
	font-weight: 700;
	border-radius: 40px;
	border: 1px solid var(--tmd-faq-border);
	color: var(--tmd-faq-blue) !important;
	display: inline-block;
	background: #fff;
}
@media (max-width: 640px) {
	.tmd-faq-hero { padding: 44px 18px 60px; }
	.tmd-faq-body,
	.tmd-faq-item summary { padding: 16px 16px; }
	.tmd-faq-a { padding: 0 16px 16px; }
	.tmd-faq-search-box { padding: 6px 6px 6px 12px; }
	.tmd-faq-article { padding: 24px 18px; }
}

/* ========== Policies page ========== */
.tmd-policy-page {
	--tmd-pol-navy: #042C53;
	--tmd-pol-blue: #33ccff;
	--tmd-pol-blue-bright: #29ABE2;
	--tmd-pol-blue-light: #E6F1FB;
	--tmd-pol-blue-border: #85B7EB;
	--tmd-pol-teal: #12A594;
	--tmd-pol-coral: #F0654A;
	--tmd-pol-purple: #7C3AED;
	--tmd-pol-pink: #EC4899;
	--tmd-pol-green: #1E8C60;
	--tmd-pol-border: #E4EAF1;
	--tmd-pol-muted: #5C6B7A;
	color: var(--tmd-pol-navy);
	background: #F7FAFD;
}
.tmd-policy-page a { text-decoration: none; color: inherit; }
.tmd-policy-page h1,
.tmd-policy-page h2,
.tmd-policy-page h3 { margin: 0; letter-spacing: -0.01em; }
.tmd-policy-reveal {
	opacity: 1;
	transform: none;
	transition: opacity .55s ease, transform .55s ease;
}
.tmd-policy-page.tmd-reveal-ready .tmd-policy-reveal:not(.in) {
	opacity: 0;
	transform: translateY(20px);
}
.tmd-policy-reveal.in {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.tmd-policy-reveal { opacity: 1; transform: none; }
}

.tmd-policy-hero {
	background: linear-gradient(150deg, #33ccff 0%, #17a4dd 55%, #0b76ad 100%);
	color: #fff;
	padding: 64px 32px 96px;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.tmd-policy-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 8%, rgba(255,255,255,.2), transparent 55%);
}
.tmd-policy-hero-inner {
	position: relative;
	z-index: 2;
	max-width: 640px;
	margin: 0 auto;
}
.tmd-policy-eyebrow {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: .18em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.95);
	margin-bottom: 16px;
}
.tmd-policy-hero h1 {
	font-size: clamp(30px, 4.8vw, 46px);
	font-weight: 800;
	line-height: 1.05;
	margin-bottom: 14px;
}
.tmd-policy-hero p {
	font-size: 15.5px;
	color: rgba(255, 255, 255, 0.92);
	max-width: 460px;
	margin: 0 auto;
}

.tmd-policy-container {
	max-width: 1040px;
	margin: -56px auto 56px;
	padding: 0 32px;
	position: relative;
	z-index: 3;
}
.tmd-policy-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}
@media (max-width: 900px) {
	.tmd-policy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
	.tmd-policy-grid { grid-template-columns: 1fr; }
}

.tmd-pol-card {
	background: #fff;
	border: 1px solid var(--tmd-pol-border);
	border-radius: 18px;
	padding: 26px 24px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	position: relative;
	overflow: hidden;
	transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
a.tmd-pol-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px -20px rgba(4,44,83,.3);
}
a.tmd-pol-card:focus-visible {
	outline: 2px solid var(--tmd-pol-blue-bright);
	outline-offset: 2px;
}
.tmd-pol-icon {
	width: 50px;
	height: 50px;
	border-radius: 13px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 8px 20px -8px rgba(0,0,0,.3);
}
.tmd-pol-icon i { font-size: 24px; }
.tmd-pol-card h2 {
	font-size: 16px;
	font-weight: 800;
}
.tmd-pol-card p {
	font-size: 12.5px;
	color: var(--tmd-pol-muted);
	margin: 0;
	line-height: 1.6;
	flex: 1;
}
.tmd-pol-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 4px;
	gap: 10px;
}
.tmd-pol-upd {
	font-size: 10.5px;
	color: var(--tmd-pol-muted);
}
.tmd-pol-read {
	font-size: 12.5px;
	font-weight: 700;
	color: var(--tmd-pol-blue);
	display: inline-flex;
	align-items: center;
	gap: 5px;
	transition: gap .15s ease;
}
a.tmd-pol-card:hover .tmd-pol-read { gap: 9px; }
.tmd-pol-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
}
.tmd-pol-card.pc-blue::before { background: linear-gradient(90deg, #29ABE2, #12518F); }
.tmd-pol-card.pc-teal::before { background: linear-gradient(90deg, #12A594, #0B7D70); }
.tmd-pol-card.pc-coral::before { background: linear-gradient(90deg, #F0654A, #D8452B); }
.tmd-pol-card.pc-purple::before { background: linear-gradient(90deg, #7C3AED, #5B21B6); }
.tmd-pol-card.pc-gold::before { background: linear-gradient(90deg, #E8C468, #B8912F); }
.tmd-pol-card.pc-pink::before { background: linear-gradient(90deg, #EC4899, #C026A3); }

.tmd-policy-promises {
	max-width: 1040px;
	margin: 0 auto 56px;
	padding: 0 32px;
}
.tmd-policy-promises-inner {
	background: #fff;
	border: 1px solid var(--tmd-pol-border);
	border-radius: 18px;
	padding: 24px 28px;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 18px;
}
@media (max-width: 820px) {
	.tmd-policy-promises-inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
	.tmd-policy-promises-inner { grid-template-columns: 1fr; }
}
.tmd-policy-promise {
	display: flex;
	align-items: flex-start;
	gap: 11px;
}
.tmd-policy-promise i {
	font-size: 19px;
	color: var(--tmd-pol-green);
	flex-shrink: 0;
	margin-top: 1px;
}
.tmd-policy-promise-t {
	font-size: 12.5px;
	font-weight: 800;
	margin-bottom: 2px;
}
.tmd-policy-promise-d {
	font-size: 11.5px;
	color: var(--tmd-pol-muted);
	line-height: 1.5;
}

/* ========== Shared pre-footer CTA band ========== */
/* Layout comes from .cta-section in stylesheet.css (same band as the home page).
   These rules only restore the button colours, which the page-level
   ".tmd-*-page a { color: inherit; }" reset would otherwise swallow. */
.cta-section .cta-buttons .btn-primary,
.cta-section .cta-buttons .btn-primary:hover,
.cta-section .cta-buttons .btn-primary:focus {
	color: #fff;
}
.cta-section .cta-buttons .btn-default,
.cta-section .cta-buttons .btn-default:hover,
.cta-section .cta-buttons .btn-default:focus {
	color: #000;
}
.cta-section .cta-title em {
	font-style: normal;
	color: #33ccff;
}
.cta-section .cta-text {
	margin-bottom: 12px;
}
.cta-section .cta-text:last-of-type {
	margin-bottom: 32px;
}
