html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  background: linear-gradient(135deg, #f8fafc 0%, #e0fcff 100%);
  color: #232946;
  min-height: 100vh;
}

.tm-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.tm-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
}
.tm-logo {
  height: 48px;
  width: auto;
}
.tm-nav {
  display: flex;
  gap: 24px;
}
.tm-nav-link {
  color: #232946;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.08rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.tm-nav-link:hover, .tm-btn-download:hover {
  background: linear-gradient(90deg, #00C9A7 0%, #845EC2 100%);
  color: #fff;
}
.tm-btn-download {
  background: linear-gradient(90deg, #FF6F91 0%, #FFC75F 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  padding: 8px 20px;
  border-radius: 8px;
  margin-left: 8px;
  transition: background 0.15s, color 0.15s;
}

.tm-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 40px auto 48px auto;
  padding: 32px 24px;
  background: linear-gradient(120deg, #00C9A7 0%, #845EC2 100%);
  border-radius: 32px;
  box-shadow: 0 6px 32px rgba(0,201,167,0.13);
  color: #fff;
  flex-wrap: wrap;
  gap: 40px;
}
.tm-hero-content {
  max-width: 540px;
}
.tm-hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1px;
}
.tm-hero-desc {
  font-size: 1.25rem;
  margin-bottom: 28px;
  color: #e0e7ff;
}
.tm-btn-primary {
  display: inline-block;
  background: linear-gradient(90deg, #FF6F91 0%, #845EC2 100%);
  color: #fff;
  font-weight: 700;
  padding: 15px 36px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1.13rem;
  box-shadow: 0 2px 12px rgba(0,201,167,0.10);
  transition: background 0.2s, color 0.2s, transform 0.1s;
  border: none;
}
.tm-btn-primary:hover {
  background: linear-gradient(90deg, #00C9A7 0%, #2C73D2 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.05);
}
.tm-hero-image img {
  width: 340px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,201,167,0.13);
  background: #fff;
  display: block;
}

.tm-section {
  max-width: 1200px;
  margin: 0 auto 60px auto;
  padding: 0 16px;
}
.tm-section-title {
  text-align: center;
  font-size: 2.1rem;
  font-weight: 700;
  color: #845EC2;
  margin-bottom: 36px;
  letter-spacing: 1px;
}
.tm-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.tm-feature-card {
  background: rgba(255,255,255,0.95);
  border-radius: 22px;
  box-shadow: 0 2px 24px rgba(132,94,194,0.09);
  padding: 32px 18px 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.18s, transform 0.18s, border 0.18s;
  min-height: 340px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}
.tm-feature-card:hover {
  box-shadow: 0 10px 36px rgba(0,201,167,0.18);
  border: 2px solid #00C9A7;
  transform: translateY(-8px) scale(1.04);
}
.tm-feature-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 18px;
  background: #f3f3f3;
  box-shadow: 0 2px 8px rgba(44,115,210,0.07);
  display: block;
}
.tm-feature-card h3 {
  margin: 0 0 12px 0;
  color: #2C73D2;
  font-size: 1.22rem;
  font-weight: 700;
  text-align: center;
}
.tm-feature-card p {
  margin: 0;
  color: #232946;
  text-align: center;
  font-size: 1.05rem;
}

.tm-section-about {
  background: linear-gradient(90deg, #e0fcff 60%, #fffbe7 100%);
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 40px 32px 32px 32px;
  box-shadow: 0 2px 16px rgba(0,201,167,0.07);
  text-align: center;
}
.tm-section-about h2 {
  color: #00C9A7;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 18px;
}
.tm-section-about p {
  color: #232946;
  font-size: 1.08rem;
  margin-bottom: 18px;
}
.tm-btn-secondary {
  display: inline-block;
  background: linear-gradient(90deg, #FF6F91 0%, #FFC75F 100%);
  color: #fff;
  padding: 10px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background 0.18s, color 0.18s;
  border: none;
}
.tm-btn-secondary:hover {
  background: linear-gradient(90deg, #845EC2 0%, #00C9A7 100%);
  color: #fff;
}

.tm-footer {
  background: #fff;
  color: #232946;
  text-align: center;
  padding: 24px 0 18px 0;
  font-size: 1rem;
  border-top: 1px solid #e0e7ef;
  margin-top: 40px;
}

.tm-section-reviews {
  max-width: 1000px;
  margin: 0 auto 60px auto;
  padding: 0 16px;
}
.tm-reviews-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.tm-review-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(132,94,194,0.09);
  padding: 24px 18px 18px 18px;
  min-width: 260px;
  max-width: 320px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.05rem;
  color: #232946;
}
.tm-review-card span {
  margin-top: 12px;
  color: #845EC2;
  font-size: 0.98rem;
  font-weight: 600;
}

.tm-section-faq {
  max-width: 900px;
  margin: 0 auto 60px auto;
  padding: 0 16px;
}
.tm-faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tm-faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,201,167,0.07);
  padding: 18px 16px;
  color: #232946;
  font-size: 1.05rem;
}
.tm-faq-item strong {
  color: #2C73D2;
  display: block;
  margin-bottom: 6px;
}

@media (max-width: 1100px) {
  .tm-header-inner, .tm-hero, .tm-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .tm-hero-image img {
    width: 100%;
    max-width: 340px;
  }
  .tm-features-grid {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .tm-reviews-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
}
@media (max-width: 700px) {
  .tm-hero-title {
    font-size: 2rem;
  }
  .tm-feature-card {
    min-height: 220px;
    padding: 14px 6px 10px 6px;
  }
  .tm-section-about {
    padding: 18px 6px 12px 6px;
  }
  .tm-header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .tm-nav {
    flex-wrap: wrap;
    gap: 10px;
  }
}