/* =========================
   Reset & Base
   ========================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root{
  --brand:#E63946;
  --brand-dark:#d94345;
  --text:#1e1e1e;
  --muted:#555;
  --muted-2:#666;
  --tile-border:#eee;
  --bg:#f5f5f5;
  --white:#fff;
}

body{
  font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color:var(--bg);
  color:var(--text);
  line-height:1.6;
}

.container{ max-width:1200px; margin:0 auto; padding:0 20px; }

/* =========================
   Header/Nav
   ========================= */
header{
  background-color:#1a1a1a;
  color:#fff;
  padding:20px 0;
  position:relative;
}
.logo{ font-size:1.8rem; font-weight:bold; }

header .logo img{
  display:block;
  height:auto; width:auto;
  max-height:120px; /* desktop */
  max-width:100%;
}

header .container{
  display:flex; align-items:center; justify-content:space-between;
}

.menu-toggle{
  display:none; flex-direction:column; cursor:pointer;
  position:absolute; right:20px; top:25px; z-index:1001;
}
.menu-toggle span{ height:3px; width:25px; background-color:#fff; margin:4px 0; transition:.4s; }

nav ul{ list-style:none; display:flex; gap:20px; z-index:1002; }
nav ul li a{
  color:#fff; text-decoration:none; font-weight:500; transition:color .3s ease;
}
nav ul li a:hover{ color:#ff4d4f; }

/* Keyboard focus */
a:focus-visible, button:focus-visible, .cta-button:focus-visible, .menu-toggle:focus-visible{
  outline:3px solid rgba(230,57,70,.75);
  outline-offset:3px;
  border-radius:8px;
}

/* =========================
   Hero
   ========================= */
.hero{
  background:var(--white);
  text-align:center;
  padding:60px 20px;
  animation:fadeIn 1s ease-in-out;
}
.hero h2{ font-size:2.5rem; margin-bottom:20px; }
.hero p{ font-size:1.1rem; margin-bottom:30px; color:var(--muted); }

/* CTAs */
.cta-button{
  background-color:#ff4d4f;
  color:#fff;
  padding:12px 30px;
  text-decoration:none;
  font-weight:bold;
  border-radius:6px;
  transition:background-color .3s ease, box-shadow .15s ease, transform .15s ease;
  box-shadow:none;
}
.cta-button:hover{ background-color:var(--brand-dark); }

/* =========================
   Sections
   ========================= */
.services{ padding:60px 20px; background-color:var(--bg); text-align:center; }
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px; margin-top:40px;
}
.service-item h4{ margin-bottom:15px; color:#111; }
.service-item p{ margin-bottom:20px; }

.why-clinkable{ padding:60px 20px; background-color:var(--white); animation:fadeIn 1s ease-in-out; }

.benefits-list{
  list-style:disc inside;
  padding-top:20px; max-width:800px; margin:0 auto;
}

/* Contact */
.contact{ padding:60px 20px; background-color:var(--bg); text-align:center; animation:fadeIn 1s ease-in-out; }
.contact form{
  display:flex; flex-direction:column; gap:15px; max-width:500px; margin:20px auto 0;
}
.contact input, .contact textarea{
  padding:12px; font-size:1rem; border:1px solid #ccc; border-radius:4px; transition:border-color .3s ease;
}
.contact input:focus, .contact textarea:focus{ border-color:var(--brand); outline:none; }
.contact button{
  background-color:var(--brand); color:#fff; padding:12px; font-weight:bold;
  border:none; border-radius:6px; cursor:pointer; transition:background-color .3s ease;
}
.contact button:hover{ background-color:var(--brand-dark); }

/* Footer */
footer{
  background-color:#1a1a1a; color:#ccc; text-align:center; padding:30px 20px; font-size:.9rem;
}
footer a{ color:#ccc; text-decoration:underline; transition:color .3s ease; }
footer a:hover{ color:#ff4d4f; }

/* Back button (template pages) */
.back-button{
  display:inline-block; margin:20px; padding:10px 16px; background-color:var(--brand); color:#fff;
  text-decoration:none; border-radius:6px; font-size:.95rem; transition:background-color .3s ease;
}
.back-button:hover{ background-color:var(--brand-dark); }

/* =========================
   Index (Home) utilities
   ========================= */
/* narrow containers to match previous inline max-widths */
.container.home-narrow-1040{ max-width:1040px; }
.container.home-narrow-920{ max-width:920px; }
.container.home-narrow-820{ max-width:820px; }

/* hero lead widths/margins */
.home-lead-720{ max-width:720px; margin:0 auto 18px; }
.home-lead-640{ max-width:640px; margin:0 auto 18px; }

/* CTA rows */
.home-cta-row-8,
.home-cta-row-plain{
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}
.home-cta-row-8{ margin-top:8px; }

/* hero screenshots */
.home-hero-shots{
  margin:24px auto 0;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:14px; align-items:stretch;
}
.home-hero-img{
  width:100%; height:auto; border-radius:10px; border:1px solid var(--tile-border);
  aspect-ratio:16/10; object-fit:cover;
}

/* Stats */
.home-stats .home-stats-list{
  list-style:none; padding:0; margin:0;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:12px; text-align:center;
}
.home-tile{
  border:1px solid var(--tile-border); border-radius:10px; padding:16px; background:#fff;
}
.home-tile--tight{ padding:14px; }
.home-stat-title{ font-weight:700; font-size:1.1rem; }
.home-muted-095{ color:var(--muted-2); font-size:.95rem; }

/* Use-case lanes */
.usecase .lanes-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:16px; margin-top:12px;
}
.usecase .lane-card{
  border:1px solid var(--tile-border); border-radius:10px; padding:16px; background:#fff;
  transition:transform .18s ease, box-shadow .18s ease; will-change:transform;
}
.usecase .lane-card:hover, .usecase .lane-card:focus-within{
  transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,0,0,.08);
}
.usecase .lane-kicker{ font-weight:700; font-size:.95rem; color:#111; }
.usecase .lane-title{ margin:6px 0 6px; font-size:1.1rem; color:#111; }
.usecase .lane-desc{ color:var(--muted); margin-bottom:8px; }
.usecase .lane-points{ margin:0 0 10px 18px; color:var(--muted); }
.usecase .lane-ctas{ display:flex; gap:12px; justify-content:center; flex-wrap:wrap; margin-top:6px; }
.usecase .lane-rule{ margin-top:14px; text-align:center; color:#666; font-size:.95rem; }

/* Value strip (home) */
.value-strip{
  background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
  border-top:1px solid #f0f0f0; border-bottom:1px solid #f0f0f0;
  padding:18px 0;
}
.value-pills{
  list-style:none; margin:0; padding:0;
  display:flex; flex-wrap:wrap; gap:10px 12px; justify-content:center;
}
.value-pills li{
  display:inline-flex; align-items:center; gap:8px; font-weight:600; color:#222;
  background:#fff; border:1px solid var(--tile-border); border-radius:999px; padding:10px 14px;
  box-shadow:0 6px 14px rgba(0,0,0,.05);
}
.value-pills .pill-icon{
  display:inline-grid; place-items:center; width:18px; height:18px; border-radius:50%;
  background:var(--brand); color:#fff; font-size:12px; line-height:1; box-shadow:0 3px 8px rgba(230,57,70,.25);
}

/* How it works (home) */
.home-steps-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:16px; margin-top:10px;
}
.home-kicker{ font-weight:700; margin-bottom:6px; }
.home-muted{ color:var(--muted); }

/* Packages snapshot (home) */
.home-packages-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px; margin-top:10px;
}
.home-h3-tight{ margin:0 0 6px; }
.home-list{ margin:0; padding-left:18px; color:var(--muted); }
.home-center{ text-align:center; }
.mt-14{ margin-top:14px; }

/* Testimonials (home) — minimal, no box */
.home-quotes-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:20px; margin-top:10px;
}
.home-quote{
  background:transparent; border:none; box-shadow:none;
  padding:0 0 14px 14px; position:relative;
}
.home-quote::before{
  content:""; position:absolute; left:0; top:4px; bottom:6px; width:3px; border-radius:2px; background:var(--brand);
}
.home-quote-text{ margin:0; color:#222; font-style:italic; }
.home-quote-cite{ margin-top:6px; color:#666; font-weight:500; }

/* FAQ (home) */
.home-faq-wrap{ margin-top:8px; text-align:left; }
.home-faq-wrap p + p{ margin-top:8px; }

/* Closing CTA (home) */
.home-cta-final{ padding:48px 20px; }
.home-mb-10{ margin-bottom:10px; }

/* =========================
   Templates page gallery
   ========================= */
#template-gallery .service-item picture,
#template-gallery .service-item img{ display:block; width:100%; }

#template-gallery .service-item img.template-shot{
  height:auto !important; max-height:none !important;
  aspect-ratio:16/10; object-fit:cover;
  border-radius:8px; border:1px solid var(--tile-border);
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition:transform .2s ease;
}
#template-gallery .service-item img.template-shot:hover{ transform:translateY(-1px); }

/* Shared CTA row used under each template card (replaces inline) */
.row-cta{
  margin-top:12px;
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}

/* =========================
   Storefronts (pricing) — replaces inline
   ========================= */
.plans-note{ margin-top:8px; color:var(--muted); }

.plan-grid{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px; margin-top:28px;
}
.plan-card{} /* inherits basic typography from .service-item */
.plan-card--popular{
  border:2px solid #ff4d4f; border-radius:8px; padding:18px;
}
.plan-price{ font-size:1.8rem; margin:8px 0; }
.plan-features{ text-align:left; max-width:420px; margin:12px auto; }
.plan-cta-row{
  margin-top:14px;
  display:flex; gap:12px; justify-content:center; flex-wrap:wrap;
}

/* “How it works” list on storefronts (decimal inside + width) */
.list-decimal{
  max-width:820px; margin:16px auto; list-style:decimal inside;
}

/* =========================
   Animations
   ========================= */
@keyframes fadeIn{ from{opacity:0; transform:translateY(20px);} to{opacity:1; transform:translateY(0);} }

/* =========================
   Responsive
   ========================= */
@media (max-width:768px){
  .menu-toggle{ display:flex; }
  nav ul{
    flex-direction:column; align-items:center; background-color:#1a1a1a;
    position:absolute; top:100%; left:0; width:100%; display:none; padding:20px 0;
  }
  nav ul.active{ display:flex; }

  .hero h2{ font-size:2rem !important; }
  .hero p{ font-size:1rem; }

  .cta-button{ padding:10px 20px; }
  .benefits-list{ padding-left:20px; }
  .service-grid{ grid-template-columns:1fr; }
  .contact form{ width:100%; padding:0 10px; }

  header .logo img{ max-height:80px; }
}

@media (max-width:640px){
  .value-strip{ padding:16px 0; }
  .value-pills li{ padding:9px 12px; font-weight:600; }
}

@media (max-width:480px){
  .hero h2{ font-size:1.6rem !important; }
  .hero p, .cta-button, .contact input, .contact textarea, .contact button{ font-size:.95rem; }
  .logo{ font-size:1.5rem; }
}



/* Scope the page footer so it doesn't style nested <footer> elements */
body > footer {
  background-color: #1a1a1a;
  color: #ccc;
  text-align: center;
  padding: 30px 20px;
  font-size: 0.9rem;
}

/* Testimonials: ensure the cite/footer has no black box */
.home-quote footer,
.why-clinkable blockquote footer,
.home-quote-cite {
  background: transparent !important;
  color: #666 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* ===========================
   Clinkable Home – New Blocks
   (Requirements, Income, Care Plan, Kickstart, FAQ)
   Safe, additive spacing only
   =========================== */

/* General section rhythm for new home sections */
#requirements-preview,
#care-plan-overview,
#kickstart-bundle {
  padding: 2.5rem 0;
  margin-top: 2.5rem;
}

/* Light background + border for muted / bordered variants if needed */
.section.section--muted {
  background-color: #fafafa;
}

.section.section--bordered {
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

/* Requirements list */
#requirements-preview .requirements-list {
  list-style: none;
  padding-left: 0;
  margin: 1.75rem 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

#requirements-preview .requirements-list li {
  line-height: 1.5;
}

/* Small helper note under sections */
#requirements-preview .note,
#care-plan-overview .note,
#kickstart-bundle .note {
  margin-top: 1rem;
  font-size: 0.95rem;
  color: #555;
}

/* Income / money messaging under Packages */
.income-eyebrow {
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #666;
}

.income-disclaimer {
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  color: #555;
}

/* Care Plan list */
#care-plan-overview .care-plan-list {
  list-style: none;
  padding-left: 0;
  margin: 1.75rem 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

#care-plan-overview .care-plan-list li {
  line-height: 1.5;
}

/* Kickstart Bundle teaser spacing */
#kickstart-bundle .kickstart-list {
  list-style: none;
  padding-left: 0;
  margin: 1.75rem 0 1.5rem;
  display: grid;
  gap: 0.75rem;
}

#kickstart-bundle .kickstart-list li {
  line-height: 1.5;
}

/* Give FAQs a bit more breathing room between questions */
.home-faq-wrap p + p {
  margin-top: 1.25rem;
}

/* Add breathing room before the FAQ button */
.services .home-center {
  margin-top: 2.5rem !important;
}

/* ============================
   TOOLKIT PAGE — CLEAN (scoped)
   ============================ */

.page-toolkit .hero{
  text-align:center;
}

.page-toolkit .hero .home-lead-640{
  max-width:720px;
  margin:0 auto 18px;
}

/* Quick note (bookmark line) */
.page-toolkit .toolkit-quicknote{
  max-width:760px;
  margin:12px auto 0;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  border-radius:12px;
  color:var(--muted);
}

/* Keep sections consistent (no hacks) */
.page-toolkit .why-clinkable,
.page-toolkit .services{
  padding:60px 20px;
}

/* Center the section headers/intro copy */
.page-toolkit .why-clinkable .container,
.page-toolkit .services .container{
  text-align:center;
}

/* BUT: cards should be left-aligned inside */
.page-toolkit .service-grid .service-item{
  text-align:left;
}

/* Card bullet lists should be left-aligned and readable */
.page-toolkit .service-item .benefits-list{
  list-style: disc outside;
  padding-left: 22px;
  margin: 14px 0 0;
  max-width:none;
}

.page-toolkit .service-item .benefits-list li + li{
  margin-top:6px;
}

/* Center buttons consistently */
.page-toolkit .cta-button{
  display:inline-block;
  margin:18px auto 0;
  text-align:center;
}

/* Intake tip line */
.page-toolkit .toolkit-intro-tip{
  max-width:720px;
  margin:12px auto 0;
}

/* Step 3 list should NOT be centered bullets */
.page-toolkit #step-3-digital-guides .benefits-list{
  max-width:820px;
  margin:14px auto 0;
  text-align:left;
}

/* remove any old pull-up hacks if they still exist */
.page-toolkit #downloads-title{
  margin-top:0;
}

/* Toolkit hero bookmark callout */
.page-toolkit .toolkit-quicknote{
  max-width:760px;
  margin:12px auto 0;
  padding:12px 14px;
  border:1px solid rgba(0,0,0,0.06);
  background:#fff;
  border-radius:12px;
  color:var(--muted);
}

/* =========================
   Marketplace – Templates & Kits
   ========================= */

.page-marketplace .hero {
  padding: 60px 20px;
}

.page-marketplace .hero .home-lead-640 {
  max-width: 640px;
  margin: 0 auto 0;
}

/* Extra spacing between hero text and buttons on Templates & Kits */
.page-marketplace .hero .home-lead-640 {
  margin-bottom: 32px; /* adjust to taste: 24–40px works great */
}

.page-marketplace .home-cta-row-plain {
  margin-top: 12px; /* ensures buttons breathe */
}



/* Wrap both sections on the page */
.page-marketplace .product-section {
  padding: 60px 20px;
}

/* Use existing .service-grid + .service-item as the base card layout */
.page-marketplace .product-section .service-grid {
  margin-top: 30px;
}

/* Card layout */
.page-marketplace .product-card {
  border: 1px solid var(--tile-border);
  border-radius: 10px;
  padding: 18px 16px 20px;
  background: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Inner content wrapper so we can override .services text-align */
.page-marketplace .product-card .product-body {
  text-align: left;
}

/* Preview image above content */
.page-marketplace .product-thumb {
  margin: -4px -4px 10px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--tile-border);
}

.page-marketplace .product-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

/* Small label at top of card */
.page-marketplace .product-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Title / subtitle */
.page-marketplace .product-card h3 {
  font-size: 1.15rem;
  margin: 2px 0 4px;
}

.page-marketplace .product-subtitle {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Bullet list inside card */
.page-marketplace .product-card .product-meta {
  list-style: disc;
  padding-left: 20px;
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: var(--muted-2);
}

.page-marketplace .product-card .product-meta li {
  margin-bottom: 4px;
}

/* Price + actions row */
.page-marketplace .product-footer {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.page-marketplace .product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-marketplace .price {
  font-size: 1.1rem;
  font-weight: 700;
}

/* Actions: two red pill buttons */
.page-marketplace .product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

.page-marketplace .product-actions .cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  background-color: #ff4d4f;
  color: #fff;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.page-marketplace .product-actions .cta-button:hover {
  background-color: var(--brand-dark);
  transform: translateY(-1px);
}

/* Stack actions + soften layout on small screens */
@media (max-width: 480px) {
  .page-marketplace .product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-marketplace .product-price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* =========================
   Templates & Kits: align buttons
   ========================= */

/* Make each card a vertical flex container */
.page-marketplace .product-card {
  display: flex;
  flex-direction: column;
}

/* Let the inner body stretch to fill the card */
.page-marketplace .product-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Push the footer (price + buttons) to the bottom */
.page-marketplace .product-footer {
  margin-top: auto;
}

/* Home: fix bullets in "Which flow fits your business?" section */
.usecase .lane-points {
  list-style-type: disc;
  list-style-position: outside;
  padding-left: 22px;      /* indent bullets */
  margin: 8px 0 0;
  font-size: 0.95rem;
  color: var(--muted-2);
  text-align: left;        /* keep lines left-aligned */
}

.usecase .lane-points li {
  margin-bottom: 4px;      /* breathing room between lines */
}

/* ================================
   UNIVERSAL PREVIEW PAGE STYLES
================================= */

.preview-page {
  background: #f4f4f7;
  padding: 40px;
}

.preview-page .preview-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.preview-page .preview-container img {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Preview Page Background — Gradient Premium */
.preview-page {
  background: linear-gradient(135deg, #eef1f6 0%, #dfe4ee 100%);
  padding: 60px 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
}

.preview-container {
  background: #ffffff;
  padding: 50px;
  border-radius: 26px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ================================
   PREVIEW PAGES — FULL-WIDTH STACK
   (easy to read, scroll through)
================================= */

.preview-page {
  background: linear-gradient(135deg, #eef1f6 0%, #e4e9f2 100%);
  min-height: 100vh;
  padding: 56px 16px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}

/* White frame */
.preview-page .preview-container {
  max-width: 1100px;          /* keeps it big but readable */
  width: 100%;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
  box-sizing: border-box;

  /* STACK */
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* Big readable screenshots */
.preview-page .preview-container img {
  width: 100%;
  height: auto;

  /* make them readable */
  object-fit: contain;

  background: #f8fafc;
  padding: 10px;

  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.22);
  display: block;
}

/* If you have tall phone shots, don't shrink them anymore */
.preview-page .preview-container img.preview-vertical {
  max-width: 100%;
  justify-self: stretch;
}

/* Optional hover polish */
@media (hover: hover) {
  .preview-page .preview-container img {
    transition: transform 0.18s ease, box-shadow 0.18s ease;
  }
  .preview-page .preview-container img:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.32);
  }
}

/* =========================
   Storefronts page (scoped)
   ========================= */

.storefronts-page #earn {
  padding: 32px 20px;
  background: #ffffff;
}

/* Shared intro paragraph style for this page */
.storefronts-page .sf-intro {
  max-width: 820px;
  margin: 12px auto 18px;
  color: var(--muted);
  text-align: center;
}

/* Wider benefits list under "earn" */
.storefronts-page .sf-benefits-wide {
  max-width: 920px;
  margin: 0 auto;
  text-align: left;
}

/* Narrower benefits list under Requirements */
.storefronts-page #requirements .sf-benefits-narrow {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

/* Small notes under sections */
.storefronts-page .sf-note {
  max-width: 820px;
  margin: 16px auto 0;
  color: var(--muted);
  text-align: left;
  font-size: 0.95rem;
}

/* Plan footnote text ("Includes first month of Care…") */
.storefronts-page .sf-plan-footnote {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* How it works list */
.storefronts-page .sf-how-list {
  /* list-decimal already gives max-width + margin; this tightens spacing if needed */
  margin-top: 16px;
}

/* Hosting block layout */
.storefronts-page .sf-hosting-intro {
  max-width: 820px;
  margin: 12px auto 18px;
  color: var(--muted);
  text-align: center;
}

.storefronts-page .sf-hosting-body {
  max-width: 820px;
  margin: 16px auto 0;
  text-align: left;
  color: var(--muted-2);
}

/* FAQ layout tweaks (local only) */
.storefronts-page .sf-faq-wrap {
  margin-top: 18px;
}

.storefronts-page .sf-faq-item + .sf-faq-item {
  margin-top: 16px;
}

/* =========================
   Storefronts – lower section polish
   ========================= */

.storefronts-page #hosting,
.storefronts-page #how-it-works,
.storefronts-page #faq {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Hosting block as a soft card band */
.storefronts-page #hosting {
  background: #fafafa;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.storefronts-page #hosting .container {
  max-width: 900px;
}

/* “Hosting & Care Plan” headline a touch tighter */
.storefronts-page #hosting h3 {
  text-align: left;
}

/* Hosting body as a subtle card */
.storefronts-page .sf-hosting-body {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
}

/* Subheading inside hosting */
.storefronts-page .sf-hosting-body h4 {
  margin-top: 0;
  margin-bottom: 8px;
}

/* Give bullets a bit more structure */
.storefronts-page .sf-hosting-body .benefits-list {
  margin-top: 10px;
  margin-bottom: 16px;
}

/* “If You Ever Cancel” subheading spacing */
.storefronts-page .sf-hosting-subheading {
  margin-top: 14px;
  margin-bottom: 6px;
}

/* = How It Works = */

.storefronts-page #how-it-works .container {
  max-width: 760px;
  text-align: center;
}

.storefronts-page #how-it-works h3 {
  margin-bottom: 12px;
}

/* Turn the 1–2–3 into a clean vertical strip */
.storefronts-page .sf-how-list {
  list-style-position: inside;
  margin: 10px auto 0;
  padding-left: 0;
  text-align: left;
  line-height: 1.5;
}

.storefronts-page .sf-how-list li + li {
  margin-top: 6px;
}

/* = FAQ tweaks = */

.storefronts-page #faq .container {
  max-width: 900px;
}

.storefronts-page #faq h3 {
  text-align: left;
  margin-bottom: 18px;
}

.storefronts-page .sf-faq-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.storefronts-page .sf-faq-item {
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #eceff4;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.storefronts-page .sf-faq-item h4 {
  margin-bottom: 6px;
}

/* Optional: two-column FAQ on large screens */
@media (min-width: 1024px) {
  .storefronts-page .sf-faq-wrap {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* last FAQ can span full width if odd count */
  .storefronts-page .sf-faq-wrap .sf-faq-item:last-child {
    grid-column: 1 / -1;
  }
}

/* =========================
   Storefronts – top sections
   ========================= */

.storefronts-page #earn,
.storefronts-page #requirements {
  padding: 48px 20px;
}

.storefronts-page #earn .container,
.storefronts-page #requirements .container {
  max-width: 980px;
}

/* Alternating backgrounds */
.storefronts-page #earn {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.storefronts-page #requirements {
  background: #fafafa;
  border-bottom: 1px solid #eee;
}

/* Headings + intro lines */
.storefronts-page #earn h3,
.storefronts-page #requirements h3 {
  text-align: left;
  margin-bottom: 8px;
}

.storefronts-page #earn p,
.storefronts-page #requirements p {
  max-width: 740px;
  margin: 8px 0 0;
  color: var(--muted);
}

/* Card-style bullets */
.storefronts-page #earn .benefits-list,
.storefronts-page #requirements .benefits-list {
  margin-top: 18px;
  padding: 16px 22px 18px 26px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #eceff4;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  list-style-position: outside;
}

.storefronts-page #earn .benefits-list li + li,
.storefronts-page #requirements .benefits-list li + li {
  margin-top: 6px;
}

/* Keep the little “Don’t have everything perfect yet?” line tucked in */
.storefronts-page #requirements > .container > p:last-of-type {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}

/* Mini-Site Guides block (Storefronts page) */
#digital-guides .section-lead {
  max-width: 820px;
  margin: 12px auto 18px;
  color: var(--muted);
  text-align: center;
}

/* spacing for the grid */
#digital-guides .service-grid {
  margin-top: 24px;
}

/* card layout tweaks */
#digital-guides .service-item {
  padding: 20px;
  text-align: left;
}

/* preview thumbnail */
#digital-guides .guide-thumb {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto 14px;
  border-radius: 10px;
  border: 1px solid var(--tile-border);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* body copy + meta */
#digital-guides .guide-copy {
  margin: 6px 0 10px;
  color: var(--muted);
}

#digital-guides .guide-meta {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 0.95rem;
}

#digital-guides .guide-price {
  font-weight: 600;
  margin: 4px 0 8px;
}

/* button already gets spacing from earlier rules, keep this if you like it */
#digital-guides .service-item .cta-button {
  margin-top: 12px;
  margin-bottom: 16px;
  padding: 14px 28px;
  display: inline-block;
}

/* fine print */
#digital-guides .guide-fine-print {
  margin-top: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

#digital-guides .guide-fine-print strong {
  color: #c0392b;
}

/* closing note under the grid */
#digital-guides .section-note {
  margin-top: 24px;
  color: var(--muted);
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* ------------------------------------ */
/* Mini-Site Guides — Small Enhancements */
/* ------------------------------------ */

/* 1. Consistent spacing under thumbnails */
#digital-guides .guide-thumb {
  margin-bottom: 14px;
}

/* 2. Improve readability of long descriptions */
#digital-guides .guide-copy {
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* 3. Premium hover motion */
#digital-guides .service-item {
  transition: 0.2s ease;
}

#digital-guides .service-item:hover {
  transform: translateY(-3px);
}

/* 4. Optional section divider for nicer hierarchy */
#digital-guides {
  border-top: 1px solid #f0f0f0;
  padding-top: 48px;
  margin-top: 48px;
}

/* ABOUT PAGE ONLY */
.page-about .why-clinkable {
  padding: 80px 0;
}

.page-about .why-clinkable h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.page-about .why-clinkable p {
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 780px;
  margin: 0 auto 1.25rem;
  text-align: left; /* or center—your choice */
}

/* ================================
   CONTACT PAGE — LAYOUT + POLISH
   ================================ */

/* Page wrapper */
.page-contact .hero {
  padding: 64px 0 32px;
  text-align: center;
}

.page-contact .contact {
  padding: 48px 0 80px;
}

/* Form card container */
.contact-box {
  background: #ffffff;
  padding: 32px 36px;
  border-radius: 14px;
  margin-top: 24px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;

  /* Soft card shadow + crisp border */
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);

  /* Subtle halo glow behind card */
  position: relative;
}

.contact-box::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(230, 57, 70, 0.08),
    transparent 70%
  );
  border-radius: 20px;
}

/* Intro copy */
.contact-intro,
.contact-next-steps {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.contact-intro {
  margin-bottom: 6px;
  color: #555;
}

.contact-next-steps {
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #777;
}

/* Headings */
.page-contact h2 {
  margin-bottom: 8px;
}

/* Inputs + textarea */
.page-contact input,
.page-contact textarea {
  display: block;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #ddd;
  padding: 14px 16px;
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: inherit;
  background: #fff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.2s ease;
}

/* Premium focus state */
.page-contact input:focus,
.page-contact textarea:focus {
  border-color: #e63946;
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.15);
  background: #fff;
}

/* Submit button */
.page-contact button[type="submit"] {
  background: #e63946;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  width: 100%;
  transition:
    background 0.15s ease,
    transform 0.1s ease;
}

.page-contact button[type="submit"]:hover {
  background: #cf2f3c;
}

/* Micro interaction */
.page-contact button[type="submit"]:active {
  transform: translateY(1px);
}

/* Prefer email line */
.contact-alt {
  text-align: center;
  margin-top: 24px;
  color: #555;
  font-size: 0.95rem;
}

.contact-alt a {
  color: #e63946;
  font-weight: 600;
  text-decoration: none;
}

.contact-alt a:hover {
  text-decoration: underline;
}

/* =========================================================
   THANK YOU PAGE (ONLY) — Next Steps polish
   Targets: <body class="page-download page-thankyou">
   ========================================================= */

.page-download.page-thankyou .why-clinkable h2 {
  margin-bottom: 10px;
}

.page-download.page-thankyou .why-clinkable .home-muted {
  max-width: 780px;
  margin: 0 auto 18px;
  line-height: 1.55;
}

/* Make the steps read like a proper left-aligned checklist */
.page-download.page-thankyou .why-clinkable .benefits-list {
  max-width: 820px;
  margin: 14px auto 0;
  padding-left: 1.25rem;   /* bullet indent */
  text-align: left;        /* fix centered bullets */
  line-height: 1.7;
}

/* Improve spacing between bullets */
.page-download.page-thankyou .why-clinkable .benefits-list li {
  margin: 10px 0;
}

/* Make the bold lead-in phrases pop without being too heavy */
.page-download.page-thankyou .why-clinkable .benefits-list strong {
  font-weight: 700;
}

/* Make inline code look nicer */
.page-download.page-thankyou .why-clinkable code {
  padding: 0.15em 0.35em;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.06);
  font-size: 0.95em;
}

/* Tighten the support + license lines and keep them aligned */
.page-download.page-thankyou .why-clinkable p.home-muted {
  max-width: 820px;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}

/* Small mobile refinement */
@media (max-width: 640px) {
  .page-download.page-thankyou .why-clinkable .benefits-list {
    padding-left: 1.05rem;
  }
}

/* =========================================================
   THANK YOU PAGE — Remove excess gap between hero + steps
   ========================================================= */

.page-download.page-thankyou .hero {
  padding-bottom: 24px; /* was much larger */
}

.page-download.page-thankyou .hero .home-muted {
  margin-bottom: 12px; /* tighten Tip spacing */
}

.page-download.page-thankyou .why-clinkable {
  padding-top: 20px; /* pull Next steps upward */
}

/* FIX: remove gray box around hamburger on mobile hosted */
.menu-toggle {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  outline: none !important;
  filter: none !important;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:focus,
.menu-toggle:active {
  outline: none !important;
  box-shadow: none !important;
}

/* ===============================
   Plans — alignment + CTA row
   =============================== */

.plan-grid {
  align-items: stretch;
}

.plan-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.plan-features {
  margin-bottom: 0;
}

.sf-plan-footnote {
  margin-top: auto; /* pushes footnote + CTA toward bottom */
}

.plan-cta-row {
  margin-top: 16px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Optional: keep buttons same width so rows match */
.plan-cta-row .cta-button {
  min-width: 160px;
  text-align: center;
}

/* Center feature lists inside pricing cards */
.plan-card .plan-features {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
  padding-left: 1.1em; /* keeps bullets clean */
}

.plan-cta-row{
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:nowrap;
}
.plan-cta-row .cta-button{
  width:auto;
  min-width:180px;
}

@media (max-width: 980px){
  .plan-cta-row{
    display:flex;
    flex-direction:column;
    gap:12px;
    align-items:center;
  }
  .plan-cta-row .cta-button{
    width:min(320px, 100%);
  }
}

/* Keep buttons on ONE row, but allow them to shrink inside the Pro card */
.plan-cta-row {
  flex-wrap: nowrap;           /* never stack */
}

.plan-card--popular .plan-cta-row .cta-button {
  flex: 1 1 0;                 /* share space + shrink as needed */
  min-width: 0;                /* critical: allows shrinking in flex */
  padding-left: 18px;          /* slightly tighter so they fit */
  padding-right: 18px;
  font-size: 0.98rem;          /* tiny reduction (optional but helpful) */
}

/* ==========================================
   Align Mini-Guide buttons like Storefronts
   (first 3 aligned, bundle sits lower)
   ========================================== */

#digital-guides .service-item {
  display: flex;
  flex-direction: column;
}

/* Let content determine height */
#digital-guides .service-item .card-body {
  flex: 1;
}

/* Button sits consistently after content */
#digital-guides .service-item > .cta-button {
  margin-top: 16px;
  align-self: flex-start;
}

/* Contact page only */

.contact-wrap {
  padding: 24px 0;
}

.contact-form {
  margin-top: 18px;
  max-width: 640px;
}

.contact-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-family: inherit;
}

.contact-form button {
  margin-top: 14px;
}

.contact-meta {
  margin-top: 22px;
}

.hidden {
  display: none;
}

/* =========================
   Contact Thank You Page
   ========================= */

.page-contact-thanks .hero .home-muted a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: none;
}

.page-contact-thanks .hero .home-muted a:hover {
  text-decoration: underline;
}

/* Card */
.page-contact-thanks .thanks-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--tile-border);
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  text-align: left;
}

/* Keep list clean */
.page-contact-thanks .thanks-card .benefits-list {
  margin-top: 12px;
  margin-bottom: 12px;
}

/* Small note */
.page-contact-thanks .thanks-note {
  margin-top: 10px;
}


/* =========================================================
   TOOLKIT POLISH — Step 1 + Step 3 (scoped, safe)
   Paste at very bottom of styles.css
   ========================================================= */

/* Stop global centering from making Toolkit sections look weird */
.page-toolkit #main .why-clinkable .container,
.page-toolkit #main .services .container {
  text-align: left;
}

/* Keep headings centered, but body copy readable */
.page-toolkit #main h1,
.page-toolkit #main h2 {
  text-align: center;
}

.page-toolkit #main .why-clinkable p,
.page-toolkit #main .services p {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* intro lines */
}

/* Tighten section padding ONLY on toolkit (less empty space) */
.page-toolkit #main .why-clinkable,
.page-toolkit #main .services {
  padding: 48px 20px !important;
}

/* Remove the old "pull section upward" look on toolkit */
.page-toolkit #downloads-title {
  margin-top: 0 !important;
  margin-bottom: 12px !important;
}
.page-toolkit #downloads-title + p {
  margin-top: 10px !important;
  margin-bottom: 20px !important;
}

/* Make the IMPORTANT note look like a clean callout bar */
.page-toolkit .toolkit-important {
  max-width: 980px;
  margin: 14px auto 0;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.65);
  text-align: left;
}
.page-toolkit .toolkit-important strong {
  color: #111;
}

/* Step 1 cards: premium, readable, consistent */
.page-toolkit .service-grid {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.page-toolkit .service-item {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);
  text-align: left;
}

.page-toolkit .service-item h4 {
  line-height: 1.25;
}

.page-toolkit .service-item p {
  max-width: none;
  margin: 10px 0 12px;
  text-align: left;
  color: var(--muted);
}

.page-toolkit .service-item .benefits-list {
  max-width: none;
  margin: 10px 0 0;
  padding-left: 20px;
  list-style-position: outside;
  color: var(--muted-2);
  text-align: left;
}

.page-toolkit .service-item .benefits-list li + li {
  margin-top: 6px;
}

/* Buttons: look intentional and aligned */
.page-toolkit .service-item a.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  width: 100%;
  border-radius: 10px;
}

/* Step 3: turn that centered bullet blob into a clean “card” */
.page-toolkit #step-3-digital-guides .benefits-list {
  max-width: 980px;
  margin: 18px auto 0;
  padding: 18px 22px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 24px rgba(0,0,0,0.05);

  text-align: left;
  list-style-position: outside;
  padding-left: 36px; /* bullet indent */
}

.page-toolkit #step-3-digital-guides .benefits-list li + li {
  margin-top: 10px;
}

.page-toolkit #step-3-digital-guides .cta-button {
  margin-top: 18px;
  display: inline-flex;
  justify-content: center;
  border-radius: 10px;
  min-width: 240px;
}

/* Mobile: keep spacing tight and cards comfy */
@media (max-width: 768px) {
  .page-toolkit #main .why-clinkable,
  .page-toolkit #main .services {
    padding: 38px 16px !important;
  }

  .page-toolkit .service-item {
    padding: 18px 16px;
  }
}

/* =========================
   TOOLKIT — CTA CENTER FIX
   (override global button rules)
   ========================= */

.page-toolkit .services .cta-button,
.page-toolkit #step-3-digital-guides .cta-button {
  display: block;
  width: fit-content;
  margin: 20px auto 0;
  text-align: center;
}

/* Fallback for older browsers */
@supports not (width: fit-content) {
  .page-toolkit .services .cta-button,
  .page-toolkit #step-3-digital-guides .cta-button {
    display: inline-block;
  }
  .page-toolkit .services .container,
  .page-toolkit #step-3-digital-guides .container {
    text-align: center;
  }
}

/* =========================
   TOOLKIT — Guide Card CTA Alignment
   ========================= */

.page-toolkit .service-grid .service-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Let content grow */
.page-toolkit .service-grid .service-item > * {
  flex-shrink: 0;
}

/* Push CTA button to bottom */
.page-toolkit .service-grid .service-item .cta-button {
  margin-top: auto;
}