.page-faq {
  --faq-blue: #0E6FA8;
  --faq-red: #C0392B;
  --faq-gold: #E6B450;
  --faq-green: #27AE60;
  --faq-cream: #FDF6E3;
  --faq-navy: #1A2A3A;
  --faq-ink: #2C3E50;
  background:
    radial-gradient(circle at 95% 10%, rgba(230, 180, 80, 0.16) 0 140px, transparent 141px),
    var(--faq-cream);
  color: var(--faq-ink);
  overflow-x: hidden;
}

.page-faq .faq-topstripe {
  height: 8px;
  background: linear-gradient(to right, #C0392B 0 20%, #E6B450 20% 40%, #27AE60 40% 60%, #0E6FA8 60% 80%, #85C1E9 80% 100%);
}

.page-faq .faq-hero {
  position: relative;
  padding: 42px 0 0;
  background:
    radial-gradient(circle at 88% 22%, rgba(133, 193, 233, 0.4) 0 130px, transparent 131px),
    radial-gradient(circle at 8% 90%, rgba(230, 180, 80, 0.18) 0 160px, transparent 161px),
    linear-gradient(135deg, #0E6FA8 0%, #145C8A 55%, #1A2A3A 100%);
  color: #FDF6E3;
}

.page-faq .faq-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background: repeating-linear-gradient(to bottom, transparent 0 26px, rgba(253, 246, 227, 0.08) 26px 27px);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 92%);
}

.page-faq .faq-hero .container {
  position: relative;
  z-index: 1;
}

.page-faq .faq-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(253, 246, 227, 0.72);
  margin-bottom: 26px;
}

.page-faq .faq-breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

.page-faq .faq-breadcrumb a:hover {
  color: #fff;
}

.page-faq .faq-kicker {
  margin: 0 0 10px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E6B450;
}

.page-faq .faq-hero h1 {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  line-height: 1.18;
  color: #FDF6E3;
}

.page-faq .faq-lead {
  max-width: 640px;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.04rem;
  line-height: 1.75;
  color: rgba(253, 246, 227, 0.9);
}

.page-faq .faq-searchbar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 620px;
  margin-top: 26px;
  padding: 10px 10px 10px 18px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 34px rgba(8, 28, 48, 0.22);
  color: #5D6B7A;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.page-faq .faq-searchbar:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(8, 28, 48, 0.32);
}

.page-faq .faq-search-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #0E6FA8;
}

.page-faq .faq-search-text {
  flex: 1;
  min-width: 0;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  color: #5D6B7A;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.page-faq .faq-search-btn {
  flex-shrink: 0;
  border: 0;
  background: #C0392B;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  cursor: default;
}

.page-faq .faq-hero-figure {
  margin: 32px 0 -58px;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  background: #1A2A3A;
  box-shadow: 0 24px 60px rgba(8, 28, 48, 0.35);
}

.page-faq .faq-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-faq .faq-main {
  padding: 112px 0 24px;
}

.page-faq .faq-layout {
  position: relative;
  display: grid;
  gap: 36px;
}

.page-faq .faq-layout::before {
  content: "?";
  position: absolute;
  right: -20px;
  top: -40px;
  font-family: var(--font-sans);
  font-size: 280px;
  font-weight: 900;
  line-height: 1;
  color: rgba(14, 111, 168, 0.07);
  pointer-events: none;
}

.page-faq .faq-index {
  position: relative;
  z-index: 2;
  align-self: start;
  background: #fff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 8px 30px rgba(26, 42, 58, 0.08);
}

.page-faq .faq-index-eyebrow {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #C0392B;
}

.page-faq .faq-index-title {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 800;
  color: #1A2A3A;
}

.page-faq .faq-index-list {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-faq .faq-index-link {
  display: inline-block;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: #2C3E50;
  border: 1px solid #E9E2D4;
  padding: 8px 14px;
  border-radius: 999px;
  background: #F2F3F4;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-faq .faq-index-link:hover,
.page-faq .faq-index-link:focus {
  background: #0E6FA8;
  border-color: #0E6FA8;
  color: #fff;
}

.page-faq .faq-index-note {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: #5D6B7A;
  line-height: 1.6;
}

.page-faq .faq-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.page-faq .faq-group {
  margin-bottom: 64px;
  scroll-margin-top: 96px;
}

.page-faq .faq-group:target {
  animation: faq-flash 1s ease;
}

@keyframes faq-flash {
  0% {
    background: rgba(230, 180, 80, 0.28);
    border-radius: 16px;
  }
  100% {
    background: transparent;
  }
}

.page-faq .faq-group-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 3px solid #0E6FA8;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.6rem;
  color: #1A2A3A;
}

.page-faq .faq-group-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 64px;
  height: 3px;
  background: #E6B450;
}

.page-faq .faq-group-title span {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  color: #C0392B;
  border: 2px solid #C0392B;
  border-radius: 50%;
}

.page-faq .faq-item {
  margin-bottom: 12px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #EAE4D6;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(26, 42, 58, 0.04);
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.page-faq .faq-item[open] {
  border-color: rgba(14, 111, 168, 0.32);
  box-shadow: 0 14px 32px rgba(14, 111, 168, 0.13);
}

.page-faq .faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 16px 16px 16px 18px;
  cursor: pointer;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.99rem;
  line-height: 1.4;
  color: #1A2A3A;
  transition: background 0.3s var(--ease);
}

.page-faq .faq-item summary::-webkit-details-marker {
  display: none;
}

.page-faq .faq-item summary:hover {
  background: rgba(14, 111, 168, 0.05);
}

.page-faq .faq-num {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  color: #C0392B;
  border: 1px solid rgba(192, 57, 43, 0.4);
  border-radius: 50%;
}

.page-faq .faq-q {
  flex: 1;
  min-width: 0;
}

.page-faq .faq-chevron {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  color: #0E6FA8;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}

.page-faq .faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: #C0392B;
}

.page-faq .faq-item[open] .faq-answer {
  animation: faq-fade-in 0.4s var(--ease);
}

@keyframes faq-fade-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.page-faq .faq-answer {
  padding: 0 22px 22px 58px;
  font-size: 0.96rem;
  line-height: 1.8;
  color: #3A4856;
}

.page-faq .faq-answer p:first-child {
  margin-top: 0;
}

.page-faq .faq-answer p:last-child {
  margin-bottom: 0;
}

.page-faq .faq-answer a {
  color: #0E6FA8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-faq .faq-visual {
  margin-top: 72px;
  padding: 64px 0;
  background-color: #EAF4FB;
  background-image:
    linear-gradient(135deg, rgba(14, 111, 168, 0.07) 25%, transparent 25%),
    linear-gradient(315deg, rgba(14, 111, 168, 0.07) 25%, transparent 25%);
  background-size: 26px 26px;
}

.page-faq .faq-visual-inner {
  display: grid;
  gap: 36px;
  align-items: center;
}

.page-faq .faq-phone-figure {
  background: #1A2A3A;
  border-radius: 28px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(26, 42, 58, 0.24);
}

.page-faq .faq-phone-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  object-fit: contain;
}

.page-faq .faq-visual-copy {
  color: #2C3E50;
}

.page-faq .faq-visual-kicker {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #C0392B;
}

.page-faq .faq-visual-copy h2 {
  margin: 0 0 18px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.8rem;
  line-height: 1.3;
  color: #1A2A3A;
}

.page-faq .faq-visual-copy p {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.8;
}

.page-faq .faq-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-faq .faq-steps li {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 12px 18px;
  background: rgba(253, 246, 227, 0.86);
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(14, 111, 168, 0.08);
  font-family: var(--font-sans);
  font-weight: 500;
  color: #1A2A3A;
}

.page-faq .faq-steps li span {
  font-size: 0.84rem;
  font-weight: 800;
  color: #C0392B;
}

.page-faq .faq-cta {
  padding: 60px 0 68px;
  background: linear-gradient(120deg, #0E6FA8 0%, #1A2A3A 130%);
  color: #FDF6E3;
  text-align: center;
}

.page-faq .faq-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 1.75rem;
  color: #FDF6E3;
}

.page-faq .faq-cta p {
  max-width: 500px;
  margin: 0 auto 28px;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(253, 246, 227, 0.86);
}

.page-faq .faq-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.page-faq .faq-flagstripe {
  height: 52px;
  background: linear-gradient(to right,
    #C0392B 0 20%,
    #E6B450 20% 40%,
    #27AE60 40% 60%,
    #0E6FA8 60% 80%,
    #FDF6E3 80% 100%);
}

@media (min-width: 920px) {
  .page-faq .faq-layout {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 56px;
  }

  .page-faq .faq-index {
    position: sticky;
    top: 96px;
  }

  .page-faq .faq-index-list {
    flex-direction: column;
    gap: 6px;
  }

  .page-faq .faq-index-link {
    display: block;
    border-radius: 12px;
    padding: 12px 16px;
  }

  .page-faq .faq-visual-inner {
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 72px;
  }

  .page-faq .faq-visual-copy h2 {
    font-size: 2.2rem;
  }

  .page-faq .faq-hero-figure {
    margin-bottom: -64px;
  }

  .page-faq .faq-main {
    padding-top: 126px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-faq *,
  .page-faq *::before,
  .page-faq *::after {
    transition: none !important;
    animation: none !important;
  }
}
