/* =========================================================
   Apple Dental — Service Page
   Everything is scoped under .asp-root so it cannot leak into
   Divi-built pages, and Divi cannot leak in.
   ========================================================= */

/* Licensed display face, self-hosted and bundled with the plugin.
   Belgiano Serif is not on Google Fonts — any request to fonts.googleapis.com
   for it silently 404s, which is why the live site's headings fall back. */
@font-face {
  font-family: 'Belgiano Serif';
  src: url('../fonts/belgiano-serif.woff2') format('woff2'),
       url('../fonts/belgiano-serif.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   Divi integration.

   No width manipulation. An ancestor on this install both constrains and
   clips, so stretching sections past it cuts their left edge off. The page
   renders inside whatever width the theme gives it until that element is
   identified. Boxed and correct beats full-width and broken.
   ========================================================= */
.asp-root { width: 100%; }

.asp-root { scroll-padding-top: 120px; }
.asp-root [id] { scroll-margin-top: 120px; }

.asp-root {
  --grad-brand: linear-gradient(279.51deg, #82C885 -9.98%, #00ABFF 92.97%);
  --grad-brand-h: linear-gradient(90deg, #0095DE 0%, #82C885 100%);
  --grad-call: linear-gradient(90deg, #75D4FF 0%, #0095DE 100%);
  --grad-heading: linear-gradient(98.64deg, #0179B4 23.06%, #5BC1EE 59.73%);
  --grad-band: linear-gradient(115deg, #023B58 0%, #0A74A9 58%, #1C7CAB 100%);
  --grad-deep: linear-gradient(160deg, #023B58 0%, #0A74A9 60%, #1C7CAB 100%);

  --blue-700: #0A74A9;
  --blue-500: #0179B4;
  --blue-300: #5BC1EE;
  --blue-100: #C9EDFF;
  --blue-050: #EEF9FF;
  --faq-closed: #E7F3FF;
  --faq-hover: #D6EAFF;
  --faq-open: #B9DDFF;
  --green: #3E7A42;
  --ink: #3D3D3D;
  --white: #FFFFFF;

  --display: 'Belgiano Serif', Georgia, 'Times New Roman', serif;
  --body: 'Manrope', system-ui, -apple-system, sans-serif;

  --content: 1280px;
  --prose: 680px;
  --section-y: 88px;
  --radius-lg: 60px;
  --radius-md: 31px;
  --radius-sm: 16px;
  --shadow-card: 0 4px 20px rgba(0,0,0,.05);
  --shadow-btn: -8px 8px 28px 0 rgba(0,0,0,.06);

  font-family: var(--body);
  font-size: 16px;
  line-height: 26px;
  color: #000;
  background: var(--white);
}

.asp-root *, .asp-root *::before, .asp-root *::after { box-sizing: border-box; }
.asp-root img { max-width: 100%; height: auto; display: block; }
.asp-root h1, .asp-root h2, .asp-root h3 { margin: 0; padding: 0; }
.asp-root p { margin: 0 0 14px; }
.asp-root p:last-child { margin-bottom: 0; }
.asp-root ul { margin: 0; }
.asp-root a { color: inherit; }
.asp-root :focus-visible { outline: 3px solid var(--blue-700); outline-offset: 3px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce) {
  .asp-root *, .asp-sticky-actions { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

.asp-container { width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 24px; }
.asp-section { padding: var(--section-y) 0; }
.asp-section--tint { background: var(--blue-050); }
.asp-prose { max-width: var(--prose); }
.asp-center { text-align: center; margin-bottom: 52px; }
.asp-center--blue { color: var(--blue-700); margin-bottom: 40px; }

/* ---------------------------------------------------- type */
.asp-h-display {
  font-family: var(--display); font-weight: 400;
  font-size: 48px; line-height: 52px; letter-spacing: -.01em; color: var(--ink);
}
.asp-h-sub {
  font-family: var(--display); font-weight: 400;
  font-size: 30px; line-height: 36px; color: var(--blue-700); margin-bottom: 12px;
}
.asp-pricing-explain > * + .asp-h-sub { margin-top: 30px; }
.asp-pricing-explain p { margin-bottom: 0; }
.asp-tint {
  background: var(--grad-heading);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.asp-lead { font-weight: 600; font-size: 16px; line-height: 26px; }
.asp-eyebrow {
  font-weight: 700; font-size: 13px; letter-spacing: .08em;
  text-transform: uppercase; color: var(--blue-700); margin-bottom: 14px;
}

/* ---------------------------------------------------- buttons */
.asp-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-width: 0; padding: 14px 25px;
  border: none; border-radius: 50px; cursor: pointer;
  font-family: 'Manrope', Helvetica, Arial, Lucida, sans-serif;
  font-weight: 500; font-size: 15px; line-height: 1.7em;
  text-decoration: none; transition: transform .3s ease, box-shadow .3s ease;
}
.asp-btn:hover { transform: translateY(-2px); text-decoration: none; }
.asp-btn svg { width: 17px; height: 17px; flex-shrink: 0; }
.asp-btn--primary { background-image: var(--grad-brand-h); background-repeat: no-repeat; color: #fff !important; }
.asp-btn--primary:hover { color: #fff !important; }
.asp-btn--secondary {
  background-image: var(--grad-call);
  background-repeat: no-repeat;
  color: #fff !important;
  border: none;
}
.asp-btn--secondary:hover {
  background-image: none;
  background-color: var(--blue-100);
  color: #000 !important;
}
.asp-btn--on-dark { background-image: var(--grad-brand-h); background-repeat: no-repeat; color: #fff !important; }
.asp-btn--on-dark:hover { color: #fff !important; }
.asp-btn--ghost-light {
  background: rgba(255,255,255,.16);
  color: #fff !important;
  border: 1.5px solid rgba(255,255,255,.75);
}
.asp-btn--ghost-light:hover {
  background: var(--blue-100);
  border-color: var(--blue-100);
  color: #000 !important;
}
.asp-btn--full { width: 100%; margin-top: 26px; }
.asp-sticky-actions .asp-btn { padding: 13px 14px; }
.asp-btn-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.asp-band .asp-btn-row, .asp-final .asp-btn-row { margin-top: 0; }
.asp-final .asp-btn-row { margin-top: 28px; }

/* Clinician names linked inline in body copy. Underlined rather than coloured
   alone, so the link is identifiable without relying on colour. */
.asp-clinician-link {
  color: var(--blue-700) !important;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}
.asp-clinician-link:hover { color: var(--blue-500) !important; text-decoration-thickness: 2px; }

.asp-textlink {
  display: inline-block; margin-top: 16px;
  font-weight: 700; font-size: 15px; color: var(--blue-700) !important;
  text-decoration: underline; text-underline-offset: 4px;
}
.asp-textlink:hover { color: var(--blue-500) !important; }
.asp-textlink--center { display: block; text-align: center; width: 100%; }

/* ---------------------------------------------------- 01 banner + intro */
.asp-banner {
  /* The site header floats over the hero on every other page. Pull the banner
     up under it by the nav's height so the two read as one unit. */
  margin-top: calc(-1 * var(--asp-header-h, 104px));
  position: relative;
  min-height: 620px;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--asp-header-h, 104px) + 90px) 24px 96px;
  background-color: var(--blue-700);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}
/* Brand overlay: matches the blue duotone treatment used site-wide and
   guarantees contrast for the heading whatever the photograph looks like. */
.asp-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(3,52,80,.72) 0%, rgba(10,116,169,.62) 55%, rgba(91,193,238,.55) 100%);
}
.asp-banner-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.asp-banner::before { z-index: 1; }
.asp-banner-inner { position: relative; z-index: 2; max-width: 900px; }
.asp-banner-eyebrow {
  font-weight: 700; font-size: 13px; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.85); margin-bottom: 18px;
}
.asp-banner-h1 {
  font-family: var(--display); font-weight: 400;
  font-size: 60px; line-height: 64px; letter-spacing: -.01em;
  color: #fff; text-wrap: balance; margin: 0;
}
.asp-banner-h1 .asp-tint {
  background: none; -webkit-text-fill-color: #C9EDFF; color: #C9EDFF;
}
.asp-banner--noimage::before {
  background: linear-gradient(180deg, #023B58 0%, var(--blue-700) 60%, #1C7CAB 100%);
}
.asp-banner-note {
  margin: 26px auto 0; padding: 12px 18px; display: inline-block; max-width: 56ch;
  background: rgba(255,255,255,.12); border: 2px dashed rgba(255,255,255,.55);
  border-radius: 12px; color: #fff; font-size: 12px; line-height: 19px;
}

.asp-intro { background: var(--blue-050); padding: 56px 0 64px; }
.asp-intro-grid {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 48px; align-items: center;
}
.asp-intro-copy { max-width: var(--prose); }
.asp-intro-actions .asp-btn-row { margin-top: 0; }
.asp-intro-actions .asp-textlink { display: block; margin-top: 20px; }
.asp-areas {
  margin: 32px 0 0; padding-top: 26px;
  border-top: 1px solid var(--blue-050);
  font-size: 14px; line-height: 24px; color: #4A5560; max-width: 58ch;
}

/* descriptive placeholder frame */
.asp-ph {
  position: relative; width: 100%;
  background: var(--blue-100);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 26px;
}
.asp-ph::before {
  content: ''; position: absolute; inset: 12px;
  border: 2px dashed rgba(10,116,169,.45);
  border-radius: calc(var(--radius-md) - 12px);
}
.asp-ph-inner {
  position: relative; display: flex; flex-direction: column; gap: 9px; max-width: 40ch;
}
.asp-ph-label {
  font-weight: 800; font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: #075C86;
}
.asp-ph-spec {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12px; line-height: 18px; color: #0A74A9;
}
.asp-ph-shows { font-weight: 500; font-size: 13px; line-height: 19px; color: #3A4A55; }
.asp-ph--clinician { border-radius: 0; height: 100%; }
.asp-ph--clinician::before { border-radius: 0; }
.asp-ph--case { border-radius: var(--radius-sm); }
.asp-ph--case::before { border-radius: 6px; }

/* ---------------------------------------------------- breadcrumb */
.asp-breadcrumb { background: var(--blue-050); padding: 16px 0 0; }
.asp-breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0;
  font-size: 13px; line-height: 20px;
}
.asp-breadcrumb li { display: flex; align-items: center; gap: 8px; color: #5A6B76; }
.asp-breadcrumb li + li::before { content: '/'; color: #A9BCC7; }
.asp-breadcrumb a { color: var(--blue-700) !important; text-decoration: none; }
.asp-breadcrumb a:hover { text-decoration: underline; text-underline-offset: 3px; }
.asp-breadcrumb [aria-current] { color: #22333D; font-weight: 600; }

/* ---------------------------------------------------- 02 proof */
.asp-proof { background: var(--blue-700); }
.asp-proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.asp-proof-cell {
  padding: 26px 24px; text-align: center; color: var(--white);
  font-weight: 600; font-size: 16px; line-height: 24px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.asp-proof-cell:first-child { border-left: none; }

/* ---------------------------------------------------- 03 overview */
.asp-split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.asp-split + .asp-split { margin-top: 72px; }
.asp-split--rev .asp-split-copy { order: 2; }
.asp-split--rev .asp-split-media { order: 1; }
.asp-split-copy .asp-h-display { margin-bottom: 16px; }
.asp-split-media img { border-radius: var(--radius-md); box-shadow: var(--shadow-card); width: 100%; }

.asp-flatcard {
  margin-top: 72px; background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 44px 48px;
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 48px; align-items: start;
}
.asp-flatcard-copy { max-width: 46ch; }
.asp-flatcard .asp-h-sub { margin-bottom: 12px; }
.asp-optionlist {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px;
}
.asp-optionlist li {
  background: var(--blue-050); color: #075C86; border-radius: 12px;
  padding: 12px 18px; font-weight: 600; font-size: 14px; line-height: 20px;
}

/* ---------------------------------------------------- 04 mid CTA */
.asp-band {
  background: var(--grad-band); border-radius: var(--radius-lg); padding: 48px 56px;
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  align-items: center; gap: 40px;
}
.asp-band-copy { max-width: 46ch; }
.asp-band h2 {
  font-family: var(--display); font-weight: 400;
  font-size: 34px; line-height: 42px; color: var(--white); text-wrap: balance;
}
.asp-band p { color: rgba(255,255,255,.92); font-weight: 500; margin: 12px 0 0; }

/* ---------------------------------------------------- 05 pricing */
.asp-pricing-grid { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 3fr); gap: 48px; align-items: start; }
.asp-pricecard {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: 0 8px 34px rgba(10,116,169,.12);
  border: 1px solid #E2EEF6; padding: 36px 34px;
}
.asp-pricecard .asp-h-sub { margin-bottom: 4px; }
.asp-price-currency {
  font-size: 12px; line-height: 18px; font-weight: 600; letter-spacing: .03em;
  text-transform: uppercase; color: #7A8B96; margin: 0 0 22px;
}

/* headline prices — what most visitors came to find */
.asp-price-headline {
  background: var(--blue-050); border-radius: 18px;
  padding: 6px 22px; margin-bottom: 26px;
}
.asp-price-headline .asp-price-row { border-bottom: 1px solid #DCEAF4; }
.asp-price-headline .asp-price-row:last-child { border-bottom: none; }

/* group heading for the reference rows */
.asp-price-group {
  margin: 24px 0 4px; font-size: 11px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: #8B9AA4;
}
.asp-price-group:first-of-type { margin-top: 0; }

.asp-price-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 18px; padding: 13px 0; border-bottom: 1px solid #EEF4F8;
}
.asp-price-rows .asp-price-row:last-child { border-bottom: none; }
.asp-price-label { flex: 1 1 auto; min-width: 0; font-weight: 600; font-size: 14px; line-height: 21px; color: #33434D; }
.asp-price-value { flex: 0 0 auto; display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.asp-price-value.is-note { white-space: normal; text-align: right; max-width: 45%; }
.asp-price-from { font-size: 12px; font-weight: 600; color: #8B9AA4; }
.asp-price-amount {
  font-family: var(--display); font-weight: 400;
  font-size: 22px; line-height: 26px; color: var(--blue-700);
}
.asp-price-value.is-note .asp-price-amount {
  font-family: var(--body); font-weight: 600; font-size: 13px;
  line-height: 20px; color: #7A8B96; font-style: italic;
}

.asp-price-row.is-featured { padding: 18px 0; }
.asp-price-row.is-featured .asp-price-label { font-size: 15px; font-weight: 700; color: #22333D; }
.asp-price-row.is-featured .asp-price-value:not(.is-note) .asp-price-amount {
  font-size: 34px; line-height: 38px;
}
/* A headline row whose value is a phrase rather than a figure must never take
   the headline type size — it reads as a price and wrecks the row. */
.asp-price-row.is-featured .asp-price-value.is-note .asp-price-amount {
  font-size: 15px; line-height: 22px;
}

.asp-pricecard .asp-btn--full { margin-top: 28px; }
.asp-disclaimer { margin-top: 18px; font-size: 12px; line-height: 19px; color: #7A8B96; }
.asp-pricing-explain { position: sticky; top: 130px; }
.asp-disclaimer { margin-top: 16px; font-size: 13px; line-height: 20px; color: #5b6570; font-style: italic; }

/* ---------------------------------------------------- 06 team / 07 cases */
.asp-cards-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px; }
.asp-cards-3--quad { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.asp-cards-3--short {
  grid-template-columns: repeat(auto-fit, minmax(0, 340px));
  justify-content: center;
}
.asp-cards-3--quad .asp-clincard-body { padding: 20px 20px 24px; }
.asp-cards-3--quad .asp-clincard-body h3 { font-size: 21px; line-height: 25px; }
.asp-clincard {
  background: var(--white); border-radius: var(--radius-md); box-shadow: var(--shadow-card);
  overflow: hidden; display: flex; flex-direction: column;
}
.asp-clincard-photo { aspect-ratio: 1/1; background: var(--blue-100); overflow: hidden; }
.asp-clincard-photo img { width: 100%; height: 100%; object-fit: cover; }
.asp-clincard-photo .asp-imgframe { border-radius: 0; }
.asp-clincard-body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.asp-clincard-body h3 {
  font-family: var(--display); font-weight: 400; font-size: 24px; line-height: 28px;
  color: var(--blue-700); margin-bottom: 6px;
}
.asp-cred { font-weight: 700; font-size: 13px; line-height: 19px; color: var(--green); margin-bottom: 12px; }
.asp-clincard-body p { font-size: 14px; line-height: 22px; }

.asp-casecard {
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 14px 14px 26px;
}
.asp-casecard img { border-radius: var(--radius-sm); }
.asp-casecard h3 {
  font-family: var(--display); font-weight: 400; font-size: 22px; line-height: 26px;
  color: var(--blue-700); margin: 20px 12px 8px;
}
.asp-casecard p { font-size: 14px; line-height: 22px; margin: 0 12px; }
.asp-casecard .asp-textlink { margin: 16px 12px 0; }

/* ---------------------------------------------------- 08 faqs */
.asp-faq-wrap { max-width: 860px; margin: 48px auto 0; }
.asp-faq-item { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 14px; }
.asp-faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 24px 32px; background: var(--faq-closed); border: none; cursor: pointer;
  font-family: var(--body); font-weight: 600; font-size: 18px; line-height: 26px;
  color: #000; text-align: left; border-radius: var(--radius-sm); transition: background .3s ease;
}
.asp-faq-q:hover { background: var(--faq-hover); }
.asp-faq-item.is-open .asp-faq-q { background: var(--faq-open); border-radius: var(--radius-sm) var(--radius-sm) 0 0; }
.asp-faq-chevron {
  flex-shrink: 0; width: 13px; height: 13px;
  border-right: 2.5px solid #000; border-bottom: 2.5px solid #000;
  transform: rotate(45deg) translate(-3px, -3px); transition: transform .3s ease;
}
.asp-faq-item.is-open .asp-faq-chevron { transform: rotate(-135deg) translate(-3px, -3px); }
.asp-faq-a {
  max-height: 0; overflow: hidden; background: var(--white); padding: 0 32px;
  transition: max-height .4s ease, padding .3s ease;
}
.asp-faq-item.is-open .asp-faq-a {
  max-height: 600px; padding: 22px 32px 28px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

/* ---------------------------------------------------- 09 related */
.asp-related-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px; margin-top: 8px;
}
.asp-related-grid--short {
  grid-template-columns: repeat(auto-fit, minmax(0, 340px));
  justify-content: center;
}
.asp-relcard {
  display: flex; flex-direction: column;
  background: var(--white); border-radius: 22px; overflow: hidden;
  box-shadow: var(--shadow-card); text-decoration: none;
  transition: transform .3s ease, box-shadow .3s ease;
}
.asp-relcard:hover { transform: translateY(-4px); box-shadow: 0 14px 34px rgba(10,116,169,.16); }
.asp-relcard-thumb {
  display: block; position: relative; aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, var(--blue-100) 0%, var(--blue-050) 100%);
  overflow: hidden;
}
.asp-relcard-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.asp-relcard-initial {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 58px; line-height: 1;
  color: rgba(10,116,169,.32);
}
.asp-relcard-body { display: flex; flex-direction: column; flex: 1; padding: 22px 24px 24px; }
.asp-relcard-title {
  font-family: var(--display); font-weight: 400; font-size: 22px; line-height: 27px;
  color: var(--blue-700); margin-bottom: 9px;
}
.asp-relcard-desc { font-size: 14px; line-height: 22px; color: #3A4A55; flex: 1; }
.asp-relcard-cta {
  margin-top: 18px; font-weight: 700; font-size: 14px; color: var(--blue-700);
}
.asp-relcard:hover .asp-relcard-cta { text-decoration: underline; text-underline-offset: 4px; }

/* ---------------------------------------------------- review proof */
.asp-sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.asp-reviews {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 9px 22px 9px 16px; border-radius: 50px;
  background: var(--white); border: 1px solid #DCE9F2;
  box-shadow: 0 2px 10px rgba(10,116,169,.07);
  font-family: var(--body); text-decoration: none;
  transition: box-shadow .25s ease, transform .25s ease;
}
.asp-reviews:hover { box-shadow: 0 6px 20px rgba(10,116,169,.16); transform: translateY(-1px); }
.asp-reviews-body { display: flex; flex-direction: column; gap: 2px; }
.asp-reviews-top { display: flex; align-items: center; gap: 7px; }
.asp-reviews-top strong { font-weight: 800; font-size: 16px; line-height: 1; color: #12333F; }
.asp-reviews-meta { font-size: 12px; line-height: 1; font-weight: 500; color: #5A6B76; }
.asp-stars { display: inline-flex; gap: 1px; color: #F5A623; }
.asp-reviews--dark {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.4); box-shadow: none;
}
.asp-reviews--dark .asp-reviews-top strong { color: #fff; }
.asp-reviews--dark .asp-reviews-meta { color: rgba(255,255,255,.85); }
.asp-reviews--intro { margin-top: 22px; }
.asp-reviews--pricing { margin-top: 22px; width: 100%; justify-content: center; }
.asp-reviews--final { margin-top: 28px; }
.asp-reviews--location { margin-top: 24px; }

/* ---------------------------------------------------- location details */
.asp-location {
  display: grid; grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 56px; align-items: start;
  background: var(--white); border-radius: var(--radius-md);
  box-shadow: var(--shadow-card); padding: 48px 52px;
}
.asp-address {
  font-style: normal; font-size: 17px; line-height: 28px; color: #22333D;
  margin-top: 18px;
}
.asp-address strong { font-weight: 800; }
.asp-location-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 26px;
}
.asp-location-actions .asp-textlink { margin-top: 0; }
.asp-hours { list-style: none; padding: 0; margin: 0; }
.asp-hours li {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 11px 0; font-size: 15px; line-height: 22px;
  border-bottom: 1px solid var(--blue-050);
}
.asp-hours li:last-child { border-bottom: none; }
.asp-hours span:last-child { color: #4A5560; }

/* ---------------------------------------------------- 10 final */
.asp-final { background: var(--grad-deep); padding: var(--section-y) 0; }
.asp-final-grid { display: grid; grid-template-columns: minmax(0, 58fr) minmax(0, 42fr); gap: 48px; align-items: center; }
.asp-final h2 { font-family: var(--display); font-weight: 400; font-size: 44px; line-height: 50px; color: var(--white); }
.asp-final-body { color: var(--white); font-weight: 500; margin-top: 18px; max-width: 62ch; }
.asp-final-img { border-radius: var(--radius-md); }

/* ---------------------------------------------------- sticky bar */
.asp-sticky-actions {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 9998;
  display: none; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,.96); box-shadow: 0 -4px 20px rgba(0,0,0,.12);
  transform: translateY(110%); transition: transform .3s ease;
  font-family: var(--body);
}
.asp-sticky-actions.is-visible { transform: translateY(0); }
.asp-sticky-actions .asp-btn { flex: 1; min-width: 0; font-size: 14px; }
/* CareCru's own launcher sits bottom-right; leave room so the two do not
   overlap on small screens. */
@media (max-width: 768px) {
  .asp-sticky-actions { padding-right: 68px; }
}

/* ---------------------------------------------------- responsive */
@media (max-width: 1024px) {
  .asp-root { --section-y: 64px; }
  .asp-h-display { font-size: 40px; line-height: 44px; }
  .asp-banner-h1 { font-size: 46px; line-height: 50px; }
  .asp-banner { min-height: 480px; padding: calc(var(--asp-header-h, 104px) + 60px) 24px 70px; }
  .asp-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .asp-split { gap: 36px; }
  .asp-cards-3, .asp-cards-3--quad, .asp-related-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .asp-pricing-explain { position: static; }
  .asp-band { grid-template-columns: 1fr; padding: 36px 36px; gap: 26px; }
  .asp-flatcard { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 768px) {
  .asp-root { --section-y: 56px; --radius-lg: 34px; --radius-md: 24px; }
  .asp-root { --asp-header-h: 78px; }
  .asp-banner { min-height: 380px; padding: calc(var(--asp-header-h) + 40px) 20px 56px; }
  .asp-banner-h1 { font-size: 34px; line-height: 40px; }
  .asp-intro { padding: 36px 0 44px; }
  .asp-proof-grid { grid-template-columns: 1fr; }
  .asp-proof-cell { border-left: none; border-top: 1px solid rgba(255,255,255,.18); padding: 18px; }
  .asp-proof-cell:first-child { border-top: none; }
  .asp-split, .asp-pricing-grid, .asp-final-grid { grid-template-columns: 1fr; gap: 28px; }
  .asp-location { grid-template-columns: 1fr; gap: 32px; padding: 30px 24px; }
  .asp-location-actions { gap: 14px; }
  .asp-location-actions .asp-btn { width: 100%; }
  .asp-reviews--pricing { justify-content: flex-start; }
  .asp-split + .asp-split, .asp-flatcard { margin-top: 40px; }
  .asp-split--rev .asp-split-copy, .asp-split--rev .asp-split-media { order: initial; }
  .asp-flatcard { padding: 28px 24px; gap: 22px; }
  .asp-optionlist { grid-template-columns: 1fr; }
  .asp-cards-3, .asp-cards-3--quad, .asp-related-grid,
  .asp-cards-3--short, .asp-related-grid--short { grid-template-columns: 1fr; }
  .asp-center { margin-bottom: 34px; }
  .asp-h-display { font-size: 32px; line-height: 36px; }
  .asp-h-sub { font-size: 24px; line-height: 30px; }
  .asp-band { padding: 28px 24px; }
  .asp-band h2 { font-size: 26px; line-height: 32px; }
  .asp-final h2 { font-size: 30px; line-height: 36px; }
  .asp-pricecard { padding: 28px 24px; }
  .asp-price-row.is-featured .asp-price-amount { font-size: 28px; line-height: 32px; }
  .asp-faq-wrap { margin-top: 32px; }
  .asp-faq-q { font-size: 15px; line-height: 22px; padding: 18px 22px; }
  .asp-faq-item.is-open .asp-faq-a { padding: 18px 22px 22px; }
  .asp-btn { width: 100%; }
  .asp-btn-row { flex-direction: column; gap: 12px; }
  .asp-sticky-actions { display: flex; }
  .asp-sticky-actions .asp-btn { width: auto; }
}
