:root {
  --gold: #c5a467;
  --gold-light: #d4b87a;
  --dark: #1a1a1a;
  --dark-bg: #0d0d0d;
  --cream: #faf6f0;
  --cream-dark: #f0e8da;
  --text-dark: #2c2c2c;
  --text-light: #f5f0e8;
  --text-muted: #8a8a8a;
  --rose: #c4928a;
  --deep-plum: #3d2b3d;
  --section-dark: #111111;
  --section-medium: #1a1614;
  --border-subtle: rgba(197, 164, 103, 0.15);
}

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

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}

.serif {
  font-family: "Playfair Display", serif;
}

.cormorant {
  font-family: "Cormorant Garamond", serif;
}

.announcement-bar {
  background: linear-gradient(
    90deg,
    var(--gold),
    var(--gold-light),
    var(--gold)
  );
  color: var(--dark);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-subtle);
}

.nav-logo {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.hero-sales {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 40px 100px;
  position: relative;
  background:
    radial-gradient(
      ellipse at 50% 30%,
      rgba(197, 164, 103, 0.06) 0%,
      transparent 70%
    ),
    var(--dark-bg);
}

.hero-sales::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(197, 164, 103, 0.03) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(196, 146, 138, 0.03) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.hero-sales-content {
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 30px;
  font-weight: 500;
}

.hero-sales h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 30px;
  font-weight: 400;
}

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

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 20px;
  line-height: 1.8;
  font-weight: 300;
}

.hero-price-tag {
  display: inline-block;
  margin: 30px 0;
  padding: 15px 40px;
  border: 1px solid var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-details {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 2;
}

.hero-details span {
  display: inline-block;
  margin: 0 10px;
  color: rgba(197, 164, 103, 0.3);
}

.cta-button {
  display: inline-block;
  padding: 18px 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(197, 164, 103, 0.3);
}

.cta-micro {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 15px;
  font-weight: 300;
  letter-spacing: 0.5px;
}

.section {
  padding: 100px 40px;
}

.section-dark {
  background: var(--section-dark);
}

.section-medium {
  background: var(--section-medium);
}

.container {
  max-width: 900px;
  margin: 0 auto;
}

.container-wide {
  max-width: 1100px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.3;
  margin-bottom: 25px;
  font-weight: 400;
}

.section-title em {
  color: var(--gold);
  font-style: italic;
}

.section-text {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  font-weight: 300;
}

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

.divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 40px auto;
}

.divider-left {
  margin: 40px 0;
}

.pain-list {
  list-style: none;
  padding: 0;
}

.pain-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 1.05rem;
  color: var(--cream);
  font-weight: 300;
  position: relative;
  padding-left: 35px;
}

.pain-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 22px;
}

.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 50px;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 35px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.included-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  min-width: 45px;
  line-height: 1;
  padding-top: 5px;
}

.included-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 10px;
  font-weight: 400;
}

.included-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  text-align: center;
  padding: 40px 30px;
  border: 1px solid var(--border-subtle);
  position: relative;
}

.step-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 20px;
  line-height: 1;
}

.step-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  color: var(--cream);
  margin-bottom: 15px;
  font-weight: 400;
}

.step-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.testimonial-card {
  padding: 40px;
  border: 1px solid var(--border-subtle);
  background: rgba(197, 164, 103, 0.02);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: 15px;
  left: 25px;
  line-height: 1;
}

.testimonial-quote {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--cream);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 1px;
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 300;
}

.testimonial-featured {
  grid-column: 1 / -1;
  background: rgba(197, 164, 103, 0.04);
  border-color: var(--gold);
}

.for-you-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}

.for-you-col h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin-bottom: 25px;
  font-weight: 400;
}

.for-you-col h3.yes {
  color: var(--gold);
}

.for-you-col h3.no {
  color: var(--rose);
}

.for-you-list {
  list-style: none;
  padding: 0;
}

.for-you-list li {
  padding: 12px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 25px;
  position: relative;
  line-height: 1.6;
}

.for-you-list.yes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.7rem;
  top: 14px;
}

.for-you-list.no li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose);
  font-size: 0.7rem;
  top: 14px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 1px solid var(--gold);
  opacity: 0.3;
}

.about-image {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(20%);
  position: relative;
  z-index: 1;
}

.about-credentials {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.about-credentials li {
  padding: 8px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
}

.about-credentials li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 11px;
}

.open-letter {
  max-width: 700px;
  margin: 0 auto;
}

.open-letter p {
  font-size: 1rem;
  line-height: 2;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 25px;
}

.open-letter p:first-of-type::first-letter {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  float: left;
  line-height: 1;
  padding-right: 12px;
  padding-top: 5px;
  color: var(--gold);
}

.open-letter .signature {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 40px;
}

.value-stack {
  max-width: 600px;
  margin: 50px auto 0;
}

.value-item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}

.value-item .label {
  color: var(--cream);
  font-weight: 300;
  text-align: left;
}

.value-item .amount {
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 300;
}

.value-total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 1.1rem;
  border-bottom: 2px solid var(--gold);
}

.value-total .label {
  color: var(--gold);
  font-weight: 500;
}

.value-total .amount {
  color: var(--gold);
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
}

.pricing-box {
  max-width: 600px;
  margin: 60px auto 0;
  border: 1px solid var(--gold);
  text-align: center;
  padding: 60px 50px;
  background: rgba(197, 164, 103, 0.03);
  position: relative;
}

.pricing-box::before {
  content: "💎";
  font-size: 2rem;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-bg);
  padding: 0 20px;
}

.pricing-label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 500;
}

.pricing-name {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 20px;
  font-weight: 400;
}

.pricing-amount {
  font-family: "Playfair Display", serif;
  font-size: 3.5rem;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}

.pricing-details {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 2;
  font-weight: 300;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin-bottom: 35px;
  text-align: left;
}

.pricing-includes li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--cream);
  font-weight: 300;
  padding-left: 25px;
  position: relative;
  border-bottom: 1px solid rgba(197, 164, 103, 0.08);
}

.pricing-includes li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 13px;
}

.pricing-box .cta-button {
  width: 100%;
  display: block;
  text-align: center;
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 40px;
  border: 1px solid var(--gold);
  background: rgba(197, 164, 103, 0.03);
}

.guarantee-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.guarantee-box h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 15px;
  font-weight: 400;
}

.guarantee-box p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.risk-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 50px;
}

.risk-card {
  padding: 35px;
  border: 1px solid var(--border-subtle);
}

.risk-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 12px;
  font-weight: 400;
}

.risk-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 30px 0;
}

.faq-question {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 400;
}

.faq-question::after {
  content: "+";
  color: var(--gold);
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.3s ease;
}

.faq-answer.open {
  max-height: 360px;
  padding-top: 20px;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}

.urgency-strip {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 18px 40px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.final-cta {
  text-align: center;
  padding: 120px 40px;
  background:
    radial-gradient(
      ellipse at center,
      rgba(197, 164, 103, 0.08) 0%,
      transparent 70%
    ),
    var(--dark-bg);
  position: relative;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

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

.final-testimonial-quote {
  font-size: 1rem;
  line-height: 2;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border-subtle);
  padding: 15px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

.sticky-cta-text strong {
  color: var(--gold);
  font-weight: 500;
}

.sticky-cta .cta-button {
  padding: 12px 35px;
  font-size: 0.75rem;
}

.sales-footer {
  text-align: center;
  padding: 60px 40px 100px;
  border-top: 1px solid var(--border-subtle);
  background: var(--dark-bg);
}

.sales-footer p {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
  line-height: 2;
}

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

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
}

.footer-copy {
  margin-top: 15px;
}

.footer-links {
  margin-top: 8px;
}

.social-proof-bar {
  display: flex;
  justify-content: center;
  gap: 50px;
  padding: 40px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--section-dark);
}

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

.proof-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: var(--gold);
  display: block;
}

.proof-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 300;
}

@media (max-width: 768px) {
  .nav {
    padding: 15px 20px;
  }

  .nav-links {
    display: none;
  }

  .section {
    padding: 70px 25px;
  }

  .hero-sales {
    padding: 100px 25px 80px;
  }

  .hero-sales h1 {
    font-size: clamp(2.4rem, 12vw, 3.5rem);
  }

  .steps-grid,
  .for-you-grid,
  .testimonial-grid,
  .about-grid,
  .risk-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .social-proof-bar {
    flex-wrap: wrap;
    gap: 30px;
  }

  .included-item {
    gap: 18px;
  }

  .sticky-cta {
    flex-direction: column;
    gap: 10px;
    padding: 12px 20px;
  }

  .sticky-cta-text {
    font-size: 0.75rem;
  }

  .pricing-box {
    padding: 50px 30px;
  }

  .hero-price-tag {
    font-size: 1.6rem;
    padding: 12px 30px;
  }

  .final-cta {
    padding: 80px 25px;
  }
}
