#tmm-lp {
  --navy: #0f2544;
  --navy-2: #173a63;
  --navy-deep: #0a1a30;
  --copper: #c8952f;
  --copper-2: #e0b354;
  --ink: #1d2b3a;
  --muted: #5b6b7d;
  --line: #e2e8f0;
  --bg: #ffffff;
  --bg-soft: #f5f7fa;
  --bg-navy-soft: #eef2f7;
  --ok: #1f8a54;
  --radius: 14px;
  --shadow: 0 8px 30px rgba(15, 37, 68, .10);
  --maxw: 1120px;
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

#tmm-lp,
#tmm-lp * {
  box-sizing: border-box;
}

#tmm-lp img {
  display: block;
  max-width: 100%;
}

#tmm-lp a {
  color: inherit;
  text-decoration: none;
}

#tmm-lp .wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

#tmm-lp section {
  padding: 56px 0;
}

#tmm-lp .eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--copper);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

#tmm-lp h1,
#tmm-lp h2,
#tmm-lp h3 {
  color: var(--navy);
  line-height: 1.25;
}

#tmm-lp h2 {
  margin: 0 0 14px;
  font-size: 1.7rem;
}

#tmm-lp h3,
#tmm-lp h4,
#tmm-lp p,
#tmm-lp ul {
  margin-top: 0;
}

#tmm-lp .lead {
  max-width: 720px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 1.05rem;
}

#tmm-lp .center {
  text-align: center;
}

#tmm-lp .center .lead {
  margin-right: auto;
  margin-left: auto;
}

#tmm-lp .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: .15s ease;
}

#tmm-lp .btn-primary {
  color: #fff;
  background: var(--copper);
}

#tmm-lp .btn-primary:hover {
  color: #fff;
  background: #b8851f;
}

#tmm-lp .btn-outline {
  border-color: var(--navy);
  color: var(--navy);
  background: #fff;
}

#tmm-lp .btn-outline:hover {
  background: var(--bg-navy-soft);
}

#tmm-lp .btn-sm {
  padding: 10px 18px;
  font-size: .9rem;
}

#tmm-lp .hero {
  position: relative;
  display: flex;
  min-height: 68vh;
  align-items: center;
  justify-content: center;
  padding: 48px 0;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--navy-deep);
}

#tmm-lp .hero-bg {
  position: absolute;
  z-index: 0;
  inset: 0;
}

#tmm-lp .hero-bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

#tmm-lp .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#tmm-lp .hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .73), rgba(0, 0, 0, .55) 50%, rgba(0, 0, 0, .38));
}

#tmm-lp .hero .wrap {
  position: relative;
  z-index: 2;
}

#tmm-lp .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

#tmm-lp .hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 6.6vw, 46px);
  font-weight: 700;
  letter-spacing: .5px;
  line-height: 1.24;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .4);
  text-transform: uppercase;
}

#tmm-lp .hero p.sub {
  display: block;
  max-width: 680px;
  margin: 16px auto 0;
  color: #d6e0ec;
  font-size: clamp(16px, 4.3vw, 22px);
  font-weight: 500;
  letter-spacing: .2px;
}

#tmm-lp .hero-stats {
  display: flex;
  max-width: 720px;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin: 34px auto 0;
  padding: 0;
}

#tmm-lp .hero-stats li {
  position: relative;
  flex: 1;
  padding: 4px 18px;
  list-style: none;
  text-align: center;
}

#tmm-lp .hero-stats li + li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 64%;
  background: rgba(255, 255, 255, .22);
  transform: translateY(-50%);
}

#tmm-lp .hero-stats .st-num {
  color: var(--copper-2);
  font-size: clamp(1.3rem, 4.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
}

#tmm-lp .hero-stats .st-lbl {
  margin-top: 6px;
  color: #d6e0ec;
  font-size: .9rem;
}

#tmm-lp .split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

#tmm-lp .soft {
  background: var(--bg-soft);
}

#tmm-lp .card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

#tmm-lp ul.ticks {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

#tmm-lp ul.ticks li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  color: var(--ink);
}

#tmm-lp ul.ticks li::before {
  content: "✓";
  position: absolute;
  top: 2px;
  left: 0;
  display: flex;
  width: 20px;
  height: 20px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--copper);
  font-size: .75rem;
  font-weight: 900;
  background: var(--bg-navy-soft);
}

#tmm-lp .quote {
  margin-top: 18px;
  padding: 14px 18px;
  border-left: 4px solid var(--copper);
  border-radius: 0 10px 10px 0;
  color: var(--navy);
  font-style: italic;
  background: var(--bg-soft);
}

#tmm-lp .table-wrap {
  margin-top: 8px;
  overflow-x: auto;
}

#tmm-lp table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

#tmm-lp th,
#tmm-lp td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .95rem;
  text-align: left;
}

#tmm-lp thead th {
  color: #fff;
  font-weight: 700;
  background: var(--navy);
}

#tmm-lp tbody tr:nth-child(even) {
  background: var(--bg-soft);
}

#tmm-lp td b {
  color: var(--navy);
}

#tmm-lp .price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 8px;
}

#tmm-lp .price-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  background: #fff;
  box-shadow: 0 5px 20px rgba(15, 37, 68, .05);
}

#tmm-lp .price-card h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 1.05rem;
}

#tmm-lp .price-card .amt {
  color: var(--copper);
  font-size: 1.35rem;
  font-weight: 800;
}

#tmm-lp .price-card .amt small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .8rem;
  font-weight: 600;
}

#tmm-lp .safety-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

#tmm-lp .safety-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

#tmm-lp .safety-card .s-ic {
  display: flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 14px;
  color: var(--copper);
  background: var(--bg-navy-soft);
}

#tmm-lp .safety-card .s-ic svg {
  width: 28px;
  height: 28px;
}

#tmm-lp .safety-card h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
}

#tmm-lp .safety-card .s-sub {
  margin: 0 0 16px;
  color: var(--muted);
}

#tmm-lp .proj-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

#tmm-lp .proj {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

#tmm-lp .proj .img-slot {
  min-height: 0;
  border: 0;
  border-bottom: 1px dashed #c3d0df;
  border-radius: 0;
  aspect-ratio: 3 / 4;
}

#tmm-lp .proj .meta {
  padding: 12px 14px;
}

#tmm-lp .proj .meta .t {
  color: var(--navy);
  font-size: .95rem;
  font-weight: 700;
}

#tmm-lp .proj .meta .a {
  margin-top: 2px;
  color: var(--muted);
  font-size: .82rem;
}

#tmm-lp .promo .promo-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

#tmm-lp .promo-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 20px 22px 20px 60px;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  background: #fff;
}

#tmm-lp .promo-hot {
  position: absolute;
  top: -10px;
  left: 14px;
  padding: 3px 9px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  background: #e02424;
}

#tmm-lp .promo-ic {
  flex: 0 0 auto;
  color: #b9942e;
}

#tmm-lp .promo-ic svg {
  width: 30px;
  height: 30px;
}

#tmm-lp .promo-txt {
  font-size: 18px;
  font-weight: 700;
}

#tmm-lp .promo-call {
  display: block;
  width: max-content;
  margin: 26px auto 0;
  padding: 14px 34px;
  border-radius: 30px;
  color: #fff;
  font-weight: 700;
  background: #e02424;
}

#tmm-lp .promo-form {
  padding: 28px;
  border: 1px dashed #cfcfcf;
  border-radius: 14px;
  background: #fff;
}

#tmm-lp .promo-form h3 {
  margin: 0 0 18px;
  color: var(--copper);
  letter-spacing: .5px;
  text-align: center;
  text-transform: uppercase;
}

#tmm-lp .field {
  margin-bottom: 16px;
}

#tmm-lp .field label {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: .85rem;
  font-weight: 700;
}

#tmm-lp .field input,
#tmm-lp .field select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}

#tmm-lp .field input:focus,
#tmm-lp .field select:focus {
  border-color: var(--copper);
  outline: 3px solid rgba(200, 149, 47, .12);
}

#tmm-lp .form-ok {
  display: none;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid #bfe3cf;
  border-radius: 10px;
  color: var(--ok);
  font-weight: 600;
  background: #eaf7f0;
}

#tmm-lp .steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

#tmm-lp .step {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

#tmm-lp .step .n {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  background: var(--navy);
}

#tmm-lp .step h4 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.02rem;
}

#tmm-lp .step p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

#tmm-lp .why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

#tmm-lp .why {
  display: flex;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

#tmm-lp .why .ic {
  display: flex;
  width: 48px;
  height: 48px;
  flex: none;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--copper);
  background: var(--bg-navy-soft);
}

#tmm-lp .why .ic svg {
  width: 26px;
  height: 26px;
}

#tmm-lp .why h4 {
  margin: 0 0 4px;
  color: var(--navy);
  font-size: 1rem;
}

#tmm-lp .why p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

#tmm-lp .img-slot {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #e9edf2;
}

#tmm-lp .img-slot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

#tmm-lp .zalo-carousel {
  position: relative;
  overflow: hidden;
}

#tmm-lp .zalo-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  color: var(--navy);
  font-size: 24px;
  line-height: 1;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
  cursor: pointer;
  transform: translateY(-50%);
}

#tmm-lp .zalo-prev { left: 8px; }
#tmm-lp .zalo-next { right: 8px; }

#tmm-lp .zalo-track {
  display: flex;
  gap: 16px;
  transition: transform .6s ease;
}

#tmm-lp .zalo-slide {
  flex: 0 0 calc((100% - 48px) / 4);
}

#tmm-lp .zalo-slide .img-slot {
  border-radius: 12px;
  aspect-ratio: 9 / 16;
}

#tmm-lp .faq {
  max-width: 820px;
  margin: 0 auto;
}

#tmm-lp .faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

#tmm-lp .faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  border: 0;
  color: var(--navy);
  font: inherit;
  font-weight: 700;
  text-align: left;
  background: none;
  cursor: pointer;
}

#tmm-lp .faq-q .ar {
  flex: none;
  color: var(--copper);
  font-weight: 900;
  transition: .2s;
}

#tmm-lp .faq-item.open .ar {
  transform: rotate(45deg);
}

#tmm-lp .faq-a {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  transition: max-height .25s ease;
}

#tmm-lp .faq-a p {
  margin: 0;
  padding: 0 20px 18px;
}

#tmm-lp .sticky-cta {
  position: fixed;
  z-index: 50;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 9px 10px calc(9px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 -4px 16px rgba(15, 37, 68, .1);
}

#tmm-lp .sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 4px;
  border-radius: 10px;
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.1;
  box-shadow: 0 3px 9px rgba(15, 37, 68, .2);
}

#tmm-lp .sticky-cta .s-call { background: var(--navy); }
#tmm-lp .sticky-cta .s-zalo { background: #0068ff; }
#tmm-lp .sticky-cta a svg { width: 18px; height: 18px; }

@media (min-width: 768px) {
  #tmm-lp .hero { min-height: 80vh; }
  #tmm-lp .split .img-h2 { margin-top: 33px; }
}

@media (max-width: 900px) {
  #tmm-lp section { padding: 44px 0; }
  #tmm-lp .split,
  #tmm-lp .safety-grid { grid-template-columns: 1fr; gap: 24px; }
  #tmm-lp .price-grid { grid-template-columns: 1fr; }
  #tmm-lp .proj-grid { grid-template-columns: repeat(2, 1fr); }
  #tmm-lp .steps { grid-template-columns: 1fr; }
  #tmm-lp .why-grid { grid-template-columns: 1fr; }
  #tmm-lp .sticky-cta { display: grid; }
}

@media (max-width: 767px) {
  #tmm-lp .promo .promo-split { grid-template-columns: 1fr; gap: 28px; }
  #tmm-lp .zalo-slide { flex: 0 0 100%; }
  #tmm-lp .zalo-slide .img-slot { aspect-ratio: auto; }
  #tmm-lp .zalo-slide .img-slot img { position: static; width: 100%; height: auto; }
}

@media (max-width: 480px) {
  #tmm-lp .wrap { padding-right: 16px; padding-left: 16px; }
  #tmm-lp h2 { font-size: 1.45rem; }
  #tmm-lp .hero { min-height: 72vh; }
  #tmm-lp .hero-stats li { padding-right: 8px; padding-left: 8px; }
  #tmm-lp .hero-stats .st-lbl { font-size: .75rem; }
  #tmm-lp .proj-grid { grid-template-columns: 1fr; }
  #tmm-lp .promo-item { padding-right: 16px; padding-left: 48px; }
  #tmm-lp .promo-form { padding: 22px 18px; }
  #tmm-lp .table-wrap { margin-right: -16px; margin-left: -16px; border-radius: 0; }
  #tmm-lp th,
  #tmm-lp td { padding: 11px 10px; font-size: .85rem; }
}

@media (prefers-reduced-motion: reduce) {
  #tmm-lp *,
  #tmm-lp *::before,
  #tmm-lp *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
