/* ============================================================
   Podicare: "First choice for mobile foot care"
   Design system from the approved mockup (Podicare Website Design):
   soft grey panels, rounded cards, friendly & modern.
   Palette: brand blue #1B75BB · navy #152535 · soft grey #F2F5F9
            chip grey #E5ECF4 · WhatsApp green #2FCC59 · gold #F5B942
   Type: Outfit (everything) + Anton (phone-mockup display only)
   ============================================================ */

:root {
  --blue: #1B75BB;
  --blue-deep: #135685;
  --navy: #152535;
  --navy-2: #1E344A;
  --bg: #F2F5F9;
  --chip: #E5ECF4;
  --wa: #2FCC59;
  --wa-hover: #29bb50;
  --wa-deep: #1E9E44;
  --gold: #F5B942;
  --ink: #152535;
  --text: #4A5D70;
  --text-strong: #2A3D50;
  --muted: #5A7A94;
  --navy-muted: #AFC4D6;
  --blue-tint: #D8E8F5;
  --line: #E5ECF4;
  --r-card: 20px;
  --r-btn: 14px;
  --r-btn-lg: 16px;
  --r-chip: 10px;
  --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Anton", "Arial Narrow", sans-serif;
  --container: 74rem;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-pad: clamp(3.2rem, 7vw, 5rem);
  --ease-out: cubic-bezier(.22, .8, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 6rem; }

body {
  font-family: var(--font);
  font-size: 1.0625rem;                /* 17px base */
  line-height: 1.55;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { max-width: 100%; display: block; }

a { color: var(--blue); }
a:hover { color: var(--blue-deep); }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Headings (Outfit bold, tight tracking) ---------- */
h1, h2, h3 { font-weight: 700; color: var(--ink); text-wrap: balance; }

h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.875rem);   /* up to 62px */
  line-height: 1.05;
  letter-spacing: -.03em;
}

h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.125rem);   /* ~34px */
  line-height: 1.12;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

h3 { font-size: 1.19rem; line-height: 1.25; }

.lede {
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 33em;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-pad); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  border: 0;
  padding: .8rem 1.6rem;
  border-radius: var(--r-btn);
  cursor: pointer;
  transition: background-color .18s var(--ease-out), color .18s var(--ease-out), transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.btn:active { transform: translateY(1px); }

.btn-lg {
  font-size: 1.125rem;
  padding: 1.05rem 2rem;
  border-radius: var(--r-btn-lg);
}

.btn-whatsapp { background: var(--wa); color: #fff; }
.btn-whatsapp:hover { background: #29bb50; color: #fff; box-shadow: 0 6px 18px rgba(47, 204, 89, .35); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: #0e1a26; color: #fff; }

/* Brand-coloured CTA, used where WhatsApp branding would be one green too many */
.btn-brand { background: var(--blue); color: #fff; }
.btn-brand:hover { background: var(--blue-deep); color: #fff; box-shadow: 0 6px 18px rgba(27, 117, 187, .3); }

.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-tint); color: var(--blue-deep); }

.btn-white-green { background: #fff; color: var(--wa-deep); }
.btn-white-green:hover { background: #EAFBEF; color: var(--wa-deep); }

.icon-wa, .icon-inline { width: 1.3em; height: 1.3em; flex: none; fill: currentColor; }
.icon-inline { fill: none; }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 200;
  background: var(--navy);
  color: #fff;
  padding: .75rem 1.25rem;
  font-weight: 600;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
}

.site-header.scrolled { box-shadow: 0 2px 18px rgba(21, 37, 53, .08); }

.header-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 1rem var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; flex: none; }
.brand img { height: 2.6rem; width: auto; }

.site-nav {
  display: flex;
  gap: clamp(1rem, 2.4vw, 1.9rem);
}

.site-nav a {
  white-space: nowrap;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-strong);
  text-decoration: none;
  padding: .3rem 0 .35rem;
  border-bottom: 2px solid transparent;
}

.site-nav a:hover { color: var(--blue); }

.site-nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 600;
  border-bottom-color: var(--blue);
}

.header-actions { display: flex; align-items: center; gap: 1rem; }

.header-phone {
  font-weight: 700;
  font-size: 1rem;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--blue-deep); }

.btn-header { padding: .8rem 1.6rem; white-space: nowrap; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  background: none;
  border: 2px solid var(--chip);
  border-radius: 12px;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle-bar {
  height: 3px;
  width: 100%;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s var(--ease-out), opacity .2s var(--ease-out);
}

body.nav-open .nav-toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
body.nav-open .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 1080px) {
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: var(--navy);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateY(-102%);
    transition: transform .3s var(--ease-out);
  }
  body.nav-open .site-nav { transform: none; }
  .site-nav a { color: #fff; font-size: 1.6rem; font-weight: 600; }
  .site-nav a[aria-current="page"] { color: var(--gold); border-bottom-color: var(--gold); }
  .nav-toggle { display: flex; position: relative; z-index: 110; }
  body.nav-open .nav-toggle { border-color: rgba(255,255,255,.5); }
  body.nav-open .nav-toggle-bar { background: #fff; }
  .header-phone { display: none; }
  /* Tighten the offer button so it stays on one line beside logo and menu */
  .btn-header { padding: .7rem 1.05rem; font-size: .95rem; }
  .brand img { height: 2.2rem; }
}

@media (max-width: 380px) {
  .header-inner { gap: .6rem; padding-inline: 1rem; }
  .btn-header { padding: .7rem .85rem; font-size: .9rem; }
  .brand img { height: 2rem; }
}

/* ============================================================
   Panels & cards (shared)
   ============================================================ */
.panel { background: var(--bg); }

.card {
  background: var(--bg);
  border-radius: var(--r-card);
  padding: 1.9rem;
}

.card-white { background: #fff; }

.chip {
  display: inline-block;
  background: var(--chip);
  color: var(--text-strong);
  font-weight: 500;
  font-size: .93rem;
  padding: .55rem 1.1rem;
  border-radius: var(--r-chip);
}

.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; }

.tick { color: var(--blue); font-weight: 700; }

.tick-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  list-style: none;
  font-weight: 500;
  font-size: .96rem;
  color: var(--text-strong);
}

.tick-chips { display: flex; flex-wrap: wrap; gap: .75rem; list-style: none; }

.tick-chips li {
  background: #fff;
  color: var(--text-strong);
  font-weight: 500;
  font-size: .93rem;
  padding: .65rem 1.15rem;
  border-radius: var(--r-chip);
}

.eyebrow {
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.stars { color: var(--gold); font-size: 1.1em; letter-spacing: 2px; }

/* ============================================================
   Hero (home)
   ============================================================ */
.hero {
  background: var(--bg);
  border-radius: 0 0 28px 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 2rem;
  align-items: center;
  padding-block: clamp(2.6rem, 6vw, 3.8rem);
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-weight: 600;
  color: var(--text-strong);
}

.hero h1 { margin-top: 1.1rem; }

.hero .lede { margin-top: 1.2rem; }

/* First-visit offer, sat just above the buttons where the decision happens */
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 1.5rem;
  padding: .6rem 1.1rem .6rem .7rem;
  border-radius: 99px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}

.offer-pill b {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: .95rem;
  padding: .25rem .6rem;
  border-radius: 99px;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.1rem; }

.hero-chips { margin-top: 1.6rem; max-width: 36em; }

/* Phone mockup */
.phone-wrap { display: flex; justify-content: center; }

.phone {
  width: 330px;
  background: var(--navy);
  border-radius: 44px;
  padding: 14px;
  box-shadow: 0 24px 60px rgba(21, 37, 53, .35);
}

.phone-screen {
  background: linear-gradient(175deg, #2A85C9, #1B75BB 60%, #12609E);
  border-radius: 32px 32px 0 0;
  padding: 34px 26px 30px;
  text-align: center;
  position: relative;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 22px;
  background: var(--navy);
  border-radius: 12px;
}

/* White logo sits straight on the blue screen, no boxed background */
.phone-logo {
  display: block;
  height: 34px;
  width: auto;
  margin: 18px auto 0;
}

.phone-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.05;
  color: #fff;
  text-transform: uppercase;
  margin-top: 16px;
}

.phone-sub { font-size: .94rem; line-height: 1.5; color: var(--blue-tint); margin-top: 10px; }

.phone-btn {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 0;
  border-radius: var(--r-btn);
  margin-top: 12px;
  text-decoration: none;
}

.phone-btn-wa { background: var(--wa); color: #fff; margin-top: 20px; }
.phone-btn-wa:hover { background: #29bb50; color: #fff; }
.phone-btn-call { background: #fff; color: var(--blue); }
.phone-btn-call:hover { background: var(--blue-tint); color: var(--blue-deep); }

.phone-bar {
  background: var(--wa);
  border-radius: 0 0 32px 32px;
  padding: 18px 0;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
}

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

@media (max-width: 420px) {
  .phone { width: 100%; max-width: 330px; }
}

/* ============================================================
   Section headers with side link
   ============================================================ */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-head h2 { margin-bottom: 0; }

.section-link { font-weight: 600; font-size: .96rem; color: var(--blue); text-decoration: none; white-space: nowrap; }
.section-link:hover { text-decoration: underline; }

/* ============================================================
   Service cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.service-card {
  background: var(--bg);
  border-radius: 18px;
  padding: 1.5rem 1.15rem;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(21, 37, 53, .12); color: var(--ink); }

.service-card h3 { font-size: 1.07rem; }

.service-card p { font-size: .9rem; line-height: 1.5; color: var(--text); margin-top: .5rem; }

.service-card .service-price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: .25rem .4rem;
  margin-top: auto;
  padding-top: .8rem;
  color: var(--blue);
  font-size: .85rem;
  font-weight: 600;
}

.service-card .service-price small { color: var(--muted); font-size: .68rem; font-weight: 500; }
.home-services-offer { margin: 1.25rem 0 -.25rem; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

/* Bigger service cards (services page) */
.services-grid-lg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.services-offer-note {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .45rem .75rem;
  margin-bottom: 1.25rem;
  padding: .9rem 1rem;
  border: 1px solid var(--gold);
  border-radius: 14px;
  background: #FFF8E7;
  color: var(--text);
}

.services-offer-note strong { color: var(--ink); }

.services-offer-label {
  padding: .25rem .55rem;
  border-radius: 99px;
  background: var(--gold);
  color: var(--navy);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.service-card-lg {
  background: var(--bg);
  border-radius: var(--r-card);
  padding: 2rem;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.service-card-lg:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(21, 37, 53, .12); color: var(--ink); }

.service-card-lg .head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; }

.service-card-lg h2, .service-card-lg h3 { font-size: 1.5rem; letter-spacing: -.01em; margin: 0; }

.price-pill {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0 .45rem;
  background: #fff;
  padding: .5rem .75rem;
  border-radius: var(--r-chip);
  white-space: nowrap;
  flex: none;
  text-align: right;
}

.price-pill-was {
  color: #7A8A99;
  font-size: .8rem;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.price-pill-now { color: var(--blue); font-size: 1.05rem; font-weight: 700; }

.price-pill small {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.service-card-lg p { color: var(--text); line-height: 1.6; margin-top: .75rem; }

.service-card-lg .more { display: inline-block; font-weight: 600; font-size: .96rem; color: var(--blue); margin-top: 1rem; }

.service-card-cta {
  background: var(--blue);
  border-radius: var(--r-card);
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .75rem;
}

.service-card-cta h2, .service-card-cta h3 { font-size: 1.5rem; color: #fff; margin: 0; }
.service-card-cta p { color: var(--blue-tint); line-height: 1.6; }
.service-card-cta .btn { align-self: flex-start; margin-top: .4rem; }

@media (max-width: 860px) { .services-grid-lg { grid-template-columns: 1fr; } }

/* ============================================================
   Navy reviews band
   ============================================================ */
.reviews-band {
  background: var(--navy);
  color: #fff;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}

.reviews-intro h2 { color: #fff; }

.reviews-intro p { color: var(--navy-muted); line-height: 1.6; margin-top: .9rem; }

.reviews-intro .btn { margin-top: 1.4rem; }

.review-card {
  background: var(--navy-2);
  border-radius: 18px;
  padding: 1.7rem;
}

.review-card blockquote { font-size: 1rem; line-height: 1.6; margin-top: .8rem; }

.review-card figcaption { font-weight: 600; font-size: .85rem; color: var(--navy-muted); margin-top: .8rem; }

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

/* ============================================================
   Meet Ian / split sections
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(1.6rem, 4vw, 2.5rem);
  align-items: center;
}

.split-media {
  min-height: 340px;
  border-radius: var(--r-card);
  background: repeating-linear-gradient(45deg, #EAF2F9, #EAF2F9 14px, #DCE9F4 14px, #DCE9F4 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.split-media picture { display: block; width: 100%; height: 100%; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Photo (rather than placeholder) fills a fixed crop */
.split-media.media-photo { aspect-ratio: 4 / 3; min-height: 0; }

.coverage-map {
  aspect-ratio: 900 / 650;
  min-height: 0;
  background: var(--bg);
}

.coverage-map img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.media-note {
  font: 12px/1.4 ui-monospace, monospace;
  color: var(--muted);
  background: #fff;
  padding: 5px 10px;
  border-radius: 8px;
}

.split-copy p { color: var(--text); font-size: 1.02rem; line-height: 1.65; margin-top: 1rem; }

.split-copy .tick-row { margin-top: 1.4rem; }

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

/* Stat cards (about) */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.stat-card { background: var(--bg); border-radius: 18px; padding: 1.6rem; }

.stat-card .stat { font-size: 1.9rem; font-weight: 700; color: var(--blue); }

.stat-card p { font-size: .94rem; line-height: 1.55; color: var(--text); margin-top: .4rem; }

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

/* ============================================================
   FAQ + CTA card
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(1.6rem, 4vw, 2.5rem);
  align-items: start;
}

.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 0; }

.faq-list summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.1rem 0;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
  content: "+";
  color: var(--blue);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1;
  flex: none;
}

.faq-list details[open] summary::after { content: "−"; }

.faq-list summary:hover { color: var(--blue-deep); }

.faq-body { padding: 0 0 1.2rem; max-width: 36em; color: var(--text); line-height: 1.6; }

.cta-card {
  background: var(--blue);
  border-radius: var(--r-card);
  padding: 2.2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.cta-card.sticky { position: sticky; top: 6rem; }

.cta-card h2, .cta-card h3 {
  color: #fff;
  font-size: 1.7rem;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0;
}

.cta-card p { color: var(--blue-tint); line-height: 1.6; }

.cta-card .cta-ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .4rem; }

@media (max-width: 860px) {
  .faq-grid { grid-template-columns: 1fr; }
  .cta-card.sticky { position: static; }
}

/* ============================================================
   Page hero (inner pages)
   ============================================================ */
.page-hero { background: var(--bg); }

.page-hero .container { padding-block: clamp(2.2rem, 5vw, 3rem); }

.breadcrumb { font-weight: 500; font-size: .88rem; color: var(--muted); margin-bottom: .7rem; }

.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); text-decoration: underline; }

.breadcrumb span[aria-hidden] { margin-inline: .35rem; }

.page-hero h1 { font-size: clamp(2.1rem, 4.4vw, 3rem); letter-spacing: -.025em; }

.page-hero .lede { margin-top: .9rem; max-width: 38em; }

.page-hero .tick-row { margin-top: 1rem; }

.page-hero .hero-ctas { margin-top: 1.6rem; }

/* ============================================================
   Content layouts (inner pages)
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(1.8rem, 4vw, 2.5rem);
  align-items: start;
}

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

.prose { max-width: 44em; }

.prose > p { color: #3B4D5F; font-size: 1.02rem; line-height: 1.7; }

.prose > p + p { margin-top: 1rem; }

.prose h2 { font-size: 1.5rem; margin: 1.8rem 0 .8rem; }

.prose h3 { margin: 1.5rem 0 .6rem; }

.prose ul, .prose ol { margin: .9rem 0 .9rem 1.35rem; color: #3B4D5F; line-height: 1.65; }

.prose li + li { margin-top: .55rem; }

.step-list { list-style: none; margin: .9rem 0 0 !important; display: flex; flex-direction: column; gap: .8rem; }

.step-list li { margin: 0 !important; color: #3B4D5F; line-height: 1.6; }

.step-list b { color: var(--ink); }

/* Sidebar cards */
.side-stack { display: flex; flex-direction: column; gap: 1rem; }

.price-card {
  background: var(--navy);
  border-radius: var(--r-card);
  padding: 1.9rem;
  color: #fff;
}

.price-card .amount { font-size: 2.1rem; font-weight: 700; }

.price-card .amount.price-offer {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: start;
  gap: .15rem .55rem;
}

.price-card .amount.price-offer .price-was {
  color: rgba(255, 255, 255, .68);
}

.price-card .amount.price-offer .price-now {
  color: #fff;
}

.price-card .amount.price-offer .price-caption {
  grid-column: 1 / -1;
  color: var(--navy-muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .02em;
}

.price-card p { font-size: .94rem; line-height: 1.55; color: var(--navy-muted); margin-top: .4rem; }

.price-card .btn { width: 100%; margin-top: 1.1rem; }
.price-card .btn + .btn { margin-top: .65rem; }

.side-review { background: var(--bg); border-radius: var(--r-card); padding: 1.5rem; }

.side-review p { font-size: .95rem; line-height: 1.6; color: #3B4D5F; margin-top: .65rem; }

.side-review figcaption { font-weight: 600; font-size: .84rem; color: var(--muted); margin-top: .65rem; }

/* ============================================================
   Pricing table (rows)
   ============================================================ */
.new-patient-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--gold);
  border-radius: 16px;
  background: #FFF8E7;
}

.new-patient-offer p { color: var(--text); line-height: 1.4; }

.new-patient-offer p strong {
  display: block;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

.new-patient-offer p + p { margin-top: .25rem; font-size: .9rem; }

.new-patient-label {
  display: block;
  margin-bottom: .35rem;
  color: var(--blue-deep);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.new-patient-badge {
  flex: none;
  padding: .55rem .85rem;
  border-radius: 99px;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  white-space: nowrap;
}

.price-rows { border-top: 1px solid var(--line); }

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}

.price-row .what b { display: block; font-size: 1.08rem; color: var(--ink); }

.price-row .what span { font-size: .87rem; color: #7A8A99; }

.price-row .amount { font-weight: 700; font-size: 1.35rem; color: var(--ink); white-space: nowrap; }

.price-row .amount.price-offer {
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0 .55rem;
  text-align: right;
}

.price-was {
  color: #7A8A99;
  font-size: .95rem;
  font-weight: 500;
  text-decoration: line-through;
  text-decoration-thickness: 1.5px;
}

.price-now { color: var(--blue-deep); }

.price-caption {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .025em;
  line-height: 1.2;
  text-transform: uppercase;
}

.price-row .amount.ask { color: var(--blue); }

@media (max-width: 560px) {
  .new-patient-offer { align-items: flex-start; padding: 1rem; }
  .new-patient-badge { font-size: .88rem; }
  .price-row { gap: .8rem; }
}

.note-card { background: var(--bg); border-radius: var(--r-card); padding: 1.5rem; font-size: .95rem; line-height: 1.7; color: #3B4D5F; }

.note-card b { color: var(--ink); }

/* ============================================================
   Areas
   ============================================================ */
.borough-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}

.borough-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 1.25rem;
  display: block;
  text-decoration: none;
  color: var(--ink);
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.borough-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(21, 37, 53, .12);
  color: var(--ink);
}

.borough-card:hover h3 { color: var(--blue); }

.borough-card h2, .borough-card h3 { font-size: 1.06rem; margin: 0; }

.borough-card p { font-size: .85rem; line-height: 1.5; color: #5A6B7B; margin-top: .25rem; }

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

/* ============================================================
   Advice / blog cards
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.post-card {
  background: var(--bg);
  border-radius: var(--r-card);
  overflow: hidden;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform .18s var(--ease-out), box-shadow .18s var(--ease-out);
}

.post-card:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(21, 37, 53, .12); color: var(--ink); }

.post-card .post-media {
  height: 11.25rem;
  background: repeating-linear-gradient(45deg, #EAF2F9, #EAF2F9 14px, #DCE9F4 14px, #DCE9F4 28px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.post-card .post-media picture { display: block; width: 100%; height: 100%; }
.post-card .post-media img { width: 100%; height: 100%; object-fit: cover; }

.post-body { padding: 1.5rem; display: flex; flex-direction: column; flex: 1; }

.post-body .eyebrow { font-size: .75rem; }

.post-body h2, .post-body h3 { font-size: 1.25rem; line-height: 1.3; margin: .5rem 0 0; }

.post-body p { font-size: .9rem; line-height: 1.55; color: var(--text); margin-top: .65rem; }

.post-body .post-more { font-weight: 600; font-size: .9rem; color: var(--blue); margin-top: auto; padding-top: .9rem; }

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

.article-meta { font-weight: 500; font-size: .9rem; color: var(--muted); margin-top: .8rem; }

/* ============================================================
   Contact
   ============================================================ */
.contact-section { background: #fff; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(18rem, .85fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.contact-form-card {
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: 0 12px 34px rgba(21, 37, 53, .07);
}

.contact-heading { max-width: 38rem; }

.contact-heading .eyebrow {
  color: var(--blue);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .45rem;
}

.contact-heading h2 { margin-bottom: .65rem; }

.contact-heading > p:last-child { color: var(--text); line-height: 1.6; }

.contact-form { margin-top: 1.8rem; }

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field { margin-bottom: 1.1rem; }

.form-field label {
  display: block;
  color: var(--ink);
  font-size: .95rem;
  font-weight: 600;
  margin-bottom: .45rem;
}

.form-field label span { color: var(--muted); font-size: .85rem; font-weight: 400; }

.form-field input,
.form-field textarea {
  display: block;
  width: 100%;
  border: 1px solid #C9D5E0;
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: .82rem .9rem;
  transition: border-color .16s var(--ease-out), box-shadow .16s var(--ease-out);
}

.form-field textarea { min-height: 9rem; resize: vertical; }

.form-field input:hover,
.form-field textarea:hover { border-color: #9FB2C2; }

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 117, 187, .14);
  outline: none;
}

.btn-submit { min-width: 10.5rem; padding-block: .95rem; }

.form-note {
  max-width: 38rem;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.5;
  margin-top: .8rem;
}

.form-status { color: var(--blue-deep); font-size: .9rem; font-weight: 600; margin-top: .55rem; }
.form-status:empty { display: none; }

.contact-details { display: flex; flex-direction: column; gap: 1rem; }

.contact-details-card,
.contact-info-card {
  background: var(--bg);
  border-radius: var(--r-card);
  padding: 1.6rem;
}

.contact-details-card h2 { font-size: 1.45rem; margin-bottom: 1.1rem; }

.contact-methods { list-style: none; }

.contact-methods li {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: .85rem;
  align-items: start;
}

.contact-methods li + li {
  border-top: 1px solid #DCE5ED;
  margin-top: 1rem;
  padding-top: 1rem;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 12px;
  background: var(--blue-tint);
  color: var(--blue-deep);
}

.contact-icon-wa { background: #DDF7E5; color: var(--wa-deep); }

.contact-icon svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.contact-icon-wa svg { fill: currentColor; stroke: none; }

.contact-methods b { display: block; font-size: .9rem; margin-bottom: .1rem; }

.contact-methods a {
  font-weight: 600;
  overflow-wrap: anywhere;
  text-underline-offset: 2px;
}

.contact-methods small {
  display: block;
  color: var(--text);
  font-size: .82rem;
  line-height: 1.45;
  margin-top: .25rem;
}

.contact-info-card h3 { margin-bottom: .4rem; }

.contact-info-card p {
  color: var(--text);
  font-size: .94rem;
  line-height: 1.58;
}

.contact-info-card .contact-muted { color: var(--muted); font-size: .86rem; margin-top: .2rem; }

.contact-info-card .section-link {
  display: inline-block;
  font-size: .9rem;
  margin-top: .7rem;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .btn-submit { width: 100%; }
  .contact-form-card,
  .contact-details-card,
  .contact-info-card { padding: 1.35rem; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: var(--navy-muted);
  font-size: .9rem;
}

.footer-inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 2.25rem var(--gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand { display: flex; align-items: center; gap: 1rem; }

.footer-logo { display: inline-flex; align-items: center; }
.footer-logo img { width: auto; height: 34px; }

.footer-links { display: flex; gap: 1.4rem; flex-wrap: wrap; }

.footer-links a { color: var(--navy-muted); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; }

/* ============================================================
   Floating WhatsApp chat widget (site-wide)
   ============================================================ */
.wa-widget {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 98;
  --wa-offset: 76px;   /* gap between launcher and panel */
}

/* Launcher button */
.wa-launcher {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  cursor: grab;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .3);
  transition: transform .18s var(--ease-out), background-color .18s var(--ease-out);
  /* Own the gesture so a drag never scrolls the page behind it */
  touch-action: none;
  user-select: none;
  -webkit-user-select: none;
}

.wa-widget.is-dragging .wa-launcher {
  cursor: grabbing;
  transform: scale(1.06);
  transition: none;
}

/* While dragging, the panel follows the button without easing */
.wa-widget.is-dragging .wa-panel { transition: none; }

.wa-launcher svg { width: 34px; height: 34px; fill: currentColor; }

.wa-launcher:hover { background: var(--wa-hover); transform: scale(1.08); }
.wa-launcher:active { transform: scale(.96); }

/* Unread dot, hidden once the panel has been opened */
.wa-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #E5342A;
  border: 2px solid #fff;
}

.wa-widget.is-open .wa-dot { display: none; }

/* Panel */
.wa-panel {
  position: absolute;
  right: 0;
  bottom: var(--wa-offset);
  width: 360px;
  max-width: calc(100vw - 2rem);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(16, 24, 33, .32);
  background: #ECE5DD;
  transform-origin: bottom right;
  opacity: 0;
  transform: scale(.95) translateY(8px);
  transition: opacity .2s var(--ease-out), transform .2s var(--ease-out);
}

/* The panel opens away from whichever edge the button has been dragged to */
.wa-panel.open-up { bottom: var(--wa-offset); top: auto; }
.wa-panel.open-down { top: var(--wa-offset); bottom: auto; transform: scale(.95) translateY(-8px); }
.wa-panel.align-right { right: 0; left: auto; }
.wa-panel.align-left { left: 0; right: auto; }
.wa-panel.open-up.align-right { transform-origin: bottom right; }
.wa-panel.open-up.align-left { transform-origin: bottom left; }
.wa-panel.open-down.align-right { transform-origin: top right; }
.wa-panel.open-down.align-left { transform-origin: top left; }
.wa-widget.is-open .wa-panel.open-down { transform: none; }

.wa-panel[hidden] { display: none; }

.wa-widget.is-open .wa-panel { opacity: 1; transform: none; }

/* Panel header: a light tint of the brand colour, as WhatsApp itself does */
.wa-panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: #E8F0F8;
}

.wa-avatar {
  position: relative;
  flex: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #fff;
  background-image: url("/assets/podicare-logo.png");
  background-size: 76% auto;
  background-repeat: no-repeat;
  background-position: center;
  box-shadow: 0 0 0 1px rgba(21, 37, 53, .07);
}

.wa-avatar::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--wa);
  border: 2px solid #fff;
}

.wa-who { flex: 1; min-width: 0; }
.wa-who b { display: block; font-size: 1.06rem; line-height: 1.25; color: var(--ink); }
.wa-who span { display: block; font-size: .875rem; color: #566472; line-height: 1.3; }

.wa-close {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: #56636F;
  cursor: pointer;
  transition: background-color .15s var(--ease-out), color .15s var(--ease-out);
}

.wa-close:hover { background: rgba(21, 37, 53, .08); color: var(--ink); }
.wa-close svg { width: 20px; height: 20px; }

/* Panel body */
.wa-panel-body {
  padding: 1.1rem 1.1rem 1.4rem;
  background-color: #ECE5DD;
  background-image: url("/assets/wa-chat-bg.jpg");
  background-image: image-set(
    url("/assets/wa-chat-bg.avif") type("image/avif"),
    url("/assets/wa-chat-bg.jpg") type("image/jpeg")
  );
  background-repeat: repeat;
}

.wa-time {
  text-align: center;
  font-size: .74rem;
  color: #5B6B72;
  margin-bottom: .8rem;
}

.wa-msg {
  background: #fff;
  border-radius: 12px 12px 12px 2px;
  padding: .85rem 1rem;
  max-width: 92%;
  box-shadow: 0 1px 2px rgba(16, 24, 33, .12);
}

.wa-msg p { font-size: .95rem; line-height: 1.45; color: #182229; }
.wa-msg p + p { margin-top: .7rem; }

.wa-start {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  width: 100%;
  margin-top: 1.1rem;
  padding: .9rem 1.2rem;
  border-radius: 99px;
  background: var(--wa);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(16, 24, 33, .18);
  transition: background-color .18s var(--ease-out), transform .18s var(--ease-out);
}

.wa-start:hover { background: var(--wa-hover); color: #fff; transform: translateY(-1px); }
.wa-start svg { width: 22px; height: 22px; fill: currentColor; }

@media (max-width: 560px) {
  /* Keep the panel the same 360px it is on desktop; only the smaller launcher
     changes, so the gap above it shrinks to match. Width is left alone: the
     base max-width already narrows it on phones under ~392px. */
  .wa-widget { right: 1rem; bottom: 1rem; --wa-offset: 68px; }
  .wa-launcher { width: 58px; height: 58px; }
  .wa-launcher svg { width: 30px; height: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .wa-panel { transition: none; }
  .wa-launcher:hover { transform: none; }
}

/* ============================================================
   Motion
   ============================================================ */
.load-rise {
  opacity: 0;
  transform: translateY(16px);
  animation: rise .55s var(--ease-out) forwards;
  animation-delay: calc(var(--d, 0) * 80ms);
}

@keyframes rise { to { opacity: 1; transform: none; } }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 70ms);
}

.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .load-rise { animation: none; opacity: 1; transform: none; }
  .reveal { transition: none; opacity: 1; transform: none; }
}
