/**
 * Top Dog Hero Banner — scoped styles (tdhb- prefix).
 */

.tdhb-hero *,
.tdhb-hero *::before,
.tdhb-hero *::after {
  box-sizing: border-box;
}

.tdhb-hero {
  --tdhb-navy: #0f1a2e;
  --tdhb-accent-blue: #4a90e2;
  width: 100%;
  position: relative;
  background-color: var(--tdhb-navy);
  overflow: hidden;
}

.tdhb-hero__top {
  position: relative;
  min-height: min(72vh, 680px);
}

.tdhb-hero__bg {
  position: absolute;
  inset: 0;

  background-color: #0F1A2E;

  background-image:
    linear-gradient(
      180deg,
      rgba(15, 26, 46, 0.35) 0%,
      rgba(15, 26, 46, 0.25) 28%,
      rgba(15, 26, 46, 0.55) 58%,
      #0F1A2E 92%,
      #0F1A2E 100%
    ),
    linear-gradient(
      105deg,
      rgba(15, 26, 46, 0.15) 0%,
      rgba(15, 26, 46, 0.35) 38%,
      rgba(15, 26, 46, 0.82) 62%,
      rgba(15, 26, 46, 0.94) 100%
    ),
    url("https://f72a0299ed.nxcli.io/wp-content/uploads/2026/08/870340ee-e401-4e4c-bd69-df2784fb2826.png");

  background-size: cover, cover, cover;
  background-position: center bottom, center, left 28% center;
  background-repeat: no-repeat;
}

.tdhb-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  min-height: inherit;
  padding: 56px 48px 72px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.tdhb-hero__bottom {
  background-color: #0f1a2e;
  padding: clamp(52px, 6vw, 72px) clamp(20px, 4vw, 32px);
}

.tdhb-hero__tagline {
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.tdhb-hero__tagline-upper {
  margin: 0 0 clamp(18px, 2.5vw, 28px);
  font-family: "DM Sans", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

.tdhb-hero__tagline-lower {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.tdhb-hero__content {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.tdhb-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(15, 26, 46, 0.45);
  backdrop-filter: blur(6px);
  margin-bottom: 22px;
}

.tdhb-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tdhb-accent-blue);
  flex-shrink: 0;
}

.tdhb-hero__badge-text {
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
}

.tdhb-hero__title {
  margin: 0 0 18px;
  font-family: "Barlow Condensed", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 42px;
  line-height: 1.1;
  text-transform: none;
}

.tdhb-hero__title-line {
  display: block;
}

.tdhb-hero__title-line--white {
  color: rgb(255, 255, 255);
}

.tdhb-hero__title-line--blue {
  color: var(--tdhb-accent-blue);
}

.tdhb-hero__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.tdhb-hero__phone:hover {
  color: #ffffff;
  opacity: 0.92;
}

.tdhb-hero__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
}

.tdhb-hero__phone-icon svg {
  display: block;
}

.tdhb-hero__body {
  margin: 0 0 40px;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.65;
  color: oklab(0.999994 0.0000455678 0.0000200868 / 0.75);
  max-width: 100%;
}

.tdhb-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px 16px 32px;
  border: none;
  border-radius: 999px;
  background: #ffffff;
  font-family: "DM Sans", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 1;
  color: var(--tdhb-navy);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tdhb-hero__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
  color: var(--tdhb-navy);
}

.tdhb-hero__cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--tdhb-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tdhb-hero__cta-icon svg {
  width: 18px;
  height: 18px;
}

.tdhb-hero__partner {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  max-width: 100%;
}

.tdhb-hero__partner-logo {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(15, 26, 46, 0.35);
}

.tdhb-hero__partner-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tdhb-hero__partner-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

.tdhb-hero__partner-line1 {
  font-family: "DM Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.tdhb-hero__partner-line2 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.25;
  color: #ffffff;
}

@media (max-width: 1100px) {
  .tdhb-hero__inner {
    justify-content: flex-start;
    padding: 40px 28px 56px;
  }

  .tdhb-hero__bg {
    background-position: center bottom, center, 45% center;
  }
}

@media (max-width: 720px) {
  .tdhb-hero__top {
    min-height: min(62vh, 560px);
  }

  .tdhb-hero__title {
    font-size: clamp(42px, 10vw, 56px);
    line-height: 1.05;
  }

  .tdhb-hero__phone {
    font-size: clamp(18px, 4.5vw, 22px);
  }

  .tdhb-hero__body {
    font-size: 18px;
    line-height: 30px;
  }

  .tdhb-hero__partner {
    margin-top: 28px;
  }

  .tdhb-hero__partner-logo {
    width: 60px;
    height: 60px;
  }

  .tdhb-hero__tagline-upper {
    font-size: clamp(18px, 4.5vw, 24px);
    line-height: 1.65;
  }

  .tdhb-hero__tagline-lower {
    font-size: clamp(32px, 8vw, 44px);
    line-height: 1.35;
  }
}
