﻿/* =========================================================
   MARKETING.CSS â€” Marketing service page (below-hero sections)
   ========================================================= */

/* ---- New to Ads? Don't Worry ---- */
.nta {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.nta .section-head { margin-bottom: 1.75rem; }

.nta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 980px;
  margin: 0 auto;
}

.nta-card {
  background: var(--surface);
  border: var(--border-1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.35rem;
  box-shadow: var(--shadow-2);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.nta-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-1);
}

.nta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--grad-green);
  color: #fff;
  margin-bottom: 0.9rem;
}

.nta-icon [data-lucide] { width: 20px; height: 20px; }

.nta-card h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.nta-card p {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nta-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 0.9rem;
  }
}

@media (max-width: 640px) {
  .nta { padding-top: 1.75rem; padding-bottom: 2rem; }
  .nta .section-head { margin-bottom: 1.25rem; }
  .nta-grid { gap: 0.75rem; }
  .nta-card { padding: 1.15rem 1rem; }
  .nta-icon { width: 36px; height: 36px; margin-bottom: 0.6rem; }
  .nta-icon [data-lucide] { width: 17px; height: 17px; }
  .nta-card h3 { font-size: 0.9rem; margin-bottom: 0.3rem; }
  .nta-card p { font-size: 0.8rem; }
}

/* ---- Sound Familiar? (pain points) â€” dark editorial layout ---- */
.pains {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0e1420 0%, #16203a 55%, #0e1420 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
}

.pains-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* Left copy */
.pains .section-head {
  align-items: flex-start;
  text-align: left;
  margin-bottom: 0;
}

.pains .section-eyebrow { color: #7ee08f; }
.pains .section-title { color: #fff; }

.pains-mark { color: #7ee08f; }

/* Sticky on desktop so the heading stays visible while scanning rows */
.pains-copy {
  position: sticky;
  top: calc(var(--mini-h) + var(--header-h) + 1.5rem);
}

/* Right: numbered rows with hairlines (no cards) */
.pains-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.1rem;
  align-items: start;
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pains-row:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pains-num {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.1;
  color: rgba(126, 224, 143, 0.9);
  font-variant-numeric: tabular-nums;
}

.pains-row h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.pains-row p {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .pains-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .pains-copy { position: static; }
}

@media (max-width: 640px) {
  .pains { padding: 1.75rem 0 2rem; }
  .pains-inner { gap: 1.25rem; }
  .pains-row { gap: 0.75rem; padding: 0.85rem 0; }
  .pains-num { font-size: 1rem; }
  .pains-row h3 { font-size: 0.9rem; }
  .pains-row p { font-size: 0.8rem; }
}

/* ---- Closing quote (after pain points) ---- */
.mk-quote {
  padding: clamp(2rem, 4vw, 3rem) 1.5rem clamp(2.5rem, 5vw, 4rem);
  text-align: center;
}

.mk-quote blockquote {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 1.4rem;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--navy);
}

/* Big decorative quote glyph above the text */
.mk-quote blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.6rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--green);
  opacity: 0.35;
  pointer-events: none;
}

@media (max-width: 640px) {
  .mk-quote { padding-bottom: 2rem; }
  .mk-quote blockquote { font-size: 1rem; }
}

/* ---- Our Approach (vertical stepper) ---- */
.appr {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.appr .section-head { margin-bottom: 2rem; }

.appr-steps {
  max-width: 760px;
  margin: 0 auto;
}

/* Each step: numbered badge column + body */
.appr-step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding-bottom: 2rem;
}

/* Timeline line connecting the badges */
.appr-step::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--green-light));
  opacity: 0.4;
}

.appr-step:last-child { padding-bottom: 0; }
.appr-step:last-child::before { display: none; }

.appr-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-green);
  color: #fff;
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  box-shadow: 0 6px 18px rgba(105, 159, 71, 0.35);
}

.appr-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
  padding-top: 0.25rem;
}

.appr-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

/* Green-tinted strip with the technical detail */
.appr-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  background: rgba(105, 159, 71, 0.08);
  border: 1px solid rgba(105, 159, 71, 0.25);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.45;
}

.appr-detail [data-lucide] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--green-dark);
  margin-top: 0.15rem;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .appr { padding-top: 1.75rem; padding-bottom: 2rem; }
  .appr .section-head { margin-bottom: 1.4rem; }

  .appr-step {
    grid-template-columns: 44px 1fr;
    gap: 0.9rem;
    padding-bottom: 1.4rem;
  }

  .appr-step::before {
    left: 21px;
    top: 44px;
  }

  .appr-num { width: 44px; height: 44px; font-size: 0.85rem; }
  .appr-body h3 { font-size: 0.95rem; }
  .appr-desc { font-size: 0.82rem; margin-bottom: 0.6rem; }
  .appr-detail { font-size: 0.76rem; padding: 0.65rem 0.75rem; }
}

/* ---- Performance Marketing Package (modern bento pricing) ---- */
.ppkg {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.ppkg-shell {
  max-width: 1040px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(25, 40, 60, 0.08);
  overflow: hidden;
}

/* Top: title + price */
.ppkg-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem) 1.5rem;
}

.ppkg-eyebrow {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}

.ppkg-title {
  font-size: clamp(1.35rem, 2.6vw, 1.9rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.ppkg-price {
  text-align: right;
  flex-shrink: 0;
}

.ppkg-price strong {
  display: block;
  font-size: clamp(2.1rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
}

.ppkg-price span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* Includes chips */
.ppkg-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0 clamp(1.25rem, 3vw, 2.5rem) 1.75rem;
}

.ppkg-chips li {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-dark);
  background: rgba(105, 159, 71, 0.1);
  border: 1px solid rgba(105, 159, 71, 0.3);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* Hairline bento grid */
.ppkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ppkg-item {
  background: var(--surface);
  padding: 1.5rem 1.4rem;
  transition: background 0.25s var(--ease);
}

.ppkg-item:hover { background: #f7fbf3; }

.ppkg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(105, 159, 71, 0.12);
  color: var(--green-dark);
  margin-bottom: 0.9rem;
}

.ppkg-icon [data-lucide] { width: 20px; height: 20px; }

.ppkg-item h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.ppkg-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 0.8rem;
}

.ppkg-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--green-dark);
  line-height: 1.45;
}

.ppkg-detail [data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  margin-top: 0.12rem;
}

/* Gradient CTA band */
.ppkg-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.25rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
}

.ppkg-cta h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}

.ppkg-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
}

.ppkg-btn {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  border-radius: 10px;
  padding: 0.8rem 1.5rem;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.ppkg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 26, 41, 0.25);
}

.ppkg-btn [data-lucide] { width: 16px; height: 16px; }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .ppkg-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .ppkg { padding-top: 1.75rem; padding-bottom: 2rem; }
  .ppkg-top { flex-direction: column; align-items: flex-start; }
  .ppkg-price { text-align: left; }
  .ppkg-chips { padding-bottom: 1.25rem; }
  .ppkg-grid { grid-template-columns: 1fr; }
  .ppkg-item { padding: 1.15rem 1.1rem; }
  .ppkg-icon { width: 36px; height: 36px; margin-bottom: 0.6rem; }
  .ppkg-icon [data-lucide] { width: 17px; height: 17px; }
  .ppkg-item h3 { font-size: 0.92rem; }
  .ppkg-desc { font-size: 0.8rem; margin-bottom: 0.6rem; }
  .ppkg-detail { font-size: 0.73rem; }
  .ppkg-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
  }
  .ppkg-btn { width: 100%; justify-content: center; }
}

/* ---- Why â‚¹20K Makes Sense (comparison) ---- */
.mkw {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mkw .section-head { margin-bottom: 2.25rem; }

.mkw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1020px;
  margin: 0 auto;
  align-items: stretch;
}

.mkw-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  box-shadow: 0 16px 40px rgba(25, 40, 60, 0.06);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.mkw-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(25, 40, 60, 0.1);
}

/* Highlighted FadNex card */
.mkw-best {
  background: #f7fbf3;
  border: 2px solid var(--green);
  box-shadow: 0 20px 50px rgba(105, 159, 71, 0.18);
}

.mkw-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-green);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 6px 16px rgba(105, 159, 71, 0.35);
}

.mkw-price {
  font-size: clamp(1.9rem, 3.5vw, 2.3rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.mkw-best .mkw-price { color: var(--green-dark); }

.mkw-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 0.9rem;
}

.mkw-desc {
  font-size: 0.87rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 1.1rem;
}

.mkw-note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  padding-top: 0.9rem;
  border-top: 1px dashed var(--border);
}

.mkw-note [data-lucide] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.mkw-bad { color: #d05353; }
.mkw-good { color: var(--green-dark); }

/* Tighter line-height on marketing page section titles */
.nta .section-title,
.pains .section-title,
.appr .section-title,
.proof .section-title,
.mkw .section-title,
.mtr .section-title,
.mhw .section-title {
  line-height: 1.04;
}

/* ---- You Won't Be Left Guessing (transparency) ---- */
.mtr {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mtr .section-head { margin-bottom: 2rem; }

/* Hairline 3-column panel */
.mtr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1020px;
  margin: 0 auto;
}

.mtr-item {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  transition: background 0.25s var(--ease);
}

.mtr-item:hover { background: #f7fbf3; }

.mtr-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(105, 159, 71, 0.12);
  color: var(--green-dark);
  margin-bottom: 0.9rem;
}

.mtr-icon [data-lucide] { width: 20px; height: 20px; }

.mtr-item h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.mtr-item p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* Closing reassurance pill */
.mtr-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.55rem;
  max-width: 760px;
  margin: 1.5rem auto 0;
  background: rgba(105, 159, 71, 0.08);
  border: 1px solid rgba(105, 159, 71, 0.25);
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  text-align: left;
}

.mtr-note [data-lucide] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: var(--green-dark);
  margin-top: 0.15rem;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .mtr-grid { grid-template-columns: 1fr; max-width: 460px; }
}

@media (max-width: 640px) {
  .mtr { padding-top: 1.75rem; padding-bottom: 2rem; }
  .mtr .section-head { margin-bottom: 1.4rem; }
  .mtr-grid { border-radius: 16px; }
  .mtr-item { padding: 1.25rem 1.1rem; }
  .mtr-icon { width: 36px; height: 36px; margin-bottom: 0.6rem; }
  .mtr-icon [data-lucide] { width: 17px; height: 17px; }
  .mtr-item h3 { font-size: 0.92rem; }
  .mtr-item p { font-size: 0.8rem; }
  .mtr-note {
    border-radius: 16px;
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
  }
}

/* ---- How It Works (4 steps) ---- */
.mhw {
  padding-top: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.mhw .section-head { margin-bottom: 2rem; }

/* Hairline panel: 4 cols desktop, 2x2 tablet, 1 col phone */
.mhw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 1120px;
  margin: 0 auto;
}

.mhw-step {
  background: var(--surface);
  padding: 1.75rem 1.5rem;
  transition: background 0.25s var(--ease);
}

.mhw-step:hover { background: #f7fbf3; }

/* Outline number chip â€” fills green on hover */
.mhw-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--green);
  color: var(--green-dark);
  font-size: 1rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  margin-bottom: 1rem;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.mhw-step:hover .mhw-num {
  background: var(--grad-green);
  border-color: var(--green);
  color: #fff;
}

.mhw-step h3 {
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.mhw-step p {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.55;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .mhw-grid { grid-template-columns: repeat(2, 1fr); max-width: 760px; }
}

@media (max-width: 640px) {
  .mhw { padding-top: 1.75rem; padding-bottom: 2rem; }
  .mhw .section-head { margin-bottom: 1.4rem; }
  .mhw-grid { grid-template-columns: 1fr; max-width: 460px; border-radius: 16px; }
  .mhw-step { padding: 1.25rem 1.1rem; }
  .mhw-num { width: 38px; height: 38px; font-size: 0.9rem; margin-bottom: 0.7rem; }
  .mhw-step h3 { font-size: 0.92rem; }
  .mhw-step p { font-size: 0.8rem; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .mkw-grid { grid-template-columns: 1fr; max-width: 460px; }
  .mkw-best { order: -1; }   /* FadNex first on mobile */
}

@media (max-width: 640px) {
  .mkw { padding-top: 1.75rem; padding-bottom: 2rem; }
  .mkw .section-head { margin-bottom: 1.5rem; }
  .mkw-grid { gap: 1.5rem; }
  .mkw-card { padding: 1.5rem 1.25rem; border-radius: 16px; }
  .mkw-price { font-size: 1.6rem; }
  .mkw-label { font-size: 0.66rem; margin-bottom: 0.6rem; }
  .mkw-desc { font-size: 0.8rem; margin-bottom: 0.8rem; }
  .mkw-note { font-size: 0.73rem; padding-top: 0.7rem; }
}

/* ---- Real Client Dashboards (proof) ---- */
.proof {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #0e1420 0%, #16203a 55%, #0e1420 100%);
  color: #fff;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.proof .section-eyebrow { color: #7ee08f; }
.proof .section-title { color: #fff; }
.proof .section-sub { color: rgba(255, 255, 255, 0.7); }

.proof-mark { color: #7ee08f; }

/* Headline stats strip */
.proof-stats {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  max-width: 900px;
  margin: 2rem auto 2.25rem;
  padding: 0;
}

.proof-stats li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1rem 0.75rem;
  text-align: center;
}

.proof-stats strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  color: #7ee08f;
  line-height: 1.15;
}

.proof-stats span {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Scroll hint */
.proof-hint {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

/* Full-width grid of dashboards */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0.25rem 1.5rem 1.5rem;
}

.proof-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
}

.proof-stat { padding: 0.95rem 1.05rem 0.85rem; }

.proof-stat h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.3;
}

.proof-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.45rem;
}

.proof-pill {
  background: #7ee08f;
  color: #0e1420;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}

.proof-meta {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.6);
  white-space: nowrap;
}

.proof-card img {
  width: 100%;
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 640px) {
  .proof { padding: 1.75rem 0 2rem; }

  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    max-width: 420px;
    margin: 1.4rem auto 1.5rem;
  }

  .proof-stats li { padding: 0.7rem 0.5rem; }
  .proof-stats strong { font-size: 1.05rem; }
  .proof-stats span { font-size: 0.58rem; }
  .proof-hint { font-size: 0.72rem; }
  .proof-grid { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
  .proof-stat h3 { font-size: 0.85rem; }
  .proof-pill { font-size: 0.62rem; }
  .proof-meta { font-size: 0.66rem; }
}


/* ---- Final CTA strip ---- */
.mcta { padding-top: clamp(2.5rem, 5vw, 4rem); padding-bottom: clamp(2.5rem, 5vw, 4rem); }

.mcta-panel {
  background: #fff;
  border: 1px solid var(--grad-green-soft-border);
  box-shadow: 0 18px 50px rgba(14, 20, 32, 0.08);
  border-radius: 24px;
  padding: clamp(2rem, 4.5vw, 3.5rem);
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.mcta .section-eyebrow {
  color: var(--grad-green-strong);
  margin-bottom: 0.9rem;
}

.mcta .section-title {
  color: var(--navy);
  line-height: 1.04;
  margin-bottom: 1.1rem;
}

.mcta-sub {
  max-width: 540px;
  margin: 0 auto;
  font-size: 0.95rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.9rem;
}

.mcta-actions {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-bottom: 2.2rem;
}

.mcta-trust {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.mcta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  padding: 0.32rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--grad-green-soft-border);
  background: var(--grad-green-soft);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.mcta-chip i,
.mcta-chip svg {
  width: 0.66rem;
  height: 0.66rem;
  flex: 0 0 auto;
}

@media (max-width: 640px) {
  .mcta { padding-top: 1.75rem; padding-bottom: 2.5rem; }
  .mcta-panel { border-radius: 18px; padding: 1.6rem 1.25rem; }
  .mcta-sub { font-size: 0.88rem; margin-bottom: 1.5rem; }
  .mcta-actions { flex-direction: column; align-items: stretch; margin-bottom: 1.6rem; }
  .mcta-actions .btn { justify-content: center; }
  .mcta-chip { font-size: 0.7rem; }
}
