.hub-page {
  background: var(--white);
}

.hub-hero {
  min-height: calc(100vh - var(--nav-h));
  background: var(--purple);
  overflow: hidden;
}

.hub-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  gap: 64px;
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
  padding-block: 72px;
}

.hub-hero__content {
  max-width: 660px;
}

.hub-hero__logo {
  display: block;
  width: clamp(150px, 18vw, 230px);
  height: auto;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 26px 70px rgba(18,12,34,.34);
}

.hub-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.hub-kicker span {
  width: 36px;
  height: 2px;
  background: var(--gold);
}

.hub-kicker strong {
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.hub-hero h1 {
  max-width: 720px;
  color: var(--white);
  font-family: var(--ff-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 24px;
}

.hub-hero__lead {
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 12px;
}

.hub-hero p:not(.hub-hero__lead) {
  color: rgba(255,255,255,.64);
  font-size: 16px;
  line-height: 1.75;
  max-width: 540px;
}

.hub-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hub-hero__visual {
  position: relative;
  min-height: 620px;
}

.hub-hero__photo {
  position: absolute;
  inset: 0;
  border-radius: 0 0 0 72px;
  background:
    linear-gradient(180deg, rgba(53,43,83,.1), rgba(53,43,83,.75)),
    linear-gradient(145deg, rgba(226,28,118,.28), rgba(255,164,0,.12)),
    url("/images/Hub-Home-Coffee.webp") center/cover no-repeat;
  box-shadow: -26px 30px 80px rgba(18,12,34,.32);
}

.hub-hero__note {
  position: absolute;
  right: 28px;
  bottom: 32px;
  width: min(290px, calc(100% - 56px));
  padding: 22px 24px;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(18px);
}

.hub-hero__note strong {
  display: block;
  color: var(--gold);
  font-family: var(--ff-display);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 6px;
}

.hub-hero__note span {
  display: block;
  color: rgba(255,255,255,.74);
  font-size: 13px;
  line-height: 1.6;
}

.hub-intro,
.hub-pillars,
.hub-expect,
.hub-guidance,
.hub-reasons,
.hub-start,
.hub-closing {
  padding-block: 96px;
}

.hub-intro {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hub-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.hub-intro .h2,
.hub-section-head .h2 {
  margin-top: 18px;
}

.hub-intro__copy {
  display: grid;
  gap: 16px;
}

.hub-pillars,
.hub-guidance {
  background: var(--off);
}

.hub-section-head {
  max-width: 720px;
  margin-bottom: 48px;
}

.hub-section-head--center {
  margin-inline: auto;
  text-align: center;
}

.hub-section-head--center p {
  margin-top: 16px;
}

.hub-pillars__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.hub-pillar,
.hub-guidance__card,
.hub-reasons__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
}

.hub-pillar {
  padding: 26px 24px 28px;
  transition: transform var(--ease-mid), box-shadow var(--ease-mid), border-color var(--ease-mid);
}

.hub-pillar:hover {
  transform: translateY(-4px);
  border-color: var(--pink);
  box-shadow: var(--shadow-xl);
}

.hub-pillar__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 32%, transparent 34%),
    var(--pink);
  margin-bottom: 24px;
}

.hub-pillar h3,
.hub-reasons__card h3 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hub-pillar p,
.hub-reasons__card li,
.hub-guidance__card p,
.hub-start p,
.hub-find p,
.hub-closing p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
}

.hub-expect {
  background: var(--white);
}

.hub-expect__grid {
  display: grid;
  grid-template-columns: minmax(360px, .82fr) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}

.hub-expect__image {
  position: relative;
  min-height: 620px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(53,43,83,.62), transparent 48%),
    url("/images/Hub-Home-Women-Group.webp") center/cover no-repeat;
}

.hub-expect__badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  color: var(--white);
  background: var(--pink);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 9px 18px;
  text-transform: uppercase;
}

.hub-expect__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hub-event-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.hub-event-list__item {
  position: relative;
  min-height: 74px;
  display: flex;
  align-items: center;
  color: var(--ink);
  background: var(--pink-wash);
  border: 1px solid rgba(226,28,118,.12);
  border-radius: var(--r-md);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  padding: 16px 18px 16px 42px;
}

.hub-event-list__item::before {
  content: "";
  position: absolute;
  left: 18px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.hub-guidance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hub-guidance__card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  min-height: 112px;
  padding: 22px;
}

.hub-guidance__card span {
  position: relative;
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-pale);
}

.hub-guidance__card span::after {
  content: "";
  position: absolute;
  left: 9px;
  top: 6px;
  width: 8px;
  height: 13px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(42deg);
}

.hub-guidance__card p {
  color: var(--ink);
  font-weight: 600;
}

.hub-reasons {
  background: var(--white);
}

.hub-reasons__grid {
  display: grid;
  grid-template-columns: minmax(0, .84fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.hub-reasons__panel {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.hub-reasons__panel .h2 {
  margin-block: 18px 20px;
}

.hub-reasons__stack {
  display: grid;
  gap: 18px;
}

.hub-reasons__card {
  padding: 30px;
  border-left: 4px solid var(--pink);
  box-shadow: var(--shadow-sm);
}

.hub-reasons__card--muted {
  border-left-color: var(--purple-mid);
  background: var(--off);
}

.hub-reasons__card ul {
  display: grid;
  gap: 12px;
}

.hub-reasons__card li {
  position: relative;
  padding-left: 22px;
}

.hub-reasons__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.hub-start {
  background: var(--pink-wash);
  text-align: center;
}

.hub-start__inner {
  max-width: 760px;
}

.hub-start h2 {
  margin-block: 18px 16px;
}

.hub-start p {
  font-size: 17px;
  margin-inline: auto;
  max-width: 650px;
}

.hub-find {
  padding-block: 78px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(53,43,83,.96), rgba(53,43,83,.82)),
    url("/images/Hub-Home-Women-Group.webp") center/cover no-repeat;
}

.hub-find__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.hub-find .label-tag {
  color: var(--gold);
  background: rgba(255,255,255,.12);
}

.hub-find h2 {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: clamp(28px, 3.6vw, 46px);
  font-weight: 300;
  line-height: 1.15;
  max-width: 820px;
  margin-block: 18px 16px;
}

.hub-find p {
  color: rgba(255,255,255,.7);
  font-size: 17px;
}

.hub-find__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  min-width: 260px;
}

.hub-find__actions a {
  text-align: center;
}

.hub-closing {
  background: var(--white);
  text-align: center;
}

.hub-closing h2 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 18px;
}

.hub-closing p {
  font-size: 18px;
  margin-bottom: 18px;
}

.hub-closing strong {
  color: var(--pink);
  font-family: var(--ff-display);
  font-size: 22px;
  font-weight: 400;
}

.hub-map-page {
  min-height: 100vh;
  background: var(--off);
}

.hub-map-hero {
  padding-block: 56px 42px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(53,43,83,.98), rgba(53,43,83,.82)),
    url("/images/UK-Map.webp") center/cover no-repeat;
}

.hub-map-hero__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 36px;
}

.hub-map-hero h1 {
  max-width: 800px;
  color: var(--white);
  font-family: var(--ff-display);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 300;
  line-height: 1.06;
  margin-bottom: 14px;
}

.hub-map-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.7;
}

.hub-map-stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.hub-map-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hub-map-stats__grid div {
  padding: 22px 26px;
  border-left: 1px solid var(--border);
}

.hub-map-stats__grid div:last-child {
  border-right: 1px solid var(--border);
}

.hub-map-stats strong {
  display: block;
  color: var(--pink);
  font-family: var(--ff-display);
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 6px;
}

.hub-map-stats span {
  color: var(--ink-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hub-map-shell {
  display: grid;
  grid-template-columns: minmax(380px, 42vw) minmax(0, 1fr);
  align-items: start;
  min-height: calc(100vh - var(--nav-h));
  border-top: 1px solid var(--border);
}

.hub-map-panel {
  min-width: 0;
  background: var(--off);
  z-index: 2;
  padding: 30px;
}

.hub-map-panel__head {
  padding: 0 0 22px;
}

.hub-map-panel__head h2 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: 26px;
  font-weight: 300;
  line-height: 1.18;
  margin: 0;
}

.hub-map-search {
  padding: 0 0 18px;
}

.hub-map-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.hub-map-search input {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--r-pill);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 14px;
  outline: none;
  padding: 14px 18px;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.hub-map-search input:focus {
  border-color: var(--pink);
  box-shadow: var(--shadow-sm);
}

.hub-map-results {
  border-top: 1px solid var(--border);
}

.hub-map-results__count {
  padding: 16px 0 18px;
  color: var(--ink-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hub-map-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-height: 0;
  padding: 0 0 30px;
}

.hub-map-card {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  background: var(--white);
  cursor: pointer;
  padding: 17px 16px;
  transition: border-color var(--ease), background var(--ease), box-shadow var(--ease);
}

.hub-map-card:hover,
.hub-map-card.is-active {
  border-color: var(--pink);
  background: var(--pink-wash);
  box-shadow: var(--shadow-sm);
}

.hub-map-card__pin {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 14px rgba(226,28,118,.22));
}

.hub-map-card__pin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hub-map-card h3 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 4px;
}

.hub-map-card p {
  color: var(--ink-light);
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.hub-map-canvas-wrap {
  position: sticky;
  top: var(--nav-h);
  min-width: 0;
  height: calc(100vh - var(--nav-h));
  min-height: 620px;
  background: var(--purple-pale);
  border-right: 1px solid var(--border);
}

.hub-map-canvas {
  width: 100%;
  height: 100%;
  min-height: 620px;
  z-index: 1;
}

.hub-map-note {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 500;
  max-width: 330px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--r-md);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-lg);
  color: var(--ink-mid);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  padding: 12px 14px;
}

.hub-map-info {
  min-width: 220px;
  padding: 4px 0;
}

.hub-map-info strong,
.hub-map-info span,
.hub-map-info em,
.hub-map-info small,
.hub-map-info a {
  display: block;
}

.hub-map-info strong {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 6px;
}

.hub-map-info span {
  color: var(--ink-light);
  font-size: 12px;
  margin-bottom: 12px;
}

.hub-map-info em {
  color: var(--pink);
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 6px;
}

.hub-map-info small {
  color: var(--ink-mid);
  font-size: 12px;
  line-height: 1.45;
}

.hub-map-info a,
.hub-map-card__link {
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
}

.hub-map-info a {
  margin-top: 12px;
}

.hub-map-card__link {
  display: inline-flex;
  margin-top: 2px;
}

.gm-style .gm-style-iw-c {
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
}

@media (max-width: 1100px) {
  .hub-hero__grid,
  .hub-expect__grid,
  .hub-reasons__grid,
  .hub-intro__grid {
    grid-template-columns: 1fr;
  }

  .hub-hero__grid {
    gap: 44px;
  }

  .hub-hero__visual,
  .hub-expect__image {
    min-height: 460px;
  }

  .hub-hero__photo {
    border-radius: var(--r-xl);
  }

  .hub-pillars__grid,
  .hub-guidance__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-reasons__panel {
    position: static;
  }

  .hub-find__inner {
    grid-template-columns: 1fr;
  }

  .hub-find__actions {
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 0;
  }

  .hub-map-shell {
    grid-template-columns: 1fr;
    height: auto;
  }

  .hub-map-panel {
    border-right: none;
    padding: 28px;
  }

  .hub-map-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-map-canvas,
  .hub-map-canvas-wrap {
    position: relative;
    top: auto;
    height: auto;
    min-height: 560px;
  }
}

@media (max-width: 720px) {
  .hub-hero__grid {
    padding-block: 54px;
  }

  .hub-hero__logo {
    width: 148px;
    margin-bottom: 28px;
  }

  .hub-hero h1 {
    font-size: clamp(34px, 12vw, 48px);
  }

  .hub-hero__lead,
  .hub-start p,
  .hub-find p,
  .hub-closing p {
    font-size: 16px;
  }

  .hub-intro,
  .hub-pillars,
  .hub-expect,
  .hub-guidance,
  .hub-reasons,
  .hub-start,
  .hub-closing {
    padding-block: 68px;
  }

  .hub-pillars__grid,
  .hub-guidance__grid,
  .hub-event-list {
    grid-template-columns: 1fr;
  }

  .hub-hero__visual,
  .hub-expect__image {
    min-height: 360px;
  }

  .hub-hero__note {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .hub-find__actions {
    flex-direction: column;
  }

  .hub-map-hero__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .hub-map-stats__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hub-map-stats__grid div:nth-child(2n) {
    border-right: 1px solid var(--border);
  }

  .hub-map-shell {
    min-height: 0;
  }

  .hub-map-panel__head,
  .hub-map-search {
    padding-inline: 0;
  }

  .hub-map-list {
    grid-template-columns: 1fr;
    padding-inline: 0;
  }

  .hub-map-results__count {
    padding-inline: 0;
  }

  .hub-map-panel {
    padding: 22px;
  }

  .hub-map-canvas,
  .hub-map-canvas-wrap {
    min-height: 480px;
  }

  .hub-map-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    max-width: none;
  }
}

@media (max-width: 480px) {
  .hub-hero__actions,
  .hub-find__actions {
    width: 100%;
  }

  .hub-hero__actions a,
  .hub-find__actions a {
    width: 100%;
    text-align: center;
  }

  .hub-pillar,
  .hub-reasons__card {
    padding: 24px 22px;
  }
}

/* ============================================================
   hub-clinic.css
   Loaded AFTER hub.css on the clinic hub page only.
   hub.css is kept 100% intact — nothing here overrides shared
   rules. This file only adds new clinic-specific classes.
   ============================================================ */


/* ----------------------------------------------------------
   Hero photo — clinic-specific background image
   Overrides only the background shorthand on .hub-hero__photo
   ---------------------------------------------------------- */
.hub-clinic-page .hub-hero__photo {
  background:
    linear-gradient(180deg, rgba(53,43,83,.08), rgba(53,43,83,.72)),
    linear-gradient(145deg, rgba(255,164,0,.22), rgba(226,28,118,.12)),
    url("/images/Hub-Start-Hero.webp") center/cover no-repeat;
}


/* ----------------------------------------------------------
   Pillar mark — gold variant used on clinic page
   ---------------------------------------------------------- */
.hub-pillar__mark--gold {
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 32%, transparent 34%),
    var(--gold);
}


/* ----------------------------------------------------------
   Business Growth section
   Reverses column order so image is on the right
   ---------------------------------------------------------- */
.hub-clinic-growth__grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
}

.hub-clinic-growth__image {
  background:
    linear-gradient(0deg, rgba(53,43,83,.55), transparent 52%),
    url("/images/Hub-Business-Growth.webp") center/cover no-repeat;
}

/* Benefits list — single column so each item reads clearly */
.hub-clinic-benefits {
  grid-template-columns: 1fr;
}


/* ----------------------------------------------------------
   Clinic Efficiency section — unique photo
   ---------------------------------------------------------- */
.hub-clinic-efficiency__image {
  background:
    linear-gradient(0deg, rgba(53,43,83,.52), transparent 50%),
    url("/images/Hub-Clinic-Efficiency.webp") center/cover no-repeat;
}

.hub-clinic-efficiency__list {
  display: grid;
  gap: 18px;
  margin-top: 8px;
}

.hub-clinic-efficiency__item {
  padding: 20px 22px;
  border: 1.5px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: var(--r-md);
  background: var(--white);
}

.hub-clinic-efficiency__item strong {
  display: block;
  color: var(--purple);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.hub-clinic-efficiency__item p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}


/* ----------------------------------------------------------
   Bigger Picture — quote card variant
   ---------------------------------------------------------- */
.hub-clinic-bigger__quote {
  border-left-color: var(--gold);
  background: var(--purple);
  padding: 28px 30px;
}

.hub-clinic-bigger__quote p {
  color: var(--white);
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.3;
  margin: 0;
}


/* ----------------------------------------------------------
   What Is Included section
   ---------------------------------------------------------- */
.hub-clinic-included {
  text-align: left;
  padding-block: 96px;
}

.hub-clinic-included .hub-start__inner {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px;
  margin-inline: auto;
}

.hub-clinic-included__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.hub-clinic-included__card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px 30px;
  transition: transform var(--ease-mid), box-shadow var(--ease-mid), border-color var(--ease-mid);
}

.hub-clinic-included__card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-xl);
}

.hub-clinic-included__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 32%, transparent 34%),
    var(--gold);
  margin-bottom: 22px;
}

.hub-clinic-included__card h3 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hub-clinic-included__card p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


/* ----------------------------------------------------------
   Responsive — mirrors the breakpoints in hub.css
   ---------------------------------------------------------- */
@media (max-width: 1100px) {

  /* Growth grid collapses to single column like hub-expect */
  .hub-clinic-growth__grid {
    grid-template-columns: 1fr;
  }

  /* On tablet, put content above image */
  .hub-clinic-growth__grid .hub-expect__content {
    order: 0;
  }

  .hub-clinic-growth__grid .hub-expect__image {
    order: 1;
  }

  .hub-clinic-included__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .hub-clinic-included {
    padding-block: 68px;
  }

  .hub-clinic-included__grid {
    grid-template-columns: 1fr;
  }

  .hub-clinic-bigger__quote p {
    font-size: 22px;
  }
}

@media (max-width: 480px) {

  .hub-clinic-included__card {
    padding: 24px 22px;
  }
}


/* ── Page shell ─────────────────────────────────────────────── */
.hub-register-page {
  background: var(--off);
}


/* ── Hero ───────────────────────────────────────────────────── */
.hub-reg-hero {
  background: var(--purple);
  overflow: hidden;
  padding-block: 72px 80px;
}

.hub-reg-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, .9fr);
  gap: 72px;
  align-items: start;
}

.hub-reg-hero__content {
  padding-top: 8px;
}

.hub-reg-hero__checklist {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 0;
}

.hub-reg-hero__checklist li {
  position: relative;
  padding-left: 26px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.6;
}

.hub-reg-hero__checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .45em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--purple) 0 38%, transparent 40%),
    var(--gold);
}


/* ── Form card ──────────────────────────────────────────────── */
.hub-form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 40px 44px 44px;
  box-shadow: 0 32px 80px rgba(18,12,34,.22);
}

.hub-form__head {
  margin-bottom: 28px;
}

.hub-form__head h2 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 300;
  line-height: 1.18;
  margin-block: 14px 8px;
}

.hub-form__head p {
  color: var(--ink-light);
  font-size: 14px;
  line-height: 1.6;
}

.hub-form__error {
  margin-bottom: 20px;
  padding: 14px 18px;
  border-left: 4px solid var(--pink);
  border-radius: var(--r-md);
  background: var(--pink-wash);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}



/* ── Form layout ────────────────────────────────────────────── */
.hub-form {
  display: grid;
  gap: 20px;
}

.hub-form__row {
  display: grid;
  gap: 18px;
}

.hub-form__row--half {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hub-form__row--consent {
  padding-top: 4px;
}

.hub-form__row--submit {
  gap: 12px;
}


/* ── Fields ─────────────────────────────────────────────────── */
.hub-reg-field {
  display: grid;
  gap: 7px;
}

.hub-reg-field label {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .03em;
}

.hub-reg-field label abbr {
  color: var(--pink);
  text-decoration: none;
  margin-left: 2px;
}

.hub-reg-field input {
  width: 100%;
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  color: var(--ink);
  font-family: var(--ff-body);
  font-size: 15px;
  line-height: 1.5;
  outline: none;
  padding: 13px 16px;
  background: var(--white);
  transition: border-color var(--ease), box-shadow var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.hub-reg-field input::placeholder {
  color: var(--ink-light);
  font-weight: 400;
}

.hub-reg-field input:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(53,43,83,.1);
}

.hub-reg-field input:focus:invalid {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(226,28,118,.1);
}


/* ── Consent checkbox ───────────────────────────────────────── */
.hub-reg-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.hub-reg-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  accent-color: var(--purple);
  cursor: pointer;
}

.hub-reg-consent span {
  color: var(--ink-mid);
  font-size: 13px;
  line-height: 1.6;
}

.hub-reg-consent span a {
  color: var(--purple);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* ── Submit ─────────────────────────────────────────────────── */
.hub-reg-submit {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding-block: 16px;
  cursor: pointer;
  border: none;
}

.hub-form__reassurance {
  color: var(--ink-light);
  font-size: 13px;
  line-height: 1.55;
  text-align: center;
  margin: 0;
}


/* ── Success state ──────────────────────────────────────────── */
.hub-reg-success {
  display: grid;
  gap: 16px;
  text-align: center;
  padding: 8px 0;
}

.hub-reg-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  margin-inline: auto;
  position: relative;
}

.hub-reg-success__icon::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 12px;
  width: 11px;
  height: 18px;
  border-right: 3px solid var(--white);
  border-bottom: 3px solid var(--white);
  transform: rotate(42deg);
}

.hub-reg-success h2 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

.hub-reg-success p {
  color: var(--ink-mid);
  font-size: 15px;
  line-height: 1.7;
  max-width: 460px;
  margin-inline: auto;
}

.hub-reg-success .btn-solid {
  margin-inline: auto;
}


/* ── What Happens Next ──────────────────────────────────────── */
.hub-reg-next {
  background: var(--off);
}

.hub-reg-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.hub-reg-step {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 24px 30px;
  transition: transform var(--ease-mid), box-shadow var(--ease-mid), border-color var(--ease-mid);
}

.hub-reg-step:hover {
  transform: translateY(-4px);
  border-color: var(--purple);
  box-shadow: var(--shadow-xl);
}

.hub-reg-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: var(--ff-display);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: .04em;
}

.hub-reg-step h3 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hub-reg-step p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


/* ── Reassurance strip ──────────────────────────────────────── */
.hub-reg-reassurance {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 64px;
}

.hub-reg-reassurance__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.hub-reg-reassurance__item {
  display: grid;
  gap: 10px;
}

.hub-reg-reassurance__dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, var(--white) 0 32%, transparent 34%),
    var(--gold);
  margin-bottom: 4px;
}

.hub-reg-reassurance__item h3 {
  color: var(--purple);
  font-family: var(--ff-display);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
}

.hub-reg-reassurance__item p {
  color: var(--ink-mid);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1100px) {

  .hub-reg-hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hub-reg-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .hub-reg-hero {
    padding-block: 54px 60px;
  }

  .hub-form-wrap {
    padding: 28px 24px 32px;
  }

  .hub-form__row--half {
    grid-template-columns: 1fr;
  }

  .hub-reg-steps {
    grid-template-columns: 1fr;
  }

  .hub-reg-reassurance {
    padding-block: 52px;
  }

  .hub-reg-reassurance__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 480px) {

  .hub-form-wrap {
    padding: 22px 18px 26px;
  }

  .hub-reg-submit {
    width: 100%;
  }
}



