/* ── PAGE HERO ─────────────────────────────────────────── */
.page-hero {
  position: relative;
  padding: 140px 0 110px;
  text-align: center;
  overflow: hidden;
  background: var(--bg);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,62,117,0.06) 0%, transparent 55%),
              radial-gradient(ellipse at 80% 30%, rgba(90,144,184,0.04) 0%, transparent 45%),
              linear-gradient(160deg, var(--bg2) 0%, var(--bg) 100%);
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px);
  animation: orbFloat 8s ease-in-out infinite;
}
.orb1 { width: 400px; height: 400px; background: rgba(0,62,117,0.06); top: -80px; left: -80px; }
.orb2 { width: 300px; height: 300px; background: rgba(90,144,184,0.04); bottom: -60px; right: -60px; animation-delay: -4s; }
@keyframes orbFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-20px); }
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,62,117,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,62,117,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5) 20%, rgba(0,0,0,0.5) 80%, transparent);
}
.page-hero-inner {
  position: relative; z-index: 2;
  width: 90%; max-width: 700px; margin: 0 auto;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800; letter-spacing: -0.03em;
  margin: 14px 0 20px; color: var(--text-dark);
}
.page-hero-sub { font-size: 16px; color: var(--muted); letter-spacing: 0.05em; }

/* ── SHARED CONTAINER ──────────────────────────────────── */
.container {
  width: 90%; max-width: 1100px; margin: 0 auto;
}

/* ── FAQ SECTION ───────────────────────────────────────── */
.faq-section-wrap {
  padding: 80px 0 120px;
  background: var(--bg2);
  border-top: 1px solid var(--glass-border);
}
.faq-container {
  max-width: 860px;
}

.faq-section { margin-bottom: 48px; }
.faq-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--bg3);
}

.faq-item {
  background: var(--bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-lg);
  margin-bottom: 8px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0,62,117,0.03);
  transition: box-shadow 0.2s var(--ease);
}
.faq-item.open { box-shadow: 0 4px 20px rgba(0,62,117,0.08); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s;
}
.faq-q:hover { background: var(--bg2); }
.faq-item.open .faq-q { background: var(--primary-dim); }

.faq-q-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}
.faq-item.open .faq-q-text { color: var(--primary); }

.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }
.faq-chevron svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; display: block; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s var(--ease);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 16px 20px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  border-top: 1px solid var(--glass-border);
  white-space: pre-line;
}

@media (max-width: 768px) {
  .page-hero { padding: 80px 0 60px; }
  .faq-section-wrap { padding: 60px 0 80px; }
}
