@import url("https://fonts.googleapis.com/css2?family=PT+Serif:wght@400;700&family=Schibsted+Grotesk:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #070707;
  --surface: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.16);
  --text: #eceff3;
  --muted: #b8c0ca;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  min-height: 100vh;
  color: var(--text);
  background: radial-gradient(1100px 430px at 50% -10%, #252525 0%, #121212 48%, #070707 100%);
  font-family: "Schibsted Grotesk", "Segoe UI", sans-serif;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 14px;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  background: rgba(5, 5, 5, 0.82);
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 42px;
  padding: 2px 8px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: linear-gradient(90deg, rgba(210, 210, 210, 0.2), rgba(120, 120, 120, 0.12));
}

.logo-wrap img {
  max-width: 94px;
  max-height: 28px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0.08) contrast(1.08);
}

.topbar nav a {
  color: var(--muted);
  text-decoration: none;
  margin-left: 14px;
  line-height: 1;
}

.topbar nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 12px;
}

.topbar nav a {
  margin-left: 0;
}

.topbar nav a:hover {
  color: var(--text);
}

.faq-page {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px 16px 48px;
}

.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(34px, 5vw, 54px);
  font-family: "PT Serif", Georgia, serif;
}

.hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.4vw, 22px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 16px;
  align-items: center;
}

.faq-mood {
  width: clamp(120px, 16vw, 190px);
  transform: rotate(-7deg);
  transform-origin: center;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.38));
  transition: transform 0.3s ease;
}

.faq-mood:hover {
  transform: rotate(-4deg) scale(1.02);
}

.faq-list {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, var(--surface) 0%, rgba(0, 0, 0, 0.35) 100%);
  padding: 14px 16px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 20px;
}

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

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
  font-size: 18px;
}

.cta-box {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(0, 0, 0, 0.3));
}

.cta-box h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  font-family: "PT Serif", Georgia, serif;
}

.cta-box p {
  margin: 0 0 10px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  margin-right: 10px;
  margin-top: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: var(--text);
  text-decoration: none;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.05));
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .topbar nav {
    justify-content: center;
  }

  .hero {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .faq-mood {
    width: 130px;
  }
}
