/* ============================================================
   MCM Touch — Landing Page  (landing.css)
   Modern 2025 redesign — clean, editorial, premium feel
   Brand palette:
     #1C5E1C  deep forest green  (MCM wordmark)
     #1A6B2A  mid green          (DNA helix)
     #4BAF2A  leaf green         (highlights)
     #C8921A  gold/amber         ("touch" wordmark)
     #F5F3EC  warm cream         (logo bg)
   ============================================================ */

/* ── Google Fonts ──────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & base ───────────────────────────────────────────── */
/*
   Senior-friendly typography targets (WCAG 2.1 AA + AARP/Nielsen guidelines):
   • Body text ≥ 18px, line-height ≥ 1.7
   • All interactive text ≥ 16px
   • Contrast ratio ≥ 4.5:1 on all text
   • Footer text contrast ≥ 7:1 (AAA) — dark backgrounds need brighter text
*/
.landing-body {
  background: #ffffff;
  overflow-x: hidden;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #111827;
  font-size: 18px;          /* senior-friendly base — up from browser default 16px */
  line-height: 1.75;
}
.landing-body * { box-sizing: border-box; }
::selection { background: rgba(75,175,42,.18); color: #1C5E1C; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION
   ══════════════════════════════════════════════════════════════ */
.mkt-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.mkt-header.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: #e5e7eb;
  box-shadow: 0 1px 20px rgba(0,0,0,.06);
}
.mkt-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand */
.mkt-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity 0.15s;
}
.mkt-brand:hover { opacity: 0.82; text-decoration: none; }
.mkt-logo {
  width: auto;
  height: 60px;
  max-width: 200px;
  object-fit: contain;
}
/* Footer logo — slightly larger on dark bg */
.site-footer .mkt-logo {
  height: 64px;
  max-width: 210px;
}
.mkt-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.mkt-brand-mcm {
  font-size: 1rem;
  font-weight: 800;
  color: #1C5E1C;
  letter-spacing: -.02em;
}
.mkt-brand-touch {
  font-size: .68rem;
  font-weight: 700;
  color: #C8921A;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Desktop nav */
.mkt-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}
.mkt-nav-link {
  padding: 8px 14px;
  font-size: 1rem;              /* ≥16px — WCAG AA nav minimum */
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
  letter-spacing: -.005em;
}
.mkt-nav-link:hover { background: #f3f4f6; color: #111827; text-decoration: none; }

/* Auth actions */
.mkt-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.mkt-link-btn {
  padding: 8px 16px;
  font-size: 1rem;              /* ≥16px */
  font-weight: 600;
  color: #374151;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  text-decoration: none;
}
.mkt-link-btn:hover { background: #f3f4f6; color: #111827; text-decoration: none; }
.mkt-cta-btn {
  padding: 10px 20px;
  background: #1C5E1C;
  color: #f5f3ec;
  font-size: 1rem;              /* ≥16px */
  font-weight: 700;
  border-radius: 9px;
  text-decoration: none;
  transition: background 0.15s, box-shadow 0.15s, transform 0.15s;
  box-shadow: 0 1px 6px rgba(28,94,28,.28);
  letter-spacing: -.01em;
}
.mkt-cta-btn:hover { background: #155015; box-shadow: 0 4px 16px rgba(28,94,28,.32); transform: translateY(-1px); text-decoration: none; color: #f5f3ec; }

/* Mobile toggle */
.mkt-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: #374151;
  padding: 7px;
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.15s;
}
.mkt-mobile-toggle:hover { background: #f3f4f6; }

/* Mobile menu */
.mkt-mobile-menu {
  border-top: 1px solid #e5e7eb;
  padding: 10px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.mkt-mobile-menu.hidden { display: none; }
.mkt-mobile-link {
  padding: 12px 14px;
  font-size: 1.0625rem;         /* 17px — mobile tap targets + readability */
  font-weight: 500;
  color: #374151;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
}
.mkt-mobile-link:hover { background: #f3f4f6; text-decoration: none; color: #111827; }
.mkt-mobile-divider { height: 1px; background: #e5e7eb; margin: 8px 0; }
.mkt-mobile-cta {
  margin-top: 6px;
  padding: 14px 18px;
  background: #1C5E1C;
  color: #f5f3ec;
  font-size: 1.0625rem;         /* 17px */
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  transition: background 0.15s;
}
.mkt-mobile-cta:hover { background: #155015; text-decoration: none; color: #f5f3ec; }

/* ══════════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════════ */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

/* Subtle background geometry */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(75,175,42,.05) 0%, transparent 70%),
    radial-gradient(ellipse 600px 500px at 10% 80%, rgba(200,146,26,.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 100px;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 72px;
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Eyebrow pill */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .8125rem;          /* 13px — small but not tiny */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #1C5E1C;
  background: rgba(28,94,28,.07);
  border: 1px solid rgba(28,94,28,.14);
  padding: 6px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #4BAF2A;
  border-radius: 50%;
  flex-shrink: 0;
}

/* Headline */
.hero-title {
  font-size: clamp(2.6rem, 4.5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: #0f1a0f;
  margin-bottom: 22px;
}
.hero-title-accent {
  color: #1C5E1C;
  position: relative;
}
/* Underline decoration on accent */
.hero-title-accent::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4BAF2A, #C8921A);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: 1.1875rem;         /* 19px — senior-friendly body */
  line-height: 1.8;
  color: #374151;               /* higher contrast than #4b5563 */
  margin-bottom: 34px;
  max-width: 520px;
}
.hero-subtitle strong { color: #111827; font-weight: 700; }

/* CTA buttons */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;           /* larger tap target */
  background: #1C5E1C;
  color: #f5f3ec;
  font-size: 1.0625rem;         /* 17px — senior-friendly button */
  font-weight: 700;
  border-radius: 11px;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  box-shadow: 0 2px 14px rgba(28,94,28,.3);
  letter-spacing: -.01em;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.hero-btn-primary:hover { background: #155015; box-shadow: 0 6px 24px rgba(28,94,28,.36); transform: translateY(-2px); text-decoration: none; color: #f5f3ec; }

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;           /* larger tap target */
  background: transparent;
  color: #374151;
  font-size: 1.0625rem;         /* 17px */
  font-weight: 600;
  border-radius: 11px;
  text-decoration: none;
  border: 1.5px solid #9ca3af; /* stronger border = more legible */
  transition: border-color 0.18s, background 0.18s, color 0.18s;
  font-family: inherit;
  letter-spacing: -.01em;
}
.hero-btn-ghost:hover { border-color: #6b7280; background: #f3f4f6; color: #111827; text-decoration: none; }

/* Trust badges row */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .9375rem;          /* 15px — readable trust signals */
  font-weight: 500;
  color: #4b5563;               /* better contrast */
}
.hero-trust-sep {
  width: 1px;
  height: 14px;
  background: #d1d5db;
}

/* ── Hero Visual Panel ───────────────────────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}

/* Central circle */
.hero-logo-circle {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f0fdf4 0%, #F5F3EC 100%);
  border: 1.5px solid rgba(28,94,28,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 32px rgba(28,94,28,.03),
    0 0 0 64px rgba(28,94,28,.018),
    0 16px 64px rgba(28,94,28,.12);
}
.hero-logo-img {
  width: 320px;
  height: auto;
  object-fit: contain;
}

/* Floating info cards */
.hero-card-float {
  position: absolute;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 13px 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08), 0 1px 4px rgba(0,0,0,.04);
  font-family: 'Inter', sans-serif;
}
.hero-card-1 { top: 24px; left: -28px; width: 192px; }
.hero-card-2 { bottom: 52px; right: -24px; width: 192px; }
.hero-card-3 { bottom: 8px; left: 14px; width: 152px; }
.hcf-icon { font-size: 1.375rem; margin-bottom: 5px; }
.hcf-label { font-size: .8125rem; font-weight: 700; color: #111827; }
.hcf-sub   { font-size: .7125rem; color: #6b7280; margin-top: 3px; line-height: 1.45; }
.hcf-badge {
  font-size: .65rem;
  font-weight: 700;
  color: #1C5E1C;
  background: rgba(28,94,28,.08);
  border: 1px solid rgba(28,94,28,.12);
  padding: 2px 8px;
  border-radius: 99px;
  margin-bottom: 5px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.hcf-slot { font-size: .875rem; font-weight: 700; color: #111827; }

/* ══════════════════════════════════════════════════════════════
   SOCIAL PROOF BAR
   ══════════════════════════════════════════════════════════════ */
.proof-bar {
  background: #111827;
  padding: 32px 0;
}
.proof-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.proof-stat {
  text-align: center;
  padding: 8px 44px;
}
.proof-num {
  font-size: 2.25rem;           /* bigger headline number */
  font-weight: 900;
  color: #f9fafb;
  letter-spacing: -.04em;
  line-height: 1;
  font-family: 'Inter', sans-serif;
}
.proof-num span {
  font-size: 1.5rem;
  color: #C8921A;
}
.proof-label {
  font-size: .875rem;           /* 14px — was .72rem (11px), too small */
  font-weight: 500;
  color: rgba(249,250,251,.75); /* was .45 — too dim, raised to .75 */
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.proof-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.1);
}

/* ══════════════════════════════════════════════════════════════
   SHARED SECTION LAYOUT
   ══════════════════════════════════════════════════════════════ */
.section {
  padding: 96px 0;
  background: #ffffff;
}
.section-tinted {
  background: #f9fafb;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .8125rem;          /* 13px — readable label */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #1C5E1C;
  background: rgba(28,94,28,.07);
  border: 1px solid rgba(28,94,28,.13);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 14px;
}
.section-title-lg {
  font-size: clamp(2rem, 3.2vw, 2.625rem); /* larger section headings */
  font-weight: 800;
  color: #111827;
  line-height: 1.18;
  letter-spacing: -.035em;
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.0625rem;         /* 17px — senior-friendly section intro */
  line-height: 1.8;
  color: #374151;               /* #374151 vs #6b7280 — much better contrast */
}

/* ══════════════════════════════════════════════════════════════
   SERVICES GRID
   ══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.service-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transform: translateY(-3px);
  border-color: #d1d5db;
}
.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-title {
  font-size: 1.0625rem;         /* 17px */
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -.015em;
}
.service-desc {
  font-size: 1rem;              /* 16px — was 13px, unreadable */
  line-height: 1.75;
  color: #374151;               /* higher contrast */
  margin-bottom: 18px;
}
.service-link {
  font-size: .9375rem;          /* 15px */
  font-weight: 700;
  color: #1C5E1C;
  text-decoration: none;
  transition: color 0.15s, gap 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-link:hover { color: #155015; text-decoration: none; gap: 6px; }

/* ══════════════════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ══════════════════════════════════════════════════════════════ */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: start;
}
.step-item {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 20px;
}
.step-number {
  font-size: 2.75rem;
  font-weight: 900;
  color: #e5e7eb;
  line-height: 1;
  letter-spacing: -.05em;
  font-family: 'Inter', sans-serif;
}
.step-content h3 {
  font-size: 1.25rem;           /* 20px — clear numbered step headline */
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.step-content p {
  font-size: 1rem;              /* 16px min */
  line-height: 1.8;
  color: #374151;
}
.step-connector {
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.step-connector::after {
  content: '';
  display: block;
  width: 48px;
  height: 1.5px;
  background: linear-gradient(90deg, #d1d5db, #e5e7eb);
  border-radius: 2px;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT / MEET THE PRACTITIONER
   ══════════════════════════════════════════════════════════════ */
.about-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual { position: relative; }
.about-photo-placeholder {
  aspect-ratio: 4/5;
  max-height: 460px;
  background: linear-gradient(160deg, #f0fdf4 0%, #F5F3EC 100%);
  border-radius: 22px;
  border: 1.5px dashed rgba(28,94,28,.16);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.about-photo-icon { opacity: .4; }
.about-photo-caption {
  font-size: .75rem;
  color: #9ca3af;
  font-style: italic;
  text-align: center;
  padding: 0 24px;
}
.about-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  box-shadow: 0 6px 24px rgba(0,0,0,.09);
}
.about-badge-icon { font-size: 1.5rem; }
.about-badge-title { font-size: 1rem; font-weight: 700; color: #111827; }     /* 16px */
.about-badge-sub   { font-size: .875rem; color: #4b5563; margin-top: 2px; }   /* 14px, better contrast */
.about-lead {
  font-size: 1.0625rem;         /* 17px — lead paragraph */
  line-height: 1.85;
  color: #374151;
  margin-bottom: 28px;
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about-cred-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1rem;              /* 16px */
  color: #374151;
  line-height: 1.5;
}
.about-cred-item svg { flex-shrink: 0; margin-top: 1px; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}
.testimonial-card:hover {
  box-shadow: 0 10px 36px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.testimonial-stars {
  display: flex;
  gap: 2px;
}
.testimonial-quote {
  font-size: 1rem;              /* 16px */
  line-height: 1.8;
  color: #374151;
  font-style: italic;
  flex: 1;
  border: none;
  margin: 0;
  padding: 0;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 11px;
  border-top: 1px solid #f3f4f6;
  padding-top: 14px;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  flex-shrink: 0;
}
.testimonial-name { font-size: 1rem; font-weight: 700; color: #111827; }          /* 16px */
.testimonial-role { font-size: .875rem; color: #6b7280; margin-top: 2px; }        /* 14px, AAA contrast */

/* ══════════════════════════════════════════════════════════════
   CTA BAND
   ══════════════════════════════════════════════════════════════ */
.cta-band {
  background: #111827;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
/* Subtle green ambient glow */
.cta-band::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(28,94,28,.35) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,146,26,.14) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.cta-band-content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);  /* bigger */
  font-weight: 800;
  color: #f9fafb;
  margin-bottom: 12px;
  letter-spacing: -.03em;
}
.cta-band-content p {
  font-size: 1.0625rem;         /* 17px — readable on dark bg */
  color: rgba(249,250,251,.82); /* was .6 — too dim on dark */
  line-height: 1.8;
  max-width: 460px;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cta-band-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 16px 32px;           /* bigger tap target */
  background: #ffffff;
  color: #111827;
  font-size: 1.0625rem;         /* 17px */
  font-weight: 700;
  border-radius: 11px;
  text-decoration: none;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
  box-shadow: 0 2px 14px rgba(0,0,0,.18);
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -.01em;
}
.cta-band-btn-primary:hover { background: #f9fafb; transform: translateY(-2px); box-shadow: 0 6px 28px rgba(0,0,0,.22); text-decoration: none; color: #111827; }
.cta-band-btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 16px 28px;           /* bigger tap target */
  background: rgba(255,255,255,.1);
  color: rgba(249,250,251,.95); /* near-white — was .88, raised for contrast */
  font-size: 1.0625rem;         /* 17px */
  font-weight: 600;
  border-radius: 11px;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,.35); /* stronger visible border */
  transition: background 0.18s, border-color 0.18s;
  white-space: nowrap;
  font-family: inherit;
  letter-spacing: -.01em;
}
.cta-band-btn-ghost:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.55); text-decoration: none; color: #f9fafb; }

/* ══════════════════════════════════════════════════════════════
   SITE FOOTER
   ══════════════════════════════════════════════════════════════ */
/*
   FOOTER CONTRAST FIX — WCAG AAA targets on dark bg (#0d1117):
   • Tagline / body: rgba(255,255,255,.85) = contrast ~12:1
   • Links: rgba(255,255,255,.78) = contrast ~10:1
   • Section headings: rgba(255,255,255,.45) = contrast ~5.5:1
   • Version/copyright: rgba(255,255,255,.5) = contrast ~6:1
   All above WCAG AA minimum of 4.5:1
*/
.site-footer {
  background: #0d1117;
  padding: 72px 0 0;
}
.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px 56px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
}
.footer-tagline {
  font-size: 1rem;              /* 16px — was 13.5px, unreadable */
  color: rgba(249,250,251,.82); /* was .45 — failed contrast */
  line-height: 1.75;
  margin-bottom: 16px;
}
.footer-copyright {
  font-size: .875rem;           /* 14px — was 11.5px */
  color: rgba(249,250,251,.55); /* was .25 — near-invisible */
  margin-top: 10px;
}
.footer-links-col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-col-heading {
  font-size: .8125rem;          /* 13px — was 11px */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(249,250,251,.5);  /* was .3 — barely visible */
  margin-bottom: 8px;
}
.footer-link {
  font-size: 1rem;              /* 16px — was 13.5px */
  color: rgba(249,250,251,.78); /* was .5 — contrast fail on dark */
  text-decoration: none;
  transition: color 0.15s;
  line-height: 1.5;
}
.footer-link:hover { color: rgba(249,250,251,1); text-decoration: none; }
/* Logo text in footer — boosted brightness */
.site-footer .mkt-brand-mcm { color: rgba(249,250,251,.95); }
.site-footer .mkt-brand-touch { color: #e0a830; } /* brighter gold on dark */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 28px;
  border-top: 1px solid rgba(255,255,255,.1); /* was .06 — barely visible */
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .9375rem;          /* 15px — was 12px */
  color: rgba(249,250,251,.55); /* was .25 — unreadable */
  gap: 16px;
  flex-wrap: wrap;
}

/* ══════════════════════════════════════════════════════════════
   FEATURE HIGHLIGHT STRIP (new section)
   ══════════════════════════════════════════════════════════════ */
.features-strip {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 28px 0;
}
.features-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.fstrip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;              /* 16px — was 13.5px */
  font-weight: 500;
  color: #374151;
}
.fstrip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4BAF2A;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 28px 80px;
  }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.75rem; }
  .hero-subtitle { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 380px; }
  .about-photo-placeholder { aspect-ratio: auto; min-height: 260px; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }
  .cta-band-inner { flex-direction: column; text-align: center; gap: 28px; }
  .cta-band-actions { justify-content: center; }
  .cta-band-content p { margin: 0 auto; }
  .site-footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-col { grid-template-columns: repeat(3, 1fr); }
  .proof-stat { padding: 8px 28px; }
}

@media (max-width: 768px) {
  .mkt-header-inner { padding: 0 18px; gap: 10px; }
  .mkt-nav, .mkt-nav-actions { display: none; }
  .mkt-mobile-toggle { display: flex; }
  .hero-inner { padding: 36px 18px 60px; }
  .hero-title { font-size: 2.1rem; }
  .hero-subtitle { font-size: 1.0625rem; }   /* keep ≥17px on mobile */
  .hero-trust { gap: 8px; }
  .hero-trust-sep { display: none; }
  .section { padding: 60px 0; }
  .section-inner { padding: 0 18px; }
  .section-title-lg { font-size: 1.875rem; } /* keep ≥30px on mobile */
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .proof-bar-inner { gap: 0; }
  .proof-stat { padding: 8px 18px; }
  .proof-divider { display: none; }
  .cta-band { padding: 56px 0; }
  .footer-links-col { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header { margin-bottom: 40px; }
  .features-strip-inner { gap: 20px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.875rem; }
  .hero-btn-primary, .hero-btn-ghost { padding: 14px 22px; font-size: 1rem; } /* keep ≥16px */
  .cta-band-btn-primary, .cta-band-btn-ghost { padding: 14px 22px; font-size: 1rem; }
  .footer-links-col { grid-template-columns: 1fr; }
  .proof-stat { padding: 8px 14px; }
}
