.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(72px, 9vw, 120px);
  background: var(--blue-surface);
  color: var(--white);
}

.cta-band::before {
  position: absolute;
  top: -180px;
  right: -120px;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  content: '';
  box-shadow: 0 0 0 64px rgba(255, 255, 255, 0.05), 0 0 0 128px rgba(255, 255, 255, 0.035);
}

.cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 48px;
}

.cta-grid h2 {
  max-width: 16ch;
  margin-bottom: 16px;
}

.cta-grid p {
  margin-bottom: 0;
  color: #f5e7da;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 80px 0 32px;
  background: #03090e;
  color: var(--white);
}

.footer-mark {
  position: absolute;
  right: clamp(-160px, -8vw, -72px);
  bottom: clamp(-180px, -12vw, -96px);
  width: clamp(320px, 34vw, 560px);
  height: auto;
  border-radius: 18%;
  opacity: 0.045;
  pointer-events: none;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.8fr 1.15fr;
  gap: 64px;
  padding-bottom: 64px;
}

.footer-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.footer-lockup img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.footer-lockup .brand-name strong {
  font-size: 1.1rem;
}

.footer-lockup .brand-name small {
  font-size: 0.76rem;
}

.footer-brand p,
.footer-grid li,
.footer-grid a {
  color: #aebfc7;
}

.footer-grid h3 {
  margin-bottom: 24px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-legal-note {
  max-width: 42ch;
  margin-top: 16px;
  color: #8197a2;
  font-size: 0.78rem;
  line-height: 1.6;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #8ba0aa;
  font-size: var(--step--1);
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom a {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  color: #aebfc7;
}

.footer-bottom a:hover {
  color: var(--white);
}

.faq-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: grid;
  width: 100%;
  min-height: 72px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 11px;
  right: 3px;
  left: 3px;
  height: 2px;
  background: var(--blue);
  content: '';
  transition: transform 200ms ease;
}

.faq-icon::after {
  transform: rotate(90deg);
}

.faq-question[aria-expanded='true'] .faq-icon::after {
  transform: rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms var(--ease);
}

.faq-answer > div {
  overflow: hidden;
}

.faq-answer p {
  margin-bottom: 24px;
  color: var(--muted);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}
