.content-section,
.hero-section,
.page-hero {
  padding: var(--section-space-lg) 0;
}

.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  min-height: 560px;
  color: #ffffff;
  background: var(--color-primary-deep);
}

.hero-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 24, 39, 0.82) 0%, rgba(3, 24, 39, 0.52) 42%, rgba(3, 24, 39, 0.24) 100%),
    url("../images/hero-main.svg") center / cover no-repeat;
}

.hero-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 72px;
}

.hero-section__content {
  max-width: 760px;
}

.hero-section__summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 920px;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.hero-section__summary div {
  padding: 22px 28px 0 0;
}

.hero-section__summary dt {
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.hero-section__summary dd {
  margin: 0;
  font-size: 17px;
  font-weight: 800;
}

.page-hero {
  padding-top: calc(var(--section-space-lg) + 76px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 24, 39, 0.86), rgba(8, 37, 63, 0.68)),
    url("../images/cta-bg.svg") center / cover no-repeat;
}

.section-head {
  max-width: 760px;
}

.section-head--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-size: 14px;
  font-weight: 900;
}

.section-title {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
  line-height: 1.22;
}

.section-desc {
  margin: 20px 0 0;
  color: var(--color-muted);
  font-size: 18px;
}

.hero-section .section-title {
  color: #ffffff;
  font-size: 58px;
}

.hero-section .section-desc,
.page-hero .section-desc {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.78);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  font-size: 15px;
  font-weight: 900;
  border-radius: var(--radius-button);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn--primary {
  color: var(--color-primary-deep);
  background: var(--color-accent-strong);
}

.btn--secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn--header {
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--color-primary);
  font-size: 14px;
}

.btn--light {
  color: var(--color-primary);
  background: #ffffff;
}

.btn--outline {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.56);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 44px;
}

.service-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.service-card__link {
  display: block;
  height: 100%;
}

.service-card__media {
  margin: 0;
  background: var(--color-section);
}

.service-card__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.service-card__body {
  padding: 24px;
}

.service-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.36;
}

.service-card__text {
  margin: 10px 0 0;
  color: var(--color-muted);
}

.cta-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(3, 24, 39, 0.92), rgba(8, 37, 63, 0.76)),
    url("../images/cta-bg.svg") center / cover no-repeat;
}

.cta-section .section-eyebrow,
.cta-section .section-desc {
  color: rgba(255, 255, 255, 0.78);
}

.cta-section__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  background: #ffffff;
}

.faq-item__question {
  position: relative;
  width: 100%;
  min-height: 64px;
  padding: 18px 36px 18px 22px;
  color: var(--color-text);
  text-align: left;
  background: transparent;
  border: 0;
  font-weight: 900;
}

.faq-item__question::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 18px;
  height: 18px;
  content: "";
  background:
    linear-gradient(var(--color-primary), var(--color-primary)) center / 100% 2px no-repeat,
    linear-gradient(var(--color-primary), var(--color-primary)) center / 2px 100% no-repeat;
  transform: translateY(-50%);
}

.faq-item.is-open .faq-item__question::after {
  background: linear-gradient(var(--color-primary), var(--color-primary)) center / 100% 2px no-repeat;
}

.faq-item__answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--color-muted);
}

.faq-item.is-open .faq-item__answer {
  display: block;
}
