.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(3rem, 6vw, 4.8rem) 0;
  border-block: 1px solid rgba(255, 255, 255, 0.10);
  background:
    radial-gradient(circle at 20% 42%, rgba(19, 129, 220, 0.30), transparent 30rem),
    radial-gradient(circle at 82% 48%, rgba(255, 196, 0, 0.13), transparent 28rem),
    linear-gradient(110deg, rgba(7, 34, 48, 0.96), rgba(8, 31, 23, 0.90) 56%, rgba(27, 31, 12, 0.92));
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.035), transparent);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.25rem, 5vw, 4rem);
  align-items: center;
}

.cta-inner .eyebrow {
  margin-bottom: 0.35rem;
}

.cta-inner h2 {
  margin-bottom: 0.6rem;
  font-size: clamp(2.2rem, 4vw, 3.25rem);
}

.cta-inner p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(248, 251, 255, 0.84);
}

.site-footer {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 18% 12%, rgba(19, 129, 220, 0.10), transparent 24rem),
    #020407;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1.05fr 0.7fr;
  gap: clamp(1.6rem, 4vw, 3.6rem);
  align-items: start;
}

.footer-brand img {
  width: 180px;
  max-width: 100%;
  margin-bottom: 1.25rem;
  filter:
    brightness(1.03)
    drop-shadow(0 0 10px rgba(19, 129, 220, 0.18));
}

.footer-brand p,
.footer-column address {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-style: normal;
}

.footer-column h2 {
  margin-bottom: 0.85rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.2;
}

.footer-column a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--muted);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--yellow);
}

.mobile-call-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  padding: 0.55rem;
  background: rgba(3, 7, 12, 0.92);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.mobile-call-bar a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 900;
  text-align: center;
  text-decoration: none;
}

@media (min-width: 881px) {
  .mobile-call-bar {
    display: none;
  }
}

@media (max-width: 880px) {
  body {
    padding-bottom: 76px;
  }

  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner .button {
    width: 100%;
  }

  .footer-brand img {
    width: 150px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 162px;
    padding: 1.25rem 0 1.1rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .brand,
  .brand img {
    width: 136px;
  }

  .site-nav,
  .header-actions {
    display: none;
  }

  .hero {
    padding-top: 2.35rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  h1 {
    font-size: clamp(2.55rem, 11vw, 3.05rem);
    line-height: 1.02;
  }
}
