@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #1a1a2e;
  --ink-light: #2d2d44;
  --parchment: #faf8f5;
  --parchment-warm: #f5f0ea;
  --gold: #c9a84c;
  --gold-soft: #e8d5a0;
  --gold-glow: rgba(201, 168, 76, 0.15);
  --coral: #e07a5f;
  --text-primary: #1a1a2e;
  --text-secondary: #5a5a72;
  --text-light: #8a8a9a;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

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

body {
  background: var(--parchment);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--ink);
  padding: 2rem;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(224, 122, 95, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  max-width: 860px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  display: inline-block;
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 0.5rem 1.5rem;
  border-radius: 100px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--parchment);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(250, 248, 245, 0.65);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  font-weight: 300;
  line-height: 1.8;
}

.hero-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.price-note {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.45);
  font-weight: 400;
  letter-spacing: 0.03em;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 1rem 2.5rem;
  border-radius: 4px;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.cta-btn:hover {
  background: #d4b463;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 168, 76, 0.45);
}

.cta-btn--light {
  background: var(--parchment);
  color: var(--ink);
  box-shadow: 0 4px 20px rgba(250, 248, 245, 0.15);
}

.cta-btn--light:hover {
  background: #fff;
  box-shadow: 0 8px 32px rgba(250, 248, 245, 0.25);
}

.hero-guarantee {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.35);
  letter-spacing: 0.05em;
}

/* ===== JOURNEY SECTION ===== */
.journey {
  padding: 8rem 2rem;
  background: var(--parchment);
}

.journey-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.journey h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin-bottom: 1rem;
  max-width: 700px;
}

.journey-intro {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin-bottom: 4rem;
  line-height: 1.8;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-soft), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 300px;
  margin: 0 auto;
}

/* ===== PROOF SECTION ===== */
.proof {
  padding: 6rem 2rem;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

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

.proof-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.proof-eyebrow {
  color: var(--gold-soft);
  opacity: 0.7;
}

.proof-name {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 2rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.proof-quote {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  font-style: normal;
  color: rgba(250, 248, 245, 0.7);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.proof-quote-two {
  color: rgba(250, 248, 245, 0.55);
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(250, 248, 245, 0.08);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.5);
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* ===== PILLARS SECTION ===== */
.pillars {
  padding: 8rem 2rem;
  background: var(--parchment-warm);
}

.pillars-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.pillars .section-eyebrow {
  display: block;
  text-align: center;
  margin-bottom: 1rem;
}

.pillars h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  color: var(--text-primary);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.pillar-card {
  background: var(--parchment);
  border: 1px solid rgba(26, 26, 46, 0.06);
  border-radius: 16px;
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(26, 26, 46, 0.08);
}

.pillar-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
}

.pillar-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

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

/* ===== CLOSING ===== */
.closing {
  padding: 8rem 2rem;
  background: var(--ink);
  text-align: center;
  position: relative;
}

.closing-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.closing p {
  font-size: 1.15rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.8;
  font-weight: 300;
}

/* ===== CLOSING OFFER ===== */
.closing-offer {
  margin-top: 3.5rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.closing-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}

.closing-price-amount {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.closing-price-label {
  font-size: 0.9rem;
  color: rgba(250, 248, 245, 0.4);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.closing-sub {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.3);
  letter-spacing: 0.05em;
  margin-top: -0.5rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 2rem;
  background: var(--ink-light);
  text-align: center;
  border-top: 1px solid rgba(250, 248, 245, 0.05);
}

.footer p {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.3);
  font-weight: 400;
}

.footer a {
  color: var(--gold);
  text-decoration: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .journey-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journey-steps::before {
    display: none;
  }

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pillar-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 4rem 1.5rem;
  }

  .journey,
  .pillars,
  .closing {
    padding: 5rem 1.5rem;
  }

  .proof {
    padding: 4rem 1.5rem;
  }
}
