:root {
  --tmi-red: #fe3232;
  --tmi-yellow: #e2ad02;
  --tmi-bg: #090b12;
  --tmi-surface: #141824;
  --tmi-text: #f9fafb;
  --tmi-muted: #a0a4b8;
  --tmi-border: #252b3b;
}

/* Base */
html, body {
  margin: 0;
  padding: 0;
  background: radial-gradient(circle at top left, #151a2a 0, var(--tmi-bg) 45%, #05060a 100%);
  font-family: 'Montserrat', sans-serif;
  color: var(--tmi-text);
}

/* ================= HEADER ================= */

.vf-header {
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  width: 100%;
  max-width: 1100px;
  display: flex;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
}

.logo {
  width: 130px;
}

/* ================= MAIN LAYOUT ================= */

.section {
  padding: 3rem 1.5rem;
  display: flex;
  justify-content: center;
}

.contact-wrap {
  width: 100%;
  max-width: 900px;
}

.contact-form {
  background: linear-gradient(180deg, #151a2a, #0e121e);
  border-radius: 22px;
  padding: 3rem;
  border: 1px solid var(--tmi-border);
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

/* ================= TYPOGRAPHY ================= */

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--tmi-yellow), var(--tmi-red));
  -webkit-background-clip: text;
  color: transparent;
}

.section-subtitle {
  color: var(--tmi-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* Terms content */

.contact-form h2 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.contact-form p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--tmi-muted);
}

.contact-form ul {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
}

.contact-form li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: var(--tmi-muted);
}

/* ================= FOOTER ================= */

.enterprise-footer {
  text-align: center;
  margin: 3rem auto 2rem;
  color: var(--tmi-muted);
  font-size: 0.75rem;
}
/* ================= CORE HOME PAGE ================= */

.accent {
  color: var(--tmi-red);
}

.hero-home {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.85fr);
  gap: 4.5rem;
  align-items: center;
}

.hero-home h1 {
  max-width: 760px;
  margin: 0 0 1.4rem;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: var(--tmi-text);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: var(--tmi-yellow);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 820px;
  margin: 0;
  color: var(--tmi-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 400;
}

.button-group {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  margin-top: 2rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: transform 0.18s ease, opacity 0.18s ease, border-color 0.18s ease;
}

.btn-primary {
  background: var(--tmi-red);
  color: #ffffff !important;
}

.btn-secondary {
  background: var(--tmi-yellow);
  color: #101010 !important;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(255, 255, 255, 0.18);
  color: #ffffff !important;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.home-card {
  background: linear-gradient(180deg, rgba(20, 24, 36, 0.98), rgba(10, 13, 22, 0.98));
  border: 1px solid var(--tmi-border);
  border-radius: 22px;
  padding: 2.3rem 2rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.45);
}

.home-card h2 {
  margin: 0 0 1.8rem;
  font-size: 1.65rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--tmi-text);
}

.home-link {
  display: block;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  text-decoration: none;
}

.home-link:first-of-type {
  padding-top: 0;
}

.home-link:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.home-link strong {
  display: block;
  color: var(--tmi-text);
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.home-link span {
  display: block;
  color: var(--tmi-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.vf-footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.8rem 1.5rem 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--tmi-muted);
  font-size: 0.92rem;
}

.vf-footer a {
  color: var(--tmi-yellow);
  text-decoration: none;
  font-weight: 600;
}

@media (max-width: 980px) {
  .hero-home {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-top: 3.5rem;
  }

  .button-group {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .vf-header {
    padding: 1.5rem 1.25rem;
  }

  .logo {
    width: 120px;
  }

  .hero-home {
    padding: 3rem 1.25rem;
  }

  .hero-home h1 {
    font-size: 2.65rem;
  }

  .button-group {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .home-card {
    padding: 1.75rem 1.5rem;
  }

  .vf-footer {
    flex-direction: column;
    text-align: center;
  }
}
