.t-header {
  height: 84px;
  background: #FFFFFF;
  border-bottom: 1px solid #E5E7EB;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  max-width: 1200px;
  margin: 0 auto;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.2s ease;
}
.t-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.t-header__logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background: #FF6A13;
}

.t-header__logo-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #0B1B33;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.t-header__logo-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 10px;
  color: #6B7280;
  margin-top: 2px;
}

.t-header__phone {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0B1B33;
  text-align: right;
}
.t-header__phone-caption {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: 11px;
  color: #6B7280;
}

.t-header__cta {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #FFFFFF;
  background: #FF6A13;
  border-radius: 5px;
  padding: 12px 24px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s ease;
}
.t-header__cta:hover {
  background: #E85C0A;
}
.t-menu__link {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: #0B1B33;
  text-transform: none;
  letter-spacing: 0;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.t-menu__link:hover {
  color: #FF6A13;
  border-bottom-color: #FF6A13;
}