/* =========================
   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;
}

/* OUTER SECTION BACKGROUND */
.tm-feature-card-strip {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 16px;

  margin-top: 50px;
  padding: 18px;

  background: linear-gradient(135deg, #1d4ed8, #14b8a6); /* dark premium */
  border-radius: 16px;

  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* EACH CARD */
.tm-feature-card-dark {
  display: flex;
  align-items: center;
  gap: 12px;

  flex: 1;
  min-width: 180px;

  padding: 14px 16px;
  border-radius: 12px;

  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);

  transition: 0.3s;
}

.tm-feature-card-dark:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
}

/* ICON */
.tm-feature-card-dark .tm-icon {
  font-size: 18px;
  color: #38bdf8; /* premium blue accent */
}

/* TEXT */
.tm-feature-card-dark .tm-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

/* TOP LINE */
.tm-feature-card-dark .tm-top {
  font-size: 12px;
  color: #edf4ff; /* soft gray */
  font-weight: 400;
}

/* BOTTOM LINE */
.tm-feature-card-dark .tm-bottom {
  font-size: 14px;
  color: #ffffff;
  font-weight: 600;
}