/* =========================================================
   Medical Lien Management — About Us page
   ========================================================= */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Baloo 2';
  src: url('../assets/fonts/Baloo2-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baloo 2';
  src: url('../assets/fonts/Baloo2-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baloo 2';
  src: url('../assets/fonts/Baloo2-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baloo 2';
  src: url('../assets/fonts/Baloo2-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Baloo 2';
  src: url('../assets/fonts/Baloo2-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../assets/fonts/Inter-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

/* ---------- Design tokens ---------- */
:root {
  --color-primary: #0888A7;
  --color-primary-dark: #066a83;
  --color-footer: #11778E;
  --color-dark: #1A1A1A;
  --color-text: #575757;
  --color-text-light: #7A7D7F;
  --color-nav-text: #212529;
  --color-card-light: #F2FAFC;
  --color-stats-bg: #C9DCE9;
  --color-hero-bg-start: #D3E9F4;
  --color-white: #ffffff;
  --color-border: #DCE7ED;

  --font-heading: 'Baloo 2', 'Segoe UI Rounded', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  --container-max: 1320px;
  --gutter: clamp(20px, 4vw, 70px);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 14px rgba(20, 60, 80, 0.08);
  --shadow-md: 0 10px 30px rgba(20, 60, 80, 0.12);

  --transition: 0.2s ease;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  margin: 0;
  line-height: 1.15;
}

p {
  margin: 0;
}

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}

address {
  font-style: normal;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }
}

:focus-visible {
  outline: 3px solid #ffb703;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Buttons & pills ---------- */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: #eaf6fa;
  color: var(--color-primary);
  border: 1px solid #bfe0ea;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: #dbeef4;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.cta-bar {
  display: block;
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  padding: 18px;
  border-radius: var(--radius-sm);
  margin-top: 28px;
  transition: background var(--transition);
}

.cta-bar:hover,
.cta-bar:focus-visible {
  background: var(--color-primary-dark);
}

/* ---------- Section headings ---------- */
.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 48px;
}

.section-title.light {
  color: #fff;
}

.text-accent {
  color: var(--color-primary);
}

.text-dark {
  color: var(--color-dark);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background: linear-gradient(120deg, var(--color-hero-bg-start), #eef7fb 55%, #ffffff);
  padding-block: clamp(40px, 6vw, 80px) clamp(60px, 8vw, 110px);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  color: var(--color-primary);
  margin-bottom: 22px;
}

.hero-copy p {
  max-width: 46ch;
  margin-bottom: 30px;
}

.hero-media {
  position: relative;
}

.hero-media img {
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-media-accent {
  position: absolute;
  left: 24px;
  right: -24px;
  bottom: -24px;
  height: 60%;
  background: linear-gradient(135deg, #8fc9db, #5aa9c2);
  border-radius: var(--radius-lg);
  z-index: 1;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-media {
    order: -1;
  }

  .hero-copy p {
    max-width: none;
  }
}

/* =========================================================
   CALIFORNIA PARTNER SECTION
   ========================================================= */
.partner-section {
  padding-block: clamp(50px, 7vw, 100px);
}

.partner-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}

.partner-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 22px;
}

.partner-copy p {
  margin-bottom: 18px;
}

.partner-media {
  height: 100%;
}

/* Fill the column height and crop, rather than sitting short beside the copy. */
.partner-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mini-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.mini-card {
  background: var(--color-card-light);
  border-radius: var(--radius-md);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 9px;
  margin-bottom: 14px;
}

.mini-card p {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.95rem;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .partner-media {
    order: -1;
  }
}

@media (max-width: 640px) {
  .mini-card-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MISSION / VISION
   ========================================================= */
.mission-vision-section {
  padding-block: clamp(20px, 4vw, 40px) clamp(50px, 7vw, 90px);
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.mv-mission {
  background-size: cover;
  background-position: center;
  color: #fff;
}

.mv-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 14, 0.6);
}

.mv-vision {
  background: linear-gradient(135deg, var(--color-primary), #0a6f8c);
  color: #fff;
}

.mv-vision::after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.mv-content {
  position: relative;
  z-index: 2;
}

.mv-card h2 {
  color: #fff;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  margin-bottom: 16px;
}

.mv-card p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 46ch;
}

@media (max-width: 800px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WHY CHOOSE
   ========================================================= */
.why-choose-section {
  background: linear-gradient(160deg, var(--color-primary), #0a7692);
  padding-block: clamp(50px, 7vw, 90px);
  color: #fff;
}

.why-choose-visual {
  position: relative;
  padding-top: 60px;
}

.why-ribbon {
  position: absolute;
  top: 70px;
  left: 8%;
  width: 46%;
  height: 60px;
  background: linear-gradient(100deg, rgba(6, 90, 110, 0.75), rgba(6, 90, 110, 0));
  transform: rotate(-4deg);
  border-radius: 30px;
  z-index: 0;
  display: none;
}

.why-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  display: none;
}

.why-curve-arrows path {
  fill: rgba(255, 255, 255, 0.7);
}

/* Above .why-curve, so the connector starts hidden behind the portrait and
   appears to come out of its centre. */
.why-portrait {
  position: relative;
  z-index: 3;
}

.quote-portrait {
  margin: 0 auto 50px;
  width: clamp(190px, 20vw, 240px);
  aspect-ratio: 466 / 688;
  position: relative;
  z-index: 3;
  padding: 8px;
}

.quote-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(50.00% 4.00%, 61.74% 13.86%, 77.04% 12.79%, 80.74% 27.66%, 93.75% 35.79%, 88.00% 50.00%, 93.75% 64.21%, 80.74% 72.34%, 77.04% 87.21%, 61.74% 86.14%, 50.00% 96.00%, 38.26% 86.14%, 22.96% 87.21%, 19.26% 72.34%, 6.25% 64.21%, 12.00% 50.00%, 6.25% 35.79%, 19.26% 27.66%, 22.96% 12.79%, 38.26% 13.86%);
}

.quote-portrait-img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50.00% 4.00%, 61.74% 13.86%, 77.04% 12.79%, 80.74% 27.66%, 93.75% 35.79%, 88.00% 50.00%, 93.75% 64.21%, 80.74% 72.34%, 77.04% 87.21%, 61.74% 86.14%, 50.00% 96.00%, 38.26% 86.14%, 22.96% 87.21%, 19.26% 72.34%, 6.25% 64.21%, 12.00% 50.00%, 6.25% 35.79%, 19.26% 27.66%, 22.96% 12.79%, 38.26% 13.86%);
}

.quote-mark {
  position: absolute;
  color: rgba(255, 255, 255, 0.55);
  z-index: 4;
}

.quote-mark-open {
  top: -14px;
  left: -38px;
}

.quote-mark-close {
  bottom: -6px;
  right: -38px;
  transform: rotate(180deg);
}

.why-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 28px;
  position: relative;
  z-index: 2;
}

.why-item {
  text-align: center;
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  margin-bottom: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.why-icon img {
  width: 28px;
  height: 28px;
}

.why-item h3 {
  color: #fff;
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.why-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  max-width: 26ch;
  margin-inline: auto;
}

@media (min-width: 901px) {
  .why-item:nth-child(5) {
    grid-column: 2;
  }

  .why-item:nth-child(6) {
    grid-column: 3;
  }

  .why-item:nth-child(7) {
    grid-column: 4;
  }

  /* Inset the grid so the connector's end caps have a lane to loop through
     without crossing the labels. */
  .why-list {
    padding-inline: 7%;
  }

  .why-curve {
    display: block;
  }

  .why-ribbon {
    display: block;
  }
}

@media (max-width: 900px) {
  .why-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}

@media (max-width: 540px) {
  .why-list {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WHAT WE STAND FOR
   ========================================================= */
.stand-for-section {
  padding-block: clamp(50px, 7vw, 90px);
}

.stand-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--color-card-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card h3 {
  color: var(--color-primary);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.95rem;
}

@media (max-width: 800px) {
  .stand-for-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .stand-for-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   WHAT WE DO
   ========================================================= */
.what-we-do-section {
  background: linear-gradient(90deg, #B5DAEC, #ffffff, #B5DAEC);
  padding-block: clamp(50px, 7vw, 90px);
}

.wwd-grid {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px) 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 60px;
}

.wwd-col {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.wwd-item {
  position: relative;
  padding-top: 16px;
}

.wwd-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 6px);
  height: 2px;
  background: var(--color-nav-text);
}

.wwd-item::after {
  content: "";
  position: absolute;
  top: -3px;
  left: calc(100% - 8px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
}

.wwd-col-right .wwd-item {
  text-align: right;
  padding-right: 0;
}

.wwd-col-right .wwd-item::before {
  left: auto;
  right: 0;
}

.wwd-col-right .wwd-item::after {
  left: auto;
  right: calc(100% - 8px);
}

.wwd-item h3 {
  color: var(--color-primary);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.wwd-item p {
  font-size: 0.9rem;
}

.wwd-media img {
  border-radius: var(--radius-md);
}

@media (max-width: 900px) {
  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-media {
    order: -1;
    max-width: 320px;
    margin-inline: auto;
  }

  .wwd-col-right .wwd-item,
  .wwd-col-left .wwd-item {
    text-align: left;
    padding-right: 0;
  }

  .wwd-col-right .wwd-item::before {
    left: 0;
    right: auto;
  }

  /* Both columns read left-to-right once stacked, so the dot terminates the
     rule on the right for all of them rather than mirroring back to the left. */
  .wwd-col-right .wwd-item::after {
    left: calc(100% - 8px);
    right: auto;
  }
}


/* Centres itself: `main` is not a grid, so the section has to do this with
   auto margins rather than justify-self. The gutter and max-width keep the
   band inside the viewport now that it sits outside a .container. */
.stats-band-section {
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.stats-band {

  margin-top: -50px;
  background-color: var(--color-stats-bg);
  border-radius: var(--radius-lg);
  padding: 34px clamp(20px, 4vw, 50px);
  position: relative;
}

.stats-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: var(--color-primary);
}

.stat-label {
  display: block;
  font-weight: 600;
  color: #4b4b4b;
  font-size: 0.85rem;
  margin-top: 6px;
}

@media (max-width: 800px) {
  .stats-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .stats-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   HOW WE RECOVER YOUR REVENUE
   ========================================================= */
.revenue-section {
  padding-block: clamp(50px, 7vw, 90px);
  position: relative;
  overflow: hidden;
}

.revenue-section::before {
      content: "";
    position: absolute;
    inset: 0 0 90px 0;
    background-image: url(../assets/images/california-map-watermark.png);
    background-repeat: no-repeat;
    background-position: right 70px top -70px;
    opacity: 0.2;
    z-index: 0;
}

.revenue-section>.container {
  position: relative;
  z-index: 1;
}

.timeline-wrap {
  position: relative;
  height: clamp(320px, 34vw, 430px);
  margin-top: 20px;
  margin-bottom: 90px;
}

/* Wavy connector. The line is a full-bleed background image (120% of the
   wrap, offset by -10%), stretched to the wrap box. Every step is then
   pinned with percentages sampled off that same artwork, so the dots stay
   on the line at any width. */
.timeline-curve {
  position: absolute;
  top: 0;
  left: -10%;
  width: 120%;
  height: 100%;
  background-image: url(../assets/images/why-curve-line.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  z-index: 1;
  pointer-events: none;
}

.timeline {
  position: static;
}

.timeline-step {
  position: absolute;
  z-index: 2;
  width: 16%;
  min-width: 160px;
  padding-top: 32px;
  text-align: left;
  transform: translateX(-12px);
}

.timeline-step.step-1 {
  left: 6.8%;
  top: 63.5%;
}

.timeline-step.step-2 {
  left: 26%;
  top: 80.8%;
}

.timeline-step.step-3 {
  left: 40.4%;
  top: 66.6%;
}

.timeline-step.step-4 {
  left: 58%;
  top: 64.6%;
}

.timeline-step.step-5 {
  left: 71.6%;
  top: 42.5%;
}

.timeline-step.step-6 {
  left: 83.6%;
  top: 25.1%;
}

.timeline-dot {
  position: absolute;
  top: 0;
  left: 12px;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #eef1f3;
  border: 4px solid #fff;
  box-shadow: 0 2px 6px rgba(20, 40, 50, 0.25);
}

.timeline-step h3 {
  color: var(--color-nav-text);
  font-size: 1rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
}

/* Tighter type on narrower desktops so neighbouring steps don't collide. */
@media (min-width: 901px) and (max-width: 1200px) {
  .timeline-step {
    min-width: 0;
  }

  .timeline-step h3 {
    font-size: 0.9rem;
  }

  .timeline-step p {
    font-size: 0.76rem;
  }
}

@media (max-width: 900px) {
  .revenue-section::before {
    display: none;
  }

  .timeline-curve {
    display: none;
  }

  .timeline-wrap {
    height: auto;
    margin-bottom: 0;
  }

  .timeline {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }

  .timeline-step {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: auto;
    min-width: 0;
    transform: none;
    text-align: left;
    padding-left: 40px;
    padding-top: 0;
  }

  .timeline-dot {
    top: 2px;
    left: 0;
    transform: none;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section {
  background: linear-gradient(180deg, #e4f1f8, #ffffff);
  padding-block: clamp(50px, 7vw, 90px);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.testimonial-card {
  background: var(--color-card-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.testimonial-featured {
  background: linear-gradient(160deg, var(--color-primary), #095b74);
  color: #fff;
  overflow: hidden;
}

.testimonial-featured p,
.testimonial-featured .author-clinic {
  color: rgba(255, 255, 255, 0.92);
}

.testimonial-quote-mark {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.3);
}

.stars {
  color: var(--color-primary);
  letter-spacing: 3px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.testimonial-featured .stars {
  color: #fff;
}

.testimonial-card p {
  font-style: italic;
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  color: var(--color-dark);
  font-size: 0.9rem;
}

.testimonial-featured .author-name {
  color: #fff;
}

.author-clinic {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   BOTTOM CTA
   ========================================================= */
.bottom-cta-section {
  padding-block: clamp(40px, 6vw, 70px);
}

.bottom-cta-banner {
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px) clamp(24px, 6vw, 90px);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  text-align: center;
}

.bottom-cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.68);
}

.bottom-cta-content {
  position: relative;
  z-index: 2;
}

.bottom-cta-content h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 18px;
}

.bottom-cta-content p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 56ch;
  margin: 0 auto 30px;
}

.bottom-cta-content .btn-row {
  justify-content: center;
}
