:root {
  --bg: #0a0a0b;
  --bg-soft: #131318;
  --surface: #1a1a22;
  --text: #f0ede8;
  --text-muted: #a8a39b;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --border: rgba(201, 168, 76, 0.2);
  --accent: #c9a84c;
  --wa: #25d366;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    radial-gradient(circle at 10% -20%, rgba(201, 168, 76, 0.09), transparent 40%),
    radial-gradient(circle at 90% 120%, rgba(201, 168, 76, 0.1), transparent 45%),
    var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  min-height: 100vh;
}

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(10, 10, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner,
.main,
.footer-inner {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 6px;
}

.brand span {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.3rem;
}

.top-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.top-links a:hover {
  color: var(--gold-light);
}

.hero {
  padding: 80px 0 36px;
  border-bottom: 1px solid var(--border);
}

.kicker {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2rem, 6vw, 4.2rem);
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0 0 18px;
}

.hero p {
  margin: 0;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 1.02rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.btn {
  border: 1px solid transparent;
  padding: 11px 18px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #0d0d0f;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--text);
  background: transparent;
}

.btn-secondary:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

.section {
  padding: 36px 0;
}

.section h2 {
  margin: 0 0 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.04em;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  border: 1px solid var(--border);
  padding: 18px;
}

.card h3 {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card p,
.card li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.breadcrumb {
  color: var(--text-muted);
  font-size: 0.84rem;
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold-light);
}

.faq-item + .faq-item {
  margin-top: 10px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
}

.faq-item p {
  color: var(--text-muted);
  margin: 8px 0 0;
}

.area-list {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer {
  border-top: 1px solid var(--border);
  margin-top: 34px;
  background: rgba(0, 0, 0, 0.25);
}

.footer-inner {
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--gold-light);
}

@media (max-width: 760px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .top-links {
    gap: 10px;
    font-size: 0.82rem;
  }

  .header-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
