/* ============================================================
   RescueYourLeads - Shared Styles
   Used across homepage, service pages, pricing, and about.
   ============================================================ */

:root {
  --bg: #eef4ec;
  --ink: #122119;
  --muted: #456252;
  --line: rgba(24, 78, 46, 0.16);
  --card: rgba(255, 255, 255, 0.9);
  --brand-1: #205b38;
  --brand-2: #2f8b57;
  --brand-3: #89c89e;
  --shadow: 0 18px 45px rgba(18, 56, 35, 0.14);
}

/* --- RESET & BASE --- */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Avenir Next", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, #d9ead9 0%, transparent 48%),
    radial-gradient(circle at 88% 8%, #cfe7d1 0%, transparent 42%),
    linear-gradient(165deg, #f7fbf5 0%, #eef4ec 40%, #e3efdf 100%);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 16px;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 78, 46, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 78, 46, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
  z-index: -2;
}

/* --- BACKGROUND ORBS --- */

.orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

.orb-a {
  width: 360px;
  height: 360px;
  background: #6fb085;
  top: -90px;
  left: -80px;
  animation: floaty 16s ease-in-out infinite;
}

.orb-b {
  width: 380px;
  height: 380px;
  background: #3e8f63;
  right: -130px;
  top: 240px;
  animation: floaty 20s ease-in-out infinite reverse;
}

/* --- TYPOGRAPHY --- */

h1, h2, h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.08;
  margin: 0;
}

h1 {
  margin-top: 12px;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: -0.02em;
  max-width: 19ch;
}

h2 {
  font-size: clamp(28px, 3vw, 42px);
  max-width: 28ch;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  margin: 0;
}

a {
  color: var(--brand-1);
}

.sub {
  margin: 16px 0 0;
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.5;
  color: var(--muted);
  max-width: 56ch;
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: #2f6c4a;
  font-weight: 700;
}

/* --- GRADIENT TEXT --- */

.gradient-text {
  background: linear-gradient(135deg, #c4553a, #e0875d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- COLOR HIGHLIGHTS --- */

.hl-warn {
  color: #c4553a;
  font-weight: 800;
}

.hl-good {
  color: #1d7c4b;
  font-weight: 800;
}

/* --- LAYOUT --- */

.site {
  width: min(1140px, 100% - 36px);
  margin: 22px auto 44px;
}

/* --- NAVIGATION --- */

.top-nav {
  width: min(1140px, 100% - 36px);
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-weight: 800;
  color: #173523;
  text-decoration: none;
  font-size: 24px;
  letter-spacing: -0.02em;
}

.brand-logo {
  width: auto;
  height: 80px;
  flex-shrink: 0;
  object-fit: contain;
  margin: -16px -20px -16px -16px;
}

.footer-brand .brand-logo {
  height: 28px;
  width: auto;
  margin: -4px -6px -4px -4px;
}

.brand-dot {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  transition: color 160ms ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  transition: width 250ms cubic-bezier(.22, 1, .36, 1);
}

.nav-link:hover {
  color: var(--ink);
}

.nav-link:hover::after {
  width: 100%;
}

/* --- BUTTONS --- */

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease;
  display: inline-block;
  cursor: pointer;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(28, 95, 56, 0.33);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: none;
  animation: shimmer 4s ease-in-out infinite;
}

.btn-secondary {
  color: var(--brand-1);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(32, 91, 56, 0.24);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 10px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 18px;
}

/* --- SCROLL REVEAL --- */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(.22, 1, .36, 1), transform 700ms cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children: cards, steps, etc. animate in sequence */
.reveal.visible .problem-card,
.reveal.visible .step,
.reveal.visible .service-card,
.reveal.visible .testimonial-card,
.reveal.visible .objection-card,
.reveal.visible .value-card,
.reveal.visible .tier,
.reveal.visible .faq-item,
.reveal.visible .roi-card {
  animation: stagger-in 600ms cubic-bezier(.22, 1, .36, 1) both;
}

.reveal.visible :nth-child(1) { animation-delay: 0ms; }
.reveal.visible :nth-child(2) { animation-delay: 80ms; }
.reveal.visible :nth-child(3) { animation-delay: 160ms; }
.reveal.visible :nth-child(4) { animation-delay: 240ms; }
.reveal.visible :nth-child(5) { animation-delay: 320ms; }

/* Stagger children slightly when parent becomes visible */
.top-nav.reveal { transition-delay: 0ms; }
.hero.reveal { transition-delay: 80ms; }

/* --- ANIMATIONS --- */

@keyframes floaty {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 22px, 0); }
}

@keyframes sheen {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stagger-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(29, 124, 75, 0); }
  50% { box-shadow: 0 0 0 8px rgba(29, 124, 75, 0.12); }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

@keyframes subtle-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes brand-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(58, 130, 86, 0.2); }
  50% { box-shadow: 0 0 0 10px rgba(58, 130, 86, 0.08); }
}

/* --- CARD BASE --- */

.hero,
.section {
  border: 1px solid var(--line);
  background: var(--card);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.section {
  margin-top: 18px;
  padding: 28px;
}

.section-head {
  margin-bottom: 20px;
}

/* --- SECTION CTA --- */

.section-cta {
  margin-top: 24px;
  text-align: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- TRUST BADGES --- */

.trust-badges {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(32, 91, 56, 0.06);
  border: 1px solid rgba(32, 91, 56, 0.14);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-1);
}

.trust-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-2);
  flex-shrink: 0;
}

/* --- STAR RATINGS --- */

.stars {
  color: #e8a317;
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

/* --- CARD ICONS --- */

.card-icon {
  display: block;
  margin-bottom: 10px;
  opacity: 0.85;
}

.step-icon {
  display: block;
  margin-bottom: 6px;
  opacity: 0.8;
}

.service-icon {
  display: block;
  margin-bottom: 8px;
  opacity: 0.8;
}

/* --- HERO --- */

.hero {
  padding: 34px;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 28px;
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.proof-text {
  margin-top: 16px;
  color: #3f6b50;
  font-weight: 600;
  font-size: 15px;
}

/* Hero Phone Preview */

.hero-preview {
  border: 1px solid rgba(30, 96, 58, 0.2);
  border-radius: 18px;
  background: linear-gradient(160deg, #f4fcf4, #edf7ec 55%, #f9fffa);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 150ms ease;
  will-change: transform;
}

.hero-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.42) 50%, transparent 80%);
  animation: sheen 8s linear infinite;
  pointer-events: none;
}

.preview-label {
  margin: 0 0 12px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #335f46;
  font-weight: 700;
}

.phone-frame {
  border: 1px solid rgba(36, 92, 55, 0.25);
  border-radius: 20px;
  padding: 12px;
  background: #ffffff;
  display: grid;
  gap: 8px;
}

.sms-row {
  border-radius: 14px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  max-width: 92%;
}

.sms-row p {
  margin: 0;
}

.sms-row.outbound {
  background: #eaf6ec;
  border: 1px solid rgba(45, 120, 74, 0.18);
  justify-self: start;
}

.sms-row.inbound {
  background: #1f5f39;
  color: #fff;
  justify-self: end;
}

.sms-row.accent {
  background: linear-gradient(135deg, #2f8754, #3a9c63);
  color: #fff;
}

/* SMS Typing Animation */

.sms-animated {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.pulse-note {
  margin: 12px 0 0;
  font-size: 14px;
  color: #28573e;
  font-weight: 700;
}

/* --- PROBLEM SECTION --- */

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

.problem-card {
  border: 1px solid rgba(30, 96, 58, 0.12);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(145deg, #fff9f6, #fff);
  border-left: 4px solid #c4553a;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(196, 85, 58, 0.1);
}

.problem-card p {
  color: #3d2f2a;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

/* --- HOW IT WORKS (Timeline) --- */

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.step {
  border: 1px solid rgba(30, 96, 58, 0.18);
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.step:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(29, 124, 75, 0.12);
  border-color: rgba(29, 124, 75, 0.35);
}

.step-num {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 28px;
  color: #287547;
}

.step h3 {
  margin-top: 6px;
  font-size: 24px;
}

.step p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

/* --- SERVICES GRID --- */

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.services-grid .service-card {
  width: calc((100% - 28px) / 3);
  min-width: 0;
}

.service-card {
  border: 1px solid rgba(30, 96, 58, 0.18);
  border-radius: 16px;
  padding: 20px;
  background: linear-gradient(145deg, #f8fff9, #eff7ef);
  text-decoration: none;
  color: var(--ink);
  transition: transform 180ms ease, box-shadow 180ms ease;
  display: block;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(28, 95, 56, 0.18);
}

.service-num {
  display: inline-block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 20px;
  color: var(--brand-2);
  margin-bottom: 6px;
}

.service-card h3 {
  margin-bottom: 6px;
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* --- ROI CALCULATOR --- */

.roi-section {
  border-left: 6px solid var(--brand-2);
  animation: glow-pulse 3s ease-in-out infinite;
}

.roi-calculator {
  max-width: 900px;
}

.roi-input-group {
  margin-bottom: 24px;
}

.roi-input-group label {
  display: block;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.roi-slider-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.roi-slider-row input[type="range"] {
  flex: 1;
  height: 8px;
  appearance: none;
  background: linear-gradient(90deg, var(--brand-3), var(--brand-1));
  border-radius: 4px;
  outline: none;
  cursor: pointer;
}

.roi-slider-row input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-1);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

.roi-slider-row input[type="range"]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-1);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  cursor: pointer;
}

.roi-slider-value {
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--brand-1);
  min-width: 100px;
  text-align: right;
}

.roi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.roi-card {
  border: 1px solid rgba(30, 96, 58, 0.18);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.roi-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 8px;
}

.roi-big {
  font-family: "Fraunces", Georgia, serif;
  font-size: 42px;
  color: var(--brand-1);
  line-height: 1;
  margin-bottom: 8px;
}

.roi-sub {
  font-size: 14px;
  color: var(--muted);
}

.roi-cost-card {
  background: #f9f9f7;
}

.roi-return-card {
  background: linear-gradient(145deg, #f0faf2, #e6f5e9);
  border-color: rgba(45, 132, 81, 0.3);
}

.roi-return-card .roi-big {
  color: #1a7a3e;
}

.roi-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  font-style: italic;
}

/* --- TESTIMONIALS --- */

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

.testimonial-card {
  border: 1px solid rgba(30, 96, 58, 0.18);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(29, 124, 75, 0.12);
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 800;
  font-size: 15px;
  color: var(--brand-1);
}

.testimonial-detail {
  font-size: 13px;
  color: var(--muted);
  margin-top: 2px;
}

/* --- OBJECTION HANDLING --- */

.objection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.objection-card {
  border: 1px solid rgba(30, 96, 58, 0.14);
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.objection-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(18, 56, 35, 0.08);
}

.objection-card:last-child {
  grid-column: 1 / -1;
}

.objection-card h3 {
  font-size: 18px;
  color: #6b4423;
  margin-bottom: 8px;
  font-style: italic;
}

.objection-card p {
  color: var(--muted);
  line-height: 1.55;
}

/* --- FINAL CTA --- */

.final-cta {
  text-align: center;
  padding: 48px 28px;
  border-left: 6px solid var(--brand-2);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 124, 75, 0.06) 0%, transparent 70%);
  animation: floaty 10s ease-in-out infinite;
  pointer-events: none;
}

.final-cta .sub {
  margin: 12px auto 0;
  max-width: 44ch;
}

.final-cta .btn {
  margin-top: 24px;
}

.cta-note {
  margin-top: 16px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

/* --- HOW IT WORKS FLARE --- */

.how-it-works-section {
  border-left: 6px solid var(--brand-2);
}

.step-highlight {
  background: linear-gradient(160deg, #fff 40%, #f4fbf6) !important;
  border-color: rgba(29, 124, 75, 0.22) !important;
  position: relative;
  overflow: hidden;
}

.step-highlight::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, rgba(29, 124, 75, 0.06), transparent 70%);
  pointer-events: none;
}

.step-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, #e8f5ee, #d1eddb);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.step-icon-wrap .step-icon {
  margin-bottom: 0;
}

.step-result {
  margin-top: 12px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(29, 124, 75, 0.06), rgba(29, 124, 75, 0.02));
  border-radius: 8px;
  border-left: 3px solid var(--brand-2);
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-1);
  line-height: 1.4;
}

/* --- FINAL CTA UPGRADED --- */

.final-cta-upgraded {
  padding: 56px 36px;
  background: linear-gradient(160deg, #fff 30%, #f0faf3 70%, #e6f5ea);
  border-left: 6px solid var(--brand-2);
  position: relative;
  overflow: hidden;
}

.final-cta-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 124, 75, 0.08) 0%, transparent 60%);
  animation: floaty 8s ease-in-out infinite;
  pointer-events: none;
}

.final-cta-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c4553a, #e0875d);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: subtle-bounce 3s ease-in-out infinite;
}

.final-cta-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 28px 0 8px;
  flex-wrap: wrap;
}

.final-cta-stat {
  text-align: center;
}

.final-cta-stat-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-1);
  line-height: 1;
}

.final-cta-stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  max-width: 18ch;
}

.final-cta-btn {
  padding: 20px 44px;
  font-size: 19px;
  animation: glow-pulse 3s ease-in-out infinite;
}

/* --- ABOUT PAGE FINAL CTA --- */

.about-final-cta {
  text-align: center;
  padding: 56px 36px;
  background: linear-gradient(160deg, #fff 30%, #f0faf3 70%, #e6f5ea);
  border-left: 6px solid var(--brand-2);
  position: relative;
  overflow: hidden;
}

.about-final-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 124, 75, 0.07) 0%, transparent 65%);
  animation: floaty 10s ease-in-out infinite;
  pointer-events: none;
}

.about-final-cta::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 124, 75, 0.05) 0%, transparent 65%);
  animation: floaty 12s ease-in-out infinite reverse;
  pointer-events: none;
}

.about-cta-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #c4553a, #e0875d);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: subtle-bounce 3s ease-in-out infinite;
}

.about-final-cta .sub {
  margin: 12px auto 0;
  max-width: 44ch;
}

.about-cta-proof {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 28px 0 8px;
  flex-wrap: wrap;
}

.about-cta-stat {
  text-align: center;
}

.about-cta-stat-num {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--brand-1);
  line-height: 1;
}

.about-cta-stat-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
  max-width: 20ch;
}

.about-cta-btn {
  padding: 20px 44px;
  font-size: 19px;
  animation: glow-pulse 3s ease-in-out infinite;
}

/* --- STICKY CTA BAR --- */

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 20px rgba(18, 56, 35, 0.1);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 300ms cubic-bezier(.22, 1, .36, 1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

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

.sticky-cta-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta-text {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

/* --- FOOTER --- */

.site-footer {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding: 28px 0 100px;
}

.footer-inner {
  width: min(1140px, 100% - 36px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-weight: 700;
  color: #173523;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

.footer-contact {
  display: flex;
  gap: 20px;
}

.footer-contact a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.footer-contact a:hover {
  color: var(--ink);
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  text-decoration: none;
  color: var(--muted);
  font-size: 13px;
}

.footer-legal a:hover {
  color: var(--ink);
}

.footer-copy {
  font-size: 13px;
  color: var(--muted);
}

/* --- LEGAL PAGES --- */

.legal-page {
  width: min(740px, 100% - 36px);
  margin: 0 auto;
  padding: 40px 0 60px;
}

.legal-page h1 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}

.legal-effective {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}

.legal-page h2 {
  font-size: 20px;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--ink);
}

.legal-page h3 {
  font-size: 16px;
  margin-top: 20px;
  margin-bottom: 8px;
  color: var(--ink);
}

.legal-page p {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--muted);
}

.legal-page ul {
  margin-bottom: 12px;
  padding-left: 20px;
}

.legal-page li {
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.6;
}

.legal-page li strong {
  color: var(--ink);
}

.legal-page a {
  color: var(--brand-2);
  text-decoration: none;
}

.legal-page a:hover {
  text-decoration: underline;
}

/* --- PRICING PAGE --- */

.pricing-hero {
  text-align: center;
  padding: 40px 28px;
}

.pricing-hero-upgraded {
  padding: 56px 28px 48px;
  background: linear-gradient(160deg, #fff 30%, #f0faf3 70%, #e6f5ea);
  border-left: 6px solid var(--brand-2);
  position: relative;
  overflow: hidden;
}

.pricing-hero-upgraded::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(47, 139, 87, 0.08), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.pricing-hero .sub {
  margin: 12px auto 0;
  max-width: 48ch;
}

.pricing-hero-proof {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.pricing-hero-stat {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(30, 96, 58, 0.15);
  border-radius: 40px;
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-1);
  backdrop-filter: blur(6px);
}

.pricing-hero-stat svg {
  color: var(--brand-2);
  flex-shrink: 0;
}

.pricing-final-cta {
  border-left: 6px solid var(--brand-2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 24px;
}

.tier {
  border: 1px solid rgba(30, 96, 58, 0.2);
  border-radius: 18px;
  padding: 28px;
  background: #fff;
}

.tier.featured {
  background: linear-gradient(155deg, #f3fff4, #e7f7ea 65%);
  box-shadow: 0 10px 24px rgba(37, 103, 61, 0.18);
  border-color: rgba(45, 132, 81, 0.4);
}

.tier-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--brand-2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.tier h3 {
  font-size: 28px;
  margin-bottom: 4px;
}

.tier-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 16px;
}

.price {
  font-family: "Fraunces", Georgia, serif;
  font-size: 48px;
  line-height: 1;
  color: var(--brand-1);
}

.price span {
  font-family: "Manrope", "Avenir Next", sans-serif;
  font-size: 16px;
  color: var(--muted);
  margin-left: 4px;
}

.price-sub {
  margin-top: 6px;
  font-size: 15px;
  color: var(--muted);
}

.tier-features {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.tier-features li {
  padding: 6px 0;
  padding-left: 22px;
  position: relative;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.tier-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-3);
}

.tier .btn {
  margin-top: 20px;
  width: 100%;
  text-align: center;
}

.pricing-note {
  text-align: center;
  margin-top: 20px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
}

/* Pricing FAQ */

.pricing-faq {
  margin-top: 18px;
}

.faq-list {
  display: grid;
  gap: 0;
}

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

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
}

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

/* --- ABOUT PAGE --- */

/* --- ABOUT HERO --- */

.about-hero-section {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 40px;
}

.about-hero-section .about-sub {
  margin-left: auto;
  margin-right: auto;
}

.about-headline {
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.1;
  margin-bottom: 16px;
  max-width: none;
}

/* --- FOUNDER CARD --- */

.founder-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 44px;
  align-items: start;
  margin-top: 18px;
  background: linear-gradient(160deg, #fff 60%, #f4fbf6);
  border: 1px solid rgba(30, 96, 58, 0.15);
  border-radius: 26px;
  padding: 40px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2), var(--brand-3));
}

.founder-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 100px;
}

.founder-img {
  width: 280px;
  height: 340px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(27, 45, 79, 0.22);
  border: 4px solid #fff;
  outline: 2px solid rgba(30, 96, 58, 0.12);
  transition: transform 400ms cubic-bezier(.22, 1, .36, 1), box-shadow 400ms ease;
}

.founder-img:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 20px 56px rgba(27, 45, 79, 0.28);
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: linear-gradient(135deg, #f0faf3, #e8f5ee);
  border: 1px solid rgba(29, 124, 75, 0.25);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-1);
}

.founder-bio h2 {
  font-size: 34px;
  margin-bottom: 4px;
}

.founder-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--brand-1);
  margin-bottom: 20px;
}

.founder-quote {
  margin: 0 0 24px;
  padding: 20px 24px;
  border-left: 4px solid var(--brand-2);
  background: linear-gradient(135deg, #f0faf3, #f7fcf8);
  border-radius: 0 14px 14px 0;
  font-family: "Fraunces", Georgia, serif;
  font-size: 19px;
  font-style: italic;
  line-height: 1.5;
  color: var(--brand-1);
}

.founder-bio p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
  font-size: 15.5px;
}

.founder-bio p:last-child {
  margin-bottom: 0;
}

.founder-mission {
  font-weight: 600;
  color: var(--ink) !important;
  padding: 16px 20px;
  background: rgba(32, 91, 56, 0.04);
  border-radius: 12px;
  border: 1px solid rgba(32, 91, 56, 0.1);
}

/* --- IMPACT GRID --- */

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.impact-card {
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid rgba(30, 96, 58, 0.15);
  border-radius: 16px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29, 124, 75, 0.12);
}

.impact-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.impact-icon.green {
  background: linear-gradient(135deg, #e8f5ee, #d1eddb);
  color: #1d7c4b;
}

.impact-icon.gold {
  background: linear-gradient(135deg, #fef7e6, #fde68a);
  color: #b8860b;
}

.impact-icon.blue {
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  color: #2563eb;
}

.impact-icon.red {
  background: linear-gradient(135deg, #fef2f2, #fee2e2);
  color: #dc2626;
}

.impact-number {
  display: block;
  font-family: "Fraunces", Georgia, serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  margin-bottom: 4px;
}

.impact-suffix {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  display: block;
  margin-top: 2px;
}

.impact-label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 8px;
}

/* --- STORY BLOCK --- */

.story-block {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 28px;
  align-items: start;
}

.story-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.story-content p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 14px;
}

.story-highlight {
  background: linear-gradient(135deg, #fef7e6, #fff9f0);
  border: 1px solid #f5dfaa;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.story-highlight svg {
  color: #c4880c;
  margin-bottom: 12px;
}

.highlight-stat {
  font-size: 18px;
  color: var(--heading);
  line-height: 1.4;
  margin-bottom: 8px;
}

.highlight-stat strong {
  color: #c4553a;
}

.highlight-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* --- VALUES (updated) --- */

.about-values {
  margin-top: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.value-card {
  border: 1px solid rgba(30, 96, 58, 0.18);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease;
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(29, 124, 75, 0.12);
  border-color: rgba(29, 124, 75, 0.35);
}

.value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #e8f5ee, #d1eddb);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.value-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* --- ABOUT TIMELINE --- */

.about-timeline {
  position: relative;
  padding-left: 40px;
  max-width: 640px;
  margin: 0 auto;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--green), rgba(29, 124, 75, 0.15));
}

.about-timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-marker {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  z-index: 1;
}


/* Pulsing rectangle around the "Today" timeline item */
.about-timeline-today .about-timeline-content {
  background: linear-gradient(135deg, #f0faf3, #e8f5ee);
  border: 2px solid rgba(29, 124, 75, 0.25);
  border-radius: 14px;
  padding: 20px 24px;
  position: relative;
  animation: today-pulse 3s ease-in-out infinite;
}

@keyframes today-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(29, 124, 75, 0);
    border-color: rgba(29, 124, 75, 0.25);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(29, 124, 75, 0.08), 0 4px 20px rgba(29, 124, 75, 0.1);
    border-color: rgba(29, 124, 75, 0.45);
  }
}

.about-timeline-today .about-timeline-content h3 {
  color: var(--brand-1);
}

.about-timeline-content h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--heading);
}

.about-timeline-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* --- SERVICE PAGES --- */

.service-hero {
  padding: 40px 34px;
}

.service-hero h1 {
  max-width: 24ch;
}

.service-hero .sub {
  max-width: 60ch;
}

.service-hero .btn {
  margin-top: 24px;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.service-roi {
  border-left: 6px solid var(--brand-2);
}

.service-roi .roi-example {
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
}

.service-roi .roi-example strong {
  color: var(--brand-1);
}

.service-testimonial {
  border: 1px solid rgba(30, 96, 58, 0.18);
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  max-width: 640px;
}

/* --- ONBOARDING STYLES --- */

.onboarding-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.onboarding-card {
  width: min(520px, 100%);
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 36px;
}

.onboarding-progress {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
}

.progress-dot {
  height: 6px;
  flex: 1;
  border-radius: 3px;
  background: rgba(30, 96, 58, 0.15);
  transition: background 300ms ease;
}

.progress-dot.active {
  background: var(--brand-2);
}

.progress-dot.done {
  background: var(--brand-1);
}

.onboarding-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
}

.onboarding-card .sub {
  font-size: 16px;
  margin-bottom: 24px;
}

.field-group {
  margin-bottom: 18px;
}

.field-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  color: var(--ink);
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease;
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-color: var(--brand-2);
}

.field-group textarea {
  min-height: 80px;
  resize: vertical;
}

.biz-type-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.biz-type-option {
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease;
}

.biz-type-option:hover {
  border-color: var(--brand-3);
  background: rgba(137, 200, 158, 0.1);
}

.biz-type-option.selected {
  border-color: var(--brand-1);
  background: rgba(32, 91, 56, 0.08);
}

.onboarding-actions {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.onboarding-actions .btn {
  flex: 1;
}

.help-link {
  display: block;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--muted);
}

.help-link a {
  color: var(--brand-1);
  font-weight: 700;
  text-decoration: none;
}

/* Onboarding confirmation */

.confirmation-flow {
  margin-top: 20px;
}

.flow-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.flow-step:last-child {
  border-bottom: none;
}

.flow-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--brand-2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}

.flow-step-text h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.flow-step-text p {
  margin-top: 2px;
  font-size: 14px;
  color: var(--muted);
}

/* --- RESPONSIVE --- */

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

  .timeline,
  .testimonial-grid,
  .roi-results {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid .service-card {
    width: calc((100% - 14px) / 2);
  }

  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 28px;
    gap: 28px;
  }

  .founder-photo {
    order: -1;
    position: static;
  }

  .founder-img {
    width: 240px;
    height: 300px;
  }

  .founder-quote {
    text-align: left;
  }

  .founder-mission {
    text-align: left;
  }

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

  .story-block {
    grid-template-columns: 1fr;
  }

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

  .service-steps {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 700px) {
  .site {
    width: min(1140px, 100% - 20px);
    margin: 14px auto 28px;
  }

  .top-nav {
    width: min(1140px, 100% - 20px);
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    gap: 14px;
  }

  .hero,
  .section,
  .founder-card {
    padding: 20px;
    border-radius: 18px;
  }

  .problem-grid,
  .timeline,
  .testimonial-grid,
  .objection-grid,
  .roi-results,
  .values-grid,
  .service-steps,
  .biz-type-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-card {
    width: 100%;
  }

  .objection-card:last-child {
    grid-column: auto;
  }

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

  .roi-slider-row {
    flex-direction: column;
    align-items: stretch;
  }

  .roi-slider-value {
    text-align: center;
    font-size: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .founder-card {
    grid-template-columns: 1fr;
    padding: 20px;
    gap: 20px;
  }

  .founder-img {
    width: 200px;
    height: 260px;
  }

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

  .story-block {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(28px, 7vw, 48px);
  }

  .sticky-cta-text {
    display: none;
  }

  .trust-badges {
    flex-direction: column;
    gap: 8px;
  }

  .final-cta-stats,
  .about-cta-proof {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .final-cta-stat-num,
  .about-cta-stat-num {
    font-size: 28px;
  }

  .final-cta-btn,
  .about-cta-btn {
    padding: 16px 32px;
    font-size: 17px;
  }

  .final-cta-upgraded,
  .about-final-cta {
    padding: 36px 20px;
  }

  .pricing-hero-proof {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .pricing-hero-upgraded {
    padding: 36px 20px;
  }
}
