.static-faq-panel {
  display: block;
  color: #617487;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 55px;
  font-size: 16px;
  line-height: 1.7;
  transform: translateY(-6px);
  transition: max-height 0.5s ease, opacity 0.35s ease, transform 0.45s ease, padding 0.45s ease;
}

.static-faq-panel.is-open {
  max-height: 240px;
  opacity: 1;
  padding-bottom: 28px;
  transform: translateY(0);
}

.faq-list [data-slot="accordion-trigger"] svg {
  transition: transform 0.25s ease;
}

.faq-list [data-slot="accordion-trigger"][aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.mobile-menu-toggle {
  display: none;
}

.about-visual > span {
  top: 0 !important;
  right: auto !important;
  bottom: auto !important;
  left: 0 !important;
  offset-path: ellipse(72% 64% at 50% 50%);
  offset-rotate: 0deg;
  animation: about-orbit 20s linear infinite;
  will-change: offset-distance;
}

.about-visual > span:first-of-type {
  offset-distance: 4%;
}

.about-visual > span:nth-of-type(2) {
  offset-distance: 37%;
}

.about-visual > span:nth-of-type(3) {
  offset-distance: 70%;
}

@keyframes about-orbit {
  to { offset-distance: calc(var(--orbit-start, 0%) + 100%); }
}

.about-visual > span:first-of-type { --orbit-start: 4%; offset-distance: var(--orbit-start); }
.about-visual > span:nth-of-type(2) { --orbit-start: 37%; offset-distance: var(--orbit-start); }
.about-visual > span:nth-of-type(3) { --orbit-start: 70%; offset-distance: var(--orbit-start); }

.form-bottom button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status.is-success {
  color: #155b3b;
  background: #e7f5ed;
}

.form-status.is-error {
  color: #8b2f2f;
  background: #fbecec;
}

@media (max-width: 900px) {
  .site-header {
    position: fixed;
  }

  .site-header .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: auto;
    border: 1px solid #0b315c40;
    border-radius: 50%;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    z-index: 12;
  }

  .mobile-menu-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.25s ease;
  }

  .site-header.menu-open .mobile-menu-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .mobile-menu-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-header nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid #0b315c1f;
    border-radius: 18px;
    box-shadow: 0 20px 50px #0b315c24;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
    z-index: 11;
  }

  .site-header nav a {
    padding: 13px 15px;
    border-radius: 11px;
  }

  .site-header nav a:hover {
    background: var(--ice);
  }

  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .static-faq-panel {
    padding-inline: 0;
  }

  .static-faq-panel.is-open {
    padding-bottom: 24px;
  }

  .about-visual {
    width: min(52vw, 220px);
    margin-block: 30px 55px;
  }

  footer .footer-brand {
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }

  footer .footer-brand .brand-mark {
    width: 64px;
  }

  footer .footer-brand > div {
    text-align: center;
  }
}
