/* =========================================================
   GOD WROTE IT — Premium Landing Page Styles
   ========================================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #C9A84C;
  --gold-light: #E8C87A;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --navy: #060d1a;
  --navy-mid: #0d1b2e;
  --navy-light: #132540;
  --cream: #F5F0E8;
  --white: #FFFFFF;
  --text-muted: rgba(245, 240, 232, 0.6);
  --text-body: rgba(245, 240, 232, 0.85);
  --accent-glow: rgba(201, 168, 76, 0.3);
  --border-subtle: rgba(201, 168, 76, 0.15);
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-gold: 0 0 40px rgba(201, 168, 76, 0.2), 0 0 80px rgba(201, 168, 76, 0.1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 2rem;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(6, 13, 26, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.9rem 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

.brand-icon {
  color: var(--gold);
  font-size: 1.2rem;
  animation: pulse-gold 3s ease-in-out infinite;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(201, 168, 76, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(13, 27, 46, 0.8) 0%, transparent 60%),
    linear-gradient(170deg, #060d1a 0%, #0a1628 40%, #060d1a 100%);
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
  opacity: 0.5;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border-subtle);
  border-radius: 50px;
  padding: 0.4rem 1.2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #F0D890 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-body);
  max-width: 620px;
  margin: 0 auto 2.5rem;
  animation: fadeInUp 0.8s 0.35s ease both;
}

.hero-sub strong {
  color: var(--cream);
}

.hero-question {
  position: relative;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.04));
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem 3rem;
  margin: 0 auto 0.8rem;
  max-width: 680px;
  animation: fadeInUp 0.8s 0.5s ease both;
}

.hero-question p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gold-light);
  line-height: 1.5;
}

.question-mark, .question-mark-close {
  position: absolute;
  font-family: var(--font-serif);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  font-style: italic;
}

.question-mark { top: -0.5rem; left: 0.8rem; }
.question-mark-close { bottom: -2rem; right: 0.8rem; }

.question-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-style: italic;
  animation: fadeInUp 0.8s 0.6s ease both;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  padding: 1rem 2.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.35), 0 2px 10px rgba(201, 168, 76, 0.2);
  animation: fadeInUp 0.8s 0.7s ease both;
}

.hero-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 60px rgba(201, 168, 76, 0.5), 0 4px 20px rgba(201, 168, 76, 0.3);
}

.hero-btn svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-btn:hover svg {
  transform: translateX(4px);
}

.hero-scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 3.5rem;
  animation: fadeInUp 0.8s 0.9s ease both;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

/* =========================================================
   SECTION COMMON
   ========================================================= */
section {
  padding: 6rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.25rem;
}

.section-label.light { color: var(--gold-light); border-color: var(--gold-light); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2rem;
  letter-spacing: 0.02em;
}

.section-title.light { color: var(--white); }

/* =========================================================
   PROBLEM
   ========================================================= */
.problem {
  background: var(--navy-mid);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.problem-intro {
  font-size: 1.15rem;
  color: var(--text-body);
  margin-bottom: 3rem;
  line-height: 1.9;
}

.problem-intro strong { color: var(--cream); font-size: 1.2rem; }

.pain-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.pain-card {
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.8rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
}

.pain-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.pain-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-4px);
}

.pain-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pain-card p {
  color: var(--text-body);
  font-size: 0.95rem;
}

.silence-block {
  text-align: center;
  padding: 2.5rem 0;
}

.silence-line {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-style: italic;
}

.silence-break {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.break-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}

.break-line:last-child {
  background: linear-gradient(to left, transparent, var(--gold));
}

.break-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
  white-space: nowrap;
}

/* =========================================================
   INTRODUCING
   ========================================================= */
.introducing {
  position: relative;
  overflow: hidden;
}

.introducing-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(201, 168, 76, 0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--navy) 0%, #0a1628 50%, var(--navy) 100%);
  z-index: 0;
}

.introducing .container {
  position: relative;
  z-index: 1;
}

.introducing-desc {
  font-size: 1.15rem;
  color: var(--text-body);
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.deliverable-card {
  position: relative;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.08), rgba(13, 27, 46, 0.6));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.2rem 2rem;
  transition: var(--transition);
  overflow: hidden;
  opacity: 0;
  transform: translateY(24px);
}

.deliverable-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.deliverable-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.12), transparent);
  opacity: 0;
  transition: var(--transition);
  border-radius: 20px;
}

.deliverable-card:hover::before { opacity: 1; }
.deliverable-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-gold); }

.deliverable-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.15em;
  margin-bottom: 0.75rem;
}

.deliverable-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.deliverable-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: 0.03em;
}

.deliverable-card p {
  color: var(--text-body);
  font-size: 0.92rem;
}

.author-statement {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 2rem 0;
}

.statement-line {
  flex: 1;
  height: 1px;
  background: var(--border-subtle);
}

.author-statement p {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--cream);
  white-space: nowrap;
}

.author-statement strong { color: var(--gold-light); }

/* =========================================================
   OFFER
   ========================================================= */
.offer {
  background: var(--navy-mid);
  position: relative;
}

.offer::before, .offer::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.offer::before { top: 0; }
.offer::after { bottom: 0; }

.offer-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
}

.offer-step {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.06), rgba(13, 27, 46, 0.8));
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 2.5rem;
  transition: var(--transition);
}

.offer-step:hover {
  border-color: rgba(201, 168, 76, 0.4);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.1), rgba(13, 27, 46, 0.9));
}

.step-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.step-header h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}

.offer-step p {
  color: var(--text-body);
  padding-left: calc(48px + 1.25rem);
}

.step-tags {
  display: flex;
  gap: 0.6rem;
  padding-left: calc(48px + 1.25rem);
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  padding: 0.25rem 0.85rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0.5rem 0 0.5rem 1.5rem;
}

.connector-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.connector-line {
  width: 2px;
  height: 32px;
  background: linear-gradient(to bottom, var(--gold), rgba(201, 168, 76, 0.3));
  margin: 0 0 0 -1px;
}

.offer-quote {
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  margin-left: calc(48px + 1.25rem);
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1rem;
}

.result-banner {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 2rem 2.5rem;
}

.result-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.result-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.7;
}

.result-text strong { color: var(--cream); }

/* =========================================================
   PROMISE
   ========================================================= */
.promise {
  position: relative;
  overflow: hidden;
  text-align: center;
}

.promise-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, var(--navy-light) 0%, var(--navy-mid) 100%);
}

.promise .container {
  position: relative;
  z-index: 1;
}

.promise-pillars {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-bottom: 4rem;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  overflow: hidden;
}

.pillar {
  flex: 1;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: var(--transition);
}

.pillar:hover {
  background: rgba(201, 168, 76, 0.08);
}

.pillar-symbol {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
}

.pillar p {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pillar-divider {
  width: 1px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

.scripture-block {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}

.scripture-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.scripture-ref {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

/* =========================================================
   AUDIENCE
   ========================================================= */
.audience {
  background: var(--navy-mid);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.audience-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(201, 168, 76, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 1.8rem;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(16px);
}

.audience-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.audience-card:hover {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.35);
  transform: translateY(-4px);
}

.audience-check {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.audience-card p {
  color: var(--text-body);
  font-size: 0.95rem;
}

/* =========================================================
   PROCESS
   ========================================================= */
.process {
  background: var(--navy);
  position: relative;
}

.process-timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.process-step {
  flex: 1;
  min-width: 200px;
  max-width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.process-icon-wrap {
  width: 80px;
  height: 80px;
  background: linear-gradient(145deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 2px solid var(--border-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: var(--transition);
}

.process-step:hover .process-icon-wrap {
  background: rgba(201, 168, 76, 0.2);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(201, 168, 76, 0.25);
  transform: scale(1.1);
}

.process-icon {
  font-size: 1.8rem;
}

.process-content h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.process-content p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.5;
}

.process-arrow {
  align-self: center;
  color: var(--gold);
  font-size: 1.5rem;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
  opacity: 0.6;
  flex-shrink: 0;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 8rem 2rem;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201, 168, 76, 0.18) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-light) 0%, var(--navy) 100%);
}

.cta-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 2;
}

.cta-inner {
  max-width: 720px;
  margin: 0 auto;
}

.cta-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--border-subtle);
  color: var(--gold-light);
  padding: 0.5rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  margin-bottom: 0.75rem;
  letter-spacing: 0.02em;
}

.cta-subtitle {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.cta-desc {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.cta-question {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 16px;
  padding: 1.75rem 2.5rem;
  margin: 0 auto 2.5rem;
  max-width: 600px;
}

.cta-q-mark {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.25;
  font-style: italic;
  line-height: 1;
}

.cta-question p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--cream);
  line-height: 1.6;
}

.cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, #F0D890 100%);
  color: var(--navy);
  padding: 1.2rem 2.8rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: var(--transition);
  box-shadow: 0 10px 50px rgba(201, 168, 76, 0.45), 0 4px 20px rgba(201, 168, 76, 0.25);
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.btn-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.cta-btn:hover .btn-glow {
  transform: translateX(100%);
}

.cta-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 70px rgba(201, 168, 76, 0.6), 0 8px 30px rgba(201, 168, 76, 0.3);
}

.cta-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.cta-btn:hover svg { transform: translateX(5px); }

.cta-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* =========================================================
   FINAL WORDS
   ========================================================= */
.final {
  background: var(--navy-mid);
  text-align: center;
  position: relative;
}

.final::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.final-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-line {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.final-statement {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 2.5rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), transparent);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
}

.final-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--gold-light);
  display: block;
}

.final-statement span:last-child {
  font-size: 1rem;
  color: var(--text-body);
}

.final-sig {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 3rem;
}

.ps-block {
  background: rgba(201, 168, 76, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 2rem;
  text-align: left;
}

.ps-block p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.ps-block strong { color: var(--cream); }

.alignment-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 0.6rem 1.25rem;
  width: fit-content;
}

.align-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.align-text {
  color: var(--gold-light);
  font-size: 0.85rem;
  font-weight: 500;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy);
  border-top: 1px solid var(--border-subtle);
  padding: 3rem 0;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}

.footer-tagline {
  color: var(--gold);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.footer-copy {
  color: var(--text-muted);
  font-size: 0.8rem;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-gold {
  0%, 100% { text-shadow: 0 0 8px rgba(201, 168, 76, 0.5); }
  50% { text-shadow: 0 0 20px rgba(201, 168, 76, 0.9); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

@keyframes float-particle {
  0% { transform: translateY(0) translateX(0) scale(1); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(var(--drift)) scale(0.5); opacity: 0; }
}

/* PARTICLE */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: float-particle var(--duration) linear infinite;
  animation-delay: var(--delay);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 768px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .hero-question { padding: 1.5rem 2rem; }

  .promise-pillars {
    flex-direction: column;
  }

  .pillar-divider {
    width: 100%;
    height: 1px;
  }

  .process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .process-arrow {
    transform: rotate(90deg);
    margin: 0;
  }

  .process-step {
    max-width: 100%;
    width: 100%;
  }

  .author-statement p {
    white-space: normal;
    text-align: center;
  }

  .offer-step p,
  .step-tags,
  .offer-quote {
    padding-left: 0;
  }

  .step-connector {
    padding-left: 0.5rem;
  }
}

@media (max-width: 480px) {
  section { padding: 4rem 0; }
  .nav-cta { display: none; }
  .cta-btn { padding: 1rem 1.8rem; font-size: 0.9rem; }
  .scripture-block { padding: 2rem 1.5rem; }
  .result-banner { flex-direction: column; }
  .final-statement { padding: 1.75rem; }
}
