/* =========================================
   True Wags — Issues UI (mobile-first)
   Clean, accessible, desktop second
========================================= */

/* -------- Tokens (with safe fallbacks) -------- */
:root{
  --bg-soft: #FFF8EA;
  --card-bg: #ffffff;
  --ring: rgba(0,0,0,.08);
  --shadow: 0 6px 18px rgba(0,0,0,.08);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.06);
  --primary-color: #6C3FA3;
  --primary: #2c3e50;
  --accent: #6C3FA3;
  --highlight: #F7B733;
  --light: #ecf0f1;
  --dark: #34495e;
  --border: #E5E7EB;
  --muted: #F8FAFC;
  --muted-2: #F1F5F9;
  --text-base: #1f2937;
  --text-secondary: #6b7280;

  --maxw: 1200px;
  --gap: clamp(12px, 2.5vw, 28px);
  --radius-lg: 20px;
}

/* -------- Base -------- */
.issue-page .container{ width:100%; max-width:1200px; margin:0 auto; padding:0 1rem; box-sizing:border-box; }
.container--narrow{ max-width:920px; margin-inline:auto; }
.container--fluid{ max-width:none; width:100%; }

.section{
  padding:2rem 0;
  color:var(--text-base);
  font-family:'Roboto', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
}

.prose > * + *{ margin-top:1rem; }
.lead{ max-width:72ch; line-height:1.75; font-size:1.05rem; color:var(--text-base); }

.eyebrow{ letter-spacing:.08em; text-transform:uppercase; font-weight:700; font-size:.8rem; color:var(--primary-color); }
.hd-2{ font-size:1.75rem; margin:0 0 .6rem; line-height:1.2; }
.hd-3{ font-size:1.1rem; margin:1.25rem 0 .5rem; }
.hd-4{ font-size:1rem; letter-spacing:.01em; color:var(--primary-color); margin:0 0 .5rem; }

@media (prefers-reduced-motion:no-preference){
  *{ transition: background-color .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
}

/* ===================== */
/* Buttons               */
/* ===================== */
.btn{
  display:inline-flex; align-items:center; gap:.5rem;
  padding:1rem 1.25rem; border-radius:999px; text-decoration:none;
  font-weight:600; box-shadow:var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
  white-space:nowrap;
  justify-content:center;
  width:100%;                 /* mobile: comfy full-width */
  max-width:480px;            /* cap for thumbs */
  margin-inline:auto;
}
.btn:hover{ transform:translateY(-1px); box-shadow:0 10px 24px rgba(0,0,0,.1); }
.btn:focus-visible{ outline:3px solid color-mix(in srgb, var(--primary-color) 35%, white); outline-offset:2px; }
.btn-primary{ background:var(--primary-color); color:#fff; }
.btn-secondary{ background:#fff; color:var(--primary-color); border:2px solid var(--primary-color); }

/* -------- Breadcrumbs -------- */
.breadcrumbs{
  background: var(--muted);
  border-block: 1px solid var(--border);
  font-size: .95rem;
}
.breadcrumbs ol{
  display: flex; gap: 10px; align-items: center; flex-wrap: wrap;
  margin: 0; padding: 10px 16px; list-style: none;
}
.breadcrumbs a{
  color: var(--dark); text-decoration: none; border-bottom: 1px solid transparent;
}
.breadcrumbs a:hover{ border-bottom-color: currentColor; }
.breadcrumbs a:focus-visible{ outline: 2px solid #a5b4fc; outline-offset: 2px; }
.breadcrumbs li[aria-current="page"]{ font-weight: 700; color: var(--primary); }

/* ===================== */
/* Hero (old style)      */
/* ===================== */
.hero.small-hero{
  padding: 2.5rem 0;
  background: #F7B733;      /* same colour as old */
  text-align: center;
}

/* mobile-first single column */
.hero.small-hero .container{
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 1.5rem;
}

.hero-content{ text-align: center; }
.hero-media{ display: block; }

.hero-media img{
  width: 100%;
  max-width: 680px;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* map both selectors so your classes work with old look */
.hero.small-hero h1,
.hero-title{
  font-size: 2rem;
  margin: .25rem 0 .5rem;
  line-height: 1.15;
  color: var(--text-base);
}

.hero.small-hero p,
.hero-lead{
  font-size: 1.125rem;
  color: rgba(0,0,0,.85);
  margin: 0 0 1.25rem;
}

.hero-cta{
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
}

/* desktop split (same as your old progressive enhance) */
@media (min-width: 900px){
  .hero.small-hero .container{
    grid-template-columns: 1.1fr .9fr; /* copy | media */
    justify-items: stretch;
  }
  .hero.small-hero{ text-align: left; }
  .hero-content{ text-align: left; }
}

  /* Overview cards: equal height grid & nicer rhythm */
  .cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 1fr;                   /* equal heights */
    gap: clamp(16px, 2vw, 28px);
  }
  .cards > .card{
    height: 100%;
    display: flex;                          /* equalize inner layout */
    flex-direction: column;
  }
  .cards > .card h3{ margin-bottom: .5rem; }
  .cards > .card p:last-child{ margin-top: auto; } /* pushes last text down for balance */

.grid.two {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(20px, 2.5vw, 36px);
  align-items: center; /* 👈 centers items vertically */
}

.process {
  position: relative;   /* remove sticky positioning */
  top: auto;            /* reset previous top offset */
  align-self: center;   /* centers within the grid column */
  margin: 0 auto;       /* centers horizontally within its column */
}

  /* Related issues: tidy 3-column grid, tiles fill height */
  .related-issues .related-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(12px, 1.5vw, 20px);
    max-width: 1100px;
  }
  .related-issues .related-grid > li > a{
    height: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
  }

  /* Container breathing room on wide screens */
  .issue-page .container{ padding: 0 24px; }

@media (min-width: 1280px){
  .hero.small-hero .container{ gap: 56px; }
  .issue-page .container{ padding: 0 28px; }
  .related-issues .related-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}



/* Sticky CTA – mobile */
.cta-strip{
  position: sticky;           /* the ONLY sticky element */
  bottom: 0;
  z-index: 50;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--highlight);
  text-align: center;
}

/* Children: normal positioning */
.cta-strip .container,
.cta-strip p{
  position: static !important;   /* undo previous sticky */
}

.cta-strip .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-strip p{
  margin: 0;
  font-weight: 700;
  color: #1f2937;
}

.cta-strip .btn{
  background: var(--accent);
  align-self: center;
}
.cta-strip .btn:hover{ background:var(--bg-soft); }

/* Desktop: not sticky (if desired) */
@media (min-width: 760px){
  .cta-strip{ position: static; padding: 16px 0; }
}

/* Safety: sticky breaks if an ancestor has overflow other than visible.
   Make sure no wrapper around .cta-strip sets overflow:hidden/auto/scroll. */

/* -------- Local areas -------- */
.local-areas{ padding: 36px 0; background: #fff; }
.local-areas h2{ color: var(--primary); text-align: center; margin: 0 0 6px; }
.local-areas p{
  color: #475569; text-align: center; max-width: 68ch; margin: 0 auto 12px;
}
.chip-list{
  display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; margin: 10px 0 0; justify-content: center;
}
.chip-list li{
  border: 1px solid var(--border); border-radius: 999px;
  padding: 8px 12px; background: var(--muted-2); color: #334155;
}

/* -------- Related issues -------- */
.related-issues{ padding: 36px 0; border-top: 1px solid var(--border); background: var(--muted); }
.related-issues h2{ color: var(--primary); text-align: center; margin: 0 0 10px; }
.related-issues .related-grid{
  display: grid; grid-template-columns: 1fr; gap: 12px;
  list-style: none; padding: 0; margin: 12px auto 0; max-width: 900px;
}
.related-issues a{
  display: block; padding: 14px 16px; border-radius: 12px;
  background: #fff; border: 1px solid var(--border); text-decoration: none; color: var(--primary);
  box-shadow: var(--shadow-sm); text-align: center;
}
.related-issues a:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }

/* -------- Contact CTA -------- */
.contact-cta{
  padding: 44px 0; background: var(--highlight); color: #0b1220; text-align: center;
  border-top: 1px solid rgba(0,0,0,.05); position: sticky;
}
.contact-cta h2{ margin: 0 0 6px; font-size: clamp(1.2rem,3.5vw,1.5rem); }
.contact-cta p{ opacity: .9; margin: 0 0 12px; }
.contact-cta .btn{ background: var(--primary-color); color: #fff; }
.contact-cta .btn:hover{ filter: brightness(.92); }

/* =========================================
   Progressive Enhancement (desktop second)
========================================= */
@media (min-width:640px){
  .issue-page .container{ padding: 0 20px; }
  .related-issues .related-grid{ grid-template-columns: 1fr 1fr; }
}

@media (min-width:760px){
  .cards{ grid-template-columns: repeat(3, 1fr); }
  .grid.two{ grid-template-columns: 1.1fr .9fr; }
  .cta-strip{ position: static; padding: 16px 0; } /* desktop: not sticky */
}

@media (min-width:900px){
  .hero.small-hero .container{
    grid-template-columns: 1.1fr .9fr; /* copy | media */
    justify-items: stretch;
    gap: 2rem;
  }
  .hero-content{ text-align: left; }
  .hero.small-hero{ text-align: left; padding: 3rem 0 2.25rem; }
  .hero-media img{ aspect-ratio: 16 / 10; }
}

@media (min-width:1200px){
  .issue-page .container{ padding: 0 28px; }
}

/* -------- Print -------- */
@media print{
  .cta-strip{ display: none; }
  .btn{ border: 1px solid #000; background: #fff; color: #000; }
}

/* Keep hero heading non-sticky if any global rules try to stick it */
.hero-title{ position: static !important; top: auto !important; }

/* 1) Kill any text-shadow on hero copy */
.hero.small-hero .hero-title,
.hero.small-hero h1,
.hero.small-hero .hero-lead,
.hero.small-hero p {
  text-shadow: none !important;
}

/* 2) Keep everything centered on mobile */
.hero.small-hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;   /* center heading/lead with CTA on mobile */
  text-align: center;
}

/* Buttons are full-width + centered on mobile already via your base .btn rules */

/* 3) Align all text with the CTA on desktop */
@media (min-width: 900px){
  .hero.small-hero .container{
    grid-template-columns: 1.1fr .9fr;  /* copy | media */
  }

  .hero.small-hero .hero-content{
    align-items: flex-start;             /* left edges line up */
    text-align: left;
  }

  .hero.small-hero .hero-cta{
    justify-content: flex-start;         /* CTA starts at same left edge */
    gap: 1rem;
  }

  /* Stop buttons centering themselves on desktop */
  .hero.small-hero .btn{
    width: auto;
    max-width: none;
    margin-inline: 0;                    /* align with text */
  }
}

@media (min-width: 700px) and (max-width: 899.98px){
  .hero.small-hero .btn{
    width: auto;
    max-width: none;
  }
}

/* ---- Overview: sharper, consistent cards ---- */
.issue-overview{ padding: clamp(32px, 6vw, 64px) 0; }
.issue-overview h2{
  margin: 0 0 12px; text-align: center; color: var(--primary);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}
.issue-overview h2::after{
  content:""; display:block; width:56px; height:3px; margin:10px auto 0;
  background: var(--accent); border-radius:999px; opacity:.9;
}
.issue-overview > .container > p{
  max-width:62ch; margin:0 auto 18px; text-align:center; color:#334155;
}

.cards{
  display:grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: clamp(14px, 2.2vw, 24px); align-items:stretch; margin-top: 14px;
}
.card{
  background:#fff; border:1px solid var(--border); border-radius:18px;
  padding:20px; box-shadow: var(--shadow-sm);
  display:flex; flex-direction:column; transition:transform .2s, box-shadow .2s, border-color .2s;
}
.card:hover{ transform: translateY(-2px); box-shadow: var(--shadow); border-color: color-mix(in srgb, var(--border) 50%, var(--accent)); }
.card h3{ margin:0 0 8px; color: var(--accent); font-size:1.08rem }
.card p{ margin:0; color:#475569; }

.card ul{ list-style:none; margin:.25rem 0 0; padding:0; }
.card ul li{
  position:relative; padding-left:1.1rem; margin:.4rem 0; line-height:1.6; color:#475569;
}
.card ul li::before{
  content:""; position:absolute; left:0; top:.6em; width:8px; height:8px;
  background:var(--accent); border-radius:50%; box-shadow:0 0 0 2px #fff;
}

.how-we-help{
  padding: clamp(36px, 6vw, 64px) 0;
  background: var(--muted);
  border-block: 1px solid var(--border);
  align-items: center;
}
.how-we-help h2{
  margin:0 0 12px; text-align:center; color:var(--primary);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
}
.grid.two{ display:grid; grid-template-columns:1fr; gap: clamp(16px, 3vw, 28px); }

.tick-list{ list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.tick-list li{ position:relative; padding-left:30px; color:#334155; }
.tick-list li::before{
  content:""; position:absolute; left:0; top:.45em; width:18px; height:18px; border-radius:50%;
  background: var(--highlight); box-shadow:0 0 0 2px #fff, 0 0 0 3px var(--highlight);
}

/* Process card */
.process{
  background:#fff; border:1px solid var(--border); border-radius:18px; padding:18px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}
.process h3{ margin:0 0 10px; color:var(--primary) }
.process ol{ margin:0 0 14px; padding:0; list-style:none; display:grid; gap:10px; counter-reset:step; color:#334155; }
.process ol li{
  position:relative; padding-left:2.25rem; line-height:1.6;
}
.process ol li::before{
  counter-increment:step; content: counter(step); position:absolute; left:0; top:0;
  width:28px; height:28px; border-radius:50%; display:grid; place-items:center;
  background: var(--accent); color:#fff; font-weight:700; box-shadow: var(--shadow-sm);
}
.process .btn{ width:100%; justify-content:center; padding:.85rem 1.1rem; }

@media (min-width:900px){
  .grid.two{ grid-template-columns:1.1fr .9fr; align-items:start; }
  .process{ position:sticky; top:28px; }
  .process .btn{ width:auto; }
}

/* ================================
   1) Overview cards — centered text
   ================================ */
.cards .card{
  text-align: center;                      /* center headings & paragraphs */
}
.cards .card h3,
.cards .card p{
  margin-left: auto;
  margin-right: auto;
}

/* Keep lists tidy: center the UL block, but retain left text alignment
   so bullets and line breaks stay readable. */
.cards .card ul{
  display: inline-block;                   /* centers the whole list block */
  text-align: left;                        /* readable bullets */
  margin: .5rem auto 0;
  padding: 0;                              /* we'll handle padding on li */
}
.cards .card ul li{
  padding-left: 1.15rem;                   /* room for the dot */
  margin: .4rem 0;
  line-height: 1.6;
}

/* ==========================================
   2) How we help — more intuitive on desktop
   (mobile stays exactly as-is)
   ========================================== */

/* Make both columns feel like purposeful “cards” on desktop.
   Left = Benefits; Right = Process (sticky). */
@media (min-width: 900px){
  .how-we-help .grid.two{
    grid-template-columns: 1.1fr .9fr;
    align-items: start;
    gap: clamp(20px, 2.5vw, 36px);
  }

  /* Style the LEFT column wrapper (the <div> that contains .tick-list) as a card */
  .how-we-help .grid.two > :first-child{
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;                   /* center the list vertically if short */
    align-items: center;
  }

  /* Benefits list = two columns for quicker scan */
  .how-we-help .tick-list{
    max-width: 900px;                /* keeps it from running too wide */
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;  /* two columns on desktop */
    gap: 12px 24px;                  /* rows x columns gap */
  }
  .how-we-help .tick-list li{
    margin: .1rem 0;
    padding-left: 30px;              /* preserve dot spacing */
  }

  /* Process card already looks great — just ensure equal visual weight */
  .how-we-help .process{
    position: sticky;
    top: 28px;                       /* remains visible while scanning */
    border-radius: 18px;
    padding: 18px;
  }

  /* Optional: full-width CTA inside the process card improves clarity */
  .how-we-help .process .btn{
    width: 100%;
    justify-content: center;
    padding: .9rem 1.1rem;
  }
}

/* Small polish for the section heading */
.how-we-help h2::after{
  content:"";
  display:block;
  width:56px; height:3px;
  margin:10px auto 0;
  background: var(--accent);
  border-radius: 999px;
  opacity:.9;
}

/* Center the copy in the middle overview card */
.symptoms .card:nth-child(2){
  text-align: center;              /* center heading + paragraph */
}

/* Cancel any auto-push-to-bottom rules and center the text block */
.symptoms .card:nth-child(2) p{
  text-align: center;
  margin: .5rem auto 0 !important; /* override any margin-top:auto */
  max-width: 46ch;                  /* comfy line length */
}

/* Optional: also center it vertically on wider screens */
@media (min-width: 900px){
  .symptoms .card:nth-child(2){
    display: flex;                  /* your cards already are, but harmless */
    flex-direction: column;
    justify-content: center;        /* vertical centering */
  }
}

/* Keep the middle card's heading at the top, centre copy horizontally */
.symptoms .card:nth-child(2){
  text-align: center;              /* centre heading + paragraph text */
  display: flex;
  flex-direction: column;          /* normal top-to-bottom flow */
  justify-content: flex-start;     /* <-- keep content at the top */
}

/* Heading stays at top (normal margin) */
.symptoms .card:nth-child(2) h3{
  margin: 0 0 8px;
}

/* Centre paragraph and cancel any equal-height push-down rules */
.symptoms .card:nth-child(2) p,
.symptoms .card:nth-child(2) p:last-child{
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: .5rem !important;    /* override any margin-top:auto */
  margin-bottom: 0;
  max-width: 46ch;                  /* comfy line length */
  text-align: center;
}

/* (Optional) Only if you previously added vertical-centre rules */
@media (min-width: 900px){
  .symptoms .card:nth-child(2){
    /* ensure no vertical centring sneaks back in */
    justify-content: flex-start;
  }
}

/* Sticky CTA strip (works mobile + desktop) */
.cta-strip{
  position: sticky;          /* only the wrapper is sticky */
  bottom: 0;
  z-index: 50;
  padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--highlight);
  text-align: center;
}

/* children must be normal flow */
.cta-strip .container,
.cta-strip p{ position: static !important; }

.cta-strip .container{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cta-strip p{
  margin: 0;
  font-weight: 700;
  color: #1f2937;
}

.cta-strip .btn{ background:var(--accent); }
.cta-strip .btn:hover{ background:var(--hover); }

/* If you want it NOT sticky on desktop, uncomment this: */
/*
@media (min-width: 1200px){
  .cta-strip{ position: static; padding:16px 0; }
}
*/

.area-services {
  padding: clamp(32px, 6vw, 64px) 0;
  background: var(--muted);
  border-top: 1px solid var(--border);
}

.area-services h2 {
  text-align: center;
  color: var(--primary);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin-bottom: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
  align-items: stretch;
  margin-top: 1rem;
}

.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}

.service-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.service-card h3 {
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.service-card p {
  color: #475569;
  line-height: 1.6;
  flex-grow: 1;
}

.service-card .btn {
  margin-top: 1rem;
  align-self: center;
}

.how-we-help {
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  background: var(--muted, #f8fafc);
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  text-align: center;      /* center text content */
}

.how-we-help .container {
  max-width: 800px;        /* keeps it readable */
  margin: 0 auto;
}

.how-we-help h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color, #6C3FA3);
}

.process {
  background: #fff;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow, 0 6px 18px rgba(0,0,0,.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* centers content vertically inside */
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;            /* centers the box horizontally */
}

.process h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color, #6C3FA3);
}

.process ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
  text-align: left;
}

.process ol li {
  counter-increment: step;
  position: relative;
  padding-left: 2.25rem;
  line-height: 1.6;
}

.process ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-color, #6C3FA3);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,.06));
}.how-we-help {
  padding: clamp(2rem, 5vw, 4rem) 1rem;
  background: var(--muted, #f8fafc);
  display: flex;
  align-items: center;     /* vertical centering */
  justify-content: center; /* horizontal centering */
  text-align: center;      /* center text content */
}

.how-we-help .container {
  max-width: 800px;        /* keeps it readable */
  margin: 0 auto;
}

.how-we-help h2 {
  margin-bottom: 1.5rem;
  color: var(--primary-color, #6C3FA3);
}

.process {
  background: #fff;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow, 0 6px 18px rgba(0,0,0,.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;   /* centers content vertically inside */
  gap: 1rem;
  max-width: 500px;
  margin: 0 auto;            /* centers the box horizontally */
}

.process h3 {
  margin-bottom: 0.5rem;
  color: var(--primary-color, #6C3FA3);
}

.process ol {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: grid;
  gap: 0.75rem;
  counter-reset: step;
  text-align: left;
}

.process ol li {
  counter-increment: step;
  position: relative;
  padding-left: 2.25rem;
  line-height: 1.6;
}

.process ol li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--primary-color, #6C3FA3);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,.06));
}

/* =========================================
   Local Tips — Favourite Pet Spots (Mobile First)
   ========================================= */

.local-tips {
  background: var(--muted-2, #F1F5F9);
  padding: clamp(2.5rem, 6vw, 4rem) 1rem;
  border-top: 1px solid var(--border, #E5E7EB);
  text-align: center;
}

.local-tips h2 {
  color: var(--primary-color, #6C3FA3);
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin-bottom: 1.25rem;
  position: relative;
}

.local-tips h2::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 10px auto 0;
  background: var(--accent, #6C3FA3);
  border-radius: 999px;
  opacity: 0.9;
}

.local-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
}

/* Each “place” becomes a mini card */
.local-item {
  background: #fff;
  border: 1px solid var(--border, #E5E7EB);
  border-radius: 16px;
  box-shadow: var(--shadow-sm, 0 2px 10px rgba(0,0,0,.06));
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.local-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow, 0 6px 18px rgba(0,0,0,.08));
}

.local-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--primary-color, #6C3FA3);
  line-height: 1;
}

.local-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-base, #1f2937);
}

/* Tablet & up: 2-column grid */
@media (min-width: 640px) {
  .local-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop: 3-column layout */
@media (min-width: 960px) {
  .local-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}