/* ============================================
   PAKAR PAJAK — DESIGN TOKENS
   Lihat .claude/skills/pakar-pajak-design/SKILL.md
   ============================================ */

:root {
  /* Backgrounds */
  --bg-primary: #0A0907;
  --bg-elevated: #15110C;
  --bg-card: #1A1612;

  /* Accent — warm champagne/gold */
  --accent: #C9A876;
  --accent-soft: #E8D4B0;
  --accent-deep: #8E7A57;
  /* Elegant metallic gradient — applied to all gold text via background-clip */
  --accent-gradient: linear-gradient(165deg, #F2E0BD 0%, #E8D4B0 18%, #C9A876 52%, #A88B62 80%, #8E7A57 100%);

  /* Text */
  --text-primary: #F5F1E8;
  --text-secondary: #B8B0A1;
  --text-muted: #8A8378;

  /* Borders */
  --border-subtle: rgba(245, 241, 232, 0.08);
  --border-strong: rgba(245, 241, 232, 0.16);

  /* Shadows */
  --shadow-deep: 0 24px 60px rgba(0, 0, 0, 0.5);
  --shadow-card: 0 12px 32px rgba(0, 0, 0, 0.4);

  /* Layout */
  --container-max: 1280px;
  --gutter: clamp(20px, 4vw, 64px);

  /* Type stack */
  --font-sans: 'Geist', system-ui, -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;
}

/* ============================================
   RESET
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html, body { height: 100%; }
body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.bracket-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.bracket-role {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--accent);
}

/* Legacy class kept for backward-compat; rendered as plain sans-accent now */
.serif-italic {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--accent);
}

/* ============================================
   LAYOUT PRIMITIVES
   ============================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(64px, 10vw, 140px);
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 9, 7, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 18px;
}

.wordmark {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: var(--accent);
}
.wordmark span { display: block; }

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}
.nav-links a:hover { color: var(--text-primary); }

.nav-cta {
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  color: var(--text-primary);
  transition: background 200ms;
}
.nav-cta:hover { background: var(--bg-elevated); }

/* ============================================
   HERO — centered, atmospheric gold-ray lighting
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(80px, 12vw, 156px);
  padding-bottom: clamp(48px, 7vw, 96px);
  background: var(--bg-primary);
}

/* Diagonal gold beam — main light direction (upper-left → lower-right) */
.hero::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  z-index: -2;
  background:
    /* Hard inner beam */
    linear-gradient(118deg,
      transparent 30%,
      rgba(201, 168, 118, 0.04) 42%,
      rgba(232, 212, 176, 0.14) 48%,
      rgba(232, 212, 176, 0.20) 50%,
      rgba(232, 212, 176, 0.14) 52%,
      rgba(201, 168, 118, 0.04) 58%,
      transparent 70%
    ),
    /* Wider soft halo */
    linear-gradient(118deg,
      transparent 18%,
      rgba(201, 168, 118, 0.06) 50%,
      transparent 82%
    ),
    /* Crossing secondary beam */
    linear-gradient(98deg,
      transparent 55%,
      rgba(201, 168, 118, 0.05) 66%,
      transparent 78%
    );
  pointer-events: none;
}

/* Glow pools at corners + center vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(60% 50% at 25% 0%, rgba(201, 168, 118, 0.10), transparent 65%),
    radial-gradient(50% 40% at 80% 100%, rgba(201, 168, 118, 0.06), transparent 70%),
    radial-gradient(80% 60% at 50% 50%, transparent 45%, rgba(10, 9, 7, 0.5) 100%);
  pointer-events: none;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 28px;
  max-width: 980px;
  margin-inline: auto;
}

/* Top pill / eyebrow */
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(26, 22, 18, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}

/* Headline */
.hero-headline {
  font-family: var(--font-sans);
  font-size: clamp(44px, 7.5vw, 104px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  text-wrap: balance;
}
.hero-headline .promise {
  display: inline-block;
  color: var(--accent);
  /* font inherits from parent — same weight & size, gold color only */
}
@media (min-width: 700px) {
  .hero-headline .promise { white-space: nowrap; }
}

/* Sub copy */
.hero-sub {
  max-width: 56ch;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Primary CTA — gold solid */
.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 18px 32px;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 12px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 12px 32px rgba(201, 168, 118, 0.25);
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.btn-hero:hover {
  background: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 18px 44px rgba(201, 168, 118, 0.35);
}
.btn-hero .arrow {
  font-weight: 500;
  opacity: 0.8;
}

/* Eyebrow row used by other sections (#konsultan, #proses) */
.hero-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
}
.hero-eyebrow-row .divider {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
  max-width: 120px;
}

/* Reusable tokens kept dormant for later sections */
.price-display { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.price-meta-row { display: flex; align-items: center; gap: 12px; font-family: var(--font-sans); }
.price-old {
  font-size: 16px; font-weight: 500;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-color: var(--text-muted);
  letter-spacing: -0.01em;
}
.price-meta { font-size: 13px; color: var(--text-muted); letter-spacing: 0.02em; }
.price-pill {
  display: inline-flex; align-items: center;
  padding: 18px 32px; border-radius: 14px;
  font-family: var(--font-sans);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700; font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  background: linear-gradient(180deg, #1F1A14 0%, #0A0907 100%);
  border: 1px solid rgba(201, 168, 118, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.6),
    0 12px 32px rgba(0, 0, 0, 0.5);
}

/* ============================================
   CONSULTANTS SECTION
   ============================================ */

.section-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.section-head h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 22ch;
}
.section-head h2 .accent { color: var(--accent); }
.section-head .lead {
  max-width: 38ch;
  font-size: 15px;
  color: var(--text-secondary);
}

.consultant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 28px);
}
@media (min-width: 900px) {
  .consultant-grid { grid-template-columns: repeat(3, 1fr); }
}

.consultant-card {
  position: relative;
  display: block;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  transition: transform 300ms ease, border-color 300ms;
}
.consultant-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201, 168, 118, 0.3);
}
.consultant-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.consultant-card-cta {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, transparent, rgba(10, 9, 7, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 250ms, transform 250ms;
}
.consultant-card:hover .consultant-card-cta {
  opacity: 1;
  transform: translateY(0);
}
.consultant-card-cta .label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}
.consultant-card-cta .arrow {
  width: 32px; height: 32px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: var(--bg-primary);
  border-radius: 8px;
  font-weight: 700;
}

/* ============================================
   PROCESS / FOOTER
   ============================================ */

.process {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}
.process-step {
  position: relative;
  padding: 28px;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  background: var(--bg-elevated);
  isolation: isolate;
  transition:
    transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

/* Soft gold glow halo, hidden by default, fades in on hover */
.process-step::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(
    60% 80% at 50% 0%,
    rgba(232, 212, 176, 0.25),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}

.process-step:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 118, 0.4);
  background: linear-gradient(180deg, #1F1A14 0%, var(--bg-elevated) 100%);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.55),
    0 0 36px rgba(201, 168, 118, 0.18),
    inset 0 1px 0 rgba(232, 212, 176, 0.18);
}
.process-step:hover::before {
  opacity: 1;
}
.process-step .num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 38px;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.process-step h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.55;
}

.footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: 48px;
  font-size: 13px;
  color: var(--text-muted);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
}
.footer-links a:hover { color: var(--accent); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-portrait {
    max-width: 480px;
    margin-inline: auto;
  }
  .section-head {
    grid-template-columns: 1fr;
  }
  .nav-links { display: none; }
}

@media (max-width: 560px) {
  .hero-cta-row { gap: 20px; }
  .price-pill { padding: 14px 24px; }
  .nav-cta { display: none; }
}

/* ============================================
   CONSULTANT DETAIL PAGE
   ============================================ */

/* Breadcrumb / back link */
.breadcrumb {
  padding-top: 28px;
  padding-bottom: 8px;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-muted);
  transition: color 200ms;
}
.back-link:hover { color: var(--accent); }

/* Detail hero — asymmetric split (poster left, info+buy right) */
.detail-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: clamp(40px, 5.5vw, 72px);
}
.detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 60% at 0% 30%, rgba(201, 168, 118, 0.07), transparent 70%),
    radial-gradient(40% 50% at 100% 80%, rgba(201, 168, 118, 0.05), transparent 70%);
  pointer-events: none;
}

.detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.15fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}

.detail-poster {
  position: sticky;
  top: 96px;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-card);
  box-shadow: var(--shadow-deep);
  border: 1px solid var(--border-subtle);
}
.detail-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-top: 4px;
}

.detail-headline {
  font-family: var(--font-sans);
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  margin-top: 4px;
}
.detail-headline .promise {
  display: inline-block;
  color: var(--accent);
  /* font inherits from parent — same weight & size, gold color only */
}

.detail-role {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.01em;
}
.detail-role .role-detail {
  color: var(--text-muted);
}

.detail-hook {
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Buy card — sticky purchase block */
.buy-card {
  margin-top: 16px;
  padding: 28px;
  background: linear-gradient(180deg, rgba(31, 26, 20, 0.85), rgba(15, 12, 8, 0.95));
  border: 1px solid rgba(201, 168, 118, 0.18);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    var(--shadow-card);
}
.buy-card-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.buy-card .price-pill {
  align-self: flex-start;
}
.buy-card .btn-hero {
  margin-top: 4px;
  padding: 18px 28px;
  font-size: 15px;
}
.buy-card-note {
  font-size: 13px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-top: 4px;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}

/* About section */
.detail-about-inner {
  max-width: 880px;
}

.detail-prose {
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-secondary);
  max-width: 62ch;
  margin-bottom: 56px;
}
.detail-prose strong {
  color: var(--text-primary);
  font-weight: 600;
}
.detail-prose .accent {
  color: var(--accent);
  font-weight: 500;
}

/* Detail layanan grid — 4 metadata cells */
.detail-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}
.detail-meta-cell {
  padding: 22px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: border-color 200ms;
}
.detail-meta-cell:hover {
  border-color: rgba(201, 168, 118, 0.25);
}
.detail-meta-cell .meta-key {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--accent);
}
.detail-meta-cell .meta-val {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-primary);
}

/* Bottom CTA banner */
.cta-banner-section {
  padding-top: 0;
  padding-bottom: clamp(48px, 7vw, 88px);
}
.cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(32px, 4vw, 56px);
  background: linear-gradient(135deg, rgba(31, 26, 20, 0.9) 0%, rgba(10, 9, 7, 0.95) 100%);
  border: 1px solid rgba(201, 168, 118, 0.18);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 80% at 100% 0%, rgba(201, 168, 118, 0.10), transparent 60%);
  pointer-events: none;
}
.cta-banner-text { display: flex; flex-direction: column; gap: 12px; }
.cta-banner-text h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.cta-banner-text h2 .promise {
  color: var(--accent);
  /* font inherits from parent — gold color only */
}
.cta-banner-text p {
  font-size: 15px;
  color: var(--text-secondary);
  max-width: 50ch;
}

/* Detail page responsive */
@media (max-width: 900px) {
  .detail-hero-grid {
    grid-template-columns: 1fr;
  }
  .detail-poster {
    position: static;
    max-width: 420px;
    margin-inline: auto;
  }
  .cta-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }
}

/* ============================================
   GRADIENT GOLD TEXT — applied to ALL gold-colored text
   Uses background-clip: text technique. Solid `color: var(--accent)`
   declarations elsewhere are visually overridden by these rules.
   ============================================ */

.bracket-label,
.bracket-role,
.serif-italic,
.wordmark,
.section-head h2 .accent,
.detail-prose .accent,
.hero-headline .promise,
.detail-headline .promise,
.cta-banner-text h2 .promise,
.process-step .num,
.detail-meta-cell .meta-key,
.hero-pill > span {
  background-image: var(--accent-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Slight glow lift for the metallic feel */
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.18);
}

/* Hover states (back-link, footer-links) — keep solid gold on hover for
   smooth transition; gradient swap mid-transition looks janky */

/* ============================================
   FAQ ACCORDION
   ============================================ */

.faq-section {
  position: relative;
  isolation: isolate;
}
.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(50% 50% at 100% 0%, rgba(201, 168, 118, 0.06), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(201, 168, 118, 0.04), transparent 70%);
  pointer-events: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition:
    border-color 320ms ease,
    background 320ms ease,
    box-shadow 320ms ease;
}

.faq-item:hover {
  border-color: rgba(201, 168, 118, 0.2);
}

.faq-item[open] {
  background: linear-gradient(180deg, #1F1A14 0%, var(--bg-elevated) 100%);
  border-color: rgba(201, 168, 118, 0.32);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.45),
    0 0 28px rgba(201, 168, 118, 0.08);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 28px;
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 200ms ease;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent-soft); }

/* Plus → cross toggle icon */
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 118, 0.32);
  background:
    linear-gradient(var(--accent), var(--accent)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--accent), var(--accent)) center / 1.5px 12px no-repeat;
  transition:
    transform 360ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease,
    background-color 320ms ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  border-color: rgba(201, 168, 118, 0.55);
  background-color: rgba(201, 168, 118, 0.08);
}

.faq-body {
  padding: 4px 28px 26px 28px;
  font-size: clamp(14px, 1.15vw, 16px);
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 64ch;
}
.faq-body p {
  margin-bottom: 12px;
}
.faq-body p:last-child {
  margin-bottom: 0;
}
.faq-body strong {
  color: var(--text-primary);
  font-weight: 600;
}
.faq-body ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-body ul li {
  padding-left: 22px;
  position: relative;
}
.faq-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 12px;
  height: 1px;
  background: var(--accent);
}
.faq-body ul li strong {
  color: var(--accent-soft);
  font-weight: 600;
}

/* Smooth fade-in for the body content on open */
.faq-item[open] .faq-body {
  animation: faqFadeIn 380ms ease;
}
@keyframes faqFadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 560px) {
  .faq-item summary { padding: 18px 20px; gap: 16px; }
  .faq-body { padding: 4px 20px 22px 20px; }
  .faq-item summary::after { width: 28px; height: 28px; }
}

/* FAQ section — centered overrides */
.faq-eyebrow {
  justify-content: center;
  margin-bottom: 28px;
}
.faq-head {
  display: block;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}
.faq-head h2 {
  margin-inline: auto;
  text-wrap: balance;
}
.faq-head .lead {
  margin: 16px auto 0;
}
.faq-section .faq-list {
  margin-inline: auto;
}
