/* =========================
   GLOBAL BASE
========================= */
body {
  font-family: Arial, sans-serif;
  background: #fff;
}

/* =========================
   NAVBAR (SCOPED)
========================= */
.tm-navbar {
  background: #fff;
  padding: 14px 0;
  border-bottom: 1px solid #eef2f6;
}

.tm-navbar__logo {
  height: 42px;
}

/* LINKS */
.tm-navbar__links {
  gap: 22px;
}

.tm-navbar__link {
  color: #1f2937;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

.tm-navbar__link:hover {
  color: #0d6efd;
}

/* ACTIVE STATE */
.tm-navbar__link.is-active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #0d6efd;
  border-radius: 10px;
}

/* CTA */
.tm-navbar__cta {
  background: linear-gradient(135deg, #0d6efd, #14b8a6);
  color: #fff;
  padding: 10px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
  box-shadow: 0 8px 20px rgba(13, 110, 253, 0.2);
}

.tm-navbar__cta:hover {
  transform: translateY(-2px);
  color: #fff;
}


/* =========================
   HERO (SCOPED)
========================= */
.tm-hero {
  padding: 80px 0;
  background: #fff;
}

.tm-hero__row {
  min-height: 520px;
}

/* LEFT */
.tm-hero__left {
  padding-right: 30px;
}

.tm-hero__badge {
  display: inline-block;
  background: #e8f2ff;
  color: #1d4ed8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  margin-bottom: 18px;
}

.tm-hero__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 1.15;
  color: #0f172a;
}

.tm-hero__title span {
  color: #1d4ed8;
}

.tm-hero__text {
  font-size: 16px;
  color: #6b7280;
  margin-top: 15px;
  max-width: 520px;
}

/* BUTTONS */
.tm-hero__buttons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tm-btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.tm-btn--primary {
  background: linear-gradient(135deg, #1d4ed8, #14b8a6);
  color: #fff;
  box-shadow: 0 10px 25px rgba(29, 78, 216, 0.25);
}

.tm-btn--primary:hover {
  transform: translateY(-2px);
  color: #fff;
}

.tm-btn--outline {
  border: 1px solid #1d4ed8;
  color: #1d4ed8;
}

.tm-btn--outline:hover {
  background: #1d4ed8;
  color: #fff;
}

/* FEATURES */
.tm-hero__features {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
  color: #4b5563;
}

/* RIGHT IMAGE */
.tm-hero__right img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 18px;
  background: #f3f6fb;
}