/* ============================================
   GrowReach Dedicated Landing Page Styles
   Shared between /build-authority and /generate-leads
   ============================================ */

/* --- Hero Section --- */
.page-hero {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 24px;
  color: var(--gr-white);
}

.page-hero.brand-builder {
  background: linear-gradient(135deg, #1e3a5f 0%, #2563eb 100%);
}

.page-hero.lead-generator {
  background: linear-gradient(135deg, #0a66c2 0%, #16a34a 100%);
}

.page-hero h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 600px;
}

.page-hero .hero-sub {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 540px;
  margin-bottom: 32px;
  opacity: 0.95;
}

.page-hero .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--gr-white);
  color: var(--gr-blue);
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  min-width: 280px;
}

.page-hero .hero-cta:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.page-hero .hero-micro {
  font-size: 14px;
  margin-top: 16px;
  opacity: 0.85;
}

/* --- Problem Statement --- */
.problem-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px;
}

.problem-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gr-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.problem-section p {
  font-size: 18px;
  color: var(--gr-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.problem-section .transition-subhead {
  font-size: 20px;
  font-weight: 600;
  color: var(--gr-blue);
  margin-top: 24px;
}

/* --- Solution Section --- */
.solution-section {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px 64px;
}

.solution-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--gr-text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.solution-section p {
  font-size: 18px;
  color: var(--gr-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.checkmarks {
  list-style: none;
  margin-top: 24px;
}

.checkmarks li {
  font-size: 16px;
  color: var(--gr-text);
  padding: 8px 0 8px 32px;
  position: relative;
  line-height: 1.5;
}

.checkmarks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 8px;
  width: 24px;
  height: 24px;
  background: var(--gr-green);
  color: var(--gr-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

/* --- How It Works (3 Steps) --- */
.how-it-works-section {
  padding: 64px 24px;
  background: var(--gr-blue-light);
}

.how-it-works-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

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

.step-card .step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gr-blue);
  color: var(--gr-white);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gr-text);
}

.step-card p {
  font-size: 14px;
  color: var(--gr-text-muted);
  line-height: 1.6;
}

/* --- Example Comments --- */
.examples-section {
  padding: 64px 24px;
  max-width: 800px;
  margin: 0 auto;
}

.examples-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}

.examples-section .examples-sub {
  font-size: 15px;
  color: var(--gr-text-muted);
  text-align: center;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.comment-card {
  background: var(--gr-white);
  border: 1px solid var(--gr-border);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.comment-context {
  font-size: 13px;
  color: var(--gr-text-muted);
  font-weight: 600;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gr-border);
}

.comment-body {
  font-size: 15px;
  color: var(--gr-text);
  line-height: 1.7;
  font-style: normal;
}

.comment-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--gr-border);
  font-size: 13px;
  color: var(--gr-text-muted);
}

.comment-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- Funnel Visualization (Lead Generator only) --- */
.funnel-section {
  padding: 64px 24px;
  background: #f0fdf4;
  text-align: center;
}

.funnel-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.funnel-section .funnel-sub {
  font-size: 15px;
  color: var(--gr-text-muted);
  margin-bottom: 40px;
}

.funnel-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto 32px;
}

.funnel-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.funnel-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--gr-white);
}

.funnel-stage:nth-child(1) .funnel-circle { background: #2563eb; }
.funnel-stage:nth-child(3) .funnel-circle { background: #3b82f6; }
.funnel-stage:nth-child(5) .funnel-circle { background: #60a5fa; }
.funnel-stage:nth-child(7) .funnel-circle { background: #16a34a; }
.funnel-stage:nth-child(9) .funnel-circle { background: #15803d; }
.funnel-stage:nth-child(11) .funnel-circle { background: #166534; }

.funnel-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--gr-text);
}

.funnel-label {
  font-size: 12px;
  color: var(--gr-text-muted);
}

.funnel-arrow {
  font-size: 20px;
  color: var(--gr-text-muted);
  margin: 0 4px;
}

.funnel-summary {
  font-size: 15px;
  color: var(--gr-text);
  font-weight: 500;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* --- Anti-Positioning Banner --- */
.anti-positioning {
  padding: 48px 24px;
  background: #f8fafc;
  text-align: center;
  border-top: 1px solid var(--gr-border);
  border-bottom: 1px solid var(--gr-border);
}

.anti-positioning h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--gr-text);
}

.anti-positioning p {
  font-size: 16px;
  color: var(--gr-text);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 12px;
}

/* --- Social Proof Section --- */
.social-proof-section {
  padding: 64px 24px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.social-proof-section h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}

.social-proof-section .proof-intro {
  font-size: 16px;
  color: var(--gr-text-muted);
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.proof-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

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

.proof-metric .metric-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--gr-blue);
}

.proof-metric .metric-label {
  font-size: 14px;
  color: var(--gr-text-muted);
  margin-top: 4px;
}

.founder-quote {
  background: var(--gr-white);
  border: 1px solid var(--gr-border);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.founder-quote .quote-text {
  font-size: 16px;
  color: var(--gr-text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.founder-quote .quote-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--gr-text);
}

.founder-quote .quote-title {
  font-size: 13px;
  color: var(--gr-text-muted);
}

/* --- Pricing Teaser --- */
.pricing-teaser-section {
  padding: 48px 24px;
  text-align: center;
  background: var(--gr-blue-light);
}

.pricing-teaser-section h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.pricing-table {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.pricing-plan {
  background: var(--gr-white);
  border: 1px solid var(--gr-border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  min-width: 200px;
  max-width: 240px;
}

.pricing-plan .plan-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--gr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.pricing-plan .plan-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--gr-text);
  margin-bottom: 8px;
}

.pricing-plan .plan-desc {
  font-size: 13px;
  color: var(--gr-text-muted);
  line-height: 1.5;
}

.risk-reversal {
  font-size: 14px;
  color: var(--gr-text-muted);
  margin-bottom: 20px;
}

.see-plans-btn {
  display: inline-block;
  padding: 12px 32px;
  background: var(--gr-blue);
  color: var(--gr-white);
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: background-color 0.2s;
}

.see-plans-btn:hover {
  background: #1d4ed8;
}

/* --- Email Capture Section --- */
.email-capture {
  padding: 48px 24px;
  text-align: center;
}

.email-capture.brand-builder {
  background: var(--gr-blue);
  color: var(--gr-white);
}

.email-capture.lead-generator {
  background: #0a66c2;
  color: var(--gr-white);
}

.email-capture h2 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.email-capture .email-sub {
  font-size: 15px;
  opacity: 0.9;
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.email-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto 12px;
  gap: 8px;
}

.email-form input[type="email"] {
  flex: 1;
  padding: 14px 16px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  font-family: var(--gr-font);
}

.email-form input[type="email"]:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
}

.email-form button {
  padding: 14px 24px;
  background: var(--gr-white);
  color: var(--gr-blue);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s;
  white-space: nowrap;
}

.email-form button:hover {
  background: #f1f5f9;
}

.email-capture .email-privacy {
  font-size: 12px;
  opacity: 0.75;
}

.email-capture .email-confirm {
  display: none;
  padding: 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 15px;
  margin-top: 16px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Final CTA Section --- */
.final-cta {
  padding: 64px 24px;
  text-align: center;
  background: var(--gr-white);
}

.final-cta h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--gr-text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.final-cta .final-sub {
  font-size: 16px;
  color: var(--gr-text-muted);
  margin-bottom: 28px;
}

.final-cta .trial-btn {
  display: inline-block;
  padding: 18px 48px;
  background: var(--gr-blue);
  color: var(--gr-white);
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  min-width: 300px;
}

.final-cta .trial-btn:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
}

.final-cta .final-micro {
  font-size: 14px;
  color: var(--gr-text-muted);
  margin-top: 16px;
}

/* --- FAQ Section --- */
.faq-section {
  padding: 64px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

.faq-item {
  margin-bottom: 24px;
}

.faq-item h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--gr-text);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 15px;
  color: var(--gr-text-muted);
  line-height: 1.7;
}

/* --- Footer Cross-Sell --- */
.footer-cross-sell {
  background: var(--gr-blue-light);
  padding: 32px 24px;
  text-align: center;
}

.footer-cross-sell a {
  color: var(--gr-blue);
  font-weight: 600;
  font-size: 15px;
  text-decoration: underline;
}

/* ============================
   MOBILE LAYOUT (< 768px)
   ============================ */
@media (max-width: 767px) {
  .page-hero {
    padding: 40px 16px;
    min-height: auto;
  }

  .page-hero h1 {
    font-size: 26px;
  }

  .page-hero .hero-sub {
    font-size: 16px;
  }

  .page-hero .hero-cta {
    min-width: 100%;
  }

  .problem-section,
  .solution-section {
    padding: 40px 16px;
  }

  .problem-section h2,
  .solution-section h2 {
    font-size: 20px;
  }

  .problem-section p,
  .solution-section p {
    font-size: 16px;
  }

  .how-it-works-section {
    padding: 40px 16px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .examples-section {
    padding: 40px 16px;
  }

  .comment-card {
    padding: 20px;
  }

  .comment-body {
    font-size: 14px;
  }

  .funnel-section {
    padding: 40px 16px;
  }

  .funnel-flow {
    flex-direction: column;
    gap: 12px;
  }

  .funnel-arrow {
    transform: rotate(90deg);
  }

  .anti-positioning {
    padding: 32px 16px;
  }

  .anti-positioning h2 {
    font-size: 20px;
  }

  .anti-positioning p {
    font-size: 15px;
  }

  .social-proof-section {
    padding: 40px 16px;
  }

  .proof-metrics {
    gap: 24px;
  }

  .proof-metric .metric-number {
    font-size: 26px;
  }

  .pricing-teaser-section {
    padding: 32px 16px;
  }

  .pricing-table {
    flex-direction: column;
    align-items: center;
  }

  .pricing-plan {
    width: 100%;
    max-width: 320px;
  }

  .email-capture {
    padding: 32px 16px;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form button {
    width: 100%;
  }

  .final-cta {
    padding: 40px 16px;
  }

  .final-cta h2 {
    font-size: 22px;
  }

  .final-cta .trial-btn {
    min-width: 100%;
  }

  .faq-section {
    padding: 40px 16px;
  }

  .faq-item h3 {
    font-size: 16px;
  }

  .faq-item p {
    font-size: 14px;
  }
}