/* ===================================
   ReviewPulse — Brand Stylesheet
   =================================== */

:root {
  --forest: #0B3D2E;
  --forest-light: #0F4D38;
  --forest-dark: #061E17;
  --cream: #FAF6F0;
  --cream-dark: #F0EBE0;
  --gold: #C4973D;
  --gold-light: #D4AC50;
  --text-dark: #0B3D2E;
  --text-light: #FAF6F0;
  --text-muted: #5A6B5F;
  --text-muted-light: rgba(250, 246, 240, 0.6);
  --border: rgba(196, 151, 61, 0.25);
  --card-bg: rgba(255, 255, 255, 0.04);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---- Typography ---- */
h1, h2, h3 {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  line-height: 1.15;
}

/* ---- Navigation ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11, 61, 46, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.2rem;
  color: var(--text-light);
  letter-spacing: -0.01em;
}

.nav-tagline {
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-cta {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  border: 1.5px solid var(--gold);
  border-radius: 100px;
  padding: 6px 18px;
  transition: all 0.2s ease;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--forest-dark);
}

/* ---- Hero ---- */
.hero {
  background: var(--forest);
  color: var(--text-light);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(196, 151, 61, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(196, 151, 61, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196, 151, 61, 0.12);
  border: 1px solid rgba(196, 151, 61, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.78rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 28px;
}

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

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-size: clamp(2rem, 3.5vw, 2.9rem);
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.12;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-pricing {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}

.cta-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.8rem;
  color: var(--gold);
}

.cta-period {
  font-size: 1rem;
  color: var(--text-muted-light);
}

.cta-note {
  font-size: 0.82rem;
  color: rgba(196, 151, 61, 0.7);
  font-style: italic;
}

/* Hero Right — Review Cards */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 22px 24px;
  backdrop-filter: blur(8px);
  position: relative;
}

.review-card-positive {
  border-color: rgba(196, 151, 61, 0.3);
  background: rgba(196, 151, 61, 0.06);
}

.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.star {
  width: 14px;
  height: 14px;
  display: inline-block;
}

.star.on {
  background: var(--gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.review-card-text {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.5;
}

.review-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted-light);
  margin-bottom: 14px;
}

.review-response {
  background: rgba(11, 61, 46, 0.5);
  border-radius: 10px;
  padding: 14px 16px;
  border-left: 3px solid var(--gold);
}

.response-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  font-weight: 500;
  display: block;
  margin-bottom: 6px;
}

.response-text {
  font-size: 0.8rem;
  color: rgba(250, 246, 240, 0.75);
  line-height: 1.55;
}

/* ---- Stats Row ---- */
.stats-row {
  background: var(--cream-dark);
  border-top: 1px solid rgba(11, 61, 46, 0.1);
  border-bottom: 1px solid rgba(11, 61, 46, 0.1);
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.stat {
  flex: 1;
  max-width: 260px;
  padding: 40px 36px;
  text-align: center;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 2.4rem;
  color: var(--forest);
  display: block;
  margin-bottom: 8px;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  background: rgba(11, 61, 46, 0.12);
  align-self: stretch;
  margin: 24px 0;
}

/* ---- Problem Section ---- */
.problem {
  background: var(--cream);
  padding: 100px 0;
}

.problem-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.problem-label, .features-label, .pricing-label, .testimonials-label, .process-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.problem-headline, .features-headline, .pricing-headline, .testimonials-headline, .process-headline {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--forest);
  max-width: 640px;
  margin-bottom: 64px;
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.problem-card {
  padding: 36px 32px;
  background: var(--forest);
  border-radius: 20px;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.problem-card::after {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(196, 151, 61, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.problem-icon {
  margin-bottom: 20px;
}

.problem-card h3 {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.65;
}

/* ---- Features ---- */
.features {
  background: var(--cream-dark);
  padding: 100px 0;
  border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.features-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  background: var(--cream);
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(11, 61, 46, 0.1);
}

.feature-icon-wrap {
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 10px;
}

.feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- Pricing ---- */
.pricing {
  background: var(--cream);
  padding: 100px 0;
}

.pricing-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.pricing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 56px;
  max-width: 540px;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-col {
  background: var(--cream-dark);
  border: 1px solid rgba(11, 61, 46, 0.1);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
}

.pricing-col-featured {
  background: var(--forest);
  border-color: var(--forest);
  color: var(--text-light);
  box-shadow: 0 24px 64px rgba(11, 61, 46, 0.25);
}

.pricing-popular {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 16px;
  border-radius: 100px;
}

.pricing-tier {
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  color: inherit;
  margin-bottom: 8px;
}

.pricing-amount {
  font-family: 'DM Serif Display', serif;
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-period {
  font-size: 0.82rem;
  color: inherit;
  opacity: 0.6;
  margin-bottom: 24px;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: inherit;
  opacity: 0.7;
}

.pricing-feature.on {
  opacity: 1;
}

.pricing-feature svg {
  flex-shrink: 0;
  margin-top: 2px;
}

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

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--forest-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--forest);
  color: var(--forest);
}

.pricing-col-featured .btn-secondary {
  border-color: var(--text-muted-light);
  color: var(--text-light);
}

.pricing-guarantee {
  text-align: center;
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ---- Testimonials ---- */
.testimonials {
  background: var(--forest);
  color: var(--text-light);
  padding: 100px 0;
}

.testimonials-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.testimonials-label {
  color: var(--gold);
}

.testimonials-headline {
  color: var(--text-light);
  max-width: 560px;
  margin-bottom: 64px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial {
  position: relative;
  padding: 36px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
}

.testimonial-featured {
  background: rgba(196, 151, 61, 0.1);
  border-color: rgba(196, 151, 61, 0.3);
}

.testimonial-quote-mark {
  font-family: 'DM Serif Display', serif;
  font-size: 4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: -8px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(250, 246, 240, 0.85);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
}

.author-meta {
  font-size: 0.78rem;
  color: var(--text-muted-light);
}

/* ---- Process ---- */
.process {
  background: var(--cream-dark);
  padding: 100px 0;
  border-top: 1px solid rgba(11, 61, 46, 0.08);
}

.process-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

.process-headline {
  max-width: 560px;
  margin-bottom: 64px;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex: 1;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  font-family: 'DM Serif Display', serif;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-arrow {
  display: flex;
  align-items: center;
  padding: 20px 16px 0;
  color: var(--gold);
}

/* ---- Closing ---- */
.closing {
  background: var(--forest);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.closing-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(196, 151, 61, 0.12) 0%, transparent 60%),
    radial-gradient(circle at 0% 50%, rgba(196, 151, 61, 0.05) 0%, transparent 50%);
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
  position: relative;
}

.closing-headline {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--text-light);
  margin-bottom: 24px;
  line-height: 1.2;
}

.closing-sub {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 40px;
}

.closing-ownership {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted-light);
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* ---- Footer ---- */
.footer {
  background: var(--forest-dark);
  padding: 48px 0;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'DM Serif Display', serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  margin-bottom: 8px;
}

.footer-legal {
  font-size: 0.75rem;
  color: rgba(90, 107, 95, 0.6);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-right {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .review-card {
    min-width: 280px;
  }

  .problem-grid,
  .features-grid,
  .pricing-table,
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .stat {
    max-width: 50%;
    padding: 32px 24px;
  }

  .stat-divider {
    display: none;
  }

  .process-steps {
    flex-direction: column;
    gap: 32px;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 60px 0 80px;
  }

  .problem-grid,
  .features-grid,
  .pricing-table,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    max-width: 100%;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .hero-inner,
  .problem-inner,
  .features-inner,
  .pricing-inner,
  .testimonials-inner,
  .process-inner,
  .closing-inner,
  .footer-inner {
    padding: 0 20px;
  }

  .pricing-col-featured {
    order: -1;
  }
}