/* ─── Base ─────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #111111;
  color: #ffffff;
  font-family: 'Noto Serif', serif;
  -webkit-font-smoothing: antialiased;
}

/* ─── Typography ────────────────────────────── */
h1,
h2,
h3,
h4,
.font-title {
  font-family: 'Sofia Sans', sans-serif;
}

.text-gold {
  color: #FFD700;
}

.text-gold-dim {
  color: #C9A800;
}

/* ─── Decorative lines / dividers ───────────── */
.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #FFD700, transparent);
  margin: 0 auto;
}

.gold-divider-left {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #FFD700, transparent);
}

/* ─── Noise texture overlay ──────────────────── */
.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ─── Section separators ─────────────────────── */
.section-sep {
  border: none;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2a2a2a 30%, #FFD700 50%, #2a2a2a 70%, transparent);
}

/* ─── Gold glow card ─────────────────────────── */
.card-glow {
  border: 1px solid #2a2a2a;
  background: #181818;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.card-glow:hover {
  border-color: rgba(255, 215, 0, 0.3);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.06);
}

/* ─── CTA Button ─────────────────────────────── */
.btn-cta {
  background: #007a14;
  color: #ffffff;
  font-family: 'Sofia Sans', sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  box-shadow: 0 4px 20px rgba(0, 122, 20, 0.4);
}

.btn-cta:hover {
  background: #005f0f;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 122, 20, 0.55);
}

.btn-cta:active {
  transform: translateY(0);
}

/* ─── Form inputs ────────────────────────────── */
.form-input {
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  color: #ffffff;
  font-family: 'Noto Serif', serif;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.form-input:focus {
  outline: none;
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.form-input::placeholder {
  color: #555;
}

/* ─── Hero geometric ornament ────────────────── */
.hex-ornament {
  width: 320px;
  height: 320px;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  position: absolute;
  filter: blur(40px);
  pointer-events: none;
}

/* ─── Sticky header ──────────────────────────── */
.sticky-header {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(17, 17, 17, 0.9);
  border-bottom: 1px solid #1f1f1f;
}

/* ─── Number badges ──────────────────────────── */
.step-badge {
  width: 48px;
  height: 48px;
  border: 2px solid #FFD700;
  color: #FFD700;
  font-family: 'Sofia Sans', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Scroll indicator ───────────────────────── */
@keyframes bounce-down {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.scroll-cue {
  animation: bounce-down 1.8s ease-in-out infinite;
}

/* ─── Section tag pill ───────────────────────── */
.section-tag {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 999px;
  font-family: 'Sofia Sans', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #FFD700;
  background: rgba(255, 215, 0, 0.05);
}

/* ─── Testimonial quote mark ─────────────────── */
.quote-mark {
  font-size: 5rem;
  line-height: 0.7;
  color: rgba(255, 215, 0, 0.2);
  font-family: 'Sofia Sans', sans-serif;
  font-weight: 900;
  user-select: none;
}

/* ─── Toast notification ─────────────────────── */
#toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-family: 'Sofia Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(100px);
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
}

#toast.show {
  transform: translateY(0);
  opacity: 1;
}

#toast.success {
  background: #007a14;
  color: #fff;
}

#toast.error {
  background: #8b0000;
  color: #fff;
}


/* ─── FAQ accordion ──────────────────────────── */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer.open {
  max-height: 500px;
}

.faq-icon {
  transition: transform 0.35s ease;
}

.faq-icon.open {
  transform: rotate(45deg);
}
