:root {
  --forest: #1a3a2a;
  --forest-deep: #0f2218;
  --forest-light: #2d5a3f;
  --sage: #8faa8b;
  --sage-light: #b5ccb1;
  --sage-muted: #a3b89f;
  --ivory: #f5f1eb;
  --ivory-warm: #ebe5db;
  --cream: #faf8f5;
  --black: #1a1a1a;
  --black-matte: #2a2a2a;
  --gold: #b8965a;
  --gold-muted: #c4a46e;
  --gold-light: #d4be8e;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-light: #7a7a7a;
  --text-on-dark: #f5f1eb;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  background: var(--cream);
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.15;
}

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--forest);
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.8;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(26, 58, 42, 0.08);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-leaf {
  font-size: 22px;
  color: var(--forest);
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.5px;
}

.nav-tagline {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--sage-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(170deg, var(--forest-deep) 0%, var(--forest) 40%, var(--forest-light) 100%);
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(184, 150, 90, 0.12);
}

.hero-circle-1 {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  border-color: rgba(184, 150, 90, 0.08);
}

.hero-circle-2 {
  width: 400px;
  height: 400px;
  bottom: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(143, 170, 139, 0.08) 0%, transparent 70%);
}

.hero-circle-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  left: 10%;
  border-color: rgba(255, 255, 255, 0.04);
}

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

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 32px;
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: var(--ivory);
  margin-bottom: 28px;
  font-weight: 500;
}

.hero-accent {
  color: var(--sage-light);
  font-style: italic;
}

.hero-lede {
  font-size: 1.1rem;
  color: rgba(245, 241, 235, 0.75);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.9;
}

.hero-badges {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 20px;
  border: 1px solid rgba(184, 150, 90, 0.3);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-botanical {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 1;
  opacity: 0.15;
}

.botanical-ring {
  width: 120px;
  height: 120px;
  border: 1px solid var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 30s linear infinite;
}

@keyframes spin {
  100% { transform: rotate(360deg); }
}

.ring-text {
  font-size: 8px;
  letter-spacing: 3px;
  color: var(--gold-muted);
  text-transform: uppercase;
}

/* ===== SYMPTOMS ===== */
.symptoms {
  padding: 120px 0;
  background: var(--cream);
}

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

.symptom-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 28px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.symptom-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--gold-muted));
  opacity: 0;
  transition: var(--transition);
}

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

.symptom-card:hover::before {
  opacity: 1;
}

.symptom-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage-light), var(--sage));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--forest);
  margin-bottom: 20px;
}

.symptom-card h3 {
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 10px;
}

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

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  background: var(--forest-deep);
  color: var(--text-on-dark);
}

.process .section-title {
  color: var(--ivory);
}

.process .section-subtitle {
  color: rgba(245, 241, 235, 0.6);
}

.process-steps {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.process-step {
  display: grid;
  grid-template-columns: 80px 2px 1fr;
  gap: 40px;
  align-items: start;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-muted);
  line-height: 1;
  text-align: right;
}

.step-line {
  width: 2px;
  height: 100%;
  min-height: 80px;
  background: linear-gradient(180deg, var(--gold-muted), transparent);
}

.step-content h3 {
  font-size: 1.8rem;
  color: var(--ivory);
  margin-bottom: 12px;
}

.step-content p {
  font-size: 1rem;
  color: rgba(245, 241, 235, 0.65);
  line-height: 1.8;
  max-width: 500px;
}

.step-herbs {
  margin-top: 16px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--sage-muted);
}

/* ===== INCLUDED ===== */
.included {
  padding: 120px 0;
  background: var(--ivory);
}

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

.included-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  transition: var(--transition);
}

.included-card:hover {
  box-shadow: 0 12px 40px rgba(26, 58, 42, 0.06);
}

.included-featured {
  grid-column: 1 / -1;
  background: var(--forest);
  color: var(--ivory);
  padding: 48px;
  border: none;
  position: relative;
  overflow: hidden;
}

.included-featured::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.1), transparent);
}

.included-featured h3 {
  color: var(--ivory);
  font-size: 1.6rem;
}

.included-featured p {
  color: rgba(245, 241, 235, 0.7);
}

.included-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(184, 150, 90, 0.3);
  margin-bottom: 16px;
}

.included-icon {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.included-card h3 {
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 8px;
}

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

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 120px 0;
  background: var(--cream);
}

.philosophy-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: center;
}

.philosophy-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 20px;
}

.philosophy-values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--forest);
}

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

.philosophy-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.visual-card {
  background: var(--forest);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
}

.visual-card:first-child {
  grid-column: 1 / -1;
}

.visual-stat {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.visual-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.5);
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 0 80px;
  background: linear-gradient(170deg, var(--ivory) 0%, var(--ivory-warm) 100%);
  text-align: center;
}

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

.closing-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--forest);
  margin-bottom: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.closing-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 48px;
}

.closing-disclaimer {
  padding-top: 40px;
  border-top: 1px solid rgba(26, 58, 42, 0.1);
}

.closing-disclaimer p {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 0;
  background: var(--forest-deep);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ivory);
}

.footer-text p {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.5);
}

.footer-fine {
  font-size: 0.7rem !important;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .symptom-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 50px 2px 1fr;
    gap: 20px;
  }

  .step-number {
    font-size: 2rem;
  }

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

  .philosophy-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .philosophy-visual {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 100px 20px 60px;
    min-height: 90vh;
  }

  .nav-tagline {
    display: none;
  }

  .hero-botanical {
    display: none;
  }

  .included-featured {
    padding: 32px;
  }

  .visual-stat {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .badge {
    width: 100%;
    text-align: center;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-number {
    text-align: left;
  }

  .step-line {
    display: none;
  }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  padding: 18px 44px;
  background: var(--gold);
  color: white;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 100px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--gold-muted);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(184, 150, 90, 0.35);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  background: transparent;
  color: var(--forest);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 100px;
  border: 2px solid var(--forest);
  transition: var(--transition);
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--forest);
  color: var(--ivory);
  transform: translateY(-2px);
}

/* ===== HERO CTA ===== */
.hero-cta-block {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hero-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
}

.hero-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}

.hero-price-note {
  font-size: 0.8rem;
  color: rgba(245, 241, 235, 0.55);
  font-weight: 400;
  letter-spacing: 0.5px;
}

.hero-btn {
  font-size: 1rem;
  padding: 20px 52px;
}

.hero-guarantee {
  font-size: 0.75rem;
  color: rgba(245, 241, 235, 0.45);
  letter-spacing: 0.5px;
}

/* ===== PRICING BLOCK (inside included) ===== */
.pricing-block {
  margin-top: 72px;
  padding: 56px;
  background: var(--forest);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-block::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 150, 90, 0.08), transparent);
}

.pricing-value-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.pricing-was {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.45);
  text-decoration: line-through;
}

.pricing-arrow {
  font-size: 1.2rem;
  color: var(--gold-muted);
}

.pricing-now {
  font-size: 1.1rem;
  color: var(--ivory);
  font-weight: 500;
}

.pricing-now strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: var(--gold-light);
}

.pricing-btn {
  font-size: 1rem;
  padding: 20px 52px;
  margin-bottom: 16px;
}

.pricing-fine {
  font-size: 0.75rem;
  color: rgba(245, 241, 235, 0.35);
  letter-spacing: 0.5px;
}

/* ===== ORDER BUMP ===== */
.order-bump-section {
  padding: 0 0 80px;
  background: var(--ivory);
}

.order-bump-box {
  border: 2px dashed var(--gold-muted);
  border-radius: var(--radius-lg);
  padding: 48px;
  background: var(--cream);
  position: relative;
}

.order-bump-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.order-bump-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}

.order-bump-left {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.order-bump-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 4px;
}

.order-bump-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.2;
}

.order-bump-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.order-bump-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.order-bump-list li {
  font-size: 0.85rem;
  color: var(--forest);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.order-bump-right {
  flex-shrink: 0;
}

.order-bump-price-box {
  background: white;
  border: 1px solid rgba(26, 58, 42, 0.08);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  min-width: 220px;
}

.order-bump-strikethrough {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 6px;
}

.order-bump-price {
  font-size: 1rem;
  color: var(--forest);
  font-weight: 500;
  margin-bottom: 20px;
}

.order-bump-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1.1;
  margin-top: 4px;
}

.order-bump-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.order-bump-fine {
  font-size: 0.7rem;
  color: var(--text-light);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  padding: 120px 0;
  background: var(--cream);
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 36px 32px;
  border: 1px solid rgba(26, 58, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.85;
  font-style: normal;
  flex: 1;
}

.testimonial-card blockquote em {
  color: var(--forest);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--forest-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory);
  flex-shrink: 0;
}

.author-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--forest);
}

.author-detail {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 2px;
}

/* ===== FAQ ===== */
.faq {
  padding: 120px 0;
  background: var(--forest-deep);
}

.faq .section-label {
  color: var(--gold-muted);
}

.faq .section-title {
  color: var(--ivory);
}

.faq-grid {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid rgba(245, 241, 235, 0.08);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ivory);
  line-height: 1.5;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--gold-light);
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-muted);
  flex-shrink: 0;
  font-weight: 300;
  transition: var(--transition);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

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

.faq-answer p {
  font-size: 0.95rem;
  color: rgba(245, 241, 235, 0.65);
  line-height: 1.85;
  padding-bottom: 24px;
}

/* ===== CLOSING CTA ===== */
.closing-cta-block {
  margin: 0 auto 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.closing-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  justify-content: center;
}

.closing-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.2rem;
  font-weight: 300;
  color: var(--forest);
  line-height: 1;
}

.closing-price-note {
  font-size: 0.8rem;
  color: var(--text-light);
}

.closing-btn {
  font-size: 1rem;
  padding: 20px 52px;
}

.closing-trust {
  display: flex;
  gap: 24px;
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== THANK YOU PAGE ===== */
.thankyou-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(170deg, var(--forest-deep) 0%, var(--forest) 60%, var(--forest-light) 100%);
}

.thankyou-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}

.thankyou-title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--ivory);
  margin-bottom: 20px;
}

.thankyou-text {
  font-size: 1.05rem;
  color: rgba(245, 241, 235, 0.7);
  line-height: 1.9;
  margin-bottom: 48px;
}

.thankyou-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 56px;
  text-align: left;
}

.thankyou-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(245, 241, 235, 0.06);
  border-radius: var(--radius);
  padding: 20px 24px;
  font-size: 0.95rem;
  color: rgba(245, 241, 235, 0.8);
  line-height: 1.6;
}

.thankyou-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.thankyou-bump {
  background: rgba(245, 241, 235, 0.06);
  border: 1px solid rgba(184, 150, 90, 0.25);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 40px;
}

.thankyou-bump-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ivory);
  margin-bottom: 8px;
}

.thankyou-bump-sub {
  font-size: 0.9rem;
  color: rgba(245, 241, 235, 0.55);
  margin-bottom: 20px;
}

.thankyou-bump .btn-secondary {
  color: var(--gold-light);
  border-color: var(--gold-muted);
}

.thankyou-bump .btn-secondary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

.thankyou-back {
  font-size: 0.85rem;
  color: rgba(245, 241, 235, 0.4);
  text-decoration: none;
  transition: var(--transition);
}

.thankyou-back:hover {
  color: rgba(245, 241, 235, 0.7);
}

/* ===== RESPONSIVE (additions) ===== */
@media (max-width: 960px) {
  .order-bump-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .order-bump-price-box {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .pricing-block {
    padding: 36px 24px;
  }

  .order-bump-box {
    padding: 40px 24px;
  }

  .order-bump-left {
    flex-direction: column;
    gap: 12px;
  }

  .closing-trust {
    gap: 12px;
  }

  .hero-price {
    font-size: 2.2rem;
  }
}
