.access-note {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 22px;
  padding: 15px 18px;
  border: 1px solid #d8b46a55;
  border-radius: 14px;
  background: #d8b46a0d;
}

.access-note b {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
}

.access-note span {
  color: #c9d2dd;
  font-size: 13px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.contact-actions a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 220px;
  padding: 16px 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff08;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.contact-actions a:hover {
  border-color: var(--cyan);
  transform: translateY(-1px);
}

.contact-actions b {
  color: var(--cyan);
  font-size: 14px;
}

.faq {
  padding: 120px 0 20px;
}

.faq header {
  max-width: 720px;
  margin-bottom: 36px;
}

.faq header small {
  color: var(--gold);
  font-size: 10px;
  letter-spacing: .18em;
}

.faq h2 {
  margin: 14px 0;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1;
}

.faq header p, .faq article p {
  color: var(--muted);
  line-height: 1.75;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.faq article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, #101824, #080c12);
}

.faq article h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.faq article p {
  margin: 0;
}

footer a { color: inherit; }
footer a:hover { color: var(--cyan); }

@media (max-width: 740px) {
  .hero { min-height: 650px; }
  .access-note { width: 100%; }
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions a { text-align: center; }
  .contact-actions, .contact-actions a { width: 100%; }
  .faq-grid { grid-template-columns: 1fr; }
}
