.ti-service-detail {
  --ti-dark: #171717;
  --ti-gold: #d89a31;
  --ti-soft: #f7f3ec;
  --ti-line: #e8dfd3;
  color: #2f2f2f;
  font-family: inherit;
}

.ti-service-hero {
  position: relative;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  background: #111;
  margin: 30px 0 42px;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.ti-service-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.05));
  z-index: 1;
}

.ti-service-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ti-service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 54px;
  color: #fff;
}

.ti-service-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ti-service-hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  line-height: 0.98;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: -0.04em;
}

.ti-service-hero p {
  font-size: 18px;
  line-height: 1.75;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.ti-service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ti-service-pills span {
  border-radius: 999px;
  background: #fff;
  color: #111;
  padding: 10px 14px;
  font-weight: 800;
  font-size: 13px;
}

.ti-service-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 18px;
}

.ti-service-section-head span {
  display: block;
  color: var(--ti-gold);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}

.ti-service-section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  margin: 0;
  color: var(--ti-dark);
  letter-spacing: -0.035em;
}

.ti-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin: 34px 0;
}

.ti-service-card {
  background: #fff;
  border: 1px solid var(--ti-line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(45, 34, 18, 0.07);
}

.ti-service-card span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--ti-gold);
  color: #111;
  font-weight: 900;
  margin-bottom: 18px;
}

.ti-service-card h3 {
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 12px;
  color: var(--ti-dark);
}

.ti-service-card p {
  margin: 0;
  line-height: 1.72;
}

.ti-service-band {
  background: linear-gradient(135deg, #171717, #2a2118);
  border-radius: 30px;
  padding: 38px;
  color: #fff;
  margin: 42px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.ti-service-band h2 {
  color: #fff;
  font-size: 34px;
  line-height: 1.15;
  margin: 0 0 14px;
}

.ti-service-band p {
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
}

.ti-service-band ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ti-service-band li {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 14px 16px;
}

.ti-service-gallery {
  margin: 46px 0;
}

.ti-service-cta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--ti-soft);
  border: 1px solid var(--ti-line);
  border-radius: 30px;
  padding: 34px;
  margin: 42px 0;
}

.ti-service-cta h2 {
  margin: 0 0 8px;
  font-size: 32px;
  color: var(--ti-dark);
}

.ti-service-cta p {
  margin: 0;
  line-height: 1.65;
}

.ti-service-cta a {
  flex: 0 0 auto;
  background: var(--ti-gold);
  color: #111 !important;
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 900;
  text-decoration: none !important;
}

@media (max-width: 991px) {
  .ti-service-hero {
    min-height: 440px;
  }

  .ti-service-hero-content {
    padding: 32px;
  }

  .ti-service-grid,
  .ti-service-band {
    grid-template-columns: 1fr;
  }

  .ti-service-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}
